From 55eedc153e7453f2943393ed59eb7665e4d6ba51 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 5 Jul 2017 16:10:05 -0400 Subject: [PATCH 001/112] Convert document version checksum field from a text field to a char field to be able to index across all db backends without problem. Signed-off-by: Roberto Rosario --- ...8_auto_20170705_1942.py => 0038_auto_20170705_2008.py} | 8 ++++---- mayan/apps/documents/models.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) rename mayan/apps/documents/migrations/{0038_auto_20170705_1942.py => 0038_auto_20170705_2008.py} (64%) diff --git a/mayan/apps/documents/migrations/0038_auto_20170705_1942.py b/mayan/apps/documents/migrations/0038_auto_20170705_2008.py similarity index 64% rename from mayan/apps/documents/migrations/0038_auto_20170705_1942.py rename to mayan/apps/documents/migrations/0038_auto_20170705_2008.py index 6228720317..6290b5c37b 100644 --- a/mayan/apps/documents/migrations/0038_auto_20170705_1942.py +++ b/mayan/apps/documents/migrations/0038_auto_20170705_2008.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Generated by Django 1.10.7 on 2017-07-05 19:42 +# Generated by Django 1.10.7 on 2017-07-05 20:08 from __future__ import unicode_literals from django.db import migrations, models @@ -15,9 +15,9 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='documentversion', name='checksum', - field=models.TextField( - blank=True, db_index=True, editable=False, null=True, - verbose_name='Checksum' + field=models.CharField( + blank=True, db_index=True, editable=False, max_length=64, + null=True, verbose_name='Checksum' ), ), ] diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index 638d8192f2..3b2304a561 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -382,8 +382,8 @@ class DocumentVersion(models.Model): encoding = models.CharField( blank=True, editable=False, max_length=64, null=True ) - checksum = models.TextField( - blank=True, db_index=True, editable=False, null=True, + checksum = models.CharField( + blank=True, db_index=True, editable=False, max_length=64, null=True, verbose_name=_('Checksum') ) From d4e1a506edc6a0d7dd2d25393b84a0795b307ec1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 6 Jul 2017 02:56:35 -0400 Subject: [PATCH 002/112] Add duplicated document scan support. Signed-off-by: Roberto Rosario --- docs/releases/2.5.rst | 8 +++ mayan/apps/documents/admin.py | 9 ++- mayan/apps/documents/apps.py | 44 +++++++++++--- mayan/apps/documents/handlers.py | 7 +++ mayan/apps/documents/links.py | 13 ++++ mayan/apps/documents/managers.py | 40 +++++++++++++ .../migrations/0039_duplicateddocument.py | 47 +++++++++++++++ mayan/apps/documents/models.py | 26 +++++++- mayan/apps/documents/tasks.py | 23 ++++++++ mayan/apps/documents/tests/test_views.py | 52 ++++++++++++++++ mayan/apps/documents/urls.py | 25 ++++++-- mayan/apps/documents/views/document_views.py | 59 ++++++++++++++++++- mayan/apps/documents/views/misc_views.py | 15 ++++- 13 files changed, 352 insertions(+), 16 deletions(-) create mode 100644 mayan/apps/documents/migrations/0039_duplicateddocument.py diff --git a/docs/releases/2.5.rst b/docs/releases/2.5.rst index e146137e13..31e8fb9197 100644 --- a/docs/releases/2.5.rst +++ b/docs/releases/2.5.rst @@ -54,6 +54,14 @@ Other Changes GitLab issue #373. - Add support to search documents by their checksums. - The document checksum field is now indexed for faster searches by checksum. +- Add support for duplicated document scanning. Every time a document is + uploaded, a document scan will be triggered to determine if the new document + is a duplicate of an existing document. Duplicate documents will be listed + in a new "Duplicated documents" link in the main menu. A full document list + scan can also be triggered by using the new "Duplicated document scan" button + in the tools menu. Finally a new tab in the document view has been added + called "Duplicates" that will list all duplicates of the currently + selected document. Removals -------- diff --git a/mayan/apps/documents/admin.py b/mayan/apps/documents/admin.py index d4f6671d9e..62d30c0e1f 100644 --- a/mayan/apps/documents/admin.py +++ b/mayan/apps/documents/admin.py @@ -4,7 +4,7 @@ from django.contrib import admin from .models import ( DeletedDocument, Document, DocumentPage, DocumentType, - DocumentTypeFilename, DocumentVersion, RecentDocument + DocumentTypeFilename, DocumentVersion, DuplicatedDocument, RecentDocument ) @@ -55,6 +55,13 @@ class DocumentTypeAdmin(admin.ModelAdmin): ) +@admin.register(DuplicatedDocument) +class DuplicatedDocumentAdmin(admin.ModelAdmin): + list_display = ( + 'document', 'datetime_added' + ) + + @admin.register(RecentDocument) class RecentDocumentAdmin(admin.ModelAdmin): date_hierarchy = 'datetime_accessed' diff --git a/mayan/apps/documents/apps.py b/mayan/apps/documents/apps.py index dc2aa30ffb..22f8f36e13 100644 --- a/mayan/apps/documents/apps.py +++ b/mayan/apps/documents/apps.py @@ -31,11 +31,13 @@ from rest_api.classes import APIEndPoint from rest_api.fields import DynamicSerializerField from statistics.classes import StatisticNamespace, CharJSLine -from .handlers import create_default_document_type +from .handlers import ( + create_default_document_type, handler_scan_duplicates_for +) from .links import ( link_clear_image_cache, link_document_clear_transformations, link_document_clone_transformations, link_document_delete, - link_document_document_type_edit, + link_document_document_type_edit, link_document_duplicates_list, link_document_multiple_document_type_edit, link_document_download, link_document_edit, link_document_list, link_document_list_deleted, link_document_list_recent, link_document_multiple_delete, @@ -55,7 +57,8 @@ from .links import ( link_document_type_filename_list, link_document_type_list, link_document_type_setup, link_document_update_page_count, link_document_version_download, link_document_version_list, - link_document_version_revert, link_trash_can_empty + link_document_version_revert, link_duplicated_document_list, + link_duplicated_document_scan, link_trash_can_empty ) from .literals import ( CHECK_DELETE_PERIOD_INTERVAL, CHECK_TRASH_PERIOD_INTERVAL, @@ -73,6 +76,7 @@ from .permissions import ( from .queues import * # NOQA # Just import to initialize the search models from .search import document_search, document_page_search # NOQA +from .signals import post_version_upload from .statistics import ( new_documents_per_month, new_document_pages_per_month, new_document_pages_this_month, new_documents_this_month, @@ -100,6 +104,7 @@ class DocumentsApp(MayanAppConfig): DocumentType = self.get_model('DocumentType') DocumentTypeFilename = self.get_model('DocumentTypeFilename') DocumentVersion = self.get_model('DocumentVersion') + DuplicatedDocument = self.get_model('DuplicatedDocument') DynamicSerializerField.add_serializer( klass=Document, @@ -271,6 +276,16 @@ class DocumentsApp(MayanAppConfig): source=DocumentVersion, label=_('Comment'), attribute='comment' ) + SourceColumn( + source=DuplicatedDocument, label=_('Thumbnail'), + func=lambda context: document_thumbnail_widget.render( + instance=context['object'].document + ) + ) + SourceColumn( + source=DuplicatedDocument, label=_('Duplicates'), + func=lambda context: context['object'].documents.count() + ) app.conf.CELERYBEAT_SCHEDULE.update( { @@ -328,20 +343,28 @@ class DocumentsApp(MayanAppConfig): 'documents.tasks.task_upload_new_version': { 'queue': 'uploads' }, + 'documents.tasks.task_scan_duplicates_all': { + 'queue': 'tools' + }, + 'documents.tasks.task_scan_duplicates_for': { + 'queue': 'uploads' + }, } ) menu_documents.bind_links( links=( link_document_list_recent, link_document_list, - link_document_list_deleted + link_document_list_deleted, link_duplicated_document_list ) ) menu_main.bind_links(links=(menu_documents,), position=0) menu_setup.bind_links(links=(link_document_type_setup,)) - menu_tools.bind_links(links=(link_clear_image_cache,)) + menu_tools.bind_links( + links=(link_clear_image_cache, link_duplicated_document_scan) + ) # Document type links menu_object.bind_links( @@ -384,7 +407,7 @@ class DocumentsApp(MayanAppConfig): link_document_print, link_document_trash, link_document_download, link_document_clear_transformations, link_document_clone_transformations, - link_document_update_page_count + link_document_update_page_count, ), sources=(Document,) ) menu_object.bind_links( @@ -393,7 +416,10 @@ class DocumentsApp(MayanAppConfig): ) # Document facet links - menu_facet.bind_links(links=(link_acl_list,), sources=(Document,)) + menu_facet.bind_links( + links=(link_document_duplicates_list, link_acl_list,), + sources=(Document,) + ) menu_facet.bind_links( links=(link_document_preview,), sources=(Document,), position=0 ) @@ -499,6 +525,10 @@ class DocumentsApp(MayanAppConfig): create_default_document_type, dispatch_uid='create_default_document_type' ) + post_version_upload.connect( + handler_scan_duplicates_for, + dispatch_uid='handler_scan_duplicates_for', + ) registry.register(DeletedDocument) registry.register(Document) diff --git a/mayan/apps/documents/handlers.py b/mayan/apps/documents/handlers.py index d4c82f861b..c0137f20fd 100644 --- a/mayan/apps/documents/handlers.py +++ b/mayan/apps/documents/handlers.py @@ -4,6 +4,7 @@ from django.apps import apps from .literals import DEFAULT_DOCUMENT_TYPE_LABEL from .signals import post_initial_document_type +from .tasks import task_scan_duplicates_for def create_default_document_type(sender, **kwargs): @@ -18,3 +19,9 @@ def create_default_document_type(sender, **kwargs): post_initial_document_type.send( sender=DocumentType, instance=document_type ) + + +def handler_scan_duplicates_for(sender, instance, **kwargs): + task_scan_duplicates_for.apply_async( + kwargs={'document_id': instance.document.pk} + ) diff --git a/mayan/apps/documents/links.py b/mayan/apps/documents/links.py index 351a1b04ad..1bd78996e2 100644 --- a/mayan/apps/documents/links.py +++ b/mayan/apps/documents/links.py @@ -284,3 +284,16 @@ link_document_type_setup = Link( icon='fa fa-file', permissions=(permission_document_type_view,), text=_('Document types'), view='documents:document_type_list' ) +link_duplicated_document_list = Link( + icon='fa fa-clone', text=_('Duplicated documents'), + view='documents:duplicated_document_list' +) +link_document_duplicates_list = Link( + args='resolved_object.id', icon='fa fa-clone', + permissions=(permission_document_view,), text=_('Duplicates'), + view='documents:document_duplicates_list', +) +link_duplicated_document_scan = Link( + icon='fa fa-clone', text=_('Duplicated document scan'), + view='documents:duplicated_document_scan' +) diff --git a/mayan/apps/documents/managers.py b/mayan/apps/documents/managers.py index 2ca7084578..db4d6d7c0f 100644 --- a/mayan/apps/documents/managers.py +++ b/mayan/apps/documents/managers.py @@ -5,6 +5,7 @@ import logging from django.apps import apps from django.db import models +from django.db.models import F, Max from django.utils.timezone import now from .literals import STUB_EXPIRATION_INTERVAL @@ -98,6 +99,45 @@ class DocumentTypeManager(models.Manager): return self.get(label=label) +class DuplicatedDocumentManager(models.Manager): + def scan(self): + """ + Find duplicates by iterating over all documents and then + find matching latest version checksums + """ + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + + for document in Document.objects.all(): + self.scan_for(document=document, scan_children=False) + + def scan_for(self, document, scan_children=True): + """ + Find duplicates by matching latest version checksums + """ + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + + # Get the documents whose latest version matches the checksum + # of the current document and exclude the current document + duplicates = Document.objects.annotate( + max_timestamp=Max('versions__timestamp') + ).filter( + versions__timestamp=F('max_timestamp'), + versions__checksum=document.checksum + ).exclude(pk=document.pk) + + if duplicates.exists(): + instance, created = self.get_or_create(document=document) + instance.documents.add(*duplicates) + + if scan_children: + for document in duplicates: + self.scan_for(document=document, scan_children=False) + + class PassthroughManager(models.Manager): pass diff --git a/mayan/apps/documents/migrations/0039_duplicateddocument.py b/mayan/apps/documents/migrations/0039_duplicateddocument.py new file mode 100644 index 0000000000..a7d944837f --- /dev/null +++ b/mayan/apps/documents/migrations/0039_duplicateddocument.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2017-07-06 03:30 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('documents', '0038_auto_20170705_2008'), + ] + + operations = [ + migrations.CreateModel( + name='DuplicatedDocument', + fields=[ + ( + 'id', models.AutoField( + auto_created=True, primary_key=True, serialize=False, + verbose_name='ID') + ), + ( + 'datetime_added', models.DateTimeField( + auto_now_add=True, db_index=True, + verbose_name='Added') + ), + ( + 'document', models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + related_name='duplicates', to='documents.Document', + verbose_name='Document') + ), + ( + 'documents', models.ManyToManyField( + to='documents.Document', + verbose_name='Duplicated documents' + ) + ), + ], + options={ + 'verbose_name': 'Duplicated document', + 'verbose_name_plural': 'Duplicated documents', + }, + ), + ] diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index 3b2304a561..15b2a0fbeb 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -30,8 +30,8 @@ from .events import ( ) from .literals import DEFAULT_DELETE_PERIOD, DEFAULT_DELETE_TIME_UNIT from .managers import ( - DocumentManager, DocumentTypeManager, PassthroughManager, - RecentDocumentManager, TrashCanManager + DocumentManager, DocumentTypeManager, DuplicatedDocumentManager, + PassthroughManager, RecentDocumentManager, TrashCanManager ) from .permissions import permission_document_view from .runtime import cache_storage_backend, storage_backend @@ -892,3 +892,25 @@ class RecentDocument(models.Model): ordering = ('-datetime_accessed',) verbose_name = _('Recent document') verbose_name_plural = _('Recent documents') + + +@python_2_unicode_compatible +class DuplicatedDocument(models.Model): + document = models.ForeignKey( + Document, related_name='duplicates', verbose_name=_('Document') + ) + documents = models.ManyToManyField( + Document, verbose_name=_('Duplicated documents') + ) + datetime_added = models.DateTimeField( + auto_now_add=True, db_index=True, verbose_name=_('Added') + ) + + objects = DuplicatedDocumentManager() + + def __str__(self): + return force_text(self.document) + + class Meta: + verbose_name = _('Duplicated document') + verbose_name_plural = _('Duplicated documents') diff --git a/mayan/apps/documents/tasks.py b/mayan/apps/documents/tasks.py index 873ee89df1..1d9690cb05 100644 --- a/mayan/apps/documents/tasks.py +++ b/mayan/apps/documents/tasks.py @@ -66,6 +66,29 @@ def task_generate_document_page_image(document_page_id, *args, **kwargs): return document_page.generate_image(*args, **kwargs) +@app.task(ignore_result=True) +def task_scan_duplicates_all(): + DuplicatedDocument = apps.get_model( + app_label='documents', model_name='DuplicatedDocument' + ) + + DuplicatedDocument.objects.scan() + + +@app.task(ignore_result=True) +def task_scan_duplicates_for(document_id): + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + DuplicatedDocument = apps.get_model( + app_label='documents', model_name='DuplicatedDocument' + ) + + document = Document.objects.get(pk=document_id) + + DuplicatedDocument.objects.scan_for(document=document) + + @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( diff --git a/mayan/apps/documents/tests/test_views.py b/mayan/apps/documents/tests/test_views.py index 4563612a77..e9029fab1e 100644 --- a/mayan/apps/documents/tests/test_views.py +++ b/mayan/apps/documents/tests/test_views.py @@ -735,3 +735,55 @@ class DeletedDocumentTestCase(GenericDocumentViewTestCase): response = self.get('documents:document_list_deleted') self.assertContains(response, self.document.label, status_code=200) + + +class DuplicatedDocumentsViewsTestCase(GenericDocumentViewTestCase): + def setUp(self): + super(DuplicatedDocumentsViewsTestCase, self).setUp() + self.login_user() + + def _upload_duplicate_document(self): + with open(TEST_SMALL_DOCUMENT_PATH) as file_object: + self.document_duplicate = self.document_type.new_document( + file_object=file_object, label=TEST_SMALL_DOCUMENT_FILENAME + ) + + def _request_duplicated_document_list(self): + return self.get('documents:duplicated_document_list') + + def _request_document_duplicates_list(self): + return self.get( + 'documents:document_duplicates_list', args=(self.document.pk,) + ) + + def test_duplicated_document_list_no_permissions(self): + self._upload_duplicate_document() + response = self._request_duplicated_document_list() + + self.assertNotContains( + response, text=self.document.label, status_code=200 + ) + + def test_duplicated_document_list_with_permissions(self): + self._upload_duplicate_document() + self.grant(permission=permission_document_view) + response = self._request_duplicated_document_list() + + self.assertContains( + response, text=self.document.label, status_code=200 + ) + + def test_document_duplicates_list_no_permissions(self): + self._upload_duplicate_document() + response = self._request_document_duplicates_list() + + self.assertEqual(response.status_code, 403) + + def test_document_duplicates_list_with_permissions(self): + self._upload_duplicate_document() + self.grant(permission=permission_document_view) + response = self._request_document_duplicates_list() + + self.assertContains( + response, text=self.document.label, status_code=200 + ) diff --git a/mayan/apps/documents/urls.py b/mayan/apps/documents/urls.py index c81fb12461..e5c2250b3d 100644 --- a/mayan/apps/documents/urls.py +++ b/mayan/apps/documents/urls.py @@ -16,8 +16,8 @@ from .views import ( ClearImageCacheView, DeletedDocumentDeleteView, DeletedDocumentDeleteManyView, DeletedDocumentListView, DocumentDocumentTypeEditView, DocumentDownloadFormView, - DocumentDownloadView, DocumentEditView, DocumentListView, - DocumentPageListView, DocumentPageNavigationFirst, + DocumentDownloadView, DocumentDuplicatesListView, DocumentEditView, + DocumentListView, DocumentPageListView, DocumentPageNavigationFirst, DocumentPageNavigationLast, DocumentPageNavigationNext, DocumentPageNavigationPrevious, DocumentPageRotateLeftView, DocumentPageRotateRightView, DocumentPageView, DocumentPageViewResetView, @@ -31,7 +31,8 @@ from .views import ( DocumentTypeListView, DocumentTypeEditView, DocumentUpdatePageCountView, DocumentVersionDownloadFormView, DocumentVersionDownloadView, DocumentVersionListView, DocumentVersionRevertView, DocumentView, - EmptyTrashCanView, RecentDocumentListView + DuplicatedDocumentListView, EmptyTrashCanView, RecentDocumentListView, + ScanDuplicatedDocuments ) @@ -45,7 +46,11 @@ urlpatterns = [ r'^list/deleted/$', DeletedDocumentListView.as_view(), name='document_list_deleted' ), - + url( + r'^list/duplicated/$', + DuplicatedDocumentListView.as_view(), + name='duplicated_document_list' + ), url( r'^(?P\d+)/preview/$', DocumentPreviewView.as_view(), name='document_preview' @@ -54,6 +59,10 @@ urlpatterns = [ r'^(?P\d+)/properties/$', DocumentView.as_view(), name='document_properties' ), + url( + r'^(?P\d+)/duplicates/$', DocumentDuplicatesListView.as_view(), + name='document_duplicates_list' + ), url( r'^(?P\d+)/restore/$', DocumentRestoreView.as_view(), name='document_restore' @@ -255,6 +264,14 @@ urlpatterns = [ DocumentTypeFilenameCreateView.as_view(), name='document_type_filename_create' ), + + # Tools + + url( + r'^tools/documents/duplicated/scan/$', + ScanDuplicatedDocuments.as_view(), + name='duplicated_document_scan' + ), ] api_urls = [ diff --git a/mayan/apps/documents/views/document_views.py b/mayan/apps/documents/views/document_views.py index be3bb84833..c641b1017b 100644 --- a/mayan/apps/documents/views/document_views.py +++ b/mayan/apps/documents/views/document_views.py @@ -19,6 +19,7 @@ from common.generics import ( SingleObjectDownloadView, SingleObjectEditView, SingleObjectListView ) from common.mixins import MultipleInstanceActionMixin +from common.utils import encapsulate from converter.models import Transformation from converter.permissions import ( permission_transformation_delete, permission_transformation_edit @@ -31,7 +32,9 @@ from ..forms import ( DocumentTypeSelectForm, ) from ..literals import PAGE_RANGE_RANGE, DEFAULT_ZIP_FILENAME -from ..models import DeletedDocument, Document, RecentDocument +from ..models import ( + DeletedDocument, Document, DuplicatedDocument, RecentDocument +) from ..permissions import ( permission_document_delete, permission_document_download, permission_document_print, permission_document_properties_edit, @@ -167,6 +170,36 @@ class DocumentDocumentTypeEditView(MultipleObjectFormActionView): ) +class DocumentDuplicatesListView(DocumentListView): + def dispatch(self, request, *args, **kwargs): + AccessControlList.objects.check_access( + permissions=permission_document_view, user=self.request.user, + obj=self.get_document() + ) + + return super( + DocumentDuplicatesListView, self + ).dispatch(request, *args, **kwargs) + + def get_document(self): + return get_object_or_404(Document, pk=self.kwargs['pk']) + + def get_queryset(self): + try: + return DuplicatedDocument.objects.get( + document=self.get_document() + ).documents.all() + except DuplicatedDocument.DoesNotExist: + return Document.objects.none() + + def get_extra_context(self): + return { + 'hide_links': True, + 'object': self.get_document(), + 'title': _('Duplicates for document: %s') % self.get_document(), + } + + class DocumentEditView(SingleObjectEditView): form_class = DocumentForm model = Document @@ -722,3 +755,27 @@ class DocumentPrint(FormView): return ['documents/document_print.html'] else: return [self.template_name] + + +class DuplicatedDocumentListView(DocumentListView): + extra_context = { + 'extra_columns': ( + { + 'name': _('Duplicates'), + 'attribute': encapsulate( + lambda document: DuplicatedDocument.objects.get( + document=document + ).documents.count() + ) + }, + ), + 'hide_links': True, + 'title': _('Duplicated documents') + } + + def get_document_queryset(self): + return Document.objects.filter( + pk__in=DuplicatedDocument.objects.values_list( + 'document_id', flat=True + ) + ) diff --git a/mayan/apps/documents/views/misc_views.py b/mayan/apps/documents/views/misc_views.py index 04a0facd2b..741acd5677 100644 --- a/mayan/apps/documents/views/misc_views.py +++ b/mayan/apps/documents/views/misc_views.py @@ -8,7 +8,7 @@ from django.utils.translation import ugettext_lazy as _ from common.generics import ConfirmView from ..permissions import permission_document_tools -from ..tasks import task_clear_image_cache +from ..tasks import task_clear_image_cache, task_scan_duplicates_all logger = logging.getLogger(__name__) @@ -24,3 +24,16 @@ class ClearImageCacheView(ConfirmView): messages.success( self.request, _('Document cache clearing queued successfully.') ) + + +class ScanDuplicatedDocuments(ConfirmView): + extra_context = { + 'title': _('Scan for duplicated documents?') + } + view_permission = permission_document_tools + + def view_action(self): + task_scan_duplicates_all.apply_async() + messages.success( + self.request, _('Duplicated document scan queued successfully.') + ) From ff40b1effc809543e491f277eab293a9ed0b6ed4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 6 Jul 2017 12:49:36 -0400 Subject: [PATCH 003/112] Add a "Remember me" checkbox to the username and email login forms. Add AUTHENTICATION_MAXIMUM_SESSION_LENGTH configuration setting for the maximum time an user's login session will remain valid. Defaults to 30 days. Signed-off-by: Roberto Rosario --- docs/releases/2.5.rst | 3 + mayan/apps/authentication/forms.py | 6 ++ mayan/apps/authentication/literals.py | 4 ++ mayan/apps/authentication/settings.py | 11 ++- mayan/apps/authentication/tests/test_views.py | 72 +++++++++++++++++++ mayan/apps/authentication/views.py | 19 ++++- 6 files changed, 111 insertions(+), 4 deletions(-) create mode 100644 mayan/apps/authentication/literals.py diff --git a/docs/releases/2.5.rst b/docs/releases/2.5.rst index 31e8fb9197..e348405a14 100644 --- a/docs/releases/2.5.rst +++ b/docs/releases/2.5.rst @@ -62,6 +62,9 @@ Other Changes in the tools menu. Finally a new tab in the document view has been added called "Duplicates" that will list all duplicates of the currently selected document. +- Add "Remember me" checkbox in the login form. +- Add AUTHENTICATION_MAXIMUM_SESSION_LENGTH configuration setting for the maximum + time an user's login session will remain valid. Defaults to 30 days. Removals -------- diff --git a/mayan/apps/authentication/forms.py b/mayan/apps/authentication/forms.py index 68c6db3a2f..e39f7471dc 100644 --- a/mayan/apps/authentication/forms.py +++ b/mayan/apps/authentication/forms.py @@ -4,6 +4,7 @@ import warnings from django import forms from django.contrib.auth import authenticate +from django.contrib.auth.forms import AuthenticationForm from django.utils.translation import ugettext_lazy as _ from common.widgets import EmailInput @@ -19,6 +20,7 @@ class EmailAuthenticationForm(forms.Form): password = forms.CharField( label=_('Password'), widget=forms.PasswordInput ) + remember_me = forms.BooleanField(label=_('Remember me'), required=False) error_messages = { 'invalid_login': _('Please enter a correct email and password. ' @@ -64,3 +66,7 @@ class EmailAuthenticationForm(forms.Form): def get_user(self): return self.user_cache + + +class UsernameAuthenticationForm(AuthenticationForm): + remember_me = forms.BooleanField(label=_('Remember me'), required=False) diff --git a/mayan/apps/authentication/literals.py b/mayan/apps/authentication/literals.py new file mode 100644 index 0000000000..086ebb7c20 --- /dev/null +++ b/mayan/apps/authentication/literals.py @@ -0,0 +1,4 @@ +from __future__ import unicode_literals + +DEFAULT_LOGIN_METHOD = 'username' +DEFAULT_MAXIMUM_SESSION_LENGTH = 60 * 60 * 24 * 30 # 30 days diff --git a/mayan/apps/authentication/settings.py b/mayan/apps/authentication/settings.py index 56d7ee2410..991f163f8a 100644 --- a/mayan/apps/authentication/settings.py +++ b/mayan/apps/authentication/settings.py @@ -4,11 +4,20 @@ from django.utils.translation import ugettext_lazy as _ from smart_settings import Namespace +from .literals import DEFAULT_LOGIN_METHOD, DEFAULT_MAXIMUM_SESSION_LENGTH + namespace = Namespace(name='authentication', label=_('Authentication')) setting_login_method = namespace.add_setting( - global_name='AUTHENTICATION_LOGIN_METHOD', default='username', + global_name='AUTHENTICATION_LOGIN_METHOD', default=DEFAULT_LOGIN_METHOD, help_text=_( 'Controls the mechanism used to authenticated user. Options are: ' 'username, email' ) ) +setting_maximum_session_length = namespace.add_setting( + global_name='AUTHENTICATION_MAXIMUM_SESSION_LENGTH', + default=DEFAULT_MAXIMUM_SESSION_LENGTH, help_text=_( + 'Maximum type an user clicking the "Remember me" checkbox will ' + 'remain logged in. Value is time in seconds.' + ) +) diff --git a/mayan/apps/authentication/tests/test_views.py b/mayan/apps/authentication/tests/test_views.py index 56282702f1..c24c1fe66d 100644 --- a/mayan/apps/authentication/tests/test_views.py +++ b/mayan/apps/authentication/tests/test_views.py @@ -11,6 +11,8 @@ from user_management.tests.literals import ( TEST_ADMIN_EMAIL, TEST_ADMIN_PASSWORD, TEST_ADMIN_USERNAME ) +from ..settings import setting_maximum_session_length + from .literals import TEST_EMAIL_AUTHENTICATION_BACKEND @@ -100,3 +102,73 @@ class UserLoginTestCase(BaseTestCase): response = self.client.get(reverse('documents:document_list')) # We didn't get redirected to the login URL self.assertEqual(response.status_code, 200) + + @override_settings(AUTHENTICATION_LOGIN_METHOD='username') + def test_username_remember_me(self): + response = self.client.post( + reverse(settings.LOGIN_URL), { + 'username': TEST_ADMIN_USERNAME, + 'password': TEST_ADMIN_PASSWORD, + 'remember_me': True + }, follow=True + ) + + response = self.client.get(reverse('documents:document_list')) + self.assertEqual(response.status_code, 200) + + self.assertEqual( + self.client.session.get_expiry_age(), + setting_maximum_session_length.value + ) + self.assertFalse(self.client.session.get_expire_at_browser_close()) + + @override_settings(AUTHENTICATION_LOGIN_METHOD='username') + def test_username_dont_remember_me(self): + response = self.client.post( + reverse(settings.LOGIN_URL), { + 'username': TEST_ADMIN_USERNAME, + 'password': TEST_ADMIN_PASSWORD, + 'remember_me': False + }, follow=True + ) + + response = self.client.get(reverse('documents:document_list')) + self.assertEqual(response.status_code, 200) + + self.assertTrue(self.client.session.get_expire_at_browser_close()) + + @override_settings(AUTHENTICATION_LOGIN_METHOD='email') + def test_email_remember_me(self): + with self.settings(AUTHENTICATION_BACKENDS=(TEST_EMAIL_AUTHENTICATION_BACKEND,)): + response = self.client.post( + reverse(settings.LOGIN_URL), { + 'email': TEST_ADMIN_EMAIL, + 'password': TEST_ADMIN_PASSWORD, + 'remember_me': True + }, follow=True + ) + + response = self.client.get(reverse('documents:document_list')) + self.assertEqual(response.status_code, 200) + + self.assertEqual( + self.client.session.get_expiry_age(), + setting_maximum_session_length.value + ) + self.assertFalse(self.client.session.get_expire_at_browser_close()) + + @override_settings(AUTHENTICATION_LOGIN_METHOD='email') + def test_email_dont_remember_me(self): + with self.settings(AUTHENTICATION_BACKENDS=(TEST_EMAIL_AUTHENTICATION_BACKEND,)): + response = self.client.post( + reverse(settings.LOGIN_URL), { + 'email': TEST_ADMIN_EMAIL, + 'password': TEST_ADMIN_PASSWORD, + 'remember_me': False + }, follow=True + ) + + response = self.client.get(reverse('documents:document_list')) + self.assertEqual(response.status_code, 200) + + self.assertTrue(self.client.session.get_expire_at_browser_close()) diff --git a/mayan/apps/authentication/views.py b/mayan/apps/authentication/views.py index 8d21556f7c..81c974cd5a 100644 --- a/mayan/apps/authentication/views.py +++ b/mayan/apps/authentication/views.py @@ -10,8 +10,8 @@ from django.utils.translation import ugettext_lazy as _ from stronghold.decorators import public -from .forms import EmailAuthenticationForm -from .settings import setting_login_method +from .forms import EmailAuthenticationForm, UsernameAuthenticationForm +from .settings import setting_login_method, setting_maximum_session_length @public @@ -24,10 +24,23 @@ def login_view(request): if setting_login_method.value == 'email': kwargs['authentication_form'] = EmailAuthenticationForm + else: + kwargs['authentication_form'] = UsernameAuthenticationForm if not request.user.is_authenticated(): context = {'appearance_type': 'plain'} - return login(request, extra_context=context, **kwargs) + + result = login(request, extra_context=context, **kwargs) + if request.method == 'POST': + form = kwargs['authentication_form'](request, data=request.POST) + if form.is_valid(): + if form.cleaned_data['remember_me']: + request.session.set_expiry( + setting_maximum_session_length.value + ) + else: + request.session.set_expiry(0) + return result else: return HttpResponseRedirect(reverse(settings.LOGIN_REDIRECT_URL)) From 00d0184bad02018a9b12fa81f3b4f0588a3fb6bd Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 6 Jul 2017 23:09:35 -0400 Subject: [PATCH 004/112] Add support for requesting a password reset email. Signed-off-by: Roberto Rosario --- .../templates/appearance/login.html | 6 +- .../password_reset_complete.html | 21 +++++ .../password_reset_confirm.html | 37 ++++++++ .../authentication/password_reset_done.html | 18 ++++ .../authentication/password_reset_email.html | 6 ++ .../authentication/password_reset_form.html | 37 ++++++++ .../authentication/password_reset_subject.txt | 1 + mayan/apps/authentication/urls.py | 41 ++++----- mayan/apps/authentication/views.py | 86 +++++++++++++++++-- 9 files changed, 217 insertions(+), 36 deletions(-) create mode 100644 mayan/apps/appearance/templates/authentication/password_reset_complete.html create mode 100644 mayan/apps/appearance/templates/authentication/password_reset_confirm.html create mode 100644 mayan/apps/appearance/templates/authentication/password_reset_done.html create mode 100644 mayan/apps/appearance/templates/authentication/password_reset_email.html create mode 100644 mayan/apps/appearance/templates/authentication/password_reset_form.html create mode 100644 mayan/apps/appearance/templates/authentication/password_reset_subject.txt diff --git a/mayan/apps/appearance/templates/appearance/login.html b/mayan/apps/appearance/templates/appearance/login.html index 787a4a538c..bc1254e2c6 100644 --- a/mayan/apps/appearance/templates/appearance/login.html +++ b/mayan/apps/appearance/templates/appearance/login.html @@ -49,12 +49,14 @@
{% include 'appearance/generic_form_instance.html' %} -
- +
+
diff --git a/mayan/apps/appearance/templates/authentication/password_reset_complete.html b/mayan/apps/appearance/templates/authentication/password_reset_complete.html new file mode 100644 index 0000000000..8ff6913fb8 --- /dev/null +++ b/mayan/apps/appearance/templates/authentication/password_reset_complete.html @@ -0,0 +1,21 @@ +{% extends 'appearance/base.html' %} + +{% load i18n %} +{% load static %} + +{% load common_tags %} + +{% block base_title %}{% trans 'Password reset' %}{% endblock %} + +{% block project_name %}{% endblock %} + +{% block content_plain %} +
+
+ + + +
+
+ +{% endblock content_plain %} diff --git a/mayan/apps/appearance/templates/authentication/password_reset_confirm.html b/mayan/apps/appearance/templates/authentication/password_reset_confirm.html new file mode 100644 index 0000000000..12c16ce80b --- /dev/null +++ b/mayan/apps/appearance/templates/authentication/password_reset_confirm.html @@ -0,0 +1,37 @@ +{% extends 'appearance/base.html' %} + +{% load i18n %} +{% load static %} + +{% load common_tags %} + +{% block base_title %}{% trans 'Password reset' %}{% endblock %} + +{% block project_name %}{% endblock %} + +{% block content_plain %} +
+
+
+
+

 

+
+
+

{% trans 'Password reset' %}

+
+ +
+
+
+{% endblock content_plain %} diff --git a/mayan/apps/appearance/templates/authentication/password_reset_done.html b/mayan/apps/appearance/templates/authentication/password_reset_done.html new file mode 100644 index 0000000000..887e7e0bba --- /dev/null +++ b/mayan/apps/appearance/templates/authentication/password_reset_done.html @@ -0,0 +1,18 @@ +{% extends 'appearance/base.html' %} + +{% load i18n %} +{% load static %} + +{% load common_tags %} + +{% block base_title %}{% trans 'Password reset' %}{% endblock %} + +{% block project_name %}{% endblock %} + +{% block content_plain %} +
+
+ +
+
+{% endblock content_plain %} diff --git a/mayan/apps/appearance/templates/authentication/password_reset_email.html b/mayan/apps/appearance/templates/authentication/password_reset_email.html new file mode 100644 index 0000000000..adc7d21d40 --- /dev/null +++ b/mayan/apps/appearance/templates/authentication/password_reset_email.html @@ -0,0 +1,6 @@ +Hello {{ user.full_name|default:user }}, + +We received a request to reset your {{ project_title }} password. +Click the link below to choose a new one: + +{{ project_website }}{% url 'authentication:password_reset_confirm_view' uid token %} diff --git a/mayan/apps/appearance/templates/authentication/password_reset_form.html b/mayan/apps/appearance/templates/authentication/password_reset_form.html new file mode 100644 index 0000000000..12c16ce80b --- /dev/null +++ b/mayan/apps/appearance/templates/authentication/password_reset_form.html @@ -0,0 +1,37 @@ +{% extends 'appearance/base.html' %} + +{% load i18n %} +{% load static %} + +{% load common_tags %} + +{% block base_title %}{% trans 'Password reset' %}{% endblock %} + +{% block project_name %}{% endblock %} + +{% block content_plain %} +
+
+
+
+

 

+
+
+

{% trans 'Password reset' %}

+
+ +
+
+
+{% endblock content_plain %} diff --git a/mayan/apps/appearance/templates/authentication/password_reset_subject.txt b/mayan/apps/appearance/templates/authentication/password_reset_subject.txt new file mode 100644 index 0000000000..e52a0499fb --- /dev/null +++ b/mayan/apps/appearance/templates/authentication/password_reset_subject.txt @@ -0,0 +1 @@ +{{ project_title }} password reset link diff --git a/mayan/apps/authentication/urls.py b/mayan/apps/authentication/urls.py index a5acaa9067..93443bea2d 100644 --- a/mayan/apps/authentication/urls.py +++ b/mayan/apps/authentication/urls.py @@ -2,12 +2,13 @@ from __future__ import unicode_literals from django.conf import settings from django.conf.urls import url -from django.contrib.auth.views import ( - logout, password_reset, password_reset_confirm, password_reset_complete, - password_reset_done -) +from django.contrib.auth.views import logout -from .views import login_view, password_change_done, password_change_view +from .views import ( + login_view, password_change_done, password_change_view, + password_reset_complete_view, password_reset_confirm_view, + password_reset_done_view, password_reset_view +) urlpatterns = [ @@ -20,35 +21,23 @@ urlpatterns = [ r'^password/change/$', password_change_view, name='password_change_view' ), -] - -urlpatterns += [ url( r'^logout/$', logout, {'next_page': settings.LOGIN_REDIRECT_URL}, name='logout_view' ), url( - r'^password/reset/$', password_reset, { - 'email_template_name': 'appearance/password_reset_email.html', - 'template_name': 'appearance/password_reset_form.html', - 'post_reset_redirect': '/password/reset/done' - }, name='password_reset_view' + r'^password/reset/$', password_reset_view, name='password_reset_view' ), url( - r'^password/reset/confirm/(?P[0-9A-Za-z]+)-(?P.+)/$', - password_reset_confirm, { - 'template_name': 'appearance/password_reset_confirm.html', - 'post_reset_redirect': '/password/reset/complete/' - }, name='password_reset_confirm_view' + r'^password/reset/confirm/(?P[0-9A-Za-z_\-]+)/(?P[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$', + password_reset_confirm_view, name='password_reset_confirm_view' ), url( - r'^password/reset/complete/$', - password_reset_complete, { - 'template_name': 'appearance/password_reset_complete.html' - }, name='password_reset_complete_view'), + r'^password/reset/complete/$', password_reset_complete_view, + name='password_reset_complete_view' + ), url( - r'^password/reset/done/$', - password_reset_done, { - 'template_name': 'appearance/password_reset_done.html' - }, name='password_reset_done_view'), + r'^password/reset/done/$', password_reset_done_view, + name='password_reset_done_view' + ), ] diff --git a/mayan/apps/authentication/views.py b/mayan/apps/authentication/views.py index 81c974cd5a..50d3b45f4f 100644 --- a/mayan/apps/authentication/views.py +++ b/mayan/apps/authentication/views.py @@ -2,12 +2,14 @@ from __future__ import absolute_import, unicode_literals from django.conf import settings from django.contrib import messages -from django.contrib.auth.views import login, password_change +from django.contrib.auth.views import ( + login, password_change, password_reset, password_reset_confirm, + password_reset_complete, password_reset_done +) from django.core.urlresolvers import reverse 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, UsernameAuthenticationForm @@ -28,9 +30,9 @@ def login_view(request): kwargs['authentication_form'] = UsernameAuthenticationForm if not request.user.is_authenticated(): - context = {'appearance_type': 'plain'} + extra_context = {'appearance_type': 'plain'} - result = login(request, extra_context=context, **kwargs) + result = login(request, extra_context=extra_context, **kwargs) if request.method == 'POST': form = kwargs['authentication_form'](request, data=request.POST) if form.is_valid(): @@ -49,11 +51,10 @@ def password_change_view(request): """ Password change wrapper for better control """ - context = {'title': _('Current user password change')} + extra_context = {'title': _('Current user password change')} return password_change( - request, - extra_context=context, + request, extra_context=extra_context, template_name='appearance/generic_form.html', post_change_redirect=reverse('authentication:password_change_done'), ) @@ -63,8 +64,77 @@ def password_change_done(request): """ View called when the new user password has been accepted """ - messages.success( request, _('Your password has been successfully changed.') ) return redirect('common:current_user_details') + + +@public +def password_reset_complete_view(request): + extra_context = { + 'appearance_type': 'plain' + } + + kwargs = { + 'template_name': 'authentication/password_reset_complete.html' + } + + return password_reset_complete( + request, extra_context=extra_context, **kwargs + ) + + +@public +def password_reset_confirm_view(request, uidb64=None, token=None): + extra_context = { + 'appearance_type': 'plain' + } + + kwargs = { + 'template_name': 'authentication/password_reset_confirm.html', + 'post_reset_redirect': reverse('authentication:password_reset_complete_view'), + 'uidb64': uidb64, + 'token': token + } + + return password_reset_confirm( + request, extra_context=extra_context, **kwargs + ) + + +@public +def password_reset_done_view(request): + extra_context = { + 'appearance_type': 'plain' + } + + kwargs = { + 'template_name': 'authentication/password_reset_done.html' + } + + return password_reset_done(request, extra_context=extra_context, **kwargs) + + +@public +def password_reset_view(request): + extra_context = { + 'appearance_type': 'plain' + } + + kwargs = { + 'email_template_name': 'authentication/password_reset_email.html', + 'extra_email_context': { + 'project_title': settings.PROJECT_TITLE, + 'project_website': settings.PROJECT_WEBSITE, + 'project_copyright': settings.PROJECT_COPYRIGHT, + 'project_license': settings.PROJECT_LICENSE, + }, + 'subject_template_name': 'authentication/password_reset_subject.txt', + 'template_name': 'authentication/password_reset_form.html', + 'post_reset_redirect': reverse( + 'authentication:password_reset_done_view' + ) + } + + return password_reset(request, extra_context=extra_context, **kwargs) From ad96863cd93df6fd46f9f5acf6ecc274515ca2b3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 6 Jul 2017 23:11:05 -0400 Subject: [PATCH 005/112] Move the login template under the authentication namespace. Signed-off-by: Roberto Rosario --- .../templates/{appearance => authentication}/login.html | 0 mayan/apps/authentication/views.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename mayan/apps/appearance/templates/{appearance => authentication}/login.html (100%) diff --git a/mayan/apps/appearance/templates/appearance/login.html b/mayan/apps/appearance/templates/authentication/login.html similarity index 100% rename from mayan/apps/appearance/templates/appearance/login.html rename to mayan/apps/appearance/templates/authentication/login.html diff --git a/mayan/apps/authentication/views.py b/mayan/apps/authentication/views.py index 50d3b45f4f..fab1982506 100644 --- a/mayan/apps/authentication/views.py +++ b/mayan/apps/authentication/views.py @@ -22,7 +22,7 @@ def login_view(request): Control how the use is to be authenticated, options are 'email' and 'username' """ - kwargs = {'template_name': 'appearance/login.html'} + kwargs = {'template_name': 'authentication/login.html'} if setting_login_method.value == 'email': kwargs['authentication_form'] = EmailAuthenticationForm From fd67219af7a9e1acdc7707e14f97133195fb33ec Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 6 Jul 2017 23:31:27 -0400 Subject: [PATCH 006/112] Add password reset unit test. Signed-off-by: Roberto Rosario --- mayan/apps/authentication/tests/test_views.py | 41 +++++++++++++++- mayan/apps/authentication/views.py | 47 ++++++++----------- 2 files changed, 59 insertions(+), 29 deletions(-) diff --git a/mayan/apps/authentication/tests/test_views.py b/mayan/apps/authentication/tests/test_views.py index c24c1fe66d..b3c81c3242 100644 --- a/mayan/apps/authentication/tests/test_views.py +++ b/mayan/apps/authentication/tests/test_views.py @@ -2,13 +2,15 @@ from __future__ import absolute_import, unicode_literals from django.conf import settings from django.contrib.auth import get_user_model +from django.core import mail from django.core.urlresolvers import reverse from django.test import override_settings from common.tests import BaseTestCase from smart_settings.classes import Namespace from user_management.tests.literals import ( - TEST_ADMIN_EMAIL, TEST_ADMIN_PASSWORD, TEST_ADMIN_USERNAME + TEST_ADMIN_EMAIL, TEST_ADMIN_PASSWORD, TEST_USER_PASSWORD_EDITED, + TEST_ADMIN_USERNAME ) from ..settings import setting_maximum_session_length @@ -172,3 +174,40 @@ class UserLoginTestCase(BaseTestCase): self.assertEqual(response.status_code, 200) self.assertTrue(self.client.session.get_expire_at_browser_close()) + + @override_settings(AUTHENTICATION_LOGIN_METHOD='username') + def test_password_reset(self): + response = self.client.post( + reverse('authentication:password_reset_view'), { + 'email': TEST_ADMIN_EMAIL, + }, follow=True + ) + + self.assertContains( + response, text='Password reset email sent!', status_code=200 + ) + self.assertEqual(len(mail.outbox), 1) + + uid_token = mail.outbox[0].body.replace('\n', '').split('/') + + response = self.client.post( + reverse('authentication:password_reset_confirm_view', args=uid_token[-3:-1]), { + 'new_password1': TEST_USER_PASSWORD_EDITED, + 'new_password2': TEST_USER_PASSWORD_EDITED, + }, follow=True + ) + + self.assertContains( + response, text='Password reset complete!', status_code=200 + ) + + response = self.client.post( + reverse(settings.LOGIN_URL), { + 'username': TEST_ADMIN_USERNAME, + 'password': TEST_USER_PASSWORD_EDITED, + 'remember_me': True + }, follow=True + ) + + response = self.client.get(reverse('documents:document_list')) + self.assertEqual(response.status_code, 200) diff --git a/mayan/apps/authentication/views.py b/mayan/apps/authentication/views.py index fab1982506..cdd3fdfd40 100644 --- a/mayan/apps/authentication/views.py +++ b/mayan/apps/authentication/views.py @@ -76,12 +76,9 @@ def password_reset_complete_view(request): 'appearance_type': 'plain' } - kwargs = { - 'template_name': 'authentication/password_reset_complete.html' - } - return password_reset_complete( - request, extra_context=extra_context, **kwargs + request, extra_context=extra_context, + template_name= 'authentication/password_reset_complete.html' ) @@ -91,15 +88,12 @@ def password_reset_confirm_view(request, uidb64=None, token=None): 'appearance_type': 'plain' } - kwargs = { - 'template_name': 'authentication/password_reset_confirm.html', - 'post_reset_redirect': reverse('authentication:password_reset_complete_view'), - 'uidb64': uidb64, - 'token': token - } - return password_reset_confirm( - request, extra_context=extra_context, **kwargs + request, extra_context=extra_context, + template_name='authentication/password_reset_confirm.html', + post_reset_redirect=reverse( + 'authentication:password_reset_complete_view' + ), uidb64=uidb64, token=token ) @@ -109,11 +103,10 @@ def password_reset_done_view(request): 'appearance_type': 'plain' } - kwargs = { - 'template_name': 'authentication/password_reset_done.html' - } - - return password_reset_done(request, extra_context=extra_context, **kwargs) + return password_reset_done( + request, extra_context=extra_context, + template_name='authentication/password_reset_done.html' + ) @public @@ -122,19 +115,17 @@ def password_reset_view(request): 'appearance_type': 'plain' } - kwargs = { - 'email_template_name': 'authentication/password_reset_email.html', - 'extra_email_context': { + return password_reset( + request, extra_context=extra_context, + email_template_name='authentication/password_reset_email.html', + extra_email_context={ 'project_title': settings.PROJECT_TITLE, 'project_website': settings.PROJECT_WEBSITE, 'project_copyright': settings.PROJECT_COPYRIGHT, 'project_license': settings.PROJECT_LICENSE, - }, - 'subject_template_name': 'authentication/password_reset_subject.txt', - 'template_name': 'authentication/password_reset_form.html', - 'post_reset_redirect': reverse( + }, subject_template_name='authentication/password_reset_subject.txt', + template_name='authentication/password_reset_form.html', + post_reset_redirect=reverse( 'authentication:password_reset_done_view' ) - } - - return password_reset(request, extra_context=extra_context, **kwargs) + ) From c6de76822e6dcd2ba6db213c494a950d7f7d0688 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Jul 2017 02:16:23 -0400 Subject: [PATCH 007/112] Add two new setting options to control the caching of page images. DOCUMENTS_DISABLE_BASE_IMAGE_CACHE and DOCUMENTS_DISABLE_TRANSFORMED_IMAGE_CACHE. Signed-off-by: Roberto Rosario --- docs/releases/2.5.rst | 12 ++++++++++++ mayan/apps/documents/models.py | 8 ++++++-- mayan/apps/documents/settings.py | 15 +++++++++++++++ 3 files changed, 33 insertions(+), 2 deletions(-) diff --git a/docs/releases/2.5.rst b/docs/releases/2.5.rst index e348405a14..bed31b1810 100644 --- a/docs/releases/2.5.rst +++ b/docs/releases/2.5.rst @@ -65,6 +65,18 @@ Other Changes - Add "Remember me" checkbox in the login form. - Add AUTHENTICATION_MAXIMUM_SESSION_LENGTH configuration setting for the maximum time an user's login session will remain valid. Defaults to 30 days. +- Ability to disable the document page image caching. This feature is controlled + by two new settings: DOCUMENTS_DISABLE_TRANSFORMED_IMAGE_CACHE and + DOCUMENTS_DISABLE_BASE_IMAGE_CACHE. DOCUMENTS_DISABLE_BASE_IMAGE_CACHE + disables the first layer of caching, the generation of a master image file + for each document page. This means that subsequent request for a page's + image will trigger the conversion of the document from its original + uploaded file. The second option, DOCUMENTS_DISABLE_TRANSFORMED_IMAGE_CACHE, + disables just the caching of the transformed (rotated, resized, zoomed) + images of document pages. The settings can be used together or separately + depending on how much disk space saving is desired. These settings give control + over the trade-off between disk space savings and higher CPU utilization. + Removals -------- diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index 15b2a0fbeb..32c2ee4c5c 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -36,6 +36,7 @@ from .managers import ( from .permissions import permission_document_view from .runtime import cache_storage_backend, storage_backend from .settings import ( + setting_disable_base_image_cache, setting_disable_transformed_image_cache, setting_display_size, setting_language, setting_zoom_max_level, setting_zoom_min_level ) @@ -768,11 +769,14 @@ class DocumentPage(models.Model): # Check is transformed image is available logger.debug('transformations cache filename: %s', cache_filename) - if cache_storage_backend.exists(cache_filename): + if not setting_disable_transformed_image_cache.value and cache_storage_backend.exists(cache_filename): logger.debug( 'transformations cache file "%s" found', cache_filename ) else: + logger.debug( + 'transformations cache file "%s" not found', cache_filename + ) image = self.get_image(transformations=transformation_list) with cache_storage_backend.open(cache_filename, 'wb+') as file_object: file_object.write(image.getvalue()) @@ -785,7 +789,7 @@ class DocumentPage(models.Model): cache_filename = self.cache_filename logger.debug('Page cache filename: %s', cache_filename) - if cache_storage_backend.exists(cache_filename): + if not setting_disable_base_image_cache.value and cache_storage_backend.exists(cache_filename): logger.debug('Page cache file "%s" found', cache_filename) converter = converter_class( file_object=cache_storage_backend.open(cache_filename) diff --git a/mayan/apps/documents/settings.py b/mayan/apps/documents/settings.py index 3b818cc4dc..b298254dbf 100644 --- a/mayan/apps/documents/settings.py +++ b/mayan/apps/documents/settings.py @@ -73,3 +73,18 @@ setting_language_choices = namespace.add_setting( global_name='DOCUMENTS_LANGUAGE_CHOICES', default=LANGUAGE_CHOICES, help_text=_('List of supported document languages.') ) +setting_disable_base_image_cache = namespace.add_setting( + global_name='DOCUMENTS_DISABLE_BASE_IMAGE_CACHE', default=False, + help_text=_( + 'Disables the first cache tier which stores high resolution, ' + 'non transformed versions of documents\'s pages.' + ) +) +setting_disable_transformed_image_cache = namespace.add_setting( + global_name='DOCUMENTS_DISABLE_TRANSFORMED_IMAGE_CACHE', default=False, + help_text=_( + 'Disables the second cache tier which stores medium to low ' + 'resolution, transformed (rotated, zoomed, etc) versions ' + 'of documents\' pages.' + ) +) From 829dcbf144c2412f50c221a0c501e681683b11b3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Jul 2017 02:42:20 -0400 Subject: [PATCH 008/112] The trashed document deletion action is now a background task. Also, the trash can emptying view calls the trash can document celery task for each document. Signed-off-by: Roberto Rosario --- docs/releases/2.5.rst | 4 +++- mayan/apps/documents/apps.py | 6 ++++++ mayan/apps/documents/queues.py | 7 +++++++ mayan/apps/documents/tasks.py | 12 ++++++++++++ mayan/apps/documents/views/document_views.py | 10 +++++++--- 5 files changed, 35 insertions(+), 4 deletions(-) diff --git a/docs/releases/2.5.rst b/docs/releases/2.5.rst index bed31b1810..a408cd9cf9 100644 --- a/docs/releases/2.5.rst +++ b/docs/releases/2.5.rst @@ -76,7 +76,9 @@ Other Changes images of document pages. The settings can be used together or separately depending on how much disk space saving is desired. These settings give control over the trade-off between disk space savings and higher CPU utilization. - +- The trashed document deletion action is now a background task. This + feature results is much faster trashed document deletion and trash + can emptying. Removals -------- diff --git a/mayan/apps/documents/apps.py b/mayan/apps/documents/apps.py index 22f8f36e13..179eea52e8 100644 --- a/mayan/apps/documents/apps.py +++ b/mayan/apps/documents/apps.py @@ -317,6 +317,9 @@ class DocumentsApp(MayanAppConfig): routing_key='documents_periodic', delivery_mode=1 ), Queue('uploads', Exchange('uploads'), routing_key='uploads'), + Queue( + 'documents', Exchange('documents'), routing_key='documents' + ), ) ) @@ -349,6 +352,9 @@ class DocumentsApp(MayanAppConfig): 'documents.tasks.task_scan_duplicates_for': { 'queue': 'uploads' }, + 'documents.tasks.task_delete_document': { + 'queue': 'documents' + }, } ) diff --git a/mayan/apps/documents/queues.py b/mayan/apps/documents/queues.py index 48ba1e4181..a544b20ab0 100644 --- a/mayan/apps/documents/queues.py +++ b/mayan/apps/documents/queues.py @@ -14,6 +14,9 @@ queue_documents_periodic = CeleryQueue( queue_uploads = CeleryQueue( name='uploads', label=_('Uploads') ) +queue_uploads = CeleryQueue( + name='documents', label=_('Documents') +) queue_documents_periodic.add_task_type( name='documents.tasks.task_check_delete_periods', @@ -46,3 +49,7 @@ queue_uploads.add_task_type( name='documents.tasks.task_upload_new_version', label=_('Upload new document version') ) +queue_uploads.add_task_type( + name='documents.tasks.task_delete_document', + label=_('Delete a document') +) diff --git a/mayan/apps/documents/tasks.py b/mayan/apps/documents/tasks.py index 1d9690cb05..cd4c0a17c5 100644 --- a/mayan/apps/documents/tasks.py +++ b/mayan/apps/documents/tasks.py @@ -44,6 +44,18 @@ def task_clear_image_cache(): logger.info('Finished document cache invalidation') +@app.task(ignore_result=True) +def task_delete_document(deleted_document_id): + DeletedDocument = apps.get_model( + app_label='documents', model_name='DeletedDocument' + ) + + logger.debug('Executing') + deleted_document = DeletedDocument.objects.get(pk=deleted_document_id) + deleted_document.delete() + logger.debug('Finshed') + + @app.task(ignore_result=True) def task_delete_stubs(): Document = apps.get_model( diff --git a/mayan/apps/documents/views/document_views.py b/mayan/apps/documents/views/document_views.py index c641b1017b..b7cd65315d 100644 --- a/mayan/apps/documents/views/document_views.py +++ b/mayan/apps/documents/views/document_views.py @@ -43,7 +43,7 @@ from ..permissions import ( permission_empty_trash ) from ..settings import setting_print_size -from ..tasks import task_update_page_count +from ..tasks import task_delete_document, task_update_page_count from ..utils import parse_range logger = logging.getLogger(__name__) @@ -95,7 +95,9 @@ class DeletedDocumentDeleteView(ConfirmView): obj=source_document ) - instance.delete() + task_delete_document.apply_async( + kwargs={'deleted_document_id': instance.pk} + ) def view_action(self): instance = get_object_or_404(DeletedDocument, pk=self.kwargs['pk']) @@ -364,7 +366,9 @@ class EmptyTrashCanView(ConfirmView): def view_action(self): for deleted_document in DeletedDocument.objects.all(): - deleted_document.delete() + task_delete_document.apply_async( + kwargs={'deleted_document_id': deleted_document.pk} + ) messages.success(self.request, _('Trash emptied successfully')) From 91ba06c50147d112e92300360137c262a68b84a1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Jul 2017 04:20:31 -0400 Subject: [PATCH 009/112] Remove animated spinners to lower browser memory usage and increase responsiveness. Render a document page place holder while the real document page loads. This change avoids "jumping" effect when loading many thumbnails. Increase lazy load thresholds. More thumbnails and document pages will be loaded and visible by default when a view loads. Signed-off-by: Roberto Rosario --- docs/releases/2.5.rst | 6 ++ .../appearance/static/appearance/js/base.js | 87 ++++++++++--------- mayan/apps/common/utils.py | 7 ++ mayan/apps/documents/widgets.py | 26 +++++- 4 files changed, 82 insertions(+), 44 deletions(-) diff --git a/docs/releases/2.5.rst b/docs/releases/2.5.rst index a408cd9cf9..1ae949b1a9 100644 --- a/docs/releases/2.5.rst +++ b/docs/releases/2.5.rst @@ -79,6 +79,12 @@ Other Changes - The trashed document deletion action is now a background task. This feature results is much faster trashed document deletion and trash can emptying. +- Remove animated spinners to lower browser memory usage and increase + responsiveness. +- Render a document page place holder while the real document page + loads. This change avoids "jumping" effect when loading many thumbnails. +- Increase lazy load thresholds. More thumbnails and document pages + will be loaded and visible by default when a view loads. Removals -------- diff --git a/mayan/apps/appearance/static/appearance/js/base.js b/mayan/apps/appearance/static/appearance/js/base.js index 52e5079c21..83ac822c96 100644 --- a/mayan/apps/appearance/static/appearance/js/base.js +++ b/mayan/apps/appearance/static/appearance/js/base.js @@ -58,10 +58,12 @@ App.prototype.setupSelect2 = function () { } App.prototype.setupFullHeightResizing = function () { + var self = this; + this.resizeFullHeight(); this.window.resize(function() { - app.resizeFullHeight(); + self.resizeFullHeight(); }); } @@ -69,45 +71,6 @@ App.prototype.resizeFullHeight = function () { $('.full-height').height(this.window.height() - $('.full-height').data('height-difference')); } -App.prototype.doMayanImages = function () { - $('a.fancybox').fancybox({ - beforeShow : function(){ - this.title = $(this.element).data('caption'); - }, - openEffect : 'elastic', - closeEffect : 'elastic', - prevEffect : 'none', - nextEffect : 'none', - titleShow : true, - type : 'image', - autoResize : true, - }); - - $('img.lazy-load').lazyload({ - appear: function(elements_left, settings) { - new MayanImage({element: $(this)}); - }, - }); - - $('img.lazy-load-carousel').lazyload({ - appear: function(elements_left, settings) { - new MayanImage({element: $(this)}); - }, - container: $('#carousel-container'), - threshold: 400 - }); - - $('.lazy-load').on('load', function() { - $(this).siblings('.spinner').remove(); - $(this).removeClass('lazy-load'); - }); - - $('.lazy-load-carousel').on('load', function() { - $(this).siblings('.spinner').remove(); - $(this).removeClass('lazy-load-carousel'); - }); -} - App.prototype.doToastrMessages = function () { toastr.options = { 'closeButton': true, @@ -165,11 +128,53 @@ App.prototype.doToastrMessages = function () { }); } +/* MayanImage class */ + var MayanImage = function (options) { this.element = options.element; this.load(); } +MayanImage.intialize = function () { + $('a.fancybox').fancybox({ + beforeShow : function(){ + this.title = $(this.element).data('caption'); + }, + openEffect : 'elastic', + closeEffect : 'elastic', + prevEffect : 'none', + nextEffect : 'none', + titleShow : true, + type : 'image', + autoResize : true, + }); + + $('img.lazy-load').lazyload({ + appear: function(elements_left, settings) { + new MayanImage({element: $(this)}); + }, + threshold: 400 + }); + + $('img.lazy-load-carousel').lazyload({ + appear: function(elements_left, settings) { + new MayanImage({element: $(this)}); + }, + container: $('#carousel-container'), + threshold: 2000 + }); + + $('.lazy-load').on('load', function() { + $(this).siblings('.spinner-container').remove(); + $(this).removeClass('lazy-load pull-left'); + }); + + $('.lazy-load-carousel').on('load', function() { + $(this).siblings('.spinner-container').remove(); + $(this).removeClass('lazy-load-carousel pull-left'); + }); +} + MayanImage.prototype.onImageError = function () { this.element.parent().parent().html(''); // Remove border to indicate non interactive image @@ -199,7 +204,7 @@ jQuery(document).ready(function() { app.setupFullHeightResizing(); - app.doMayanImages(); + MayanImage.intialize(); app.doToastrMessages(); diff --git a/mayan/apps/common/utils.py b/mayan/apps/common/utils.py index e24404368c..bcea9cb1dd 100644 --- a/mayan/apps/common/utils.py +++ b/mayan/apps/common/utils.py @@ -96,6 +96,13 @@ def get_descriptor(file_input, read=True): return file_input +def index_or_default(instance, index, default): + try: + return instance[index] + except IndexError: + return default + + def TemporaryFile(*args, **kwargs): kwargs.update({'dir': setting_temporary_directory.value}) return tempfile.TemporaryFile(*args, **kwargs) diff --git a/mayan/apps/documents/widgets.py b/mayan/apps/documents/widgets.py index 90e1695563..f4382dd695 100644 --- a/mayan/apps/documents/widgets.py +++ b/mayan/apps/documents/widgets.py @@ -8,6 +8,8 @@ from django.utils.http import urlencode from django.utils.safestring import mark_safe from django.utils.translation import ugettext, ugettext_lazy as _ +from common.utils import index_or_default + from .settings import ( setting_display_size, setting_preview_size, setting_thumbnail_size ) @@ -99,6 +101,8 @@ class InstanceImageWidget(object): preview_query_dict = {} image_class = 'lazy-load' title = None + width = None + height = None # Click view def get_click_view_kwargs(self, instance): @@ -221,10 +225,16 @@ class InstanceImageWidget(object): ) result.append( - ' ' - '' + '' + '' + '' + '' + '
' + ' '.format( + '/> '.format( + width=self.width or '32', height=self.height or '32', image_class=self.image_class, preview_full_url=self.get_preview_view_url(instance=instance), alt_text=self.alt_text @@ -253,6 +263,11 @@ class BaseDocumentThumbnailWidget(InstanceImageWidget): preview_view_query_dict = { 'size': setting_thumbnail_size.value } + width = setting_thumbnail_size.value.split('x')[0] + height = index_or_default( + instance=setting_thumbnail_size.value.split('x'), + index=1, default=setting_thumbnail_size.value.split('x')[0] + ) def get_destination_url(self, instance): return instance.get_absolute_url() @@ -265,6 +280,11 @@ class CarouselDocumentPageThumbnailWidget(BaseDocumentThumbnailWidget): preview_view_query_dict = { 'size': setting_display_size.value } + width = setting_preview_size.value.split('x')[0] + height = index_or_default( + instance=setting_preview_size.value.split('x'), + index=1, default=setting_preview_size.value.split('x')[0] + ) class DocumentThumbnailWidget(BaseDocumentThumbnailWidget): From 0177a45436a3b991de9a946adb02d5bd9bbbda61 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Jul 2017 04:50:05 -0400 Subject: [PATCH 010/112] Do hard word break on form titles to avoid horizontal scroll on small displays. Signed-off-by: Roberto Rosario --- .../appearance/calculate_form_title.html | 21 +++++++++++-------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/mayan/apps/appearance/templates/appearance/calculate_form_title.html b/mayan/apps/appearance/templates/appearance/calculate_form_title.html index ac3bf0dded..8af5e01bb6 100644 --- a/mayan/apps/appearance/templates/appearance/calculate_form_title.html +++ b/mayan/apps/appearance/templates/appearance/calculate_form_title.html @@ -4,16 +4,19 @@ {% smart_setting 'APPEARANCE_MAXIMUM_TITLE_LENGTH' as maximum_title_length %} -{% if title %} - {{ title|truncatechars:maximum_title_length }} -{% else %} - {% if read_only %} - {% blocktrans %}Details for: {{ object }}{% endblocktrans %} +{# Avoid horizontal scroll on small displays #} + + {% if title %} + {{ title|truncatechars:maximum_title_length }} {% else %} - {% if object %} - {% blocktrans with object as object %}Edit: {{ object }}{% endblocktrans %} + {% if read_only %} + {% blocktrans %}Details for: {{ object }}{% endblocktrans %} {% else %} - {% trans 'Create' %} + {% if object %} + {% blocktrans with object as object %}Edit: {{ object }}{% endblocktrans %} + {% else %} + {% trans 'Create' %} + {% endif %} {% endif %} {% endif %} -{% endif %} + From 998af4931f98f0019f8bc856efed80c7171e340d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Jul 2017 05:09:44 -0400 Subject: [PATCH 011/112] Improve usability and appearance on medium and small devices like tablets and smartphones. Signed-off-by: Roberto Rosario --- docs/releases/2.5.rst | 2 + .../appearance/static/appearance/css/base.css | 52 +++++++++++++++++++ .../appearance/templates/appearance/base.html | 4 +- 3 files changed, 56 insertions(+), 2 deletions(-) diff --git a/docs/releases/2.5.rst b/docs/releases/2.5.rst index 1ae949b1a9..73c2754894 100644 --- a/docs/releases/2.5.rst +++ b/docs/releases/2.5.rst @@ -85,6 +85,8 @@ Other Changes loads. This change avoids "jumping" effect when loading many thumbnails. - Increase lazy load thresholds. More thumbnails and document pages will be loaded and visible by default when a view loads. +- Improve usability and appearance on medium and small devices like + tablets and smartphones. Removals -------- diff --git a/mayan/apps/appearance/static/appearance/css/base.css b/mayan/apps/appearance/static/appearance/css/base.css index cf531c2f35..858341bad3 100644 --- a/mayan/apps/appearance/static/appearance/css/base.css +++ b/mayan/apps/appearance/static/appearance/css/base.css @@ -180,3 +180,55 @@ a i { padding-left: 10px; padding-right: 20px; } + + +/* Make facet list group horizontal on small or smaller */ +@media (max-width: 767px) { + ul.list-group:after { + clear: both; + display: block; + content: ""; + } + + .list-group-item { + float: left; + } +} + +/* Collapse navigation on medium or smaller */ +@media (max-width: 991px) { + .navbar-header { + float: none; + } + .navbar-left,.navbar-right { + float: none !important; + } + .navbar-toggle { + display: block; + } + .navbar-collapse { + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); + } + .navbar-fixed-top { + top: 0; + border-width: 0 0 1px; + } + .navbar-collapse.collapse { + display: none!important; + } + .navbar-nav { + float: none!important; + margin-top: 7.5px; + } + .navbar-nav>li { + float: none; + } + .navbar-nav>li>a { + padding-top: 10px; + padding-bottom: 10px; + } + .collapse.in{ + display:block !important; + } +} diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index 2c20976365..fa2c844964 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -96,7 +96,7 @@
{% if links or form_navigation_links %} -
+
{% else %}
{% endif %} @@ -105,7 +105,7 @@
{% if links or form_navigation_links %} -
+
{% endif %} {% if links %} From e4c88e575f80c4c3a370f94d837ab493c6309cf3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Jul 2017 13:00:22 -0400 Subject: [PATCH 012/112] Improve document detection by workflow state including initial state. Signed-off-by: Roberto Rosario --- docs/releases/2.5.rst | 1 + mayan/apps/document_states/api_views.py | 8 +- mayan/apps/document_states/apps.py | 2 +- mayan/apps/document_states/forms.py | 13 +++- mayan/apps/document_states/links.py | 3 +- .../migrations/0003_auto_20170325_0447.py | 16 +++- mayan/apps/document_states/models.py | 36 +++++++-- mayan/apps/document_states/views.py | 75 ++++++++----------- 8 files changed, 97 insertions(+), 57 deletions(-) diff --git a/docs/releases/2.5.rst b/docs/releases/2.5.rst index 73c2754894..0a4d590a15 100644 --- a/docs/releases/2.5.rst +++ b/docs/releases/2.5.rst @@ -87,6 +87,7 @@ Other Changes will be loaded and visible by default when a view loads. - Improve usability and appearance on medium and small devices like tablets and smartphones. +- Improve document detection by initial workflow state. Removals -------- diff --git a/mayan/apps/document_states/api_views.py b/mayan/apps/document_states/api_views.py index 62de61d99e..d3f76526ce 100644 --- a/mayan/apps/document_states/api_views.py +++ b/mayan/apps/document_states/api_views.py @@ -31,7 +31,9 @@ class APIDocumentTypeWorkflowListView(generics.ListAPIView): """ Returns a list of all the document type workflows. """ - return super(APIDocumentTypeWorkflowListView, self).get(*args, **kwargs) + return super( + APIDocumentTypeWorkflowListView, self + ).get(*args, **kwargs) def get_document_type(self): document_type = get_object_or_404(DocumentType, pk=self.kwargs['pk']) @@ -600,4 +602,6 @@ class APIWorkflowInstanceLogEntryListView(generics.ListCreateAPIView): Transition a document workflow by creating a new document workflow log entry. """ - return super(APIWorkflowInstanceLogEntryListView, self).post(*args, **kwargs) + return super( + APIWorkflowInstanceLogEntryListView, self + ).post(*args, **kwargs) diff --git a/mayan/apps/document_states/apps.py b/mayan/apps/document_states/apps.py index fd8c7d36a6..cb02e5c647 100644 --- a/mayan/apps/document_states/apps.py +++ b/mayan/apps/document_states/apps.py @@ -1,7 +1,7 @@ from __future__ import unicode_literals from django.apps import apps -from django.db.models.signals import pre_delete, post_delete, post_save +from django.db.models.signals import post_save from django.utils.translation import ugettext_lazy as _ from kombu import Exchange, Queue diff --git a/mayan/apps/document_states/forms.py b/mayan/apps/document_states/forms.py index ca8612f170..30d6fb3c94 100644 --- a/mayan/apps/document_states/forms.py +++ b/mayan/apps/document_states/forms.py @@ -22,8 +22,17 @@ class WorkflowTransitionForm(forms.ModelForm): def __init__(self, *args, **kwargs): workflow = kwargs.pop('workflow') super(WorkflowTransitionForm, self).__init__(*args, **kwargs) - self.fields['origin_state'].queryset = self.fields['origin_state'].queryset.filter(workflow=workflow) - self.fields['destination_state'].queryset = self.fields['destination_state'].queryset.filter(workflow=workflow) + self.fields[ + 'origin_state' + ].queryset = self.fields[ + 'origin_state' + ].queryset.filter(workflow=workflow) + + self.fields[ + 'destination_state' + ].queryset = self.fields[ + 'destination_state' + ].queryset.filter(workflow=workflow) class Meta: fields = ('label', 'origin_state', 'destination_state') diff --git a/mayan/apps/document_states/links.py b/mayan/apps/document_states/links.py index f2d41f7e58..068af016a6 100644 --- a/mayan/apps/document_states/links.py +++ b/mayan/apps/document_states/links.py @@ -96,7 +96,8 @@ link_workflow_list = Link( ) link_workflow_state_document_list = Link( permissions=(permission_workflow_view,), - text=_('State documents'), view='document_states:workflow_state_document_list', + text=_('State documents'), + view='document_states:workflow_state_document_list', args='resolved_object.pk' ) link_workflow_state_list = Link( diff --git a/mayan/apps/document_states/migrations/0003_auto_20170325_0447.py b/mayan/apps/document_states/migrations/0003_auto_20170325_0447.py index 76b055a35b..5dcaa0bee0 100644 --- a/mayan/apps/document_states/migrations/0003_auto_20170325_0447.py +++ b/mayan/apps/document_states/migrations/0003_auto_20170325_0447.py @@ -36,14 +36,24 @@ class Migration(migrations.Migration): ), migrations.AlterModelOptions( name='workflow', - options={'ordering': ('label',), 'verbose_name': 'Workflow', 'verbose_name_plural': 'Workflows'}, + options={ + 'ordering': ('label',), + 'verbose_name': 'Workflow', 'verbose_name_plural': 'Workflows' + }, ), migrations.AlterModelOptions( name='workflowstate', - options={'ordering': ('label',), 'verbose_name': 'Workflow state', 'verbose_name_plural': 'Workflow states'}, + options={ + 'ordering': ('label',), + 'verbose_name': 'Workflow state', + 'verbose_name_plural': 'Workflow states' + }, ), migrations.AlterModelOptions( name='workflowtransition', - options={'ordering': ('label',), 'verbose_name': 'Workflow transition', 'verbose_name_plural': 'Workflow transitions'}, + options={ + 'ordering': ('label',), 'verbose_name': 'Workflow transition', + 'verbose_name_plural': 'Workflow transitions' + }, ), ] diff --git a/mayan/apps/document_states/models.py b/mayan/apps/document_states/models.py index 05ae0b6581..3c70c7395e 100644 --- a/mayan/apps/document_states/models.py +++ b/mayan/apps/document_states/models.py @@ -6,6 +6,7 @@ from django.conf import settings from django.core.exceptions import PermissionDenied, ValidationError from django.core.urlresolvers import reverse from django.db import IntegrityError, models +from django.db.models import F, Max, Q from django.utils.encoding import force_text, python_2_unicode_compatible from django.utils.translation import ugettext_lazy as _ @@ -106,6 +107,12 @@ class WorkflowState(models.Model): ), verbose_name=_('Completion') ) + class Meta: + ordering = ('label',) + unique_together = ('workflow', 'label') + verbose_name = _('Workflow state') + verbose_name_plural = _('Workflow states') + def __str__(self): return self.label @@ -114,11 +121,30 @@ class WorkflowState(models.Model): self.workflow.states.all().update(initial=False) return super(WorkflowState, self).save(*args, **kwargs) - class Meta: - ordering = ('label',) - unique_together = ('workflow', 'label') - verbose_name = _('Workflow state') - verbose_name_plural = _('Workflow states') + def get_documents(self): + latest_entries = WorkflowInstanceLogEntry.objects.annotate( + max_datetime=Max( + 'workflow_instance__log_entries__datetime' + ) + ).filter( + datetime=F('max_datetime') + ) + + state_latest_entries = latest_entries.filter( + transition__destination_state=self + ) + + return Document.objects.filter( + Q( + workflows__pk__in=state_latest_entries.values_list( + 'workflow_instance', flat=True + ) + ) | Q( + workflows__log_entries__isnull=True, + workflows__workflow__states=self, + workflows__workflow__states__initial=True + ) + ).distinct() @python_2_unicode_compatible diff --git a/mayan/apps/document_states/views.py b/mayan/apps/document_states/views.py index c77d77d538..fd0ed0898e 100644 --- a/mayan/apps/document_states/views.py +++ b/mayan/apps/document_states/views.py @@ -2,7 +2,6 @@ from __future__ import absolute_import, unicode_literals from django.contrib import messages from django.core.urlresolvers import reverse, reverse_lazy -from django.db.models import F, Max from django.db.utils import IntegrityError from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404 @@ -21,8 +20,8 @@ from .forms import ( WorkflowTransitionForm ) from .models import ( - Workflow, WorkflowInstance, WorkflowInstanceLogEntry, WorkflowState, - WorkflowTransition, WorkflowRuntimeProxy, WorkflowStateRuntimeProxy + Workflow, WorkflowInstance, WorkflowState, WorkflowTransition, + WorkflowRuntimeProxy, WorkflowStateRuntimeProxy ) from .permissions import ( permission_workflow_create, permission_workflow_delete, @@ -97,6 +96,11 @@ class WorkflowInstanceTransitionView(FormView): comment=form.cleaned_data['comment'], transition=form.cleaned_data['transition'], user=self.request.user ) + messages.success( + self.request, _( + 'Document "%s" transitioned successfully' + ) % self.get_workflow_instance().document + ) return HttpResponseRedirect(self.get_success_url()) def get_extra_context(self): @@ -405,7 +409,7 @@ class WorkflowListView(SingleObjectListView): def get_extra_context(self): return { - 'hide_link': True, + 'hide_object': True, 'title': _('Workflows') } @@ -437,51 +441,36 @@ class WorkflowDocumentListView(DocumentListView): class WorkflowStateDocumentListView(DocumentListView): - def dispatch(self, request, *args, **kwargs): - self.workflow_state = get_object_or_404( + def get_document_queryset(self): + return self.get_workflow_state().get_documents() + + def get_extra_context(self): + workflow_state = self.get_workflow_state() + return { + 'hide_links': True, + 'object': workflow_state, + 'navigation_object_list': ('object', 'workflow'), + 'workflow': WorkflowRuntimeProxy.objects.get( + pk=workflow_state.workflow.pk + ), + 'title': _( + 'Documents in the workflow "%s", state "%s"' + ) % ( + workflow_state.workflow, workflow_state + ) + } + + def get_workflow_state(self): + workflow_state = get_object_or_404( WorkflowStateRuntimeProxy, pk=self.kwargs['pk'] ) AccessControlList.objects.check_access( - permissions=permission_workflow_view, user=request.user, - obj=self.workflow_state.workflow + permissions=permission_workflow_view, user=self.request.user, + obj=workflow_state.workflow ) - return super( - WorkflowStateDocumentListView, self - ).dispatch(request, *args, **kwargs) - - def get_document_queryset(self): - latest_entries = WorkflowInstanceLogEntry.objects.annotate( - max_datetime=Max( - 'workflow_instance__log_entries__datetime' - ) - ).filter( - datetime=F('max_datetime') - ) - - state_latest_entries = latest_entries.filter( - transition__destination_state=self.workflow_state - ) - - return Document.objects.filter( - workflows__pk__in=state_latest_entries.values_list( - 'workflow_instance', flat=True - ) - ) - - def get_extra_context(self): - return { - 'hide_links': True, - 'object': self.workflow_state, - 'navigation_object_list': ('object', 'workflow'), - 'workflow': WorkflowRuntimeProxy.objects.get( - pk=self.workflow_state.workflow.pk - ), - 'title': _( - 'Documents in the workflow "%s", state "%s"' - ) % (self.workflow_state.workflow, self.workflow_state) - } + return workflow_state class WorkflowStateListView(SingleObjectListView): From 3f022ea0eecef2da20e5d517d62fe616c1bd1193 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Jul 2017 16:53:58 -0400 Subject: [PATCH 013/112] Update release notes and changelog. Signed-off-by: Roberto Rosario --- HISTORY.rst | 17 ++++ docs/releases/2.5.rst | 178 ++++++++++++++++++++++++++++++---------- docs/releases/index.rst | 1 + 3 files changed, 153 insertions(+), 43 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 08f4a7c1f2..c8a9d93071 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,6 +5,23 @@ - Use Toasts library for screen messages. - Reduce verbosity of some debug messages. - Add new lineart transformation. +- Fix SANE source resolution field. +- About and Profile menu reorganization. +- PDF compatibility improvements. +- Office document coversion improvements. +- New metadata type setup UI. +- Duplicated document scan support. +- "Remember me" login support. +- Forgotten password restore via email. +- Document cache disabling. +- Translation improvements. +- Image loading improvements. +- Lower Javascript memory utilization. +- HTML reponsive layout improvements. +- Make document deletion a background task. +- Unicode handling improvements. +- Python3 compatilibyt improvements. +- New screen messages using Toastr. 2.4 (2017-06-23) ================ diff --git a/docs/releases/2.5.rst b/docs/releases/2.5.rst index 0a4d590a15..86b94f1362 100644 --- a/docs/releases/2.5.rst +++ b/docs/releases/2.5.rst @@ -7,10 +7,134 @@ Released: July XX, 2017 What's new ========== +OCR text download +----------------- +A link and view were added to download the entire OCR text of a document as a +separate file. The link can be found under the "Actions" dropdown when the +"OCR" tab of a document is selected. + +SANE document source +-------------------- +A validation error was being raised when the resolution field of the SANE +document source was left blank. This issue has been fixed and works as expected +now. + +Mailing profiles +---------------- +Previously, the way documents were emailed was controlled by configuration +settings that only system administrator could change as the OS level. It is +now possible to create mailing profiles from within the user interface. This +allows for Mayan administrators to add mailing profiles without the +intervention system administrators. It also provides the opportunity to create +multiple mailing profiles. This is useful for sending documents via different +email providers depending on things like priority of delivery, or email size +limitations. For multi-tenant environments, this also means that each tenant +can now send documents via email with their own respective email accounts. +For system administrators, this means there is no longer a need to rely on a +single email profile for the entirety of all the tenants in a deployment, +which could be taxing email quota limits or triggering spam filters. For +more information on the multi-tenant plugin visit the Mayan app store at: +http://www.mayan-edms.com/store/ + +New transformation +------------------ +A lineart transformation was added to reduce the amount of colors in a +document's image to just 2. This is useful to increase the OCR accuracy on +some kind of documents whose color or layout may confuse the OCR engine +and lower the accuracy of the text recognition. + +UI reorganization +----------------- +The main menu was been reorganization for clarity of function. The "About" menu +has been renamed to "System" to signify that the items in this menu relate +to system configuration topics. The "Tools" and "Setup" sub-menus, were moved +from the "Profile" menu to the new "System" menu. The "Profile" menu has been +renamed to "User". Additionally, the "User" menu is now part of the main menu +instead of floating right on the layout. This change along with others +improve the usability on small devices like tablets and smartphones. + +PDF compatibility updates +------------------------- +Support for non-compliant, "broken", and PDFs encrypted with no passwords has +been added. Previously no effort was made to process the images for these +files. The code for detecting the number of pages in a PDF has also been +improved to retry several methods when failing on non-compliant PDF documents. + +Office documents compatibility updates +-------------------------------------- +Improvements to the Libre Office conversion code were added, including a +workaround for Libre Office bug #37531 (https://bugs.documentfoundation.org/show_bug.cgi?id=37531) +which sometimes manifested when uploading multiple office documents +sequentially. + +Metadata setup UI improvements +------------------------------ +A new widget to define the document type to metadata type relationship has been +added. The new widget provides a method to switch between required metadata +and optional metadata for a document type. This new method is not only faster +but does not force users to remove a metadata type before making the switch +and thus avoid deletion of existing metadata entries. A new view was also added +to change the document type to metadata type relation not only the document +type view but also from the metadata type view eliminating travel between these +two views when creating new metadata types and assigning them to document +types. + +Duplicated document scanning +---------------------------- +Support to scan and list duplicated document scanning was added in the form of +a new document list link under the "Documents" main menu. Every time a document +is uploaded, a document scan will be triggered to determine if the new document +is a duplicate of an existing document. Duplicate documents will be listed +in a new "Duplicated documents" link in the main menu. A full document list +scan can also be triggered by using the new "Duplicated document scan" button +in the tools menu. Finally, a new tab in the document view has been added +called "Duplicates" that will list all duplicates of the currently +selected document when in the document's view. Related to this feature is the +addition of being able to search documents by their checksum. This was done by +indexing the checksum database field and by adding the checksum as a search +field in the advanced document search view and via the API. + +Login session control +--------------------- +Support was added to control the length of time a log in session lasts. First +from the user interface side of things a "Remember me" checkbox was added to +the log in form that will cause the session to persist after the browser is +closed. If this checkbox is left blank the session will be destroyed when the +browser closes and the user will need to log in again when accessing any of the +URLs. The second part of this feature is for administrators. The configuration +setting AUTHENTICATION_MAXIMUM_SESSION_LENGTH was added to control the maximum +time a logged in session will persist when users click the "Remember me" +checkbox. The default of this setting is 30 days. + +Document image cache disabling +------------------------------ +It is now possible to disable the document page image caching. The document +image cache works on two level and hence two setting options were added. +The first is the DOCUMENTS_DISABLE_BASE_IMAGE_CACHE option which disables the +first layer of caching, the generation of a master image file for each document +page. This means that subsequent request for a page's image will trigger the +conversion of the document from its original uploaded file. The second option, +DOCUMENTS_DISABLE_TRANSFORMED_IMAGE_CACHE, disables just the caching of the +transformed (rotated, resized, zoomed) images of document pages. The settings +can be used together or separately depending on how much disk space saving is +desired. These settings give control over the trade-off between disk space +savings and higher CPU utilization. These settings are ideal for installations +with a lot of documents, that want to conserve disk space, and have CPU capacity +to spare. Multi-tenant installations can also benefit from these new settings. + +Document filter by workflow state +--------------------------------- +A few versions over, a main menu item was added to list documents by their +workflow and/or their current workflow state. Support for filtering by the +initial workflow state has been added to this feature. + +Support for restoring forgotten password +---------------------------------------- +Views and templates were added to enable the typical "Forgotten +password" worflow using a signed token via email. Other Changes ------------- -- Add view to download a document's OCR text. GitLab issue #215. - Add missing OCR migration. - Improve error output of the performupgrade command to debug upgrade errors that could stop an upgrade (missing document files, etc). @@ -23,21 +147,15 @@ Other Changes - Rename the mayan_task_manager app to task_manager. - Make the task manager translatable. - Add Turkish to the list of processes languages. -- Add user configurable mailer support. GitLab issue #286. - Use Toastr libary for screen messages. -- Reduce verbosity of some debug messages. -- New lineart transformation. Useful to increase the OCR accuracy on some kind - of documents. +- Reduce verbosity of some debug messages in the MayanAppConfig, settings and, + mailing discovery. - Make sure lookup selection widgets also trigger the metadata update checkbox on change. -- Menu reorganization. The "About" menu has been renamed to "System". The - "Tools" and "Setup" sub menus, were moved from the "Profile" menu to the - "System" menu. The "Profile" menu has been renamed to "User". - Usability improvements on small displays. - Removal of the CONVERTER_LIBREOFFICE_PATH and CONVERTER_PDFTOPPM_PATH settings. These setting have been consolidated into CONVERTER_GRAPHICS_BACKEND_CONFIG. -- PDF compatibility improvements. - Improve the documentation of the document creation API endpoint. GitHub issue #255. Thanks to @lcerliani opening the issue. - Libre Office conversion improvements. Give every libreoffice instance @@ -45,49 +163,23 @@ Other Changes its own UserInstallation file in the $HOME directory. Works around Libre Office issue: https://bugs.documentfoundation.org/show_bug.cgi?id=37531 Solves or affects GitLab issues #393 #258 #198 #175 -- Document type-metadata type relationship. Add new UI method to switch between - required metadata and optional metadata for a document type. This new - method does not forces users to remove a metadata type before making the - switch and thus avoid deletion of existing metadata entries. GitLab issue #337. -- It is now possible to change the relationship between metadata types and - document types from either the metadata type list or document type list. - GitLab issue #373. -- Add support to search documents by their checksums. -- The document checksum field is now indexed for faster searches by checksum. -- Add support for duplicated document scanning. Every time a document is - uploaded, a document scan will be triggered to determine if the new document - is a duplicate of an existing document. Duplicate documents will be listed - in a new "Duplicated documents" link in the main menu. A full document list - scan can also be triggered by using the new "Duplicated document scan" button - in the tools menu. Finally a new tab in the document view has been added - called "Duplicates" that will list all duplicates of the currently - selected document. -- Add "Remember me" checkbox in the login form. -- Add AUTHENTICATION_MAXIMUM_SESSION_LENGTH configuration setting for the maximum - time an user's login session will remain valid. Defaults to 30 days. -- Ability to disable the document page image caching. This feature is controlled - by two new settings: DOCUMENTS_DISABLE_TRANSFORMED_IMAGE_CACHE and - DOCUMENTS_DISABLE_BASE_IMAGE_CACHE. DOCUMENTS_DISABLE_BASE_IMAGE_CACHE - disables the first layer of caching, the generation of a master image file - for each document page. This means that subsequent request for a page's - image will trigger the conversion of the document from its original - uploaded file. The second option, DOCUMENTS_DISABLE_TRANSFORMED_IMAGE_CACHE, - disables just the caching of the transformed (rotated, resized, zoomed) - images of document pages. The settings can be used together or separately - depending on how much disk space saving is desired. These settings give control - over the trade-off between disk space savings and higher CPU utilization. - The trashed document deletion action is now a background task. This feature results is much faster trashed document deletion and trash can emptying. - Remove animated spinners to lower browser memory usage and increase responsiveness. -- Render a document page place holder while the real document page +- Render a document page placeholder while the real document page loads. This change avoids "jumping" effect when loading many thumbnails. - Increase lazy load thresholds. More thumbnails and document pages will be loaded and visible by default when a view loads. -- Improve usability and appearance on medium and small devices like +- Improve usability and appearance on medium and small devices like tablets and smartphones. -- Improve document detection by initial workflow state. +- Do hard word break on form titles to avoid horizontal scroll on + small displays. +- Python3 compatilibty improvements by removing all explicit conversion + using the unicode() function. +- Unicode handling improvements. +- Update required versions of Pillow and django-suit. Removals -------- diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 06ec611ae0..f1e527ae9d 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -22,6 +22,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 2.5 2.4 2.3 2.2 From c5691886c0740b7202eadade73b69abf32b303ab Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Jul 2017 16:54:23 -0400 Subject: [PATCH 014/112] Bump version to 2.5. Signed-off-by: Roberto Rosario --- mayan/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/__init__.py b/mayan/__init__.py index b50bf002c8..f555c773fd 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,7 +1,7 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '2.5rc1' +__version__ = '2.5' __build__ = 0x020500 __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' From 45c8c43abbcc9131c73067b8a7d6c5bd85a519b0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Jul 2017 20:39:22 -0400 Subject: [PATCH 015/112] Update release date. Signed-off-by: Roberto Rosario --- HISTORY.rst | 4 ++-- docs/releases/2.5.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index c8a9d93071..bbf0ed22ca 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,5 @@ -2.5 (2017-07-XX) -=============== +2.5 (2017-07-07) +================ - Add view to download a document's OCR text. GitLab #215 - Add user configurable mailer. GitLab #286. - Use Toasts library for screen messages. diff --git a/docs/releases/2.5.rst b/docs/releases/2.5.rst index 86b94f1362..21efdc4caa 100644 --- a/docs/releases/2.5.rst +++ b/docs/releases/2.5.rst @@ -2,7 +2,7 @@ Mayan EDMS v2.5 release notes ============================= -Released: July XX, 2017 +Released: July 07, 2017 What's new ========== From 5cf5b09ffedcd148ba5c0b9caaaca2b6564c480e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 7 Jul 2017 20:43:53 -0400 Subject: [PATCH 016/112] Bump version to 2.5.1. Signed-off-by: Roberto Rosario --- HISTORY.rst | 4 +++ docs/releases/2.5.1.rst | 68 +++++++++++++++++++++++++++++++++++++++++ docs/releases/index.rst | 1 + mayan/__init__.py | 4 +-- 4 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 docs/releases/2.5.1.rst diff --git a/HISTORY.rst b/HISTORY.rst index bbf0ed22ca..75b9212817 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,7 @@ +2.5.1 (2017-07-08) +================== +- Update release target due to changes in PyPI. + 2.5 (2017-07-07) ================ - Add view to download a document's OCR text. GitLab #215 diff --git a/docs/releases/2.5.1.rst b/docs/releases/2.5.1.rst new file mode 100644 index 0000000000..d8304199e6 --- /dev/null +++ b/docs/releases/2.5.1.rst @@ -0,0 +1,68 @@ +=============================== +Mayan EDMS v2.5.1 release notes +=============================== + +Released: July 07, 2017 + +What's new +========== + +This version is identical to version 2.5. It was released to workaround some +issues with the recent migration of PyPI (https://mail.python.org/pipermail/distutils-sig/2017-June/030766.html) + +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 +=========================== + +* None + +.. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/docs/releases/index.rst b/docs/releases/index.rst index f1e527ae9d..f3831f12ba 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -22,6 +22,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 2.5.1 2.5 2.4 2.3 diff --git a/mayan/__init__.py b/mayan/__init__.py index f555c773fd..0c10619b82 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '2.5' -__build__ = 0x020500 +__version__ = '2.5.1' +__build__ = 0x020501 __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' __description__ = 'Free Open Source Electronic Document Management System' From 877572d2b35ee92d9531debb39bb0af30100f8cd Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 8 Jul 2017 14:05:19 -0400 Subject: [PATCH 017/112] Use class names for clarity. Signed-off-by: Roberto Rosario --- 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 32c2ee4c5c..7ae0083c54 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -449,11 +449,11 @@ class DocumentVersion(models.Model): event_document_new_version.commit( actor=user, target=self.document ) - post_version_upload.send(sender=self.__class__, instance=self) + post_version_upload.send(sender=DocumentVersion, instance=self) if tuple(self.document.versions.all()) == (self,): post_document_created.send( - sender=self.document.__class__, instance=self.document + sender=Document, instance=self.document ) class Meta: From e0e72e542637ef11b980f1ea42d4dfc2612b8751 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 8 Jul 2017 14:06:14 -0400 Subject: [PATCH 018/112] Avoid sending the post_version_upload signal from inside an uncommitted new document creation transaction. Signed-off-by: Roberto Rosario --- mayan/apps/sources/models.py | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/mayan/apps/sources/models.py b/mayan/apps/sources/models.py index 9bd935264f..bb302a8636 100644 --- a/mayan/apps/sources/models.py +++ b/mayan/apps/sources/models.py @@ -83,7 +83,15 @@ class Source(models.Model): language=language or setting_language.value ) document.save(_user=user) - + except Exception as exception: + logger.critical( + 'Unexpected exception while trying to create new document ' + '"%s" from source "%s"; %s', + label or file_object.name, self, exception + ) + raise + else: + try: document_version = document.new_version( file_object=file_object, _user=user ) @@ -109,14 +117,15 @@ class Source(models.Model): 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 version for ' + 'new document "%s" from source "%s"; %s', + label or file_object.name, self, exception + ) + document.delete(to_trash=False) + raise - except Exception as exception: - logger.critical( - 'Unexpected exception while trying to create new document ' - '"%s" from source "%s"; %s', - label or file_object.name, self, exception - ) - raise def handle_upload(self, file_object, description=None, document_type=None, expand=False, label=None, language=None, metadata_dict_list=None, metadata_dictionary=None, user=None): if not document_type: From e91a6083125ffc6c40428f5fed739d57948ddc4b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 8 Jul 2017 14:12:54 -0400 Subject: [PATCH 019/112] Bump version to 2.5.2 and add release notes. Signed-off-by: Roberto Rosario --- HISTORY.rst | 5 +++ docs/releases/2.5.2.rst | 74 +++++++++++++++++++++++++++++++++++++++++ docs/releases/index.rst | 1 + mayan/__init__.py | 4 +-- 4 files changed, 82 insertions(+), 2 deletions(-) create mode 100644 docs/releases/2.5.2.rst diff --git a/HISTORY.rst b/HISTORY.rst index 75b9212817..849f2c0811 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,8 @@ +2.5.2 (2017-07-08) +================== +- Improve new document creation signal handling. + Fixes issue with duplicate scanning at upload. + 2.5.1 (2017-07-08) ================== - Update release target due to changes in PyPI. diff --git a/docs/releases/2.5.2.rst b/docs/releases/2.5.2.rst new file mode 100644 index 0000000000..6e8fb4e52e --- /dev/null +++ b/docs/releases/2.5.2.rst @@ -0,0 +1,74 @@ +=============================== +Mayan EDMS v2.5.2 release notes +=============================== + +Released: July 08, 2017 + +What's new +========== + +Improve duplicate document scan +------------------------------- +Previously the way document creation code was enclosed in a single database +transactions. This cause the duplicate scan at upload code to received a +document reference to uncommitted database data. The single database +transaction was split into smaller units to make sure the duplicate scan +recevies saved and committed data. + + +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 +=========================== + +* None + +.. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/docs/releases/index.rst b/docs/releases/index.rst index f3831f12ba..465eaf6ec3 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -22,6 +22,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 2.5.2 2.5.1 2.5 2.4 diff --git a/mayan/__init__.py b/mayan/__init__.py index 0c10619b82..bdd20405f4 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '2.5.1' -__build__ = 0x020501 +__version__ = '2.5.2' +__build__ = 0x020502 __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' __description__ = 'Free Open Source Electronic Document Management System' From 47169323100d2513f25ceb511c5faa0cda82360d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 9 Jul 2017 02:33:35 -0400 Subject: [PATCH 020/112] Update the roadmap. Signed-off-by: Roberto Rosario --- docs/topics/roadmap.rst | 128 ++++++++++++++++------------------------ 1 file changed, 50 insertions(+), 78 deletions(-) diff --git a/docs/topics/roadmap.rst b/docs/topics/roadmap.rst index d72f5be3bd..3273a3a8a8 100644 --- a/docs/topics/roadmap.rst +++ b/docs/topics/roadmap.rst @@ -2,101 +2,73 @@ Roadmap ======= -- Goals for version 2.2: +- Workflow: - 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. + +- Indexing + - 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: +- Distribution: - - Replace UI. + - Debian packages. Limited success so far using https://github.com/astraw/stdeb. -- General goals: +- Notifications: - - Distribution: + - Add support for subscribing to a document's events. + - Add support for subscribing to a document type events. + - Add support for subscribing specific events. - - Debian packages. Limited success so far using https://github.com/astraw/stdeb. +- OCR: - - Downloads: + - Add image preprocessing for OCR. Increase effectiveness of Tesseract. - - 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. +- Python 3: - - Notifications: + - Complete support for Python3. + - Find replacement for pdfminer (Python3 support blocker). Use pdfminer.six (#257). - - Add support for subscribing to a document's events. - - Add support for subscribing to a document type events. - - Add support for subscribing specific events. +- Simple serving: - - OCR: + - Provide option to serve Mayan EDMS without a webserver (using Tornado o similar). Work started in branch: ``/feature/tornado`` - - 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. +- Upload wizard: - - Python 3: + - 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. - - Complete support for Python3. - - Find replacement for pdfminer (Python3 support blocker). Use pdfminer.six (#257). +- Other - - 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). - - Find solution so that documents in watched folders are not processed until they are ready. Use case scanning directly to scanned folders. + - 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. + - 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. + - 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 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 GPG key generation. + - 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). + - Find solution so that documents in watched folders are not processed until they are ready. Use case scanning directly to scanned folders. From f582484693cecb9a4c31a31bb1cf8c125b97952e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 9 Jul 2017 02:33:57 -0400 Subject: [PATCH 021/112] Update translation source files. Signed-off-by: Roberto Rosario --- .../apps/acls/locale/ar/LC_MESSAGES/django.po | 37 +- .../apps/acls/locale/bg/LC_MESSAGES/django.po | 34 +- .../acls/locale/bs_BA/LC_MESSAGES/django.po | 37 +- .../apps/acls/locale/da/LC_MESSAGES/django.po | 34 +- .../acls/locale/de_DE/LC_MESSAGES/django.po | 48 +- .../apps/acls/locale/en/LC_MESSAGES/django.po | 48 +- .../apps/acls/locale/es/LC_MESSAGES/django.po | 58 +- .../apps/acls/locale/fa/LC_MESSAGES/django.po | 34 +- .../apps/acls/locale/fr/LC_MESSAGES/django.po | 37 +- .../apps/acls/locale/hu/LC_MESSAGES/django.po | 34 +- .../apps/acls/locale/id/LC_MESSAGES/django.po | 34 +- .../apps/acls/locale/it/LC_MESSAGES/django.po | 43 +- .../acls/locale/nl_NL/LC_MESSAGES/django.po | 38 +- .../apps/acls/locale/pl/LC_MESSAGES/django.po | 54 +- .../apps/acls/locale/pt/LC_MESSAGES/django.po | 34 +- .../acls/locale/pt_BR/LC_MESSAGES/django.po | 56 +- .../acls/locale/ro_RO/LC_MESSAGES/django.po | 37 +- .../apps/acls/locale/ru/LC_MESSAGES/django.po | 38 +- .../acls/locale/sl_SI/LC_MESSAGES/django.po | 37 +- .../acls/locale/tr_TR/LC_MESSAGES/django.po | 133 +++ .../acls/locale/vi_VN/LC_MESSAGES/django.po | 34 +- .../acls/locale/zh_CN/LC_MESSAGES/django.po | 34 +- .../locale/ar/LC_MESSAGES/django.po | 113 +- .../locale/bg/LC_MESSAGES/django.po | 109 +- .../locale/bs_BA/LC_MESSAGES/django.po | 112 +- .../locale/da/LC_MESSAGES/django.po | 102 +- .../locale/de_DE/LC_MESSAGES/django.po | 137 ++- .../locale/en/LC_MESSAGES/django.po | 137 ++- .../locale/es/LC_MESSAGES/django.po | 136 ++- .../locale/fa/LC_MESSAGES/django.po | 106 +- .../locale/fr/LC_MESSAGES/django.po | 142 ++- .../locale/hu/LC_MESSAGES/django.po | 102 +- .../locale/id/LC_MESSAGES/django.po | 97 +- .../locale/it/LC_MESSAGES/django.po | 133 ++- .../locale/nl_NL/LC_MESSAGES/django.po | 138 ++- .../locale/pl/LC_MESSAGES/django.po | 137 ++- .../locale/pt/LC_MESSAGES/django.po | 106 +- .../locale/pt_BR/LC_MESSAGES/django.po | 136 ++- .../locale/ro_RO/LC_MESSAGES/django.po | 128 ++- .../locale/ru/LC_MESSAGES/django.po | 141 ++- .../locale/sl_SI/LC_MESSAGES/django.po | 100 +- .../locale/tr_TR/LC_MESSAGES/django.po | 275 +++++ .../locale/vi_VN/LC_MESSAGES/django.po | 110 +- .../locale/zh_CN/LC_MESSAGES/django.po | 102 +- .../locale/ar/LC_MESSAGES/django.po | 38 +- .../locale/bg/LC_MESSAGES/django.po | 35 +- .../locale/bs_BA/LC_MESSAGES/django.po | 38 +- .../locale/da/LC_MESSAGES/django.po | 35 +- .../locale/de_DE/LC_MESSAGES/django.po | 43 +- .../locale/en/LC_MESSAGES/django.po | 43 +- .../locale/es/LC_MESSAGES/django.po | 43 +- .../locale/fa/LC_MESSAGES/django.po | 39 +- .../locale/fr/LC_MESSAGES/django.po | 43 +- .../locale/hu/LC_MESSAGES/django.po | 35 +- .../locale/id/LC_MESSAGES/django.po | 38 +- .../locale/it/LC_MESSAGES/django.po | 43 +- .../locale/nl_NL/LC_MESSAGES/django.po | 43 +- .../locale/pl/LC_MESSAGES/django.po | 43 +- .../locale/pt/LC_MESSAGES/django.po | 35 +- .../locale/pt_BR/LC_MESSAGES/django.po | 43 +- .../locale/ro_RO/LC_MESSAGES/django.po | 38 +- .../locale/ru/LC_MESSAGES/django.po | 47 +- .../locale/sl_SI/LC_MESSAGES/django.po | 38 +- .../locale/tr_TR/LC_MESSAGES/django.po | 72 ++ .../locale/vi_VN/LC_MESSAGES/django.po | 35 +- .../locale/zh_CN/LC_MESSAGES/django.po | 35 +- .../cabinets/locale/ar/LC_MESSAGES/django.po | 12 +- .../cabinets/locale/bg/LC_MESSAGES/django.po | 12 +- .../locale/bs_BA/LC_MESSAGES/django.po | 15 +- .../cabinets/locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 12 +- .../cabinets/locale/en/LC_MESSAGES/django.po | 12 +- .../cabinets/locale/es/LC_MESSAGES/django.po | 9 +- .../cabinets/locale/fa/LC_MESSAGES/django.po | 9 +- .../cabinets/locale/fr/LC_MESSAGES/django.po | 9 +- .../cabinets/locale/hu/LC_MESSAGES/django.po | 12 +- .../cabinets/locale/id/LC_MESSAGES/django.po | 12 +- .../cabinets/locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 12 +- .../cabinets/locale/pl/LC_MESSAGES/django.po | 13 +- .../cabinets/locale/pt/LC_MESSAGES/django.po | 12 +- .../locale/pt_BR/LC_MESSAGES/django.po | 16 +- .../locale/ro_RO/LC_MESSAGES/django.po | 15 +- .../cabinets/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 15 +- .../locale/tr_TR/LC_MESSAGES/django.po | 242 +++++ .../locale/vi_VN/LC_MESSAGES/django.po | 12 +- .../locale/zh_CN/LC_MESSAGES/django.po | 12 +- .../checkouts/locale/ar/LC_MESSAGES/django.po | 33 +- .../checkouts/locale/bg/LC_MESSAGES/django.po | 30 +- .../locale/bs_BA/LC_MESSAGES/django.po | 33 +- .../checkouts/locale/da/LC_MESSAGES/django.po | 30 +- .../locale/de_DE/LC_MESSAGES/django.po | 34 +- .../checkouts/locale/en/LC_MESSAGES/django.po | 34 +- .../checkouts/locale/es/LC_MESSAGES/django.po | 34 +- .../checkouts/locale/fa/LC_MESSAGES/django.po | 30 +- .../checkouts/locale/fr/LC_MESSAGES/django.po | 37 +- .../checkouts/locale/hu/LC_MESSAGES/django.po | 30 +- .../checkouts/locale/id/LC_MESSAGES/django.po | 30 +- .../checkouts/locale/it/LC_MESSAGES/django.po | 34 +- .../locale/nl_NL/LC_MESSAGES/django.po | 30 +- .../checkouts/locale/pl/LC_MESSAGES/django.po | 41 +- .../checkouts/locale/pt/LC_MESSAGES/django.po | 30 +- .../locale/pt_BR/LC_MESSAGES/django.po | 34 +- .../locale/ro_RO/LC_MESSAGES/django.po | 36 +- .../checkouts/locale/ru/LC_MESSAGES/django.po | 34 +- .../locale/sl_SI/LC_MESSAGES/django.po | 33 +- .../locale/tr_TR/LC_MESSAGES/django.po | 224 ++++ .../locale/vi_VN/LC_MESSAGES/django.po | 30 +- .../locale/zh_CN/LC_MESSAGES/django.po | 30 +- .../common/locale/ar/LC_MESSAGES/django.po | 93 +- .../common/locale/bg/LC_MESSAGES/django.po | 90 +- .../common/locale/bs_BA/LC_MESSAGES/django.po | 93 +- .../common/locale/da/LC_MESSAGES/django.po | 90 +- .../common/locale/de_DE/LC_MESSAGES/django.po | 104 +- .../common/locale/en/LC_MESSAGES/django.po | 104 +- .../common/locale/es/LC_MESSAGES/django.po | 108 +- .../common/locale/fa/LC_MESSAGES/django.po | 93 +- .../common/locale/fr/LC_MESSAGES/django.po | 108 +- .../common/locale/hu/LC_MESSAGES/django.po | 90 +- .../common/locale/id/LC_MESSAGES/django.po | 93 +- .../common/locale/it/LC_MESSAGES/django.po | 108 +- .../common/locale/nl_NL/LC_MESSAGES/django.po | 108 +- .../common/locale/pl/LC_MESSAGES/django.po | 108 +- .../common/locale/pt/LC_MESSAGES/django.po | 90 +- .../common/locale/pt_BR/LC_MESSAGES/django.po | 108 +- .../common/locale/ro_RO/LC_MESSAGES/django.po | 96 +- .../common/locale/ru/LC_MESSAGES/django.po | 112 +- .../common/locale/sl_SI/LC_MESSAGES/django.po | 93 +- .../common/locale/tr_TR/LC_MESSAGES/django.po | 306 ++++++ .../common/locale/vi_VN/LC_MESSAGES/django.po | 90 +- .../common/locale/zh_CN/LC_MESSAGES/django.po | 90 +- .../converter/locale/ar/LC_MESSAGES/django.po | 98 +- .../converter/locale/bg/LC_MESSAGES/django.po | 92 +- .../locale/bs_BA/LC_MESSAGES/django.po | 98 +- .../converter/locale/da/LC_MESSAGES/django.po | 92 +- .../locale/de_DE/LC_MESSAGES/django.po | 118 ++- .../converter/locale/en/LC_MESSAGES/django.po | 111 +- .../converter/locale/es/LC_MESSAGES/django.po | 114 +- .../converter/locale/fa/LC_MESSAGES/django.po | 100 +- .../converter/locale/fr/LC_MESSAGES/django.po | 121 ++- .../converter/locale/hu/LC_MESSAGES/django.po | 92 +- .../converter/locale/id/LC_MESSAGES/django.po | 92 +- .../converter/locale/it/LC_MESSAGES/django.po | 117 ++- .../locale/nl_NL/LC_MESSAGES/django.po | 114 +- .../converter/locale/pl/LC_MESSAGES/django.po | 115 ++- .../converter/locale/pt/LC_MESSAGES/django.po | 95 +- .../locale/pt_BR/LC_MESSAGES/django.po | 111 +- .../locale/ro_RO/LC_MESSAGES/django.po | 98 +- .../converter/locale/ru/LC_MESSAGES/django.po | 119 ++- .../locale/sl_SI/LC_MESSAGES/django.po | 95 +- .../locale/tr_TR/LC_MESSAGES/django.po | 180 ++++ .../locale/vi_VN/LC_MESSAGES/django.po | 92 +- .../locale/zh_CN/LC_MESSAGES/django.po | 95 +- .../locale/ar/LC_MESSAGES/django.po | 30 +- .../locale/bg/LC_MESSAGES/django.po | 27 +- .../locale/bs_BA/LC_MESSAGES/django.po | 34 +- .../locale/da/LC_MESSAGES/django.po | 27 +- .../locale/de_DE/LC_MESSAGES/django.po | 35 +- .../locale/en/LC_MESSAGES/django.po | 27 +- .../locale/es/LC_MESSAGES/django.po | 39 +- .../locale/fa/LC_MESSAGES/django.po | 27 +- .../locale/fr/LC_MESSAGES/django.po | 35 +- .../locale/hu/LC_MESSAGES/django.po | 27 +- .../locale/id/LC_MESSAGES/django.po | 27 +- .../locale/it/LC_MESSAGES/django.po | 35 +- .../locale/nl_NL/LC_MESSAGES/django.po | 31 +- .../locale/pl/LC_MESSAGES/django.po | 38 +- .../locale/pt/LC_MESSAGES/django.po | 31 +- .../locale/pt_BR/LC_MESSAGES/django.po | 31 +- .../locale/ro_RO/LC_MESSAGES/django.po | 38 +- .../locale/ru/LC_MESSAGES/django.po | 35 +- .../locale/sl_SI/LC_MESSAGES/django.po | 30 +- .../locale/tr_TR/LC_MESSAGES/django.po | 259 +++++ .../locale/vi_VN/LC_MESSAGES/django.po | 27 +- .../locale/zh_CN/LC_MESSAGES/django.po | 27 +- .../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 | 13 +- .../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 | 17 +- .../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/tr_TR/LC_MESSAGES/django.po | 90 ++ .../locale/vi_VN/LC_MESSAGES/django.po | 13 +- .../locale/zh_CN/LC_MESSAGES/django.po | 13 +- .../locale/ar/LC_MESSAGES/django.po | 48 +- .../locale/bg/LC_MESSAGES/django.po | 44 +- .../locale/bs_BA/LC_MESSAGES/django.po | 55 +- .../locale/da/LC_MESSAGES/django.po | 40 +- .../locale/de_DE/LC_MESSAGES/django.po | 62 +- .../locale/en/LC_MESSAGES/django.po | 53 +- .../locale/es/LC_MESSAGES/django.po | 60 +- .../locale/fa/LC_MESSAGES/django.po | 51 +- .../locale/fr/LC_MESSAGES/django.po | 63 +- .../locale/hu/LC_MESSAGES/django.po | 40 +- .../locale/id/LC_MESSAGES/django.po | 40 +- .../locale/it/LC_MESSAGES/django.po | 60 +- .../locale/nl_NL/LC_MESSAGES/django.po | 53 +- .../locale/pl/LC_MESSAGES/django.po | 56 +- .../locale/pt/LC_MESSAGES/django.po | 52 +- .../locale/pt_BR/LC_MESSAGES/django.po | 60 +- .../locale/ro_RO/LC_MESSAGES/django.po | 55 +- .../locale/ru/LC_MESSAGES/django.po | 53 +- .../locale/sl_SI/LC_MESSAGES/django.po | 43 +- .../locale/tr_TR/LC_MESSAGES/django.po | 292 ++++++ .../locale/vi_VN/LC_MESSAGES/django.po | 40 +- .../locale/zh_CN/LC_MESSAGES/django.po | 40 +- .../locale/ar/LC_MESSAGES/django.po | 51 +- .../locale/bg/LC_MESSAGES/django.po | 54 +- .../locale/bs_BA/LC_MESSAGES/django.po | 51 +- .../locale/da/LC_MESSAGES/django.po | 48 +- .../locale/de_DE/LC_MESSAGES/django.po | 53 +- .../locale/en/LC_MESSAGES/django.po | 48 +- .../locale/es/LC_MESSAGES/django.po | 54 +- .../locale/fa/LC_MESSAGES/django.po | 48 +- .../locale/fr/LC_MESSAGES/django.po | 54 +- .../locale/hu/LC_MESSAGES/django.po | 48 +- .../locale/id/LC_MESSAGES/django.po | 54 +- .../locale/it/LC_MESSAGES/django.po | 54 +- .../locale/nl_NL/LC_MESSAGES/django.po | 48 +- .../locale/pl/LC_MESSAGES/django.po | 52 +- .../locale/pt/LC_MESSAGES/django.po | 48 +- .../locale/pt_BR/LC_MESSAGES/django.po | 53 +- .../locale/ro_RO/LC_MESSAGES/django.po | 56 +- .../locale/ru/LC_MESSAGES/django.po | 58 +- .../locale/sl_SI/LC_MESSAGES/django.po | 51 +- .../locale/tr_TR/LC_MESSAGES/django.po | 280 +++++ .../locale/vi_VN/LC_MESSAGES/django.po | 48 +- .../locale/zh_CN/LC_MESSAGES/django.po | 48 +- .../locale/ar/LC_MESSAGES/django.po | 111 +- .../locale/bg/LC_MESSAGES/django.po | 108 +- .../locale/bs_BA/LC_MESSAGES/django.po | 111 +- .../locale/da/LC_MESSAGES/django.po | 108 +- .../locale/de_DE/LC_MESSAGES/django.po | 116 ++- .../locale/en/LC_MESSAGES/django.po | 135 +-- .../locale/es/LC_MESSAGES/django.po | 116 ++- .../locale/fa/LC_MESSAGES/django.po | 116 ++- .../locale/fr/LC_MESSAGES/django.po | 116 ++- .../locale/hu/LC_MESSAGES/django.po | 108 +- .../locale/id/LC_MESSAGES/django.po | 108 +- .../locale/it/LC_MESSAGES/django.po | 116 ++- .../locale/nl_NL/LC_MESSAGES/django.po | 108 +- .../locale/pl/LC_MESSAGES/django.po | 112 +- .../locale/pt/LC_MESSAGES/django.po | 108 +- .../locale/pt_BR/LC_MESSAGES/django.po | 129 ++- .../locale/ro_RO/LC_MESSAGES/django.po | 111 +- .../locale/ru/LC_MESSAGES/django.po | 112 +- .../locale/sl_SI/LC_MESSAGES/django.po | 111 +- .../locale/tr_TR/LC_MESSAGES/django.po | 374 +++++++ .../locale/vi_VN/LC_MESSAGES/django.po | 108 +- .../locale/zh_CN/LC_MESSAGES/django.po | 108 +- .../documents/locale/ar/LC_MESSAGES/django.po | 434 ++++---- .../documents/locale/bg/LC_MESSAGES/django.po | 462 +++++---- .../locale/bs_BA/LC_MESSAGES/django.po | 450 ++++---- .../documents/locale/da/LC_MESSAGES/django.po | 451 ++++---- .../locale/de_DE/LC_MESSAGES/django.po | 475 +++++---- .../documents/locale/en/LC_MESSAGES/django.po | 479 +++++---- .../documents/locale/es/LC_MESSAGES/django.po | 480 +++++---- .../documents/locale/fa/LC_MESSAGES/django.po | 447 ++++---- .../documents/locale/fr/LC_MESSAGES/django.po | 506 +++++---- .../documents/locale/hu/LC_MESSAGES/django.po | 457 +++++---- .../documents/locale/id/LC_MESSAGES/django.po | 458 +++++---- .../documents/locale/it/LC_MESSAGES/django.po | 481 +++++---- .../locale/nl_NL/LC_MESSAGES/django.po | 450 ++++---- .../documents/locale/pl/LC_MESSAGES/django.po | 445 ++++---- .../documents/locale/pt/LC_MESSAGES/django.po | 451 ++++---- .../locale/pt_BR/LC_MESSAGES/django.po | 511 +++++---- .../locale/ro_RO/LC_MESSAGES/django.po | 458 +++++---- .../documents/locale/ru/LC_MESSAGES/django.po | 470 +++++---- .../locale/sl_SI/LC_MESSAGES/django.po | 460 +++++---- .../locale/tr_TR/LC_MESSAGES/django.po | 971 ++++++++++++++++++ .../locale/vi_VN/LC_MESSAGES/django.po | 437 ++++---- .../locale/zh_CN/LC_MESSAGES/django.po | 427 ++++---- .../locale/ar/LC_MESSAGES/django.po | 19 +- .../locale/bg/LC_MESSAGES/django.po | 16 +- .../locale/bs_BA/LC_MESSAGES/django.po | 19 +- .../locale/da/LC_MESSAGES/django.po | 16 +- .../locale/de_DE/LC_MESSAGES/django.po | 21 +- .../locale/en/LC_MESSAGES/django.po | 20 +- .../locale/es/LC_MESSAGES/django.po | 21 +- .../locale/fa/LC_MESSAGES/django.po | 21 +- .../locale/fr/LC_MESSAGES/django.po | 16 +- .../locale/hu/LC_MESSAGES/django.po | 16 +- .../locale/id/LC_MESSAGES/django.po | 16 +- .../locale/it/LC_MESSAGES/django.po | 16 +- .../locale/nl_NL/LC_MESSAGES/django.po | 16 +- .../locale/pl/LC_MESSAGES/django.po | 20 +- .../locale/pt/LC_MESSAGES/django.po | 16 +- .../locale/pt_BR/LC_MESSAGES/django.po | 21 +- .../locale/ro_RO/LC_MESSAGES/django.po | 19 +- .../locale/ru/LC_MESSAGES/django.po | 20 +- .../locale/sl_SI/LC_MESSAGES/django.po | 19 +- .../locale/tr_TR/LC_MESSAGES/django.po | 66 ++ .../locale/vi_VN/LC_MESSAGES/django.po | 16 +- .../locale/zh_CN/LC_MESSAGES/django.po | 16 +- .../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 | 11 +- .../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 | 15 +- .../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/tr_TR/LC_MESSAGES/django.po | 69 ++ .../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 | 43 +- .../folders/locale/bg/LC_MESSAGES/django.po | 40 +- .../locale/bs_BA/LC_MESSAGES/django.po | 43 +- .../folders/locale/da/LC_MESSAGES/django.po | 40 +- .../locale/de_DE/LC_MESSAGES/django.po | 40 +- .../folders/locale/en/LC_MESSAGES/django.po | 40 +- .../folders/locale/es/LC_MESSAGES/django.po | 40 +- .../folders/locale/fa/LC_MESSAGES/django.po | 40 +- .../folders/locale/fr/LC_MESSAGES/django.po | 43 +- .../folders/locale/hu/LC_MESSAGES/django.po | 40 +- .../folders/locale/id/LC_MESSAGES/django.po | 40 +- .../folders/locale/it/LC_MESSAGES/django.po | 43 +- .../locale/nl_NL/LC_MESSAGES/django.po | 40 +- .../folders/locale/pl/LC_MESSAGES/django.po | 44 +- .../folders/locale/pt/LC_MESSAGES/django.po | 40 +- .../locale/pt_BR/LC_MESSAGES/django.po | 40 +- .../locale/ro_RO/LC_MESSAGES/django.po | 46 +- .../folders/locale/ru/LC_MESSAGES/django.po | 44 +- .../locale/sl_SI/LC_MESSAGES/django.po | 43 +- .../locale/tr_TR/LC_MESSAGES/django.po | 206 ++++ .../locale/vi_VN/LC_MESSAGES/django.po | 40 +- .../locale/zh_CN/LC_MESSAGES/django.po | 40 +- .../linking/locale/ar/LC_MESSAGES/django.po | 69 +- .../linking/locale/bg/LC_MESSAGES/django.po | 66 +- .../locale/bs_BA/LC_MESSAGES/django.po | 69 +- .../linking/locale/da/LC_MESSAGES/django.po | 66 +- .../locale/de_DE/LC_MESSAGES/django.po | 74 +- .../linking/locale/en/LC_MESSAGES/django.po | 78 +- .../linking/locale/es/LC_MESSAGES/django.po | 79 +- .../linking/locale/fa/LC_MESSAGES/django.po | 66 +- .../linking/locale/fr/LC_MESSAGES/django.po | 78 +- .../linking/locale/hu/LC_MESSAGES/django.po | 66 +- .../linking/locale/id/LC_MESSAGES/django.po | 66 +- .../linking/locale/it/LC_MESSAGES/django.po | 78 +- .../locale/nl_NL/LC_MESSAGES/django.po | 66 +- .../linking/locale/pl/LC_MESSAGES/django.po | 79 +- .../linking/locale/pt/LC_MESSAGES/django.po | 66 +- .../locale/pt_BR/LC_MESSAGES/django.po | 82 +- .../locale/ro_RO/LC_MESSAGES/django.po | 69 +- .../linking/locale/ru/LC_MESSAGES/django.po | 70 +- .../locale/sl_SI/LC_MESSAGES/django.po | 69 +- .../locale/tr_TR/LC_MESSAGES/django.po | 281 +++++ .../locale/vi_VN/LC_MESSAGES/django.po | 66 +- .../locale/zh_CN/LC_MESSAGES/django.po | 66 +- .../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 | 9 +- .../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 | 13 +- .../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/tr_TR/LC_MESSAGES/django.po | 42 + .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../mailer/locale/ar/LC_MESSAGES/django.po | 270 ++++- .../mailer/locale/bg/LC_MESSAGES/django.po | 271 ++++- .../mailer/locale/bs_BA/LC_MESSAGES/django.po | 270 ++++- .../mailer/locale/da/LC_MESSAGES/django.po | 267 ++++- .../mailer/locale/de_DE/LC_MESSAGES/django.po | 301 +++++- .../mailer/locale/en/LC_MESSAGES/django.po | 287 +++++- .../mailer/locale/es/LC_MESSAGES/django.po | 313 +++++- .../mailer/locale/fa/LC_MESSAGES/django.po | 271 ++++- .../mailer/locale/fr/LC_MESSAGES/django.po | 287 +++++- .../mailer/locale/hu/LC_MESSAGES/django.po | 267 ++++- .../mailer/locale/id/LC_MESSAGES/django.po | 267 ++++- .../mailer/locale/it/LC_MESSAGES/django.po | 295 +++++- .../mailer/locale/nl_NL/LC_MESSAGES/django.po | 267 ++++- .../mailer/locale/pl/LC_MESSAGES/django.po | 279 ++++- .../mailer/locale/pt/LC_MESSAGES/django.po | 271 ++++- .../mailer/locale/pt_BR/LC_MESSAGES/django.po | 292 +++++- .../mailer/locale/ro_RO/LC_MESSAGES/django.po | 270 ++++- .../mailer/locale/ru/LC_MESSAGES/django.po | 275 ++++- .../mailer/locale/sl_SI/LC_MESSAGES/django.po | 270 ++++- .../mailer/locale/tr_TR/LC_MESSAGES/django.po | 372 +++++++ .../mailer/locale/vi_VN/LC_MESSAGES/django.po | 267 ++++- .../mailer/locale/zh_CN/LC_MESSAGES/django.po | 267 ++++- .../metadata/locale/ar/LC_MESSAGES/django.po | 279 ++--- .../metadata/locale/bg/LC_MESSAGES/django.po | 273 +++-- .../locale/bs_BA/LC_MESSAGES/django.po | 276 ++--- .../metadata/locale/da/LC_MESSAGES/django.po | 273 +++-- .../locale/de_DE/LC_MESSAGES/django.po | 329 +++--- .../metadata/locale/en/LC_MESSAGES/django.po | 322 +++--- .../metadata/locale/es/LC_MESSAGES/django.po | 329 +++--- .../metadata/locale/fa/LC_MESSAGES/django.po | 285 ++--- .../metadata/locale/fr/LC_MESSAGES/django.po | 327 +++--- .../metadata/locale/hu/LC_MESSAGES/django.po | 273 +++-- .../metadata/locale/id/LC_MESSAGES/django.po | 273 +++-- .../metadata/locale/it/LC_MESSAGES/django.po | 324 +++--- .../locale/nl_NL/LC_MESSAGES/django.po | 275 ++--- .../metadata/locale/pl/LC_MESSAGES/django.po | 296 +++--- .../metadata/locale/pt/LC_MESSAGES/django.po | 275 ++--- .../locale/pt_BR/LC_MESSAGES/django.po | 322 +++--- .../locale/ro_RO/LC_MESSAGES/django.po | 279 ++--- .../metadata/locale/ru/LC_MESSAGES/django.po | 306 +++--- .../locale/sl_SI/LC_MESSAGES/django.po | 276 ++--- .../locale/tr_TR/LC_MESSAGES/django.po | 447 ++++++++ .../locale/vi_VN/LC_MESSAGES/django.po | 270 ++--- .../locale/zh_CN/LC_MESSAGES/django.po | 270 ++--- .../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 | 9 +- .../mirroring/locale/es/LC_MESSAGES/django.po | 17 +- .../mirroring/locale/fa/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/fr/LC_MESSAGES/django.po | 15 +- .../mirroring/locale/hu/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/id/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/it/LC_MESSAGES/django.po | 16 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/pl/LC_MESSAGES/django.po | 13 +- .../mirroring/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 17 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 30 + .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/ar/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/bg/LC_MESSAGES/django.po | 9 +- .../motd/locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/da/LC_MESSAGES/django.po | 9 +- .../motd/locale/de_DE/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/en/LC_MESSAGES/django.po | 9 +- .../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 | 13 +- .../apps/motd/locale/pt/LC_MESSAGES/django.po | 9 +- .../motd/locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../motd/locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/ru/LC_MESSAGES/django.po | 13 +- .../motd/locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../motd/locale/tr_TR/LC_MESSAGES/django.po | 108 ++ .../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/tr_TR/LC_MESSAGES/django.po | 26 + .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/ar/LC_MESSAGES/django.po | 76 +- .../apps/ocr/locale/bg/LC_MESSAGES/django.po | 70 +- .../ocr/locale/bs_BA/LC_MESSAGES/django.po | 76 +- .../apps/ocr/locale/da/LC_MESSAGES/django.po | 74 +- .../ocr/locale/de_DE/LC_MESSAGES/django.po | 86 +- .../apps/ocr/locale/en/LC_MESSAGES/django.po | 76 +- .../apps/ocr/locale/es/LC_MESSAGES/django.po | 74 +- .../apps/ocr/locale/fa/LC_MESSAGES/django.po | 70 +- .../apps/ocr/locale/fr/LC_MESSAGES/django.po | 81 +- .../apps/ocr/locale/hu/LC_MESSAGES/django.po | 70 +- .../apps/ocr/locale/id/LC_MESSAGES/django.po | 70 +- .../apps/ocr/locale/it/LC_MESSAGES/django.po | 81 +- .../ocr/locale/nl_NL/LC_MESSAGES/django.po | 72 +- .../apps/ocr/locale/pl/LC_MESSAGES/django.po | 74 +- .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 74 +- .../ocr/locale/pt_BR/LC_MESSAGES/django.po | 74 +- .../ocr/locale/ro_RO/LC_MESSAGES/django.po | 77 +- .../apps/ocr/locale/ru/LC_MESSAGES/django.po | 86 +- .../ocr/locale/sl_SI/LC_MESSAGES/django.po | 73 +- .../ocr/locale/tr_TR/LC_MESSAGES/django.po | 203 ++++ .../ocr/locale/vi_VN/LC_MESSAGES/django.po | 70 +- .../ocr/locale/zh_CN/LC_MESSAGES/django.po | 70 +- .../locale/ar/LC_MESSAGES/django.po | 47 +- .../locale/bg/LC_MESSAGES/django.po | 44 +- .../locale/bs_BA/LC_MESSAGES/django.po | 47 +- .../locale/da/LC_MESSAGES/django.po | 44 +- .../locale/de_DE/LC_MESSAGES/django.po | 48 +- .../locale/en/LC_MESSAGES/django.po | 48 +- .../locale/es/LC_MESSAGES/django.po | 52 +- .../locale/fa/LC_MESSAGES/django.po | 44 +- .../locale/fr/LC_MESSAGES/django.po | 44 +- .../locale/hu/LC_MESSAGES/django.po | 44 +- .../locale/id/LC_MESSAGES/django.po | 44 +- .../locale/it/LC_MESSAGES/django.po | 48 +- .../locale/nl_NL/LC_MESSAGES/django.po | 44 +- .../locale/pl/LC_MESSAGES/django.po | 48 +- .../locale/pt/LC_MESSAGES/django.po | 44 +- .../locale/pt_BR/LC_MESSAGES/django.po | 52 +- .../locale/ro_RO/LC_MESSAGES/django.po | 47 +- .../locale/ru/LC_MESSAGES/django.po | 48 +- .../locale/sl_SI/LC_MESSAGES/django.po | 47 +- .../locale/tr_TR/LC_MESSAGES/django.po | 147 +++ .../locale/vi_VN/LC_MESSAGES/django.po | 44 +- .../locale/zh_CN/LC_MESSAGES/django.po | 44 +- .../rest_api/locale/ar/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/en/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/es/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/fa/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/fr/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/hu/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/id/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/pl/LC_MESSAGES/django.po | 13 +- .../rest_api/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/tr_TR/LC_MESSAGES/django.po | 31 + .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 9 +- .../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 | 13 +- .../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/tr_TR/LC_MESSAGES/django.po | 56 + .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../sources/locale/ar/LC_MESSAGES/django.po | 232 ++--- .../sources/locale/bg/LC_MESSAGES/django.po | 229 ++--- .../locale/bs_BA/LC_MESSAGES/django.po | 232 ++--- .../sources/locale/da/LC_MESSAGES/django.po | 229 ++--- .../locale/de_DE/LC_MESSAGES/django.po | 270 ++--- .../sources/locale/en/LC_MESSAGES/django.po | 281 ++--- .../sources/locale/es/LC_MESSAGES/django.po | 266 ++--- .../sources/locale/fa/LC_MESSAGES/django.po | 241 ++--- .../sources/locale/fr/LC_MESSAGES/django.po | 278 ++--- .../sources/locale/hu/LC_MESSAGES/django.po | 229 ++--- .../sources/locale/id/LC_MESSAGES/django.po | 233 +++-- .../sources/locale/it/LC_MESSAGES/django.po | 275 ++--- .../locale/nl_NL/LC_MESSAGES/django.po | 239 +++-- .../sources/locale/pl/LC_MESSAGES/django.po | 233 +++-- .../sources/locale/pt/LC_MESSAGES/django.po | 233 +++-- .../locale/pt_BR/LC_MESSAGES/django.po | 273 ++--- .../locale/ro_RO/LC_MESSAGES/django.po | 236 +++-- .../sources/locale/ru/LC_MESSAGES/django.po | 245 ++--- .../locale/sl_SI/LC_MESSAGES/django.po | 232 ++--- .../locale/tr_TR/LC_MESSAGES/django.po | 632 ++++++++++++ .../locale/vi_VN/LC_MESSAGES/django.po | 229 ++--- .../locale/zh_CN/LC_MESSAGES/django.po | 229 ++--- .../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 | 9 +- .../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 | 13 +- .../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/tr_TR/LC_MESSAGES/django.po | 102 ++ .../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 | 9 +- .../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 | 13 +- .../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/tr_TR/LC_MESSAGES/django.po | 22 + .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../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 | 19 +- .../apps/tags/locale/en/LC_MESSAGES/django.po | 23 +- .../apps/tags/locale/es/LC_MESSAGES/django.po | 32 +- .../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 | 19 +- .../apps/tags/locale/pt/LC_MESSAGES/django.po | 15 +- .../tags/locale/pt_BR/LC_MESSAGES/django.po | 30 +- .../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/tr_TR/LC_MESSAGES/django.po | 252 +++++ .../tags/locale/vi_VN/LC_MESSAGES/django.po | 15 +- .../tags/locale/zh_CN/LC_MESSAGES/django.po | 15 +- .../locale/ar/LC_MESSAGES/django.po | 10 +- .../locale/bg/LC_MESSAGES/django.po | 10 +- .../locale/bs_BA/LC_MESSAGES/django.po | 10 +- .../locale/da/LC_MESSAGES/django.po | 10 +- .../locale/de_DE/LC_MESSAGES/django.po | 10 +- .../locale/en/LC_MESSAGES/django.po | 10 +- .../locale/es/LC_MESSAGES/django.po | 10 +- .../locale/fa/LC_MESSAGES/django.po | 10 +- .../locale/fr/LC_MESSAGES/django.po | 10 +- .../locale/hu/LC_MESSAGES/django.po | 10 +- .../locale/id/LC_MESSAGES/django.po | 10 +- .../locale/it/LC_MESSAGES/django.po | 10 +- .../locale/nl_NL/LC_MESSAGES/django.po | 10 +- .../locale/pl/LC_MESSAGES/django.po | 10 +- .../locale/pt/LC_MESSAGES/django.po | 10 +- .../locale/pt_BR/LC_MESSAGES/django.po | 10 +- .../locale/ro_RO/LC_MESSAGES/django.po | 10 +- .../locale/ru/LC_MESSAGES/django.po | 10 +- .../locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../locale/tr_TR/LC_MESSAGES/django.po | 106 ++ .../locale/vi_VN/LC_MESSAGES/django.po | 10 +- .../locale/zh_CN/LC_MESSAGES/django.po | 10 +- .../locale/ar/LC_MESSAGES/django.po | 24 +- .../locale/bg/LC_MESSAGES/django.po | 21 +- .../locale/bs_BA/LC_MESSAGES/django.po | 24 +- .../locale/da/LC_MESSAGES/django.po | 21 +- .../locale/de_DE/LC_MESSAGES/django.po | 25 +- .../locale/en/LC_MESSAGES/django.po | 21 +- .../locale/es/LC_MESSAGES/django.po | 28 +- .../locale/fa/LC_MESSAGES/django.po | 13 +- .../locale/fr/LC_MESSAGES/django.po | 29 +- .../locale/hu/LC_MESSAGES/django.po | 13 +- .../locale/id/LC_MESSAGES/django.po | 13 +- .../locale/it/LC_MESSAGES/django.po | 25 +- .../locale/nl_NL/LC_MESSAGES/django.po | 25 +- .../locale/pl/LC_MESSAGES/django.po | 25 +- .../locale/pt/LC_MESSAGES/django.po | 21 +- .../locale/pt_BR/LC_MESSAGES/django.po | 25 +- .../locale/ro_RO/LC_MESSAGES/django.po | 24 +- .../locale/ru/LC_MESSAGES/django.po | 25 +- .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/tr_TR/LC_MESSAGES/django.po | 251 +++++ .../locale/vi_VN/LC_MESSAGES/django.po | 21 +- .../locale/zh_CN/LC_MESSAGES/django.po | 13 +- 726 files changed, 35566 insertions(+), 21373 deletions(-) create mode 100644 mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/folders/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/statistics/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po create mode 100644 mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po index b613eb3025..eb4173c1d5 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 msgid "ACLs" @@ -27,7 +29,6 @@ msgid "Permissions" msgstr "الصلاحيات" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +37,6 @@ msgid "Delete" msgstr "" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +54,6 @@ msgstr "" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +90,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +103,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +226,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 2ae8d1d6a4..d8c3559833 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "Разрешения" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +36,6 @@ msgid "Delete" msgstr "" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +53,6 @@ msgstr "достъп вписвания" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +89,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +102,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +225,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 3a51035a1b..8fea1c9df4 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 msgid "ACLs" @@ -27,7 +29,6 @@ msgid "Permissions" msgstr "Dozvole" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +37,6 @@ msgid "Delete" msgstr "" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +54,6 @@ msgstr "" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +90,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +103,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +226,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 632a9a2400..4a10659c93 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +36,6 @@ msgid "Delete" msgstr "" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +53,6 @@ msgstr "" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +89,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +102,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +225,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 8cd5242b15..9ef28dc5ff 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 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-24 23:10+0000\n" "Last-Translator: Jesaja Everling \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:35 @@ -30,7 +31,6 @@ msgid "Permissions" msgstr "Berechtigungen" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "Rolle" @@ -39,7 +39,6 @@ msgid "Delete" msgstr "Löschen" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "Neue Berechtigung" @@ -57,9 +56,9 @@ msgstr "Berechtigungseinträge" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "Berechtigungen \"%(permissions)s\" zur Rolle \"%(role)s\" für \"%(object)s\"" +msgstr "" +"Berechtigungen \"%(permissions)s\" zur Rolle \"%(role)s\" für \"%(object)s\"" #: models.py:74 msgid "None" @@ -86,7 +85,9 @@ msgstr "API URL für die Liste der Berechtigungen dieser ACL" msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL für die Berechtigung in Relation zur ACL zu der sie zugeordnet ist. Diese URL unterscheidet sich von der normalen Workflow URL." +msgstr "" +"API URL für die Berechtigung in Relation zur ACL zu der sie zugeordnet ist. " +"Diese URL unterscheidet sich von der normalen Workflow URL." #: serializers.py:87 msgid "Primary key of the new permission to grant to the access control list." @@ -94,7 +95,6 @@ msgstr "Primary key der zur ACL hinzuzufügenden Berechtigung." #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "Keine solche Berechtigung: %s" @@ -102,44 +102,46 @@ msgstr "Keine solche Berechtigung: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Durch Komma getrennte Liste von Primary Keys der zu dieser ACL hinzuzufügenden Berechtigungen." +msgstr "" +"Durch Komma getrennte Liste von Primary Keys der zu dieser ACL " +"hinzuzufügenden Berechtigungen." #: serializers.py:138 msgid "Primary keys of the role to which this access control list binds to." msgstr "Primary Key der Rolle die dieser ACL zugeordnet ist." -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "Neue Zugriffsberechtigung für %s" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "ACL \"%s\" löschen" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "Zugriffsberechtigungen für %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "Verfügbare Berechtigungen" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "Erteilte Berechtigungen" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Berechtigungen von Rolle \"%(role)s\" für \"%(object)s\"" -#: views.py:226 +#: views.py:227 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" @@ -232,8 +234,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 fa1ec74ced..8171749376 100644 --- a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:15 links.py:35 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "Permissions" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "Role" @@ -36,7 +36,6 @@ msgid "Delete" msgstr "Delete" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "New ACL" @@ -54,9 +53,9 @@ msgstr "Access entries" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" +msgstr "" +"Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" #: models.py:74 msgid "None" @@ -77,13 +76,16 @@ msgstr "View ACLs" #: serializers.py:24 serializers.py:132 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "API URL pointing to the list of permissions for this access control list." +msgstr "" +"API URL pointing to the list of permissions for this access control list." #: serializers.py:57 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL pointing to a permission in relation to the access control list to which it is attached. This URL is different than the canonical workflow URL." +msgstr "" +"API URL pointing to a permission in relation to the access control list to " +"which it is attached. This URL is different than the canonical workflow URL." #: serializers.py:87 msgid "Primary key of the new permission to grant to the access control list." @@ -91,7 +93,6 @@ msgstr "Primary key of the new permission to grant to the access control list." #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "No such permission: %s" @@ -99,42 +100,43 @@ msgstr "No such permission: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Comma separated list of permission primary keys to grant to this access control list." +msgstr "" +"Comma separated list of permission primary keys to grant to this access " +"control list." #: serializers.py:138 msgid "Primary keys of the role to which this access control list binds to." msgstr "Primary keys of the role to which this access control list binds to." -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "New access control lists for: %s" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Delete ACL: %s" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "Access control lists for: %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "Available permissions" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "Granted permissions" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Role \"%(role)s\" permission's for \"%(object)s\"" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "Disabled permissions are inherited from a parent object." @@ -229,8 +231,10 @@ msgstr "Disabled permissions are inherited from a 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/es/LC_MESSAGES/django.po b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po index 04eb29ac77..79e2231f74 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-05-28 19:52+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:35 @@ -30,7 +31,6 @@ msgid "Permissions" msgstr "Permisos" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "Rol" @@ -39,7 +39,6 @@ msgid "Delete" msgstr "Borrar" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nueva LCA" @@ -57,9 +56,9 @@ msgstr "Entradas de acceso" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "Permisos \"%(permissions)s\" para el rol \"%(role)s\" para \"%(object)s\"" +msgstr "" +"Permisos \"%(permissions)s\" para el rol \"%(role)s\" para \"%(object)s\"" #: models.py:74 msgid "None" @@ -80,21 +79,27 @@ msgstr "Ver LCAs" #: serializers.py:24 serializers.py:132 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "URL de la API que apunta a la lista de permisos para esta lista de control de acceso." +msgstr "" +"URL de la API que apunta a la lista de permisos para esta lista de control " +"de acceso." #: serializers.py:57 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "URL de la API que apunta a un permiso en relación con la lista de control de acceso a la que está conectado. Esta URL es diferente de la URL canónica de flujo de trabajo." +msgstr "" +"URL de la API que apunta a un permiso en relación con la lista de control " +"de acceso a la que está conectado. Esta URL es diferente de la URL canónica " +"de flujo de trabajo." #: serializers.py:87 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Llave primaria del nuevo permiso para conceder a la lista de control de acceso." +msgstr "" +"Llave primaria del nuevo permiso para conceder a la lista de control de " +"acceso." #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "No existe el permiso: %s" @@ -102,42 +107,45 @@ msgstr "No existe el permiso: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Lista separada por comas de las llaves primarias de permisos para conceder a esta lista de control de acceso." +msgstr "" +"Lista separada por comas de las llaves primarias de permisos para conceder a " +"esta lista de control de acceso." #: serializers.py:138 msgid "Primary keys of the role to which this access control list binds to." -msgstr "Las llaves primarias de los roles a los que se vincula esta lista de control de acceso." +msgstr "" +"Las llaves primarias de los roles a los que se vincula esta lista de control " +"de acceso." -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "Nueva lista de control de acceso para: %s" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Borrar LCA: %s" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "Listas de control de acceso para: %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "Permisos disponibles" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "Permisos otorgados" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Permisos del rol \"%(role)s\" para \"%(object)s\"" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "Los permisos inactivos se heredan de un objeto precedente." @@ -232,8 +240,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 c71be65102..7ce6fcfcf9 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: # Nima Towhidi , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-05-12 07:22+0000\n" "Last-Translator: Nima Towhidi \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:35 @@ -28,7 +29,6 @@ msgid "Permissions" msgstr "مجوزها" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "نقش" @@ -37,7 +37,6 @@ msgid "Delete" msgstr "حذف" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -55,7 +54,6 @@ msgstr "ورودیهای دسترسی" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -92,7 +90,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -106,36 +103,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "لیست کنترل دسترسی ها برای : %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "مجوزهای موجود" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "مجوزهای داده شده" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "مجوزهای غیرفعال، از شیء بالاتر به ارث رسیده‌اند." @@ -230,8 +226,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 0eefff981e..9c7c9f4bfc 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 , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 @@ -29,7 +30,6 @@ msgid "Permissions" msgstr "Permissions" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "Rôle" @@ -38,7 +38,6 @@ msgid "Delete" msgstr "Suppression" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nouveau droit" @@ -56,9 +55,9 @@ msgstr "Entrées d'accès" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "Permissions \"%(permissions)s\" du rôle \"%(role)s\" pour \"%(object)s\"" +msgstr "" +"Permissions \"%(permissions)s\" du rôle \"%(role)s\" pour \"%(object)s\"" #: models.py:74 msgid "None" @@ -93,7 +92,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -107,36 +105,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "Nouvelle liste de contrôle d'accès pour: %s" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Supprimer le droit: %s" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "Liste des contrôle d'accès pour: %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "Permissions disponibles" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "Permissions autorisées" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Permission du rôle \"%(role)s\" pour \"%(object)s\"@" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "La désactivation de permission est hérité de l'objet parent" @@ -231,8 +228,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 7289a40624..2015e1edb4 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +36,6 @@ msgid "Delete" msgstr "" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +53,6 @@ msgstr "" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +89,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +102,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +225,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 a718e46cb1..a636859aa3 100644 --- a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +36,6 @@ msgid "Delete" msgstr "" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +53,6 @@ msgstr "" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +89,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +102,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +225,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 f8dd65cb4a..ae938fd1f4 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: # Marco Camplese , 2016-2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-28 07:26+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:15 links.py:35 @@ -28,7 +29,6 @@ msgid "Permissions" msgstr "Permessi" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "Ruolo" @@ -37,7 +37,6 @@ msgid "Delete" msgstr "Cancella" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nuova ACL" @@ -55,7 +54,6 @@ msgstr "Voci di accesso" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "Permessi \"%(permissions)s\" del ruolo \"%(role)s\" per \"%(object)s\"" @@ -84,7 +82,10 @@ msgstr "URL delle API che punta alla lista controllo accessi" msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL che indica una autorizzazione in relazione all'elenco di controllo di accesso a cui è associato. Questo URL è diverso dall'originale canonico URL." +msgstr "" +"API URL che indica una autorizzazione in relazione all'elenco di controllo " +"di accesso a cui è associato. Questo URL è diverso dall'originale canonico " +"URL." #: serializers.py:87 msgid "Primary key of the new permission to grant to the access control list." @@ -92,7 +93,6 @@ msgstr "Chiavi primarie del permesso per garantire la lista controllo accessi" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "Nessun permesso: %s" @@ -100,42 +100,43 @@ msgstr "Nessun permesso: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Lista separata da virgole delle chiavi primarie dei permessi per garantire l'accesso alle liste di controllo" +msgstr "" +"Lista separata da virgole delle chiavi primarie dei permessi per garantire " +"l'accesso alle liste di controllo" #: serializers.py:138 msgid "Primary keys of the role to which this access control list binds to." msgstr "Chiavi primarie del ruolo a cui si lega la lista controllo accessi" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "Nuova lista di controllo accesso per: %s" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Cancella ACL: %s" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "Lista dei permessi d'accesso per: %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "Autorizzazioni disponibili " -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "Autorizzazioni concesse " -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Permessi del ruolo \"%(role)s\" per \"%(object)s\"" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "Il permesso disabilita è ereditato dall'oggetto padre" @@ -230,8 +231,10 @@ msgstr "Il permesso disabilita è ereditato dall'oggetto padre" #~ 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 58f638114b..9a90a77e31 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: # Evelijn Saaltink , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 @@ -29,7 +30,6 @@ msgid "Permissions" msgstr "Permissies" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "Gebruikersrol" @@ -38,7 +38,6 @@ msgid "Delete" msgstr "Verwijder" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nieuwe authorisatielijst" @@ -56,9 +55,10 @@ msgstr "Authorisaties invoer" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "Permissies \"%(permissions)s\" voor gebruikersrol \"%(role)s\" voor \"%(object)s\"" +msgstr "" +"Permissies \"%(permissions)s\" voor gebruikersrol \"%(role)s\" voor " +"\"%(object)s\"" #: models.py:74 msgid "None" @@ -93,7 +93,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -107,36 +106,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "Nieuwe authorisatielijsten voor: %s" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Verwijder authorisatielijst: %s" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "Authorisatielijsten voor: %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "Beschikbare permissies" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "Toegekende permissies" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Rol \"%(role)s\" permissies voor \"%(object)s\"" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "Uitgeschakelde permissies zijn geërfd van een parent object." @@ -231,8 +229,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 a05a7f3698..444333a1f1 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: # Wojtek Warczakowski , 2016 @@ -10,15 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-02 17:23+0000\n" "Last-Translator: Wojtek Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:15 links.py:35 msgid "ACLs" @@ -29,7 +32,6 @@ msgid "Permissions" msgstr "Uprawnienia" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "Rola" @@ -38,7 +40,6 @@ msgid "Delete" msgstr "Usuń" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nowa lista ACL" @@ -56,9 +57,10 @@ msgstr "Zgłoszenia dostępu" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "Uprawnienia \"%(permissions)s\" dla roli \"%(role)s\" dotyczące \"%(object)s\"" +msgstr "" +"Uprawnienia \"%(permissions)s\" dla roli \"%(role)s\" dotyczące \"%(object)s" +"\"" #: models.py:74 msgid "None" @@ -85,15 +87,18 @@ msgstr "API URL prowadzący do listy uprawnień dla listy kontroli dostępu." msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL prowadzący do uprawnienia w liście kontroli dostępu, w której uprawnienie występuje. " +msgstr "" +"API URL prowadzący do uprawnienia w liście kontroli dostępu, w której " +"uprawnienie występuje. " #: serializers.py:87 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Klucz główny nowego uprawnienia dla udzielenia dostępu do listy kontroli dostępu." +msgstr "" +"Klucz główny nowego uprawnienia dla udzielenia dostępu do listy kontroli " +"dostępu." #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "Brak uprawnienia: %s" @@ -101,42 +106,43 @@ msgstr "Brak uprawnienia: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Rozdzielona przecinkami lista uprawnień kluczy głównych dla udzielenia dostępu do listy kontroli dostępu." +msgstr "" +"Rozdzielona przecinkami lista uprawnień kluczy głównych dla udzielenia " +"dostępu do listy kontroli dostępu." #: serializers.py:138 msgid "Primary keys of the role to which this access control list binds to." msgstr "Klucze główne roli, z którymi związana jest ta lista kontroli dostępu." -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "Nowe listy ACL dla: %s" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Usuń listę ACL: %s" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "Listy ACL dla: %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "Dostępne uprawnienia" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "Przyznane uprawnienia" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Uprawnienia roli \"%(role)s\" dla obiektu \"%(object)s\"" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "Domyślne uprawnienia są dziedziczone z obiektu nadrzędnego." @@ -231,8 +237,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 d207ef2cb4..2968094eed 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "Permissões" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +36,6 @@ msgid "Delete" msgstr "Eliminar" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +53,6 @@ msgstr "" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +89,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +102,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +225,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 1c5e7a95ee..0ae988c572 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: # Aline Freitas , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-05-04 19:12+0000\n" "Last-Translator: Jadson Ribeiro \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:35 @@ -29,7 +30,6 @@ msgid "Permissions" msgstr "Permissões" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "Regras" @@ -38,7 +38,6 @@ msgid "Delete" msgstr "Excluir" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nova regra" @@ -56,9 +55,9 @@ msgstr "Entradas de acesso" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "Permissões \"%(permissions)s\" do papel \"%(role)s\" para \"%(object)s\"" +msgstr "" +"Permissões \"%(permissions)s\" do papel \"%(role)s\" para \"%(object)s\"" #: models.py:74 msgid "None" @@ -79,21 +78,26 @@ msgstr "Visualizar regras" #: serializers.py:24 serializers.py:132 msgid "" "API URL pointing to the list of permissions for this access control list." -msgstr "API URL apontando para a lista de permissões para esta lista de controle de acesso." +msgstr "" +"API URL apontando para a lista de permissões para esta lista de controle de " +"acesso." #: serializers.py:57 msgid "" "API URL pointing to a permission in relation to the access control list to " "which it is attached. This URL is different than the canonical workflow URL." -msgstr "API URL apontando para uma permissão em relação à lista de controle de acesso à qual ela está anexada. Esse URL é diferente do URL de fluxo de trabalho canônico." +msgstr "" +"API URL apontando para uma permissão em relação à lista de controle de " +"acesso à qual ela está anexada. Esse URL é diferente do URL de fluxo de " +"trabalho canônico." #: serializers.py:87 msgid "Primary key of the new permission to grant to the access control list." -msgstr "Chave primária da nova permissão para conceder à lista de controle de acesso." +msgstr "" +"Chave primária da nova permissão para conceder à lista de controle de acesso." #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "Sem permissão: %s" @@ -101,42 +105,44 @@ msgstr "Sem permissão: %s" msgid "" "Comma separated list of permission primary keys to grant to this access " "control list." -msgstr "Lista de chaves primárias de permissão separadas por vírgulas para conceder a esta lista de controle de acesso." +msgstr "" +"Lista de chaves primárias de permissão separadas por vírgulas para conceder " +"a esta lista de controle de acesso." #: serializers.py:138 msgid "Primary keys of the role to which this access control list binds to." -msgstr "As chaves primárias da função a que esta lista de controle de acesso se liga." +msgstr "" +"As chaves primárias da função a que esta lista de controle de acesso se liga." -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "Nova lista de controle de acesso para: %s" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Apagar ACL: %s" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "listas de controle de acesso para: %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "Permissões disponíveis" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "Permissões outorgadas" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Permissões do papel \"%(role)s\" para \"%(object)s\"" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "As permissões inativas foram herdadas de um objeto precedente." @@ -231,8 +237,10 @@ msgstr "As permissões inativas foram herdadas de um 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/ro_RO/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po index 074d33b6fd..f9252b4da7 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 msgid "ACLs" @@ -27,7 +29,6 @@ msgid "Permissions" msgstr "Permisiuni" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +37,6 @@ msgid "Delete" msgstr "Șterge" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +54,6 @@ msgstr "" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +90,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +103,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +226,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 a9634d2261..f3501daf1a 100644 --- a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # lilo.panic, 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 msgid "ACLs" @@ -28,7 +31,6 @@ msgid "Permissions" msgstr "Разрешения" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "Роль" @@ -37,7 +39,6 @@ msgid "Delete" msgstr "Удалить" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "Создать СУД" @@ -55,7 +56,6 @@ msgstr "Элементы доступа" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -92,7 +92,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -106,36 +105,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "Новый СУД для: %s" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Удалить СУД: %s" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "СУДы для: %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "Доступные разрешения" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "Предоставленные разрешения" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Права роли \"%(role)s\" для \"%(object)s\"" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "Отключенные права наследуются от родительского объекта." @@ -230,8 +228,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 d183dd5002..014861d5e3 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 msgid "ACLs" @@ -27,7 +29,6 @@ msgid "Permissions" msgstr "Pravice" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +37,6 @@ msgid "Delete" msgstr "" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +54,6 @@ msgstr "Vstopne točke" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +90,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +103,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "Dostopne pravice za %s" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +226,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..74c99b1e71 --- /dev/null +++ b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,133 @@ +# 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: 2017-07-09 02:26-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:15 links.py:35 +msgid "ACLs" +msgstr "" + +#: apps.py:25 links.py:44 models.py:44 +msgid "Permissions" +msgstr "" + +#: apps.py:29 models.py:46 +msgid "Role" +msgstr "" + +#: links.py:31 +msgid "Delete" +msgstr "" + +#: links.py:39 +msgid "New ACL" +msgstr "" + +#: managers.py:109 +msgid "Insufficient access." +msgstr "" + +#: models.py:52 +msgid "Access entry" +msgstr "" + +#: models.py:53 +msgid "Access entries" +msgstr "" + +#: models.py:57 +#, python-format +msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" +msgstr "" + +#: models.py:74 +msgid "None" +msgstr "" + +#: permissions.py:7 +msgid "Access control lists" +msgstr "" + +#: permissions.py:10 +msgid "Edit ACLs" +msgstr "" + +#: permissions.py:13 +msgid "View ACLs" +msgstr "" + +#: serializers.py:24 serializers.py:132 +msgid "" +"API URL pointing to the list of permissions for this access control list." +msgstr "" + +#: serializers.py:57 +msgid "" +"API URL pointing to a permission in relation to the access control list to " +"which it is attached. This URL is different than the canonical workflow URL." +msgstr "" + +#: serializers.py:87 +msgid "Primary key of the new permission to grant to the access control list." +msgstr "" + +#: serializers.py:111 serializers.py:187 +#, python-format +msgid "No such permission: %s" +msgstr "" + +#: serializers.py:126 +msgid "" +"Comma separated list of permission primary keys to grant to this access " +"control list." +msgstr "" + +#: serializers.py:138 +msgid "Primary keys of the role to which this access control list binds to." +msgstr "" + +#: views.py:74 +#, python-format +msgid "New access control lists for: %s" +msgstr "" + +#: views.py:101 +#, python-format +msgid "Delete ACL: %s" +msgstr "" + +#: views.py:139 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:151 +msgid "Available permissions" +msgstr "" + +#: views.py:152 +msgid "Granted permissions" +msgstr "" + +#: views.py:207 +#, python-format +msgid "Role \"%(role)s\" permission's for \"%(object)s\"" +msgstr "" + +#: views.py:227 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" 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 268d7a7e97..7dd48fbfba 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +36,6 @@ msgid "Delete" msgstr "" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +53,6 @@ msgstr "" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +89,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +102,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +225,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 41aae73307..0a7f81e4a8 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:15 links.py:35 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "权限" #: apps.py:29 models.py:46 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,7 +36,6 @@ msgid "Delete" msgstr "" #: links.py:39 -#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +53,6 @@ msgstr "多个访问入口" #: models.py:57 #, python-format -#| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" msgstr "" @@ -91,7 +89,6 @@ msgstr "" #: serializers.py:111 serializers.py:187 #, python-format -#| msgid "permission" msgid "No such permission: %s" msgstr "" @@ -105,36 +102,35 @@ msgstr "" msgid "Primary keys of the role to which this access control list binds to." msgstr "" -#: views.py:73 +#: views.py:74 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:100 +#: views.py:101 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Access control lists for: %s" msgstr "" -#: views.py:150 +#: views.py:151 msgid "Available permissions" msgstr "" -#: views.py:151 +#: views.py:152 msgid "Granted permissions" msgstr "" -#: views.py:206 +#: views.py:207 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" -#: views.py:226 +#: views.py:227 msgid "Disabled permissions are inherited from a parent object." msgstr "" @@ -229,8 +225,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 36376e4dc4..dc842eaaee 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 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 @@ -78,49 +80,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "مجهول" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "الإجراءات" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "تفاصيل عن %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "انشاء" @@ -150,8 +128,8 @@ msgstr "نعم" msgid "No" msgstr "لا" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +143,8 @@ msgstr "حفظ" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "ارسال" @@ -223,49 +203,84 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Login" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "First time login" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 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 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Login using the following credentials:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Username: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Password: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Login" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "لا شيء" + +#~ msgid "Anonymous" +#~ msgstr "مجهول" diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po index 58a444e404..7ad4885ca9 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 @@ -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 @@ -78,49 +79,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Анонимен" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Действия" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Създаване" @@ -150,8 +127,8 @@ msgstr "Да" msgid "No" msgstr "Не" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +142,8 @@ msgstr "Запазване" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Подаване" @@ -223,49 +202,83 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Влез" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Логване за първи път" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Вие приключихте инсталирането на Mayan EDMS, поздравления!" +msgstr "" +"Вие приключихте инсталирането на Mayan EDMS, поздравления!" -#: templates/appearance/login.html:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Логване, използвайки следните параметри:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Потребителско име: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Парола: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Влез" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Няма" + +#~ msgid "Anonymous" +#~ 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 175f41c1f5..d0f8c0672f 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 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 @@ -78,49 +80,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anonimni" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Akcije" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Detalji o: %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Kreirati" @@ -150,8 +128,8 @@ msgstr "Da" msgid "No" msgstr "Ne" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +143,8 @@ msgstr "Sačuvati" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Podnijeti" @@ -223,49 +203,83 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Prijava" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Prijava - prvi put" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 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 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Prijava korištenjem sljedećih podataka:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Korisnik: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Pasvord: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Prijava" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Nijedno" + +#~ msgid "Anonymous" +#~ msgstr "Anonimni" diff --git a/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po index c371389d14..0f59c84537 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 @@ -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 @@ -78,49 +79,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anonym" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Handlinger" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "" @@ -150,8 +127,8 @@ msgstr "" msgid "No" msgstr "" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +142,8 @@ msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "" @@ -223,49 +202,80 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Log ind" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:45 templates/appearance/login.html:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Log ind" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Ingen" + +#~ msgid "Anonymous" +#~ msgstr "Anonym" 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 dac8cb08e5..04996683cc 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 # Jesaja Everling , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-26 15:55+0000\n" "Last-Translator: Jesaja Everling \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -45,15 +46,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:57 msgid "About" @@ -80,49 +85,25 @@ msgstr "Copyright © 2011-2015 Roberto Rosario." msgid "Toggle navigation" msgstr "Navigation ein-/ausschalten" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "Profil" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anonymer Benutzer" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "Erfolg" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "Information" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "Warnung" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "Fehler" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Aktionen" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "Ausklappmenü ein-/ausschalten" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Details für: %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "%(object)s bearbeiten" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Erstellen" @@ -152,8 +133,8 @@ msgstr "Ja" msgid "No" msgstr "Nein" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -167,6 +148,8 @@ msgstr "Speichern" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Absenden" @@ -185,7 +168,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 @@ -225,49 +210,99 @@ msgstr "Erweitert" msgid "Search documents" msgstr "Dokumente durchsuchen" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Login" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Erstanmeldung" -#: templates/appearance/login.html:24 +#: templates/authentication/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:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Einloggen mit folgenden Zugangsdaten:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Benutzername: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "E-Mail: %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Passwort: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/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:45 templates/appearance/login.html:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "Anmelden" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Login" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Keine" + +#~ msgid "Profile" +#~ msgstr "Profil" + +#~ msgid "Anonymous" +#~ msgstr "Anonymer Benutzer" + +#~ msgid "Success" +#~ msgstr "Erfolg" + +#~ msgid "Information" +#~ msgstr "Information" + +#~ msgid "Warning" +#~ msgstr "Warnung" + +#~ msgid "Error" +#~ msgstr "Fehler" diff --git a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po index a27f621ffe..4ac04562df 100644 --- a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/en/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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -43,15 +44,19 @@ msgstr "Server error" #: 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." +"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." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "If you need assistance, you may reference this error via the following identifier:" +msgstr "" +"If you need assistance, you may reference this error via the following " +"identifier:" #: templates/appearance/about.html:8 templates/appearance/about.html:57 msgid "About" @@ -78,49 +83,25 @@ msgstr "Copyright © 2011-2015 Roberto Rosario." msgid "Toggle navigation" msgstr "Toggle navigation" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "Profile" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anonymous" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "Success" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "Information" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "Warning" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "Error" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Actions" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "Toggle Dropdown" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Details for: %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "Edit: %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Create" @@ -150,8 +131,8 @@ msgstr "Yes" msgid "No" msgstr "No" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +146,8 @@ msgstr "Save" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Submit" @@ -183,7 +166,9 @@ msgstr "No results" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of %(total_pages)s)" +msgstr "" +"Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " +"%(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -223,49 +208,99 @@ msgstr "Advanced" msgid "Search documents" msgstr "Search documents" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Login" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "First time login" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 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 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Login using the following credentials:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Username: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "Email: %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Password: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "Sign in" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Login" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "None" + +#~ msgid "Profile" +#~ msgstr "Profile" + +#~ msgid "Anonymous" +#~ msgstr "Anonymous" + +#~ msgid "Success" +#~ msgstr "Success" + +#~ msgid "Information" +#~ msgstr "Information" + +#~ msgid "Warning" +#~ msgstr "Warning" + +#~ msgid "Error" +#~ msgstr "Error" diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po index ffbcb7d4ef..d79a2980d8 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-2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-05-28 19:52+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -44,15 +45,19 @@ msgstr "Error de servidor" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Ha habido un error. Se ha informado a los administradores del sitio vía e-mail y debería corregirse en breve. Gracias por su paciencia." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Ha habido un error. Se ha informado a los administradores del sitio vía e-" +"mail y debería corregirse en breve. Gracias por su paciencia." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "Si necesita ayuda, puede hacer referencia a este error mediante el siguiente identificador:" +msgstr "" +"Si necesita ayuda, puede hacer referencia a este error mediante el siguiente " +"identificador:" #: templates/appearance/about.html:8 templates/appearance/about.html:57 msgid "About" @@ -79,49 +84,25 @@ msgstr "Todos los derechos reservados © 2011-2015 Roberto Rosario." msgid "Toggle navigation" msgstr "Activar/Desactivar navegación" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "Perfil" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anónimo" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "Exitoso" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "Información" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "Advertencia" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "Error" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Acciones" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "Alternar desplegable" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Detalles para: %(object)s " -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "Editar: %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Crear" @@ -151,8 +132,8 @@ msgstr "Sí" msgid "No" msgstr "No" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -166,6 +147,8 @@ msgstr "Guardar" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Enviar" @@ -184,7 +167,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 @@ -224,49 +209,98 @@ msgstr "Avanzada" msgid "Search documents" msgstr "Buscar documentos" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Iniciar sesión" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Primer inicio de sesión" -#: templates/appearance/login.html:24 +#: templates/authentication/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:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Inicie sesión con las siguientes credenciales:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Usuario: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "Correo electrónico: %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Contraseña: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/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:45 templates/appearance/login.html:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "Entrar" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Iniciar sesión" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Ninguno" + +#~ msgid "Profile" +#~ msgstr "Perfil" + +#~ msgid "Anonymous" +#~ msgstr "Anónimo" + +#~ msgid "Success" +#~ msgstr "Exitoso" + +#~ msgid "Information" +#~ msgstr "Información" + +#~ msgid "Warning" +#~ msgstr "Advertencia" + +#~ msgid "Error" +#~ msgstr "Error" diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po index 5bedc92269..a9122c81a2 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 @@ -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 @@ -78,49 +79,25 @@ msgstr "کپی رایت و کپی" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "ناشناس" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "عملیات" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "جزئیات : %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "ویرایش : %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "ایجاد" @@ -150,8 +127,8 @@ msgstr "بلی" msgid "No" msgstr "خیر" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +142,8 @@ msgstr "ذخیره" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "ارسال" @@ -223,49 +202,82 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "لاگین" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "دفعه اول لاگین " -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 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 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "نام کاربری و پسورد زیر را استفاده کنید" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Username: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "Email: %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Password: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "برای امنیت بیشتر پسورد خود را تغییر دهید" -#: templates/appearance/login.html:45 templates/appearance/login.html:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "لاگین" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "هیچکدام." + +#~ msgid "Anonymous" +#~ msgstr "ناشناس" diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po index fda5ce2419..1767a40af6 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 @@ -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:57 msgid "About" @@ -79,49 +85,25 @@ msgstr "Copyright © 2011-2015 Roberto Rosario." msgid "Toggle navigation" msgstr "Activer la navigation" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anonyme" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "Succès de l'opération" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "Information" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "Alerte" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "Erreur" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Actions" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "Activer la liste déroulante" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Détails de : %(object)s " -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "Modifie r: %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Créer" @@ -151,8 +133,8 @@ msgstr "Oui" msgid "No" msgstr "Non" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -166,6 +148,8 @@ msgstr "Enregistrer" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Soumettre" @@ -184,7 +168,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 @@ -206,7 +192,9 @@ msgstr "Démarrage" #: templates/appearance/home.html:25 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:46 msgid "Search pages" @@ -224,49 +212,97 @@ msgstr "Avancé" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Connexion" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Première connexion" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 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 +#: templates/authentication/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 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Nom d'utilisateur : %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "Courriel : %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Mot de passe : %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "Connexion" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Connexion" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Aucun" + +#~ msgid "Anonymous" +#~ msgstr "Anonyme" + +#~ msgid "Success" +#~ msgstr "Succès de l'opération" + +#~ msgid "Information" +#~ msgstr "Information" + +#~ msgid "Warning" +#~ msgstr "Alerte" + +#~ msgid "Error" +#~ msgstr "Erreur" diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po index 113c137ee6..129c1377ad 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 @@ -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 @@ -78,49 +79,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "névtelen felhasználó" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Műveletek" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "" @@ -150,8 +127,8 @@ msgstr "" msgid "No" msgstr "" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +142,8 @@ msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "" @@ -223,49 +202,80 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Bejelentkezés" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:45 templates/appearance/login.html:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Bejelentkezés" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Semmi" + +#~ msgid "Anonymous" +#~ msgstr "névtelen felhasználó" diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po index 3765729c39..459ff26099 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 @@ -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 @@ -78,49 +79,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "" @@ -150,8 +127,8 @@ msgstr "" msgid "No" msgstr "" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +142,8 @@ msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "" @@ -223,49 +202,75 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:45 templates/appearance/login.html:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +msgid "Login page" +msgstr "" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "" diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po index 66e7da8c76..d8a7156305 100644 --- a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-05-30 07:49+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:12 settings.py:9 @@ -44,15 +45,19 @@ msgstr "Errore del server" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "C'è stato un errore. Questo è stato riportato all'amministratore del sito via e-mail e dovrebbe essere risolto presto. Grazie per la pazienza.." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"C'è stato un errore. Questo è stato riportato all'amministratore del sito " +"via e-mail e dovrebbe essere risolto presto. Grazie per la pazienza.." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "Se hai bisogno di assistenza, ti puoi riferire a questo errore con questo numero:" +msgstr "" +"Se hai bisogno di assistenza, ti puoi riferire a questo errore con questo " +"numero:" #: templates/appearance/about.html:8 templates/appearance/about.html:57 msgid "About" @@ -79,49 +84,25 @@ msgstr "Copyright © 2011-2015 Roberto Rosario." msgid "Toggle navigation" msgstr "Cambia navigazione" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "Profilo" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anonimo" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "Riuscito" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "Informazione" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "Attenzione" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "Errore" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Azioni " -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "Apri dropdown" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Detaglio per: %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "Modifica: %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Crea" @@ -151,8 +132,8 @@ msgstr "Si" msgid "No" msgstr "No" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -166,6 +147,8 @@ msgstr "Salva" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Conferma" @@ -184,7 +167,9 @@ msgstr "Nessun risultato" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Totale (%(start)s - %(end)s di %(total)s) (Pagina %(page_number)s di %(total_pages)s)" +msgstr "" +"Totale (%(start)s - %(end)s di %(total)s) (Pagina %(page_number)s di " +"%(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -224,49 +209,97 @@ msgstr "Avanzato" msgid "Search documents" msgstr "Cerca documenti" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Login" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Primo login" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "Complimenti!, Hai finito di installare Mayan EDMS" -#: templates/appearance/login.html:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Accedi con le seguenti credenziali:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Nome utente: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "Email: %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Password: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Ricordati di cambiare la password per aumentare la sicurezza e disabilitare questo messaggio." +msgstr "" +"Ricordati di cambiare la password per aumentare la sicurezza e disabilitare " +"questo messaggio." -#: templates/appearance/login.html:45 templates/appearance/login.html:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "Accedi" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Login" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Nessuna " + +#~ msgid "Profile" +#~ msgstr "Profilo" + +#~ msgid "Anonymous" +#~ msgstr "Anonimo" + +#~ msgid "Success" +#~ msgstr "Riuscito" + +#~ msgid "Information" +#~ msgstr "Informazione" + +#~ msgid "Warning" +#~ msgstr "Attenzione" + +#~ msgid "Error" +#~ msgstr "Errore" 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 d466598668..505ec1b19c 100644 --- a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Johan Braeken, 2017 # Justin Albstbstmeijer , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 @@ -45,15 +46,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:57 msgid "About" @@ -80,49 +86,25 @@ msgstr "Copyright © 2011-2015 Roberto Rosario." msgid "Toggle navigation" msgstr "Toggle navigatie" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anoniem" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "Succes" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "Informatie" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "Waarschuwing" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "Fout" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Acties" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "Toggle Dropdown" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Details voor: %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "Aanpassen: %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Maak aan" @@ -152,8 +134,8 @@ msgstr "Ja" msgid "No" msgstr "Nee" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -167,6 +149,8 @@ msgstr "Opslaan" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Verstuur" @@ -185,7 +169,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 @@ -207,7 +193,9 @@ msgstr "Beginnen" #: templates/appearance/home.html:25 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:46 msgid "Search pages" @@ -225,49 +213,95 @@ msgstr "Geavanceerd" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Aanmelden" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Eerste aanmelding" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 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 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Meld u aan met de volgende gegevens:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Gebruikersnaam: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "Email: %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Wachtwoord: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "Meld u aan" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Aanmelden" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Geen" + +#~ msgid "Anonymous" +#~ msgstr "Anoniem" + +#~ msgid "Success" +#~ msgstr "Succes" + +#~ msgid "Information" +#~ msgstr "Informatie" + +#~ msgid "Warning" +#~ msgstr "Waarschuwing" + +#~ msgid "Error" +#~ msgstr "Fout" diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po index 51e370b6e4..bd5fcd72fd 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: # Wojtek Warczakowski , 2016 # Wojtek Warczakowski , 2017 @@ -10,15 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-05-30 16:11+0000\n" "Last-Translator: Wojtek Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:12 settings.py:9 msgid "Appearance" @@ -46,15 +49,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:57 msgid "About" @@ -81,49 +88,25 @@ msgstr "Prawa autorskie © 2011-2015 Roberto Rosario." msgid "Toggle navigation" msgstr "Rozwiń nawigację" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "Profil" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anonimowy" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "Sukces" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "Informacja" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "Ostrzeżenie" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "Błąd" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Akcje" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "Rozwiń listę" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Szczegóły dla: %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "Edytuj: %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Utwórz" @@ -153,8 +136,8 @@ msgstr "Tak" msgid "No" msgstr "Nie" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -168,6 +151,8 @@ msgstr "Zapisz" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Wykonaj" @@ -186,7 +171,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 @@ -226,49 +213,97 @@ msgstr "Zaawansowane" msgid "Search documents" msgstr "Przeszukaj dokumenty" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Logowanie" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Pierwsze logowanie" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "Właśnie ukończyłeś instalację Mayan EDMS. Gratulacje!" -#: templates/appearance/login.html:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Logowanie przy użyciu następujących poświadczeń:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Nazwa użytkownika: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "Email: %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Hasło: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "Zaloguj" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Logowanie" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Brak" + +#~ msgid "Profile" +#~ msgstr "Profil" + +#~ msgid "Anonymous" +#~ msgstr "Anonimowy" + +#~ msgid "Success" +#~ msgstr "Sukces" + +#~ msgid "Information" +#~ msgstr "Informacja" + +#~ msgid "Warning" +#~ msgstr "Ostrzeżenie" + +#~ msgid "Error" +#~ msgstr "Błąd" diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index 2b8576adff..6b87cc6252 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 @@ -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 @@ -78,49 +79,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anónimo" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Ações" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Detalhes para: %(object)s " -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "Editar: %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Criar" @@ -150,8 +127,8 @@ msgstr "Sim" msgid "No" msgstr "Não" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +142,8 @@ msgstr "Guardar" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Submeter" @@ -223,49 +202,82 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Iniciar a sessão" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Primeiro início de sessão" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Senha: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Iniciar a sessão" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Nenhum" + +#~ msgid "Anonymous" +#~ msgstr "Anónimo" 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 3a8503c21f..560b562e06 100644 --- a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-05-04 19:14+0000\n" "Last-Translator: Jadson Ribeiro \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:12 settings.py:9 @@ -45,15 +46,19 @@ msgstr "Erro de servidor" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Houve um erro. Os administradores da página foram informados por e-mail e deverão corrigir em breve. Obrigado pela paciência." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Houve um erro. Os administradores da página foram informados por e-mail e " +"deverão corrigir em breve. Obrigado pela paciência." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "Se você precisar de ajuda, você pode fazer referência a este erro através do seguinte identificador:" +msgstr "" +"Se você precisar de ajuda, você pode fazer referência a este erro através do " +"seguinte identificador:" #: templates/appearance/about.html:8 templates/appearance/about.html:57 msgid "About" @@ -80,49 +85,25 @@ msgstr "Todos os direitos reservados © 2011-2015 Roberto Rosario." msgid "Toggle navigation" msgstr "Ativar/desativar navegação" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "Perfil" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anônimo" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "Sucesso" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "Informação" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "Advertência" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "Erro" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Ações" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "Mostrar/esconder menu" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Detalhes para: %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "Editar: %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Criar" @@ -152,8 +133,8 @@ msgstr "Sim" msgid "No" msgstr "Não" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -167,6 +148,8 @@ msgstr "Salvar" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Enviar" @@ -185,7 +168,9 @@ msgstr "Nenhum 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 @@ -225,49 +210,98 @@ msgstr "Avançada" msgid "Search documents" msgstr "Pesquisar documentos" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Iniciar sessão" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Primeiro início de sessão" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 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 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Entre usando as seguintes credenciais" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Nome: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "E-mail: %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Senha: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "Entrar" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Iniciar sessão" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Nenhum" + +#~ msgid "Profile" +#~ msgstr "Perfil" + +#~ msgid "Anonymous" +#~ msgstr "Anônimo" + +#~ msgid "Success" +#~ msgstr "Sucesso" + +#~ msgid "Information" +#~ msgstr "Informação" + +#~ msgid "Warning" +#~ msgstr "Advertência" + +#~ msgid "Error" +#~ msgstr "Erro" 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 aa5ae96592..b9fa6f1687 100644 --- a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Stefaniu Criste , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 msgid "Appearance" @@ -44,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 @@ -79,49 +81,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "anonim" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "Succes" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "Informație" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "Alertă" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "Eroare" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Acţiuni" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Detalii pentru: %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "Modifică %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Creează" @@ -151,8 +129,8 @@ msgstr "Da" msgid "No" msgstr "Nu" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -166,6 +144,8 @@ msgstr "salvează" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Trimiteţi" @@ -206,7 +186,9 @@ msgstr "Să începem" #: templates/appearance/home.html:25 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Înainte de a putea utiliza Mayan EDMS în totalitate, trebuie sa faceți următoarele:" +msgstr "" +"Înainte de a putea utiliza Mayan EDMS în totalitate, trebuie sa faceți " +"următoarele:" #: templates/appearance/home.html:46 msgid "Search pages" @@ -224,49 +206,95 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Conectare" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Prima autentificare" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 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 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Intrare utilizând acreditările următoarele:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Utilizator: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "Email: %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Parola: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "Înscriere" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Conectare" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Nici unul" + +#~ msgid "Anonymous" +#~ msgstr "anonim" + +#~ msgid "Success" +#~ msgstr "Succes" + +#~ msgid "Information" +#~ msgstr "Informație" + +#~ msgid "Warning" +#~ msgstr "Alertă" + +#~ msgid "Error" +#~ msgstr "Eroare" diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po index 2241f16b54..989d3d55a5 100644 --- a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 msgid "Appearance" @@ -44,15 +47,19 @@ msgstr "Ошибка сервера" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Тут какая-то ошибка. Её нужно сообщить администрации сайта по электронной почте, и она будет исправлена. Спасибо за терпение." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Тут какая-то ошибка. Её нужно сообщить администрации сайта по электронной " +"почте, и она будет исправлена. Спасибо за терпение." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "Если вам нужна помощь, вы можете сослаться на эту ошибку по следующему идентификатору:" +msgstr "" +"Если вам нужна помощь, вы можете сослаться на эту ошибку по следующему " +"идентификатору:" #: templates/appearance/about.html:8 templates/appearance/about.html:57 msgid "About" @@ -79,49 +86,25 @@ msgstr "© 2011-2015 Roberto Rosario, все права защищены." msgid "Toggle navigation" msgstr "Переключение навигации" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Анонимно" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "Успех" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "Информация" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "Предупреждение" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "Ошибка" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Действия" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "Переключение выпадающего списка" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "Подробности: %(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "Редактировать: %(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Создать" @@ -151,8 +134,8 @@ msgstr "Да" msgid "No" msgstr "Нет" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -166,6 +149,8 @@ msgstr "Сохранить" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "Подтвердить" @@ -184,7 +169,9 @@ msgstr "Нет результатов" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Всего (%(start)s - %(end)s из %(total)s) (Страница %(page_number)s из %(total_pages)s)" +msgstr "" +"Всего (%(start)s - %(end)s из %(total)s) (Страница %(page_number)s из " +"%(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -206,7 +193,9 @@ msgstr "Приступая к работе" #: templates/appearance/home.html:25 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Вам кое-что понадобится, прежде чем вы начнёте полноценно использовать Mayan EDMS:" +msgstr "" +"Вам кое-что понадобится, прежде чем вы начнёте полноценно использовать Mayan " +"EDMS:" #: templates/appearance/home.html:46 msgid "Search pages" @@ -224,49 +213,95 @@ msgstr "Дополнительно" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Войти" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Первое время входа в систему" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Вы только что закончили установку Mayan EDMS, поздравляем!" +msgstr "" +"Вы только что закончили установку Mayan EDMS, поздравляем!" -#: templates/appearance/login.html:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Войти, используя следующие учетные данные:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Имя пользователя: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "Адрес электронной почты: %(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Пароль: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "Вход" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Войти" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Ни один" + +#~ msgid "Anonymous" +#~ msgstr "Анонимно" + +#~ msgid "Success" +#~ msgstr "Успех" + +#~ msgid "Information" +#~ msgstr "Информация" + +#~ msgid "Warning" +#~ msgstr "Предупреждение" + +#~ msgid "Error" +#~ 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 2903efbdb5..9277221305 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 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 @@ -78,49 +80,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "" @@ -150,8 +128,8 @@ msgstr "" msgid "No" msgstr "" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +143,8 @@ msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "" @@ -223,49 +203,75 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:45 templates/appearance/login.html:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +msgid "Login page" +msgstr "" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "Brez" diff --git a/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..2481655b14 --- /dev/null +++ b/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,275 @@ +# 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: 2017-07-09 02:26-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:12 settings.py:9 +msgid "Appearance" +msgstr "" + +#: templates/403.html:5 templates/403.html:9 +msgid "Insufficient permissions" +msgstr "" + +#: templates/403.html:11 +msgid "You don't have enough permissions for this operation." +msgstr "" + +#: templates/404.html:5 templates/404.html:9 +msgid "Page not found" +msgstr "" + +#: templates/404.html:11 +msgid "Sorry, but the requested page could not be found." +msgstr "" + +#: templates/500.html:5 templates/500.html:9 +msgid "Server error" +msgstr "" + +#: templates/500.html:11 +msgid "" +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" + +#: templates/500.html:14 +msgid "" +"If you need assistance, you may reference this error via the following " +"identifier:" +msgstr "" + +#: templates/appearance/about.html:8 templates/appearance/about.html:57 +msgid "About" +msgstr "" + +#: templates/appearance/about.html:62 +msgid "Version" +msgstr "" + +#: templates/appearance/about.html:64 +#, python-format +msgid "Build number: %(build_number)s" +msgstr "" + +#: templates/appearance/about.html:76 +msgid "Released under the Apache 2.0 License" +msgstr "" + +#: templates/appearance/about.html:88 +msgid "Copyright © 2011-2015 Roberto Rosario." +msgstr "" + +#: templates/appearance/base.html:56 +msgid "Toggle navigation" +msgstr "" + +#: templates/appearance/base.html:114 +msgid "Actions" +msgstr "" + +#: templates/appearance/base.html:116 +msgid "Toggle Dropdown" +msgstr "" + +#: templates/appearance/calculate_form_title.html:13 +#, python-format +msgid "Details for: %(object)s" +msgstr "" + +#: templates/appearance/calculate_form_title.html:16 +#, python-format +msgid "Edit: %(object)s" +msgstr "" + +#: templates/appearance/calculate_form_title.html:18 +msgid "Create" +msgstr "" + +#: templates/appearance/dashboard_widget.html:25 +msgid "View details" +msgstr "" + +#: templates/appearance/generic_confirm.html:6 +#: templates/appearance/generic_confirm.html:13 +msgid "Confirm" +msgstr "" + +#: templates/appearance/generic_confirm.html:11 +msgid "Confirm delete" +msgstr "" + +#: templates/appearance/generic_confirm.html:27 +#, python-format +msgid "Delete: %(object)s?" +msgstr "" + +#: templates/appearance/generic_confirm.html:48 +msgid "Yes" +msgstr "" + +#: templates/appearance/generic_confirm.html:52 +msgid "No" +msgstr "" + +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 +#: templates/appearance/generic_form_subtemplate.html:51 +#: templates/appearance/generic_multiform_subtemplate.html:42 +msgid "required" +msgstr "" + +#: templates/appearance/generic_form_subtemplate.html:71 +#: templates/appearance/generic_multiform_subtemplate.html:64 +msgid "Save" +msgstr "" + +#: templates/appearance/generic_form_subtemplate.html:71 +#: templates/appearance/generic_list_subtemplate.html:33 +#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 +msgid "Submit" +msgstr "" + +#: templates/appearance/generic_form_subtemplate.html:74 +#: templates/appearance/generic_multiform_subtemplate.html:68 +msgid "Cancel" +msgstr "" + +#: templates/appearance/generic_list_horizontal.html:21 +#: templates/appearance/generic_list_subtemplate.html:112 +msgid "No results" +msgstr "" + +#: 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 "" + +#: templates/appearance/generic_list_subtemplate.html:14 +#: templates/appearance/generic_list_subtemplate.html:17 +#, python-format +msgid "Total: %(total)s" +msgstr "" + +#: templates/appearance/generic_list_subtemplate.html:53 +msgid "Identifier" +msgstr "" + +#: templates/appearance/home.html:9 templates/appearance/home.html:13 +msgid "Dashboard" +msgstr "" + +#: templates/appearance/home.html:22 +msgid "Getting started" +msgstr "" + +#: templates/appearance/home.html:25 +msgid "Before you can fully use Mayan EDMS you need the following:" +msgstr "" + +#: templates/appearance/home.html:46 +msgid "Search pages" +msgstr "" + +#: templates/appearance/home.html:48 templates/appearance/home.html:58 +msgid "Search" +msgstr "" + +#: templates/appearance/home.html:49 templates/appearance/home.html:59 +msgid "Advanced" +msgstr "" + +#: templates/appearance/home.html:56 +msgid "Search documents" +msgstr "" + +#: templates/authentication/login.html:10 +msgid "Login" +msgstr "" + +#: templates/authentication/login.html:21 +msgid "First time login" +msgstr "" + +#: templates/authentication/login.html:24 +msgid "" +"You have just finished installing Mayan EDMS, " +"congratulations!" +msgstr "" + +#: templates/authentication/login.html:25 +msgid "Login using the following credentials:" +msgstr "" + +#: templates/authentication/login.html:26 +#, python-format +msgid "Username: %(account)s" +msgstr "" + +#: templates/authentication/login.html:27 +#, python-format +msgid "Email: %(email)s" +msgstr "" + +#: templates/authentication/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/authentication/login.html:29 +msgid "" +"Be sure to change the password to increase security and to disable this " +"message." +msgstr "" + +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 +msgid "Sign in" +msgstr "" + +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +msgid "Login page" +msgstr "" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + +#: templatetags/appearance_tags.py:16 +msgid "None" +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 eaa0fcc8f6..dd5e9929f1 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 @@ -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 @@ -78,49 +79,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "Anonymous" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "Các thao tác" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "Tạo" @@ -150,8 +127,8 @@ msgstr "" msgid "No" msgstr "" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +142,8 @@ msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "" @@ -223,49 +202,84 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "Đăng nhập" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "Đăng nhập lần đầu" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 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 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "Đăng nhập dùng các thông tin sau:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Người dùng: %(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Mật khẩu: %(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 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:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "Đăng nhập" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "None" + +#~ msgid "Anonymous" +#~ msgstr "Anonymous" 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 ef7b459b6b..0ca1a5d64a 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:12 settings.py:9 @@ -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 @@ -78,49 +79,25 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:86 -msgid "Profile" -msgstr "" - -#: templates/appearance/base.html:92 -msgid "Anonymous" -msgstr "匿名用户" - -#: templates/appearance/base.html:126 -msgid "Success" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Information" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Warning" -msgstr "" - -#: templates/appearance/base.html:126 -msgid "Error" -msgstr "" - -#: templates/appearance/base.html:155 +#: templates/appearance/base.html:114 msgid "Actions" msgstr "操作" -#: templates/appearance/base.html:157 +#: templates/appearance/base.html:116 msgid "Toggle Dropdown" msgstr "" -#: templates/appearance/calculate_form_title.html:11 +#: templates/appearance/calculate_form_title.html:13 #, python-format msgid "Details for: %(object)s" msgstr "详细信息:%(object)s" -#: templates/appearance/calculate_form_title.html:14 +#: templates/appearance/calculate_form_title.html:16 #, python-format msgid "Edit: %(object)s" msgstr "编辑:%(object)s" -#: templates/appearance/calculate_form_title.html:16 +#: templates/appearance/calculate_form_title.html:18 msgid "Create" msgstr "创建" @@ -150,8 +127,8 @@ msgstr "是" msgid "No" msgstr "否" -#: templates/appearance/generic_form_instance.html:39 -#: templates/appearance/generic_form_instance.html:46 +#: templates/appearance/generic_form_instance.html:49 +#: templates/appearance/generic_form_instance.html:55 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:42 msgid "required" @@ -165,6 +142,8 @@ msgstr "保存" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:33 #: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/authentication/password_reset_confirm.html:29 +#: templates/authentication/password_reset_form.html:29 msgid "Submit" msgstr "提交" @@ -223,49 +202,80 @@ msgstr "" msgid "Search documents" msgstr "" -#: templates/appearance/login.html:10 +#: templates/authentication/login.html:10 msgid "Login" msgstr "登录" -#: templates/appearance/login.html:21 +#: templates/authentication/login.html:21 msgid "First time login" msgstr "第一次登录" -#: templates/appearance/login.html:24 +#: templates/authentication/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "恭喜您!您已经成功安装 Mayan EDMS。" -#: templates/appearance/login.html:25 +#: templates/authentication/login.html:25 msgid "Login using the following credentials:" msgstr "使用如下凭证登录:" -#: templates/appearance/login.html:26 +#: templates/authentication/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "用户名:%(account)s" -#: templates/appearance/login.html:27 +#: templates/authentication/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "邮箱:%(email)s" -#: templates/appearance/login.html:28 +#: templates/authentication/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "密码:%(password)s" -#: templates/appearance/login.html:29 +#: templates/authentication/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "请修改密码以提高安全性,并且禁止显示此信息。" -#: templates/appearance/login.html:45 templates/appearance/login.html:54 +#: templates/authentication/login.html:45 +#: templates/authentication/login.html:53 msgid "Sign in" msgstr "" +#: templates/authentication/login.html:58 +msgid "Forgot your password?" +msgstr "" + +#: templates/authentication/password_reset_complete.html:8 +#: templates/authentication/password_reset_confirm.html:8 +#: templates/authentication/password_reset_confirm.html:20 +#: templates/authentication/password_reset_done.html:8 +#: templates/authentication/password_reset_form.html:8 +#: templates/authentication/password_reset_form.html:20 +msgid "Password reset" +msgstr "" + +#: templates/authentication/password_reset_complete.html:15 +msgid "Password reset complete! Click the link below to login." +msgstr "" + +#: templates/authentication/password_reset_complete.html:17 +#, fuzzy +#| msgid "Login" +msgid "Login page" +msgstr "登录" + +#: templates/authentication/password_reset_done.html:15 +msgid "Password reset email sent!" +msgstr "" + #: templatetags/appearance_tags.py:16 msgid "None" msgstr "无" + +#~ msgid "Anonymous" +#~ msgstr "匿名用户" diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po index a9d5173d42..b0a1fef34b 100644 --- a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po @@ -1,41 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "البريد الإلكتروني" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "هذا الحساب غير نشط." @@ -47,16 +53,22 @@ msgstr "خروج" msgid "Change password" msgstr "" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "تغيير كلمة السر للمستخدم الحالي" -#: views.py:55 +#: views.py:68 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 f502cf1655..e1c32ffe90 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po @@ -1,41 +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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Електронна поща" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "" @@ -47,16 +52,22 @@ msgstr "Изход" msgid "Change password" msgstr "" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Промяна паролата на текущия потребител" -#: views.py:55 +#: views.py:68 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 b4e075b6a2..d8c240f0af 100644 --- a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po @@ -1,41 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Email" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "Ovaj account nije aktivan." @@ -47,16 +53,22 @@ msgstr "Logout" msgid "Change password" msgstr "" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Promjeniti trenutni pasvord" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "Vaš password je uspješno promjenjen" diff --git a/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po index 409cd26773..16095ca49b 100644 --- a/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po @@ -1,41 +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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "" @@ -47,16 +52,22 @@ msgstr "Log ud" msgid "Change password" msgstr "" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "" -#: views.py:55 +#: views.py:68 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 ee4c341641..9635895e41 100644 --- a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po @@ -1,42 +1,49 @@ # 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "Authentifizierung" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "E-Mail" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Passwort" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 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 +#: forms.py:28 msgid "This account is inactive." msgstr "Dieses Konto ist inaktiv." @@ -48,16 +55,24 @@ msgstr "Abmelden" msgid "Change password" msgstr "Passwort ändern" -#: settings.py:11 +#: settings.py:13 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 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Passwortänderung für aktuellen Benutzer" -#: views.py:55 +#: views.py:68 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 3ff077f5ed..3eb480537a 100644 --- a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po @@ -1,41 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:17 settings.py:7 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "Authentication" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Email" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Password" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "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 field is case-sensitive." +msgstr "" +"Please enter a correct email and password. Note that the password field is " +"case-sensitive." -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "This account is inactive." @@ -47,16 +54,24 @@ msgstr "Logout" msgid "Change password" msgstr "Change password" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Controls the mechanism used to authenticated user. Options are: username, email" +msgstr "" +"Controls the mechanism used to authenticated user. Options are: username, " +"email" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Current user password change" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "Your password has been successfully changed." diff --git a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po index 235a6980b4..b17921d423 100644 --- a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po @@ -1,42 +1,49 @@ # 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "Autenticación " -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Correo electrónico" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Contraseña" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 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 +#: forms.py:28 msgid "This account is inactive." msgstr "Esta cuenta está inactiva." @@ -48,16 +55,24 @@ msgstr "Cerrar sesión" msgid "Change password" msgstr "Cambiar contraseña" -#: settings.py:11 +#: settings.py:13 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 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Cambio de contraseña de usuario actual" -#: views.py:55 +#: views.py:68 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 1f8f014e51..7bfa503011 100644 --- a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po @@ -1,42 +1,49 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Nima Towhidi , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-05-04 07:55+0000\n" "Last-Translator: Nima Towhidi \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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "ایمیل" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "کلمه عبور" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "لطفا یک ایمیل و کلمه عبور معتبر وارد کنید. توجه کنید که کلمه عبور به حروف کوچک و بزرگ حساس است." +msgstr "" +"لطفا یک ایمیل و کلمه عبور معتبر وارد کنید. توجه کنید که کلمه عبور به حروف " +"کوچک و بزرگ حساس است." -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "این حساب کاربری غیرفعال است." @@ -48,16 +55,22 @@ msgstr "خروج" msgid "Change password" msgstr "تغییر کلمه عبور" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "تغییر کلمه عبور کاربر جاری" -#: views.py:55 +#: views.py:68 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 650f9122e0..566b256676 100644 --- a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po @@ -1,42 +1,49 @@ # 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "Identification" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Courriel" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Mot de passe" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 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 +#: forms.py:28 msgid "This account is inactive." msgstr "Ce compte est inactif" @@ -48,16 +55,24 @@ msgstr "Déconnexion" msgid "Change password" msgstr "Changer le mot de passe" -#: settings.py:11 +#: settings.py:13 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 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Changer le mot de passe de l'utilisateur actuel" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "Votre mot de passe a été changé avec succès." diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index 60842494c0..dfec435bae 100644 --- a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po @@ -1,41 +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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "" @@ -47,16 +52,22 @@ msgstr "Kijelentkezés" msgid "Change password" msgstr "" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "" -#: views.py:55 +#: views.py:68 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 ea21a88645..727d2929a4 100644 --- a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po @@ -1,41 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Surel" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Password" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 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 +#: forms.py:28 msgid "This account is inactive." msgstr "Akun ini belum aktif" @@ -47,16 +53,22 @@ msgstr "Keluar" msgid "Change password" msgstr "Mengganti password" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "" -#: views.py:55 +#: views.py:68 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 aedc1e64d6..92032bf1c9 100644 --- a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po @@ -1,42 +1,49 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2016-09-24 09:36+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:17 settings.py:7 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "Autenticazione" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Email" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Password" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Inserisci email e password corretti. Si noti che il campo password è case-sensitive." +msgstr "" +"Inserisci email e password corretti. Si noti che il campo password è case-" +"sensitive." -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "Questo account è disattivato" @@ -48,16 +55,24 @@ msgstr "Logout" msgid "Change password" msgstr "Cambiare la password" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Controlla il meccanismo utilizzato per autenticare l'utente. Le opzioni sono: username, email" +msgstr "" +"Controlla il meccanismo utilizzato per autenticare l'utente. Le opzioni " +"sono: username, email" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Modifica della password dell'utente corrente" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "La tua password è stata cambiata con successo" 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 e64019e384..39c0ffe818 100644 --- a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po @@ -1,42 +1,49 @@ # 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "Authenticatie" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Email" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Wachtwoord" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 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 +#: forms.py:28 msgid "This account is inactive." msgstr "Deze gebruiker is in-actief." @@ -48,16 +55,24 @@ msgstr "Afmelden" msgid "Change password" msgstr "Pas wachtwoord aan" -#: settings.py:11 +#: settings.py:13 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 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Pas wachtwoord aan van huidige gebruiker" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "Uw wachtwoord is succesvol aangepast," diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po index f269b33fdb..e9709e22aa 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojtek Warczakowski , 2016 # Wojtek Warczakowski , 2016 @@ -9,35 +9,42 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2016-03-22 17:45+0000\n" "Last-Translator: Wojtek Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:17 settings.py:7 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "Uwierzytelnianie" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Email" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Hasło" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "Podaj poprawny email i hasło. Wielkość liter hasła ma znaczenie." -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "To konto jest nieaktywne." @@ -49,16 +56,24 @@ msgstr "Wyloguj" msgid "Change password" msgstr "Zmień hasło" -#: settings.py:11 +#: settings.py:13 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 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Zmiana hasła użytkownika" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "Twoje hasło zostało pomyślnie zmienione." diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po index 0e258b6254..3c02846e54 100644 --- a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po @@ -1,42 +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: # Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Correio eletrónico" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Senha" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "Esta conta está inativa." @@ -48,16 +53,22 @@ msgstr "Sair" msgid "Change password" msgstr "Alterar senha" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Alteração da senha do utilizador atual" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "A sua senha foi alterada com sucesso." 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 925045d50d..50efaf062e 100644 --- a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po @@ -1,42 +1,49 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2016-11-10 19:28+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:17 settings.py:7 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "Autenticação" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "E-mail" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Senha" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 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 +#: forms.py:28 msgid "This account is inactive." msgstr "Esta conta está inativa." @@ -48,16 +55,24 @@ msgstr "Sair" msgid "Change password" msgstr "Alterar a senha" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Controla o mecanismo usado para autenticar o usuário. As opções são: nome de usuário, e-mail" +msgstr "" +"Controla o mecanismo usado para autenticar o usuário. As opções são: nome de " +"usuário, e-mail" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Alteração de senha do usuário atual" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "Sua senha foi alterada com sucesso" 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 8a4acb5e41..64116ebc6b 100644 --- a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po @@ -1,41 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "email" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "Acest cont este inactiv." @@ -47,16 +53,22 @@ msgstr "deconectare" msgid "Change password" msgstr "" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Schimbare parola pentru utilizatorul curent" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "Parola dvs. a fost schimbată cu succes" diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index ab3c4d9d7a..cd4ad7be7b 100644 --- a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po @@ -1,42 +1,51 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2016-07-14 02:03+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:17 settings.py:7 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "Аутентификация" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Email" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "Пароль" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Пожалуйста, введите правильный адрес электронной почты и пароль с учетом регистра." +msgstr "" +"Пожалуйста, введите правильный адрес электронной почты и пароль с учетом " +"регистра." -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "Эта учетная запись неактивна." @@ -48,16 +57,24 @@ msgstr "Выход" msgid "Change password" msgstr "Изменить пароль" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Управление механизмом, используемым для аутентификации пользователя. Возможные варианты: имя пользователя, адрес электронной почты" +msgstr "" +"Управление механизмом, используемым для аутентификации пользователя. " +"Возможные варианты: имя пользователя, адрес электронной почты" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "Изменить пароль пользователя" -#: views.py:55 +#: views.py:68 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 72ac97ff65..5bb02d7ea0 100644 --- a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po @@ -1,41 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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:17 settings.py:7 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "" @@ -47,16 +53,22 @@ msgstr "" msgid "Change password" msgstr "" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..687e0dfa4c --- /dev/null +++ b/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +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. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-09 02:26-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:17 settings.py:9 +msgid "Authentication" +msgstr "" + +#: forms.py:18 +msgid "Email" +msgstr "" + +#: forms.py:21 +msgid "Password" +msgstr "" + +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 +msgid "" +"Please enter a correct email and password. Note that the password field is " +"case-sensitive." +msgstr "" + +#: forms.py:28 +msgid "This account is inactive." +msgstr "" + +#: links.py:13 +msgid "Logout" +msgstr "" + +#: links.py:16 +msgid "Change password" +msgstr "" + +#: settings.py:13 +msgid "" +"Controls the mechanism used to authenticated user. Options are: username, " +"email" +msgstr "" + +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 +msgid "Current user password change" +msgstr "" + +#: views.py:68 +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 b7c5156f19..1788172e8c 100644 --- a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po @@ -1,41 +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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "Email" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "" -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "Tài khoản này không được kích hoạt." @@ -47,16 +52,22 @@ msgstr "Đăng xuất" msgid "Change password" msgstr "" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "Mật khẩu đã thay đổi thành công." 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 781432dd31..fe673673f0 100644 --- a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po @@ -1,41 +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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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 +#: apps.py:17 settings.py:9 msgid "Authentication" msgstr "" -#: forms.py:17 +#: forms.py:18 msgid "Email" msgstr "电子邮件" -#: forms.py:20 +#: forms.py:21 msgid "Password" msgstr "密码" -#: forms.py:24 +#: forms.py:23 forms.py:72 +msgid "Remember me" +msgstr "" + +#: forms.py:26 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." msgstr "请输入正确的邮箱或者密码。注意!密码是大小写敏感的。" -#: forms.py:26 +#: forms.py:28 msgid "This account is inactive." msgstr "此账号未激活" @@ -47,16 +52,22 @@ msgstr "退出" msgid "Change password" msgstr "" -#: settings.py:11 +#: settings.py:13 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" msgstr "" -#: views.py:39 +#: settings.py:20 +msgid "" +"Maximum type an user clicking the \"Remember me\" checkbox will remain " +"logged in. Value is time in seconds." +msgstr "" + +#: views.py:54 msgid "Current user password change" msgstr "当前用户密码修改" -#: views.py:55 +#: views.py:68 msgid "Your password has been successfully changed." msgstr "你的密码已经修改成功" diff --git a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po index 9d5ec0daad..f0e7e0c1f6 100644 --- a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po @@ -2,21 +2,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mohammed ALDOUB , 2017\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 #: models.py:36 permissions.py:7 views.py:153 @@ -121,8 +122,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po index 4a115a239b..193dce00f5 100644 --- a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Iliya Georgiev , 2017\n" -"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" +"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/" +"bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +122,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po index bae1c71245..c96a34981f 100644 --- a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po @@ -2,21 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: www.ping.ba , 2017\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/" +"rosarior/teams/13584/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 #: models.py:36 permissions.py:7 views.py:153 @@ -121,8 +123,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/da/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/da/LC_MESSAGES/django.po index 26eca432df..1b8b5a5f17 100644 --- a/mayan/apps/cabinets/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/da/LC_MESSAGES/django.po @@ -2,20 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mads L. Nielsen , 2017\n" "Language-Team: Danish (https://www.transifex.com/rosarior/teams/13584/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:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +121,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po index d49bd994f2..d66f43a3ce 100644 --- a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jesaja Everling , 2017\n" -"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" +"Language-Team: German (Germany) (https://www.transifex.com/rosarior/" +"teams/13584/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +122,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po index 5afceef7cb..81f1562426 100644 --- a/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po @@ -2,20 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-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" -"Language: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -118,12 +118,10 @@ msgstr "Number of documents on this cabinet level." #: serializers.py:27 msgid "The name of this cabinet level appended to the names of its ancestors." -msgstr "" -"The name of this cabinet level appended to the names of its ancestors." +msgstr "The name of this cabinet level appended to the names of its ancestors." #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL of the API endpoint showing the list documents inside this cabinet." diff --git a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po index a4c4d66236..731a461939 100644 --- a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po @@ -2,20 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Roberto Rosario , 2017\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -123,8 +123,7 @@ msgstr "" "contienen. " #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL del servicio de la API que muetra los documentos contenidos en este " "archivador. " diff --git a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po index a83153f4e9..c16580940b 100644 --- a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po @@ -2,20 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Roberto Rosario , 2017\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +121,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po index fc99444746..9781263843 100644 --- a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po @@ -2,20 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christophe CHAUVET , 2017\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +121,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po index 579e82d7ef..0eee3e54bd 100644 --- a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dezső József , 2017\n" -"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" +"Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/" +"hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +122,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po index 9f26727b80..06677f8a3f 100644 --- a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Sehat , 2017\n" -"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" +"Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/" +"id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +122,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po index a3fead5983..de10b9c77c 100644 --- a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po @@ -2,20 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Marco Camplese , 2017\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +121,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po index bb74bf1c33..6c28b4c3e5 100644 --- a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Justin Albstbstmeijer , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/" +"teams/13584/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +122,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po index 4a1b35c571..2b66e0b8a2 100644 --- a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po @@ -2,21 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Wojtek Warczakowski , 2017\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 #: models.py:36 permissions.py:7 views.py:153 @@ -121,8 +123,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po index ecefd10589..294e040b73 100644 --- a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Emerson Soares , 2017\n" -"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" +"Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/" +"pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +122,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po index 087e1b5d48..cfe85ca181 100644 --- a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jadson Ribeiro , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/" +"teams/13584/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +122,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "O nome deste nível de pasta anexado aos nomes de seus antepassados." #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" "URL do ponto de extremidade da API mostrando os documentos da lista dentro " "desta pasta." @@ -138,8 +138,8 @@ msgid "" "API URL pointing to a document in relation to the cabinet storing it. This " "URL is different than the canonical document URL." msgstr "" -"API URL que aponta para um documento em relação à pasta que o armazena. Este" -" URL é diferente do URL do documento que está de acordo com as normas " +"API URL que aponta para um documento em relação à pasta que o armazena. Este " +"URL é diferente do URL do documento que está de acordo com as normas " "estabelecidas." #: templates/cabinets/cabinet_details.html:21 diff --git a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po index 3f13042e48..7a028add77 100644 --- a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po @@ -2,21 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Badea Gabriel , 2017\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/" +"teams/13584/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 #: models.py:36 permissions.py:7 views.py:153 @@ -121,8 +123,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po index 9d2f3a342d..9d66230482 100644 --- a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po @@ -2,21 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: panasoft , 2017\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 #: models.py:36 permissions.py:7 views.py:153 @@ -121,8 +123,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po index 2b00b4365a..d8c0c3820e 100644 --- a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po @@ -2,21 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: kontrabant , 2017\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/" +"teams/13584/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 #: models.py:36 permissions.py:7 views.py:153 @@ -121,8 +123,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..1432afbb22 --- /dev/null +++ b/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,242 @@ +# 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: 2017-07-09 02:26-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=INTEGER; plural=EXPRESSION;\n" + +#: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 +#: models.py:36 permissions.py:7 views.py:153 +msgid "Cabinets" +msgstr "" + +#: links.py:27 links.py:38 +msgid "Remove from cabinets" +msgstr "" + +#: links.py:31 links.py:35 +msgid "Add to cabinets" +msgstr "" + +#: links.py:55 +msgid "Add new level" +msgstr "" + +#: links.py:60 views.py:39 +msgid "Create cabinet" +msgstr "" + +#: links.py:64 +msgid "Delete" +msgstr "" + +#: links.py:67 +msgid "Edit" +msgstr "" + +#: links.py:71 +msgid "All" +msgstr "" + +#: links.py:74 +msgid "Details" +msgstr "" + +#: models.py:24 search.py:16 +msgid "Label" +msgstr "" + +#: models.py:27 +msgid "Documents" +msgstr "" + +#: models.py:35 models.py:68 serializers.py:134 +msgid "Cabinet" +msgstr "" + +#: models.py:69 serializers.py:135 +msgid "Parent and Label" +msgstr "" + +#: models.py:76 serializers.py:141 +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#: models.py:88 +msgid "Document cabinet" +msgstr "" + +#: models.py:89 +msgid "Document cabinets" +msgstr "" + +#: permissions.py:12 +msgid "Add documents to cabinets" +msgstr "" + +#: permissions.py:15 +msgid "Create cabinets" +msgstr "" + +#: permissions.py:18 +msgid "Delete cabinets" +msgstr "" + +#: permissions.py:21 +msgid "Edit cabinets" +msgstr "" + +#: permissions.py:24 +msgid "Remove documents from cabinets" +msgstr "" + +#: permissions.py:27 +msgid "View cabinets" +msgstr "" + +#: serializers.py:20 +msgid "List of children cabinets." +msgstr "" + +#: serializers.py:23 +msgid "Number of documents on this cabinet level." +msgstr "" + +#: serializers.py:27 +msgid "The name of this cabinet level appended to the names of its ancestors." +msgstr "" + +#: serializers.py:33 +msgid "URL of the API endpoint showing the list documents inside this cabinet." +msgstr "" + +#: serializers.py:69 serializers.py:175 +msgid "Comma separated list of document primary keys to add to this cabinet." +msgstr "" + +#: serializers.py:154 +msgid "" +"API URL pointing to a document in relation to the cabinet storing it. This " +"URL is different than the canonical document URL." +msgstr "" + +#: templates/cabinets/cabinet_details.html:21 +msgid "Navigation:" +msgstr "" + +#: views.py:70 +#, python-format +msgid "Add new level to: %s" +msgstr "" + +#: views.py:83 +#, python-format +msgid "Delete the cabinet: %s?" +msgstr "" + +#: views.py:111 +#, python-format +msgid "Details of cabinet: %s" +msgstr "" + +#: views.py:142 +#, python-format +msgid "Edit cabinet: %s" +msgstr "" + +#: views.py:177 +#, python-format +msgid "Cabinets containing document: %s" +msgstr "" + +#: views.py:188 +#, python-format +msgid "Add to cabinet request performed on %(count)d document" +msgstr "" + +#: views.py:191 +#, python-format +msgid "Add to cabinet request performed on %(count)d documents" +msgstr "" + +#: views.py:198 +msgid "Add" +msgstr "" + +#: views.py:200 +msgid "Add document to cabinets" +msgid_plural "Add documents to cabinets" +msgstr[0] "" +msgstr[1] "" + +#: views.py:211 +#, python-format +msgid "Add document \"%s\" to cabinets" +msgstr "" + +#: views.py:222 +msgid "Cabinets to which the selected documents will be added." +msgstr "" + +#: views.py:250 +#, python-format +msgid "Document: %(document)s is already in cabinet: %(cabinet)s." +msgstr "" + +#: views.py:260 +#, python-format +msgid "Document: %(document)s added to cabinet: %(cabinet)s successfully." +msgstr "" + +#: views.py:272 +#, python-format +msgid "Remove from cabinet request performed on %(count)d document" +msgstr "" + +#: views.py:275 +#, python-format +msgid "Remove from cabinet request performed on %(count)d documents" +msgstr "" + +#: views.py:282 +msgid "Remove" +msgstr "" + +#: views.py:284 +msgid "Remove document from cabinets" +msgid_plural "Remove documents from cabinets" +msgstr[0] "" +msgstr[1] "" + +#: views.py:295 +#, python-format +msgid "Remove document \"%s\" to cabinets" +msgstr "" + +#: views.py:306 +msgid "Cabinets from which the selected documents will be removed." +msgstr "" + +#: views.py:333 +#, python-format +msgid "Document: %(document)s is not in cabinet: %(cabinet)s." +msgstr "" + +#: views.py:343 +#, python-format +msgid "Document: %(document)s removed from cabinet: %(cabinet)s." +msgstr "" diff --git a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po index d05fb2ad7f..bfddeda991 100644 --- a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Trung Phan Minh , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/" +"teams/13584/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:34 apps.py:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +122,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/cabinets/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/zh_CN/LC_MESSAGES/django.po index 0005e42fa8..3d13acc122 100644 --- a/mayan/apps/cabinets/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/zh_CN/LC_MESSAGES/django.po @@ -2,20 +2,21 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Genlin Jiao , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/rosarior/teams/13584/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/rosarior/" +"teams/13584/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:70 apps.py:73 forms.py:30 links.py:21 menus.py:8 @@ -121,8 +122,7 @@ msgid "The name of this cabinet level appended to the names of its ancestors." msgstr "" #: serializers.py:33 -msgid "" -"URL of the API endpoint showing the list documents inside this cabinet." +msgid "URL of the API endpoint showing the list documents inside this cabinet." msgstr "" #: serializers.py:69 serializers.py:175 diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po index 9b2221117b..9ac9e3be43 100644 --- a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ar/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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 msgid "Checkouts" msgstr "" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +44,7 @@ msgstr "Document checked out" msgid "Document forcefully checked in" msgstr "Document forcefully checked in" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Document already checked out." @@ -52,12 +53,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "مستخدم" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +65,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +121,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 "" @@ -136,12 +133,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +198,6 @@ msgstr "Check out details for document: %s" #: views.py:130 #, 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?" @@ -213,7 +205,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +263,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 815dfe23c5..4986367fce 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -23,7 +24,6 @@ msgid "Checkouts" msgstr "" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +43,7 @@ msgstr "Документът е проверен." msgid "Document forcefully checked in" msgstr "Документът е принудително регистриран" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Документът вече е проверен." @@ -52,12 +52,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Потребител" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +64,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +120,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 "" @@ -136,12 +132,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +197,6 @@ msgstr "Данни от проверката на документ: %s" #: views.py:130 #, 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?" @@ -213,7 +204,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +262,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 b2cb4c5796..1694826e35 100644 --- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bs_BA/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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 msgid "Checkouts" msgstr "" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +44,7 @@ msgstr "Dokument odjavljen" msgid "Document forcefully checked in" msgstr "Dokument je prisilno prijavljen" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Dokument je već odjavljen." @@ -52,12 +53,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Korisnik" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +65,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +121,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 "" @@ -136,12 +133,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +198,6 @@ msgstr "Odjavni detalji za dokument: %s" #: views.py:130 #, 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?" @@ -213,7 +205,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +263,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 1ddf29fcc8..9f69648e97 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -23,7 +24,6 @@ msgid "Checkouts" msgstr "" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +43,7 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "" @@ -52,12 +52,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Bruger" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +64,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +120,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 "" @@ -136,12 +132,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +197,6 @@ msgstr "" #: views.py:130 #, 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?" @@ -213,7 +204,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +262,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 f506b2944b..b27780ee73 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-2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -25,7 +26,6 @@ msgid "Checkouts" msgstr "Ausbuchungen" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "Ausgebuchte Dokumente" @@ -45,7 +45,7 @@ msgstr "Dokument ausgebucht" msgid "Document forcefully checked in" msgstr "Dokument zwingend eingebucht" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Dokument bereits ausgebucht" @@ -54,12 +54,10 @@ msgid "Document status" msgstr "Dokumentenstatus" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Benutzer" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "Ausbuchungszeit" @@ -68,7 +66,6 @@ msgid "Check out expiration" msgstr "Ausbuchungsende" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "Neue Versionen erlaubt?" @@ -125,7 +122,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." @@ -138,12 +134,10 @@ msgid "Document checkouts" msgstr "Ausbuchungen" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "Akutialisierungsschutz" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "Aktualisierungsschutz" @@ -205,17 +199,15 @@ msgstr "Ausbuchungsdetails für Dokument %s" #: views.py:130 #, 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:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Dokument %s einbuchen?" @@ -274,11 +266,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 9f2db93f44..dbd3f1c758 100644 --- a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:36 links.py:30 @@ -23,7 +24,6 @@ msgid "Checkouts" msgstr "Checkouts" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "Checkedout documents" @@ -43,7 +43,7 @@ msgstr "Document checked out" msgid "Document forcefully checked in" msgstr "Document forcefully checked in" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Document already checked out." @@ -52,12 +52,10 @@ msgid "Document status" msgstr "Document status" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "User" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "Check out time" @@ -66,7 +64,6 @@ msgid "Check out expiration" msgstr "Check out expiration" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "New versions allowed?" @@ -123,7 +120,6 @@ msgid "Block new version upload" msgstr "Block new version upload" #: models.py:54 -#| 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 must be in the future." @@ -136,12 +132,10 @@ msgid "Document checkouts" msgstr "Document checkouts" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "New version block" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "New version blocks" @@ -203,17 +197,15 @@ msgstr "Check out details for document: %s" #: views.py:130 #, 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 "You didn't originally checked out this document. Forcefully check in the document: %s?" +msgstr "" +"You didn't originally checked out this document. Forcefully check in the " +"document: %s?" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Check in the document: %s?" @@ -272,11 +264,11 @@ msgstr "Period" #~ 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/es/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po index 0f74024f61..175cc31e19 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-2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:36 links.py:30 @@ -24,7 +25,6 @@ msgid "Checkouts" msgstr "Reservaciones" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -44,7 +44,7 @@ msgstr "Documento reservado" msgid "Document forcefully checked in" msgstr "Documento devuelto forzosamente" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "El documento ya está reservado." @@ -53,12 +53,10 @@ msgid "Document status" msgstr "Estatus del documento" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Usuario" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "Hora de reserva" @@ -67,7 +65,6 @@ msgid "Check out expiration" msgstr "Salida de la reserva" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "¿Nuevas versiones permitidas?" @@ -124,7 +121,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." @@ -137,12 +133,10 @@ msgid "Document checkouts" msgstr "Reservaciones de documentos" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "Bloquear nueva version" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "Bloquear nuevas versiones" @@ -204,17 +198,15 @@ msgstr "Detalles de la reserva para el documento: %s" #: views.py:130 #, 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:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "¿Devolver el documento: %s?" @@ -273,11 +265,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 9efe24213f..3f27e2d466 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -23,7 +24,6 @@ msgid "Checkouts" msgstr "خروج Checkout" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +43,7 @@ msgstr "سند خارج شد." msgid "Document forcefully checked in" msgstr "سند طبق دستور وارد شد." -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "سند در حال حاضر خارج و یا checked out شده است." @@ -52,12 +52,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "کاربر" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +64,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +120,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 "" @@ -136,12 +132,10 @@ msgid "Document checkouts" msgstr "خروجی های check out سند" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +197,6 @@ msgstr "جزئیات خروج و یا Checkout سند: %s" #: views.py:130 #, 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?" @@ -213,7 +204,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +262,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 39d6331348..b0ae189b36 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: # Bruno CAPELETO , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -25,7 +26,6 @@ msgid "Checkouts" msgstr "Verrous" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -45,7 +45,7 @@ msgstr "Document verrouillé" msgid "Document forcefully checked in" msgstr "Document déverrouillé de force" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Document déjà verrouillé." @@ -54,12 +54,10 @@ msgid "Document status" msgstr "Status du document" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Utilisateur" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "Heure du vérouillage" @@ -68,7 +66,6 @@ msgid "Check out expiration" msgstr "Expiration du vérouillage" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "Autoriser de nouvelles versions ?" @@ -125,9 +122,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" @@ -138,12 +135,10 @@ msgid "Document checkouts" msgstr "Verrouillages du document" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "Bloc de la nouvelle version" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "Blocs de la nouvelle version" @@ -205,17 +200,15 @@ msgstr "Détails du verrou pour le document : %s" #: views.py:130 #, 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:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Verrouiller le document : %s ?" @@ -274,11 +267,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 94132fa518..e1dfc5c252 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -23,7 +24,6 @@ msgid "Checkouts" msgstr "" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +43,7 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "" @@ -52,12 +52,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Felhasználó" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +64,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +120,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 "" @@ -136,12 +132,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +197,6 @@ msgstr "" #: views.py:130 #, 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?" @@ -213,7 +204,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +262,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 d3201c0b9a..0cb962081a 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -23,7 +24,6 @@ msgid "Checkouts" msgstr "" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +43,7 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "" @@ -52,12 +52,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Pengguna" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +64,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +120,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 "" @@ -136,12 +132,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +197,6 @@ msgstr "" #: views.py:130 #, 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?" @@ -213,7 +204,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +262,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 6abfb24e31..1b33ab7970 100644 --- a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Marco Camplese , 2016-2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -24,7 +25,6 @@ msgid "Checkouts" msgstr "Uscite" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "Documenti controllati" @@ -44,7 +44,7 @@ msgstr "Documento in uscita" msgid "Document forcefully checked in" msgstr "Forza documento in entrata" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Documento già uscito" @@ -53,12 +53,10 @@ msgid "Document status" msgstr "Stato documento" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Utente" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "Tempo di uscita" @@ -67,7 +65,6 @@ msgid "Check out expiration" msgstr "Scadenza dell'uscita" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "Accetta nuove versioni" @@ -124,7 +121,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 "La data e ora di uscita deve essere nel futuro." @@ -137,12 +133,10 @@ msgid "Document checkouts" msgstr "Documenti usciti" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "Nuova versione blocco" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "Nuove versioni blocco" @@ -204,17 +198,15 @@ msgstr "Dettaglio del check out per il documento: %s" #: views.py:130 #, 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 "Non hai originariamente fatto il checkout di questo documento. Forzare nel documento: %s?" +msgstr "" +"Non hai originariamente fatto il checkout di questo documento. Forzare nel " +"documento: %s?" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Accetti il documento: %s?" @@ -273,11 +265,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/nl_NL/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po index 9bf9a6d8e4..16fd395bce 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: # Evelijn Saaltink , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -25,7 +26,6 @@ msgid "Checkouts" msgstr "Checkouts" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -45,7 +45,7 @@ msgstr "Document uit-gecheckt" msgid "Document forcefully checked in" msgstr "Document geforceerd in-gecheckt" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Document reeds uit-gecheckt." @@ -54,12 +54,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Gebruiker" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -68,7 +66,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "Nieuwe versies toegestaan?" @@ -125,7 +122,6 @@ msgid "Block new version upload" msgstr "Blokkeer uploaden van een nieuwe versie" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -138,12 +134,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -205,9 +199,6 @@ msgstr "" #: views.py:130 #, 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?" @@ -215,7 +206,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -274,11 +264,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 3794bf943f..96f21bab63 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: # Wojtek Warczakowski , 2016 @@ -10,22 +10,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:36 links.py:30 msgid "Checkouts" msgstr "Blokady" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "Dokumenty zablokowane" @@ -45,7 +47,7 @@ msgstr "Dokument został zablokowany" msgid "Document forcefully checked in" msgstr "Wymuszono odblokowanie dokumentu" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Dokument jest już zablokowany." @@ -54,12 +56,10 @@ msgid "Document status" msgstr "Status dokumentu" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Użytkownik" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "Czas blokady" @@ -68,7 +68,6 @@ msgid "Check out expiration" msgstr "Wygaśnięcie blokady" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "Czy nowe wersje są dozwolone?" @@ -110,7 +109,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" @@ -125,7 +125,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." @@ -138,12 +137,10 @@ msgid "Document checkouts" msgstr "Blokady dokumentu" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "Blokada nowej wersji" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "Blokady nowych wersji" @@ -205,17 +202,15 @@ msgstr "Szczegóły blokady dokumentu: %s" #: views.py:130 #, 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:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Odblokować dokument: %s?" @@ -274,11 +269,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 a8a4c7ce6c..27ce700517 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -23,7 +24,6 @@ msgid "Checkouts" msgstr "" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +43,7 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "" @@ -52,12 +52,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Utilizador" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +64,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +120,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 "" @@ -136,12 +132,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +197,6 @@ msgstr "" #: views.py:130 #, 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?" @@ -213,7 +204,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +262,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 64dbd19af0..6fc6d16ed2 100644 --- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Aline Freitas , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -25,7 +26,6 @@ msgid "Checkouts" msgstr "Reservas" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "Documentos verificados" @@ -45,7 +45,7 @@ msgstr "Documento reservado" msgid "Document forcefully checked in" msgstr "Documento devolvido forçosamente" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Documento já está reservado." @@ -54,12 +54,10 @@ msgid "Document status" msgstr "Status do documento" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Usuário" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "Hora da reserva" @@ -68,7 +66,6 @@ msgid "Check out expiration" msgstr "Saída da reserva" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "Novas versões permitidas?" @@ -125,7 +122,6 @@ msgid "Block new version upload" msgstr "Restringir o carregamento de novas versões" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "Data e hora da expiração da reserva deve ser no futuro." @@ -138,12 +134,10 @@ msgid "Document checkouts" msgstr "Reservas de documentos" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "Bloqueio de nova versão" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "Bloqueios de nova versão" @@ -205,17 +199,15 @@ msgstr "Detalhes da reserva para o documento: %s " #: views.py:130 #, 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 "Você não reservou inicialmente este documento. Devolver forçosamente o documento: %s?" +msgstr "" +"Você não reservou inicialmente este documento. Devolver forçosamente o " +"documento: %s?" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Devolver o documento: %s?" @@ -274,11 +266,11 @@ msgstr "Período" #~ 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 e54c542a1a..c7c5f49c9e 100644 --- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ro_RO/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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 msgid "Checkouts" msgstr "" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +44,7 @@ msgstr "Documentul aprobat" msgid "Document forcefully checked in" msgstr "Document aprobat forţat" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Document deja aprobat." @@ -52,12 +53,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "utilizator" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +65,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -108,7 +106,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" @@ -123,7 +122,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 "" @@ -136,12 +134,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +199,6 @@ msgstr "Verificat detaliile documentului:% s" #: views.py:130 #, 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?" @@ -213,7 +206,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +264,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 3d18308413..923db14681 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: # lilo.panic, 2016 @@ -9,22 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 msgid "Checkouts" msgstr "Забронированные документы" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -44,7 +46,7 @@ msgstr "Документ забронирован" msgid "Document forcefully checked in" msgstr "Документ освобождён насильно" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Документ уже забронирован." @@ -53,12 +55,10 @@ msgid "Document status" msgstr "Статус документа" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Пользователь" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "Время бронивания" @@ -67,7 +67,6 @@ msgid "Check out expiration" msgstr "Окончание бронирования" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "Новые версии разрешены?" @@ -124,7 +123,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 "Время окончания брованирования должно быть в будущем." @@ -137,12 +135,10 @@ msgid "Document checkouts" msgstr "Забронированные документы" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "Блокировка добавления новых версий" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "Блокировки добавления новых версий" @@ -204,9 +200,6 @@ msgstr "Подробности бронирования %s" #: views.py:130 #, 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?" @@ -214,7 +207,6 @@ msgstr "Документ был забронирован не вами. Осво #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Освободить документ: %s?" @@ -273,11 +265,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 620e2058a0..d6041ccfcd 100644 --- a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 msgid "Checkouts" msgstr "Odjave" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +44,7 @@ msgstr "Dokument prijavljen" msgid "Document forcefully checked in" msgstr "Dokumentu je vsiljena prijava" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "Dokument je že odjavljen" @@ -52,12 +53,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +65,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +121,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 "" @@ -136,12 +133,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +198,6 @@ msgstr "" #: views.py:130 #, 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?" @@ -213,7 +205,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +263,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..937b8547e6 --- /dev/null +++ b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,224 @@ +# 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: 2017-07-09 02:26-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:36 links.py:30 +msgid "Checkouts" +msgstr "" + +#: apps.py:55 +msgid "Checkedout documents" +msgstr "" + +#: events.py:9 +msgid "Document automatically checked in" +msgstr "" + +#: events.py:12 +msgid "Document checked in" +msgstr "" + +#: events.py:15 +msgid "Document checked out" +msgstr "" + +#: events.py:19 +msgid "Document forcefully checked in" +msgstr "" + +#: exceptions.py:27 views.py:49 +msgid "Document already checked out." +msgstr "" + +#: forms.py:28 +msgid "Document status" +msgstr "" + +#: forms.py:37 models.py:37 views.py:79 +msgid "User" +msgstr "" + +#: forms.py:41 +msgid "Check out time" +msgstr "" + +#: forms.py:46 +msgid "Check out expiration" +msgstr "" + +#: 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:41 +msgid "Check in document" +msgstr "" + +#: links.py:48 +msgid "Check in/out" +msgstr "" + +#: literals.py:12 +msgid "Checked out" +msgstr "" + +#: literals.py:13 +msgid "Checked in/available" +msgstr "" + +#: models.py:27 models.py:92 +msgid "Document" +msgstr "" + +#: models.py:29 +msgid "Check out date and time" +msgstr "" + +#: models.py:33 +msgid "Amount of time to hold the document checked out in minutes." +msgstr "" + +#: models.py:35 +msgid "Check out expiration date and time" +msgstr "" + +#: models.py:41 +msgid "Do not allow new version of this document to be uploaded." +msgstr "" + +#: models.py:43 +msgid "Block new version upload" +msgstr "" + +#: models.py:54 +msgid "Check out expiration date and time must be in the future." +msgstr "" + +#: models.py:87 permissions.py:7 +msgid "Document checkout" +msgstr "" + +#: models.py:88 +msgid "Document checkouts" +msgstr "" + +#: models.py:97 +msgid "New version block" +msgstr "" + +#: models.py:98 +msgid "New version blocks" +msgstr "" + +#: permissions.py:10 +msgid "Check in documents" +msgstr "" + +#: permissions.py:13 +msgid "Forcefully check in documents" +msgstr "" + +#: permissions.py:16 +msgid "Check out documents" +msgstr "" + +#: permissions.py:19 +msgid "Check out details view" +msgstr "" + +#: queues.py:8 +msgid "Checkouts periodic" +msgstr "" + +#: queues.py:12 +msgid "Check expired checkouts" +msgstr "" + +#: views.py:53 +#, python-format +msgid "Error trying to check out document; %s" +msgstr "" + +#: views.py:58 +#, python-format +msgid "Document \"%s\" checked out successfully." +msgstr "" + +#: views.py:66 +#, python-format +msgid "Check out document: %s" +msgstr "" + +#: views.py:75 +msgid "Documents checked out" +msgstr "" + +#: views.py:85 +msgid "Checkout time and date" +msgstr "" + +#: views.py:91 +msgid "Checkout expiration" +msgstr "" + +#: views.py:112 +#, python-format +msgid "Check out details for document: %s" +msgstr "" + +#: views.py:130 +#, python-format +msgid "" +"You didn't originally checked out this document. Forcefully check in the " +"document: %s?" +msgstr "" + +#: views.py:134 +#, python-format +msgid "Check in the document: %s?" +msgstr "" + +#: views.py:162 +msgid "Document has not been checked out." +msgstr "" + +#: views.py:167 +#, python-format +msgid "Error trying to check in document; %s" +msgstr "" + +#: views.py:172 +#, python-format +msgid "Document \"%s\" checked in successfully." +msgstr "" + +#: widgets.py:23 +msgid "Period" +msgstr "" 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 217fa96e0c..b502c1795c 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -23,7 +24,6 @@ msgid "Checkouts" msgstr "" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +43,7 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "" @@ -52,12 +52,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "Người dùng" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +64,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +120,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 "" @@ -136,12 +132,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +197,6 @@ msgstr "" #: views.py:130 #, 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?" @@ -213,7 +204,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +262,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 f72f2fc72b..01632216a4 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: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:36 links.py:30 @@ -23,7 +24,6 @@ msgid "Checkouts" msgstr "" #: apps.py:55 -#| msgid "checked out documents" msgid "Checkedout documents" msgstr "" @@ -43,7 +43,7 @@ msgstr "文档检出" msgid "Document forcefully checked in" msgstr "文档强制签入" -#: exceptions.py:25 views.py:49 +#: exceptions.py:27 views.py:49 msgid "Document already checked out." msgstr "文档已经检出" @@ -52,12 +52,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:79 -#| msgid "User: %s" msgid "User" msgstr "用户" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -66,7 +64,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,7 +120,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 "" @@ -136,12 +132,10 @@ msgid "Document checkouts" msgstr "" #: models.py:97 -#| msgid "New versions allowed: %s" msgid "New version block" msgstr "" #: models.py:98 -#| msgid "New versions allowed: %s" msgid "New version blocks" msgstr "" @@ -203,9 +197,6 @@ msgstr "文档:%s的检出信息" #: views.py:130 #, 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?" @@ -213,7 +204,6 @@ msgstr "" #: views.py:134 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -272,11 +262,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 be4a51a6ef..ddb1a250eb 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,71 +9,79 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "الاختيار" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "إضافة" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "إزالة" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -138,33 +146,37 @@ msgstr "" msgid "Tools" msgstr "" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Days" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Hours" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minutes" #: menus.py:12 -msgid "About" +msgid "System" msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "مستخدم" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Object" @@ -188,10 +200,6 @@ msgstr "" msgid "Shared uploaded files" msgstr "" -#: models.py:53 -msgid "User" -msgstr "مستخدم" - #: models.py:57 msgid "Timezone" msgstr "" @@ -226,8 +234,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -239,9 +246,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -279,7 +283,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -289,7 +292,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -309,9 +311,6 @@ msgstr "يجب اختيار غرض واحد عالأقل." msgid "None" msgstr "لا شيء" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" - #~ msgid "Account" #~ msgstr "account" @@ -343,11 +342,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." @@ -356,11 +355,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 9cd69b8d5b..eb6de7269e 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,71 +9,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Добави" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Премахнете" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -138,33 +145,37 @@ msgstr "" msgid "Tools" msgstr "" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Дни" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Часове" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Минути" #: menus.py:12 -msgid "About" +msgid "System" msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Потребител" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Обект" @@ -188,10 +199,6 @@ msgstr "" msgid "Shared uploaded files" msgstr "" -#: models.py:53 -msgid "User" -msgstr "Потребител" - #: models.py:57 msgid "Timezone" msgstr "" @@ -226,8 +233,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -239,9 +245,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -279,7 +282,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -289,7 +291,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -309,9 +310,6 @@ msgstr "" msgid "None" msgstr "Няма" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" - #~ msgid "Account" #~ msgstr "account" @@ -343,11 +341,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." @@ -356,11 +354,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 0b39055e76..1c13677838 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,71 +9,79 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Odabir" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Dodati" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Ukloniti" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -138,33 +146,37 @@ msgstr "" msgid "Tools" msgstr "" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Dana" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Sati" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minuta" #: menus.py:12 -msgid "About" +msgid "System" msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Korisnik" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Objekat" @@ -188,10 +200,6 @@ msgstr "" msgid "Shared uploaded files" msgstr "" -#: models.py:53 -msgid "User" -msgstr "Korisnik" - #: models.py:57 msgid "Timezone" msgstr "" @@ -226,8 +234,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -239,9 +246,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -279,7 +283,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -289,7 +292,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -309,9 +311,6 @@ msgstr "Mora biti izabrana barem jedna stanka." msgid "None" msgstr "Nijedno" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" - #~ msgid "Account" #~ msgstr "account" @@ -343,11 +342,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." @@ -356,11 +355,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 e7cdd61c0a..c3b625863f 100644 --- a/mayan/apps/common/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/da/LC_MESSAGES/django.po @@ -1,78 +1,85 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -137,33 +144,37 @@ msgstr "" msgid "Tools" msgstr "" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "" #: menus.py:12 -msgid "About" +msgid "System" msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Bruger" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Objekt" @@ -187,10 +198,6 @@ msgstr "" msgid "Shared uploaded files" msgstr "" -#: models.py:53 -msgid "User" -msgstr "Bruger" - #: models.py:57 msgid "Timezone" msgstr "" @@ -225,8 +232,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -238,9 +244,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -278,7 +281,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -288,7 +290,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -308,9 +309,6 @@ msgstr "" msgid "None" msgstr "Ingen" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" - #~ msgid "Account" #~ msgstr "account" @@ -342,11 +340,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." @@ -355,11 +353,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 d93335cf36..e089f90268 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-2016 @@ -13,71 +13,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "Allgemein" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Auswahl" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "Filter" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "Auswahl %s kann nicht übertragen werden" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Hinzufügen" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Entfernen" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "%(object)s nicht erstellt, Fehler: %(error)s" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "%(object)s erfolgreich erstellt." -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "%(object)s nicht gelöscht, Fehler: %(error)s." -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "%(object)s erfolgreich gelöscht." -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "%(object)s nicht aktualisiert, Fehler: %(error)s." -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "%(object)s erfolgreich aktualisiert." @@ -142,33 +149,37 @@ msgstr "Hilfe" msgid "Tools" msgstr "Werkzeuge" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Tage" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Stunden" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minuten" #: menus.py:12 -msgid "About" -msgstr "Über" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Benutzer" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "Operation durchgeführt für %(count)d Objekte" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "Operation durchgeführt für %(count)d Objekte" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Objekt" @@ -192,10 +203,6 @@ msgstr "Geteilte hochgeladene Datei" msgid "Shared uploaded files" msgstr "Geteilte hochgeladene Dateien" -#: models.py:53 -msgid "User" -msgstr "Benutzer" - #: models.py:57 msgid "Timezone" msgstr "Zeitzone" @@ -230,26 +237,27 @@ msgstr "Protokollierung für alle Apps automatisch freischalten." #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung auf einen Datenbankcommit warten." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung " +"auf einen Datenbankcommit warten." #: settings.py:27 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:33 msgid "A storage backend that all workers can use to share files." msgstr "Datenbackend, das alle Worker benutzen können, um Dateien zu teilen" #: settings.py:38 -#| 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." -msgstr "Temporäres Verzeichnis zum systemweiten Speichern von Thumbnails, Vorschauen und temporären Dateien. " +msgstr "" +"Temporäres Verzeichnis zum systemweiten Speichern von Thumbnails, Vorschauen " +"und temporären Dateien. " #: validators.py:29 msgid "" @@ -283,7 +291,6 @@ msgid "Edit current user locale profile details" msgstr "Aktuelle Benutzerlokalisierungsdetails bearbeiten" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "Filterauswahl" @@ -293,7 +300,6 @@ msgid "Results for filter: %s" msgstr "Ergebnis für Filter %s" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filter nicht gefunden" @@ -313,8 +319,8 @@ msgstr "Es muss mindestens ein Element ausgewählt werden." msgid "None" msgstr "Kein(e)" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "Über" #~ msgid "Account" #~ msgstr "account" @@ -347,11 +353,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." @@ -360,11 +366,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 eb5f228e50..ddcac675b4 100644 --- a/mayan/apps/common/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/en/LC_MESSAGES/django.po @@ -1,78 +1,85 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "Common" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "Available attributes: \n" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Selection" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "Filter" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "Unable to transfer selection: %s." -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Add" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Remove" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "%(object)s not created, error: %(error)s" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "%(object)s created successfully." -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "%(object)s not deleted, error: %(error)s." -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "%(object)s deleted successfully." -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "%(object)s not updated, error: %(error)s." -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "%(object)s updated successfully." @@ -137,33 +144,37 @@ msgstr "Support" msgid "Tools" msgstr "Tools" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Days" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Hours" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minutes" #: menus.py:12 -msgid "About" -msgstr "About" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "User" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "Operation performed on %(count)d object" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "Operation performed on %(count)d objects" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Object" @@ -187,10 +198,6 @@ msgstr "Shared uploaded file" msgid "Shared uploaded files" msgstr "Shared uploaded files" -#: models.py:53 -msgid "User" -msgstr "User" - #: models.py:57 msgid "Timezone" msgstr "Timezone" @@ -225,9 +232,9 @@ msgstr "Automatically enable logging to all apps." #: settings.py:19 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." +"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." #: settings.py:27 msgid "An integer specifying how many objects should be displayed per page." @@ -238,19 +245,20 @@ msgid "A storage backend that all workers can use to share files." msgstr "A storage backend that all workers can use to share files." #: settings.py:38 -#| 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." -msgstr "Temporary directory used site wide to store thumbnails, previews and temporary files." +msgstr "" +"Temporary directory used site wide to store thumbnails, previews and " +"temporary files." #: validators.py:29 msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Enter a valid 'internal name' consisting of letters, numbers, and underscores." +msgstr "" +"Enter a valid 'internal name' consisting of letters, numbers, and " +"underscores." #: views.py:44 #, python-format @@ -278,7 +286,6 @@ msgid "Edit current user locale profile details" msgstr "Edit current user locale profile details" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "Filter selection" @@ -288,7 +295,6 @@ msgid "Results for filter: %s" msgstr "Results for filter: %s" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filter not found" @@ -308,8 +314,8 @@ msgstr "Must select at least one item." msgid "None" msgstr "None" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "About" #~ msgid "Account" #~ msgstr "account" @@ -342,11 +348,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." @@ -355,11 +361,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/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index abc97c4f35..47362c5779 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 @@ -12,71 +12,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "Común" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Selección" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "Filtro" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "No se ha podido transferir la selección: %s." -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Agregar" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Eliminar" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "%(object)s no se pudo crear, error: %(error)s" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "%(object)s creado con éxito." -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "%(object)s no se pudo borrar, error: %(error)s." -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "%(object)s borrado con éxito." -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "%(object)s no se pudo actualizar, error: %(error)s." -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "%(object)s actualizado con éxito." @@ -141,33 +148,37 @@ msgstr "Apoyo" msgid "Tools" msgstr "Herramientas" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Días" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Horas" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minutos" #: menus.py:12 -msgid "About" -msgstr "Acerca de" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Usuario" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "Operación realizada en %(count)d objeto " -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "Operación realizada en %(count)d objetos" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Objeto" @@ -191,10 +202,6 @@ msgstr "Archivo cargado compartido" msgid "Shared uploaded files" msgstr "Archivos cargados compartidos" -#: models.py:53 -msgid "User" -msgstr "Usuario" - #: models.py:57 msgid "Timezone" msgstr "Zona horaria" @@ -229,26 +236,29 @@ msgstr "Activar bitácoras automáticamente a todas las aplicaciones." #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Tiempo para retrasar las tareas de fondo que dependen de la propagación de información en la base de datos." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Tiempo para retrasar las tareas de fondo que dependen de la propagación de " +"información en la base de datos." #: settings.py:27 msgid "An integer specifying how many objects should be displayed per page." -msgstr "Un número entero que especifica cuántos objetos se debe mostrar por página." +msgstr "" +"Un número entero que especifica cuántos objetos se debe mostrar por página." #: settings.py:33 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:38 -#| 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." -msgstr "Directorio temporero utilizado en todo el sitio para almacenar imágenes en miniatura, visualizaciones y archivos temporeros." +msgstr "" +"Directorio temporero utilizado en todo el sitio para almacenar imágenes en " +"miniatura, visualizaciones y archivos temporeros." #: validators.py:29 msgid "" @@ -282,7 +292,6 @@ msgid "Edit current user locale profile details" msgstr "Editar los detalles del perfil del usuario local" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "Selección de filtro" @@ -292,7 +301,6 @@ msgid "Results for filter: %s" msgstr "Resultados para el filtro: %s" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filtro no encontrado" @@ -312,8 +320,8 @@ msgstr "Debe seleccionar al menos un artículo." msgid "None" msgstr "Ninguno" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "Acerca de" #~ msgid "Account" #~ msgstr "account" @@ -346,11 +354,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." @@ -359,11 +367,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 1c42a20388..284d4740bd 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,71 +9,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "انتخاب" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "افزودن" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "حذف" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -138,33 +145,37 @@ msgstr "" msgid "Tools" msgstr "ابزار" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "روزها" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "ساعات" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "دقایق" #: menus.py:12 -msgid "About" -msgstr "درباره" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "کاربر" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "شیئ" @@ -188,10 +199,6 @@ msgstr "فایل آپلود شده اشتراکی" msgid "Shared uploaded files" msgstr "فایلهای آپلود شده اشتراکی" -#: models.py:53 -msgid "User" -msgstr "کاربر" - #: models.py:57 msgid "Timezone" msgstr "زمان محلی" @@ -226,8 +233,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -239,9 +245,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "محلی که کلیه کاربران جهت به اشتراک گذاری فایل میتوانند استفاه کنند." #: settings.py:38 -#| 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." @@ -279,7 +282,6 @@ msgid "Edit current user locale profile details" msgstr "ویرایش شرح پروفایل محلی کاربر فعلی" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -289,7 +291,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -309,8 +310,8 @@ msgstr "حداقل یک مورد انتخاب شود." msgid "None" msgstr "هیچکدام." -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "درباره" #~ msgid "Account" #~ msgstr "account" @@ -343,11 +344,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." @@ -356,11 +357,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 16af936831..8cfb9fb2d9 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: # Christophe CHAUVET , 2016 @@ -14,71 +14,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "Commun" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Sélection" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "Filtre" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "Impossible de transférer la sélection: %s." -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Ajouter" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Supprimer" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "%(object)s n'a pas été créé, erreur: %(error)s" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "%(object)s, creation réussi." -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "%(object)s non supprimé, erreur: %(error)s." -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "%(object)s, suppression réussie." -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "%(object)s n'a pas été mis à jour, erreur: %(error)s." -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "%(object)s, mise à jour réussie." @@ -143,33 +150,37 @@ msgstr "" msgid "Tools" msgstr "Outils" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Jours" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Heures" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minutes" #: menus.py:12 -msgid "About" -msgstr "À propos" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Uitlisateur" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Objet" @@ -193,10 +204,6 @@ msgstr "Partager le fichier transféré" msgid "Shared uploaded files" msgstr "Partager les fichiers téléchargés" -#: models.py:53 -msgid "User" -msgstr "Uitlisateur" - #: models.py:57 msgid "Timezone" msgstr "Fuseau horaire" @@ -231,26 +238,29 @@ msgstr "Activation automatique de la trace pour toutes les applications." #: settings.py:19 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." #: settings.py:27 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:33 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:38 -#| 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." -msgstr "Le dossier temporaire est utilisé pour stocker les vignettes, aperçus et fichiers temporaires." +msgstr "" +"Le dossier temporaire est utilisé pour stocker les vignettes, aperçus et " +"fichiers temporaires." #: validators.py:29 msgid "" @@ -284,7 +294,6 @@ msgid "Edit current user locale profile details" msgstr "Éditer le détail des paramètres régionaux de l'utilisateur actuel" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "Sélection du filtre" @@ -294,7 +303,6 @@ msgid "Results for filter: %s" msgstr "Résultats pour le filtre : %s" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filtre non trouvé" @@ -314,8 +322,8 @@ msgstr "Vous devez sélectionner au moins un élément." msgid "None" msgstr "Aucun" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "À propos" #~ msgid "Account" #~ msgstr "account" @@ -348,11 +356,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." @@ -361,11 +369,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 c42231f18f..700d4c9e0a 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po @@ -1,78 +1,85 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -137,33 +144,37 @@ msgstr "" msgid "Tools" msgstr "" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "" #: menus.py:12 -msgid "About" +msgid "System" msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Felhasználó" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "" @@ -187,10 +198,6 @@ msgstr "" msgid "Shared uploaded files" msgstr "" -#: models.py:53 -msgid "User" -msgstr "Felhasználó" - #: models.py:57 msgid "Timezone" msgstr "" @@ -225,8 +232,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -238,9 +244,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -278,7 +281,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -288,7 +290,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -308,9 +309,6 @@ msgstr "" msgid "None" msgstr "Semmi" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" - #~ msgid "Account" #~ msgstr "account" @@ -342,11 +340,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." @@ -355,11 +353,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 4654373d44..18aaf1ccbe 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/id/LC_MESSAGES/django.po @@ -1,78 +1,85 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "tambah" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "hapus" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -137,33 +144,37 @@ msgstr "" msgid "Tools" msgstr "" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "" #: menus.py:12 -msgid "About" -msgstr "Tentang" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Pengguna" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "" @@ -187,10 +198,6 @@ msgstr "berbagi file yang sudah diupload" msgid "Shared uploaded files" msgstr "berbagi file-file yang sudah di upload" -#: models.py:53 -msgid "User" -msgstr "Pengguna" - #: models.py:57 msgid "Timezone" msgstr "timezone" @@ -225,8 +232,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -238,9 +244,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -278,7 +281,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -288,7 +290,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -308,8 +309,8 @@ msgstr "pilih salah satu item" msgid "None" msgstr "" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "Tentang" #~ msgid "Account" #~ msgstr "account" @@ -342,11 +343,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." @@ -355,11 +356,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 cc262a15cc..d20217ad29 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,71 +13,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "Comune" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Selezione" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "Filtro" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "Impossibile trasferire la selezione: %s." -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Aggiungi" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Rimuovi" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "%(object)s non creato, errore: %(error)s" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "%(object)s creato con successo.." -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "%(object)s non cancellato, errore: %(error)s." -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "%(object)s cancellato con successo.." -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "%(object)s non aggiornato, errore: %(error)s." -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "%(object)s aggiornato con successo." @@ -142,33 +149,37 @@ msgstr "Supporto" msgid "Tools" msgstr "Strumenti" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Giorni" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Orario" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minuti" #: menus.py:12 -msgid "About" -msgstr "About" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Utente" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "Operazione eseguita su %(count)d oggetto" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "Operazione eseguita su %(count)d oggetti" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Oggetto" @@ -192,10 +203,6 @@ msgstr "Condividi file caricato" msgid "Shared uploaded files" msgstr "Condividi files caricati" -#: models.py:53 -msgid "User" -msgstr "Utente" - #: models.py:57 msgid "Timezone" msgstr "Fuso orario" @@ -230,26 +237,29 @@ msgstr "Abilita automaticamente i log per tutte le app." #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Il ritardo per i task in background dipende dalla propagazione del commit su database." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Il ritardo per i task in background dipende dalla propagazione del commit su " +"database." #: settings.py:27 msgid "An integer specifying how many objects should be displayed per page." -msgstr "Un intero che specifica quanti oggetti devono essere visualizzati per pagina." +msgstr "" +"Un intero che specifica quanti oggetti devono essere visualizzati per pagina." #: settings.py:33 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:38 -#| 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." -msgstr "Directory temporanea utilizzata in tutto il sito per memorizzare, miniature, anteprime e files temporanei" +msgstr "" +"Directory temporanea utilizzata in tutto il sito per memorizzare, miniature, " +"anteprime e files temporanei" #: validators.py:29 msgid "" @@ -283,7 +293,6 @@ msgid "Edit current user locale profile details" msgstr "Modificare i dettagli del profilo corrente dell'utente" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "Scegli il filtro" @@ -293,7 +302,6 @@ msgid "Results for filter: %s" msgstr "Risultati per il filtro: %s" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filtro non trovato" @@ -313,8 +321,8 @@ msgstr "Devi selezionare un elemento" msgid "None" msgstr "Nessuno" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "About" #~ msgid "Account" #~ msgstr "account" @@ -347,11 +355,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." @@ -360,11 +368,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 492182d446..baf436c828 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: # Evelijn Saaltink , 2016 @@ -11,71 +11,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "Gemeenschappelijk" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Selectie" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "Filter" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "Niet mogelijk om selectie over te dragen: %s." -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Voeg toe" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Verwijder" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "%(object)s niet aangemaakt, foutmelding: %(error)s." -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "%(object)s succesvol aangemaakt." -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "%(object)s niet verwijderd, foutmelding: %(error)s." -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "%(object)s succesbol verwijderd." -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "%(object)s niet geupdate, foutmelding: %(error)s." -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "%(object)s werden succesvol geupdate." @@ -140,33 +147,37 @@ msgstr "" msgid "Tools" msgstr "Gereedschappen" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Dagen" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Uren" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minuten" #: menus.py:12 -msgid "About" -msgstr "Informatie" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Gebruiker" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Object" @@ -190,10 +201,6 @@ msgstr "Deel geüpload document" msgid "Shared uploaded files" msgstr "Deel geüploade bestanden" -#: models.py:53 -msgid "User" -msgstr "Gebruiker" - #: models.py:57 msgid "Timezone" msgstr "Tijdzone" @@ -228,26 +235,29 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Wachttijd voor achtergrondtaken die afhankelijk zijn van het verbreiden van een database commit." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Wachttijd voor achtergrondtaken die afhankelijk zijn van het verbreiden van " +"een database commit." #: settings.py:27 msgid "An integer specifying how many objects should be displayed per page." -msgstr "Een natuurlijk getal om aan te geven hoeveel objecten per pagina weergegeven worden." +msgstr "" +"Een natuurlijk getal om aan te geven hoeveel objecten per pagina weergegeven " +"worden." #: settings.py:33 msgid "A storage backend that all workers can use to share files." -msgstr "Een opslagbackend die alle werkers kunnen gebruiken om bestanden te delen." +msgstr "" +"Een opslagbackend die alle werkers kunnen gebruiken om bestanden te delen." #: settings.py:38 -#| 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." -msgstr "Globale instelling voor een tijdelijke folder om miniaturen, voorvertoningen en tijdelijke bestanden in op te slaan." +msgstr "" +"Globale instelling voor een tijdelijke folder om miniaturen, voorvertoningen " +"en tijdelijke bestanden in op te slaan." #: validators.py:29 msgid "" @@ -281,7 +291,6 @@ msgid "Edit current user locale profile details" msgstr "Wijzig landsinstellingen van de huidige gebruiker" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "Filterselectie" @@ -291,7 +300,6 @@ msgid "Results for filter: %s" msgstr "Resultaten voor filter: %s" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filter niet gevonden" @@ -311,8 +319,8 @@ msgstr "Selecteer minimaal een item." msgid "None" msgstr "Geen" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "Informatie" #~ msgid "Account" #~ msgstr "account" @@ -345,11 +353,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." @@ -358,11 +366,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 41efa30562..0147ac73d1 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 @@ -14,71 +14,80 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 14:10+0000\n" "Last-Translator: Wojtek Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "Ustawienia wspólne" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "Dostępne atrybuty: \n" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Zaznaczenie" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "Filtr" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "Nie można przenieść zaznaczenia: %s." -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Dodaj" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Usuń" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "%(object)s nie utworzono, błąd: %(error)s" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "%(object)s utworzono pomyślnie." -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "%(object)s nie usunięto, błąd: %(error)s." -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "%(object)s usunięto pomyślnie." -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "%(object)s nie zaktualizowano, błąd: %(error)s." -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "%(object)s zaktualizowano pomyślnie." @@ -143,33 +152,37 @@ msgstr "Wsparcie" msgid "Tools" msgstr "Narzędzia" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Dni" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Godziny" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minuty" #: menus.py:12 -msgid "About" -msgstr "Informacje o" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Użytkownik" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "Operację przeprowadzono na %(count)d obiekcie" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "Operację przeprowadzono na %(count)d obiektach" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Obiekt" @@ -193,10 +206,6 @@ msgstr "Udostępniony plik" msgid "Shared uploaded files" msgstr "Pliki udostępnione" -#: models.py:53 -msgid "User" -msgstr "Użytkownik" - #: models.py:57 msgid "Timezone" msgstr "Strefa czasowa" @@ -231,8 +240,7 @@ msgstr "Włącz dla wszystkich aplikacji automatyczny zapis zdarzeń." #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "Czas opóźnienia wykonania zadań zależnych od operacji na bazie danych." #: settings.py:27 @@ -241,22 +249,24 @@ msgstr "Liczba określająca ile obiektów będzie wyświetlane na stronie." #: settings.py:33 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:38 -#| 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." -msgstr "Katalog tymczasowy używany jest ogólnie do przechowywania miniaturek, plików poglądowych i plików tymczasowych." +msgstr "" +"Katalog tymczasowy używany jest ogólnie do przechowywania miniaturek, plików " +"poglądowych i plików tymczasowych." #: validators.py:29 msgid "" "Enter a valid 'internal name' consisting of letters, numbers, and " "underscores." -msgstr "Podaj prawidłową 'internal name' składającą się z liter, liczb i podkreśleń." +msgstr "" +"Podaj prawidłową 'internal name' składającą się z liter, liczb i podkreśleń." #: views.py:44 #, python-format @@ -284,7 +294,6 @@ msgid "Edit current user locale profile details" msgstr "Edycja ustawień regionalnych użytkownika" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "Wybór filtru" @@ -294,7 +303,6 @@ msgid "Results for filter: %s" msgstr "Wyniki dla filtru: %s" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "Nie znaleziono filtru" @@ -314,8 +322,8 @@ msgstr "Musisz wybrać co najmniej jeden element." msgid "None" msgstr "Brak" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "Informacje o" #~ msgid "Account" #~ msgstr "account" @@ -348,11 +356,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." @@ -361,11 +369,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 93a645f376..a2abf50a5e 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,71 +11,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Seleção" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Adicionar" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Remover" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -140,33 +147,37 @@ msgstr "" msgid "Tools" msgstr "Ferramentas" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "" #: menus.py:12 -msgid "About" +msgid "System" msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Utilizador" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Objeto" @@ -190,10 +201,6 @@ msgstr "" msgid "Shared uploaded files" msgstr "" -#: models.py:53 -msgid "User" -msgstr "Utilizador" - #: models.py:57 msgid "Timezone" msgstr "" @@ -228,8 +235,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -241,9 +247,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -281,7 +284,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -291,7 +293,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -311,9 +312,6 @@ msgstr "Deve selecionar pelo menos um item." msgid "None" msgstr "Nenhum" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" - #~ msgid "Account" #~ msgstr "account" @@ -345,11 +343,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." @@ -358,11 +356,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 b8208ac38f..10be4386d5 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: # Aline Freitas , 2016 @@ -13,71 +13,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "Comúm" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Seleção" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "Filtro" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "Não foi possível transferir a seleção: %s." -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Adicionar" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Remover" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "%(object)s não criado, erro: %(error)s" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "%(object)s criado com sucesso." -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "%(object)s não removido, erro: %(error)s." -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "%(object)s removido com sucesso." -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "%(object)s não atualizado, erro: %(error)s." -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "%(object)s atualizado com sucesso." @@ -142,33 +149,37 @@ msgstr "Suporte" msgid "Tools" msgstr "Ferramentas" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Dia" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Hora" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minutos" #: menus.py:12 -msgid "About" -msgstr "Sobre" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Usuário" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "Operação executada em %(count)d objeto" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "Operação executada em %(count)d objetos" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Objeto" @@ -192,10 +203,6 @@ msgstr "Arquivo carregado compartilhado" msgid "Shared uploaded files" msgstr "Arquivos carregados compartilhados " -#: models.py:53 -msgid "User" -msgstr "Usuário" - #: models.py:57 msgid "Timezone" msgstr "Fuso horário" @@ -230,26 +237,29 @@ msgstr "Ativar automaticamente o registro de todos os aplicativos." #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Tempo para atrasar as tarefas de fundo que dependem da propagação de informação na base de dados." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Tempo para atrasar as tarefas de fundo que dependem da propagação de " +"informação na base de dados." #: settings.py:27 msgid "An integer specifying how many objects should be displayed per page." -msgstr "Um número inteiro que especifica quantos objetos se deve mostrar por página." +msgstr "" +"Um número inteiro que especifica quantos objetos se deve mostrar por página." #: settings.py:33 msgid "A storage backend that all workers can use to share files." -msgstr "Um suporte de armazenamento que todos os trabalhadores podem usar para compartilhar arquivos." +msgstr "" +"Um suporte de armazenamento que todos os trabalhadores podem usar para " +"compartilhar arquivos." #: settings.py:38 -#| 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." -msgstr "Pasta temporária utilizada em todo o site para armazenar imagens em miniatura, visualizações e arquivos temporários." +msgstr "" +"Pasta temporária utilizada em todo o site para armazenar imagens em " +"miniatura, visualizações e arquivos temporários." #: validators.py:29 msgid "" @@ -283,7 +293,6 @@ msgid "Edit current user locale profile details" msgstr "Editar detalhes do perfil de localização do usuário atual" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "Seleção de filtro" @@ -293,7 +302,6 @@ msgid "Results for filter: %s" msgstr "Resultados para o filtro: %s" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filtro não encontrado" @@ -313,8 +321,8 @@ msgstr "Deve selecionar pelo menos um item." msgid "None" msgstr "Nenhum" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "Sobre" #~ msgid "Account" #~ msgstr "account" @@ -347,11 +355,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." @@ -360,11 +368,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 7de1d5752a..942657120d 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,71 +9,79 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "selecţie" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Adaugă" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Şterge" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -138,33 +146,37 @@ msgstr "" msgid "Tools" msgstr "" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Zi" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Ore" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Minute" #: menus.py:12 -msgid "About" -msgstr "Despre" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "utilizator" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Obiect" @@ -188,10 +200,6 @@ msgstr "" msgid "Shared uploaded files" msgstr "" -#: models.py:53 -msgid "User" -msgstr "utilizator" - #: models.py:57 msgid "Timezone" msgstr "" @@ -226,8 +234,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -239,9 +246,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -279,7 +283,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -289,7 +292,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -309,8 +311,8 @@ msgstr "Trebuie sa selectaţi cel puţin un rând" msgid "None" msgstr "Nici unul" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "Despre" #~ msgid "Account" #~ msgstr "account" @@ -343,11 +345,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." @@ -356,11 +358,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 341fc262fc..4ea37fc09a 100644 --- a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # lilo.panic, 2016 @@ -9,71 +9,80 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "Общий" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Выбор" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "Фильтр" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "Невозможно передать выделение: %s." -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Добавить" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Удалить" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "%(object)s не создан, ошибка: %(error)s" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "%(object)s успешно создан." -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "%(object)s не удалён, ошибка: %(error)s." -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "%(object)s успешно удалён." -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "%(object)s не обновлён, ошибка: %(error)s." -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "%(object)s успешно обновлён." @@ -138,33 +147,37 @@ msgstr "" msgid "Tools" msgstr "Инструменты" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "Дней" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "Часов" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "Минут" #: menus.py:12 -msgid "About" -msgstr "Инфо" +msgid "System" +msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Пользователь" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Объект" @@ -188,10 +201,6 @@ msgstr "Загруженный файл совместного пользова msgid "Shared uploaded files" msgstr "Загруженные файлы совместного пользования" -#: models.py:53 -msgid "User" -msgstr "Пользователь" - #: models.py:57 msgid "Timezone" msgstr "Часовой пояс" @@ -222,26 +231,29 @@ msgstr "" #: settings.py:13 msgid "Automatically enable logging to all apps." -msgstr "Автоматически разрешать всем установленным приложениям делать записи в журнале." +msgstr "" +"Автоматически разрешать всем установленным приложениям делать записи в " +"журнале." #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Время задержки фоновых задач зависящих от процесса распространения записанных в БД данных." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Время задержки фоновых задач зависящих от процесса распространения " +"записанных в БД данных." #: settings.py:27 msgid "An integer specifying how many objects should be displayed per page." -msgstr "Числовое значение указывающее как много объектов может быть отображено на одной странице." +msgstr "" +"Числовое значение указывающее как много объектов может быть отображено на " +"одной странице." #: settings.py:33 msgid "A storage backend that all workers can use to share files." -msgstr "Бекенд хранения, который каждый может использовать для хранения файлов." +msgstr "" +"Бекенд хранения, который каждый может использовать для хранения файлов." #: settings.py:38 -#| 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." @@ -279,7 +291,6 @@ msgid "Edit current user locale profile details" msgstr "Редактировать настройки локали текущего пользователя" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "Фильтр по выбранным" @@ -289,7 +300,6 @@ msgid "Results for filter: %s" msgstr "Результаты для фильтра: %s" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "Фильтр не найден" @@ -309,8 +319,8 @@ msgstr "Необходимо выбрать хотя бы один элемен msgid "None" msgstr "Ни один" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" +#~ msgid "About" +#~ msgstr "Инфо" #~ msgid "Account" #~ msgstr "account" @@ -343,11 +353,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." @@ -356,11 +366,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 6d78ef9a1a..7098cc1e16 100644 --- a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po @@ -1,78 +1,86 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -137,33 +145,37 @@ msgstr "" msgid "Tools" msgstr "" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "" #: menus.py:12 -msgid "About" +msgid "System" msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "" @@ -187,10 +199,6 @@ msgstr "" msgid "Shared uploaded files" msgstr "" -#: models.py:53 -msgid "User" -msgstr "" - #: models.py:57 msgid "Timezone" msgstr "" @@ -225,8 +233,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -238,9 +245,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -278,7 +282,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -288,7 +291,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -308,9 +310,6 @@ msgstr "" msgid "None" msgstr "Brez" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" - #~ msgid "Account" #~ msgstr "account" @@ -342,11 +341,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." @@ -355,11 +354,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..c91055626a --- /dev/null +++ b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,306 @@ +# 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: 2017-07-09 02:26-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:74 settings.py:9 +msgid "Common" +msgstr "" + +#: apps.py:79 +msgid "Anonymous" +msgstr "" + +#: classes.py:109 +msgid "Available attributes: \n" +msgstr "" + +#: forms.py:27 +msgid "Selection" +msgstr "" + +#: forms.py:135 +msgid "Filter" +msgstr "" + +#: generics.py:136 +#, python-format +msgid "Unable to transfer selection: %s." +msgstr "" + +#: generics.py:160 +msgid "Add" +msgstr "" + +#: generics.py:171 +msgid "Remove" +msgstr "" + +#: generics.py:334 +#, python-format +msgid "%(object)s not created, error: %(error)s" +msgstr "" + +#: generics.py:345 +#, python-format +msgid "%(object)s created successfully." +msgstr "" + +#: generics.py:374 +#, python-format +msgid "%(object)s not deleted, error: %(error)s." +msgstr "" + +#: generics.py:385 +#, python-format +msgid "%(object)s deleted successfully." +msgstr "" + +#: generics.py:431 +#, python-format +msgid "%(object)s not updated, error: %(error)s." +msgstr "" + +#: generics.py:442 +#, python-format +msgid "%(object)s updated successfully." +msgstr "" + +#: links.py:9 +msgid "About this" +msgstr "" + +#: links.py:12 views.py:51 +msgid "Check for updates" +msgstr "" + +#: links.py:16 +msgid "User details" +msgstr "" + +#: links.py:20 +msgid "Edit details" +msgstr "" + +#: links.py:23 +msgid "Locale profile" +msgstr "" + +#: links.py:27 +msgid "Edit locale profile" +msgstr "" + +#: links.py:31 +msgid "Source code" +msgstr "" + +#: links.py:35 +msgid "Documentation" +msgstr "" + +#: links.py:39 +msgid "Data filters" +msgstr "" + +#: links.py:43 +msgid "Forum" +msgstr "" + +#: links.py:47 views.py:190 +msgid "License" +msgstr "" + +#: links.py:50 views.py:204 +msgid "Other packages licenses" +msgstr "" + +#: links.py:54 +msgid "Setup" +msgstr "" + +#: links.py:57 +msgid "Support" +msgstr "" + +#: links.py:61 queues.py:10 views.py:234 +msgid "Tools" +msgstr "" + +#: literals.py:13 +msgid "Days" +msgstr "" + +#: literals.py:14 +msgid "Hours" +msgstr "" + +#: literals.py:15 +msgid "Minutes" +msgstr "" + +#: menus.py:12 +msgid "System" +msgstr "" + +#: menus.py:22 models.py:53 +msgid "User" +msgstr "" + +#: mixins.py:84 +#, python-format +msgid "Operation performed on %(count)d object" +msgstr "" + +#: mixins.py:85 +#, python-format +msgid "Operation performed on %(count)d objects" +msgstr "" + +#: mixins.py:245 +msgid "Object" +msgstr "" + +#: models.py:23 +msgid "File" +msgstr "" + +#: models.py:25 +msgid "Filename" +msgstr "" + +#: models.py:27 +msgid "Date time" +msgstr "" + +#: models.py:31 +msgid "Shared uploaded file" +msgstr "" + +#: models.py:32 +msgid "Shared uploaded files" +msgstr "" + +#: models.py:57 +msgid "Timezone" +msgstr "" + +#: models.py:60 +msgid "Language" +msgstr "" + +#: models.py:67 +msgid "User locale profile" +msgstr "" + +#: models.py:68 +msgid "User locale profiles" +msgstr "" + +#: queues.py:8 +msgid "Default" +msgstr "" + +#: queues.py:12 +msgid "Common periodic" +msgstr "" + +#: queues.py:16 +msgid "Delete stale uploads" +msgstr "" + +#: settings.py:13 +msgid "Automatically enable logging to all apps." +msgstr "" + +#: settings.py:19 +msgid "" +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" + +#: settings.py:27 +msgid "An integer specifying how many objects should be displayed per page." +msgstr "" + +#: settings.py:33 +msgid "A storage backend that all workers can use to share files." +msgstr "" + +#: settings.py:38 +msgid "" +"Temporary directory used site wide to store thumbnails, previews and " +"temporary files." +msgstr "" + +#: validators.py:29 +msgid "" +"Enter a valid 'internal name' consisting of letters, numbers, and " +"underscores." +msgstr "" + +#: views.py:44 +#, python-format +msgid "The version you are using is outdated. The latest version is %s" +msgstr "" + +#: views.py:48 +msgid "Your version is up-to-date." +msgstr "" + +#: views.py:65 +msgid "Current user details" +msgstr "" + +#: views.py:70 +msgid "Edit current user details" +msgstr "" + +#: views.py:90 +msgid "Current user locale profile details" +msgstr "" + +#: views.py:97 +msgid "Edit current user locale profile details" +msgstr "" + +#: views.py:153 +msgid "Filter selection" +msgstr "" + +#: views.py:169 +#, python-format +msgid "Results for filter: %s" +msgstr "" + +#: views.py:176 +msgid "Filter not found" +msgstr "" + +#: views.py:217 +msgid "Setup items" +msgstr "" + +#: views.py:261 +msgid "No action selected." +msgstr "" + +#: views.py:269 +msgid "Must select at least one item." +msgstr "" + +#: widgets.py:48 +msgid "None" +msgstr "" 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 d37d2f3dc5..ce03d66b4c 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,71 +9,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "Lựa chọn" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "Thêm" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "Xóa" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -138,33 +145,37 @@ msgstr "" msgid "Tools" msgstr "" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "" #: menus.py:12 -msgid "About" +msgid "System" msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "Người dùng" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "Đối tượng" @@ -188,10 +199,6 @@ msgstr "" msgid "Shared uploaded files" msgstr "" -#: models.py:53 -msgid "User" -msgstr "Người dùng" - #: models.py:57 msgid "Timezone" msgstr "" @@ -226,8 +233,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -239,9 +245,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -279,7 +282,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -289,7 +291,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -309,9 +310,6 @@ msgstr "Cần chọn ít nhất một phần tử." msgid "None" msgstr "None" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" - #~ msgid "Account" #~ msgstr "account" @@ -343,11 +341,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." @@ -356,11 +354,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 165a441400..97be35e47e 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,71 +9,78 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:77 settings.py:9 +#: apps.py:74 settings.py:9 msgid "Common" msgstr "" -#: classes.py:106 +#: apps.py:79 +#, fuzzy +#| msgid "Anonymous user" +msgid "Anonymous" +msgstr "Anonymous user" + +#: classes.py:109 msgid "Available attributes: \n" msgstr "" -#: forms.py:26 +#: forms.py:27 msgid "Selection" msgstr "选择" -#: forms.py:105 +#: forms.py:135 msgid "Filter" msgstr "" -#: generics.py:133 +#: generics.py:136 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:157 +#: generics.py:160 msgid "Add" msgstr "新增" -#: generics.py:168 +#: generics.py:171 msgid "Remove" msgstr "移除" -#: generics.py:327 +#: generics.py:334 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:338 +#: generics.py:345 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:363 +#: generics.py:374 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:374 +#: generics.py:385 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:419 +#: generics.py:431 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:430 +#: generics.py:442 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -138,33 +145,37 @@ msgstr "" msgid "Tools" msgstr "" -#: literals.py:14 +#: literals.py:13 msgid "Days" msgstr "天" -#: literals.py:15 +#: literals.py:14 msgid "Hours" msgstr "小时" -#: literals.py:16 +#: literals.py:15 msgid "Minutes" msgstr "分钟" #: menus.py:12 -msgid "About" +msgid "System" msgstr "" -#: mixins.py:74 +#: menus.py:22 models.py:53 +msgid "User" +msgstr "用户" + +#: mixins.py:84 #, python-format msgid "Operation performed on %(count)d object" msgstr "" -#: mixins.py:75 +#: mixins.py:85 #, python-format msgid "Operation performed on %(count)d objects" msgstr "" -#: mixins.py:235 +#: mixins.py:245 msgid "Object" msgstr "对象" @@ -188,10 +199,6 @@ msgstr "" msgid "Shared uploaded files" msgstr "" -#: models.py:53 -msgid "User" -msgstr "用户" - #: models.py:57 msgid "Timezone" msgstr "" @@ -226,8 +233,7 @@ msgstr "" #: settings.py:19 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: settings.py:27 @@ -239,9 +245,6 @@ msgid "A storage backend that all workers can use to share files." msgstr "" #: settings.py:38 -#| 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." @@ -279,7 +282,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:153 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -289,7 +291,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:176 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -309,9 +310,6 @@ msgstr "至少需要选择一项" msgid "None" msgstr "无" -#~ msgid "Anonymous user" -#~ msgstr "Anonymous user" - #~ msgid "Account" #~ msgstr "account" @@ -343,11 +341,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." @@ -356,11 +354,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 c01c8d86bb..b10038d2cd 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,91 +9,97 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "تغيير حجم" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "تدوير" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "التكبير" @@ -142,7 +148,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -150,12 +155,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "المسار إلى برنامج libreoffice." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -182,6 +183,9 @@ msgstr "" msgid "Transformations for: %s" msgstr "" +#~ msgid "Path to the libreoffice program." +#~ msgstr "المسار إلى برنامج libreoffice." + #~ msgid "Resize." #~ msgstr "Resize." @@ -216,14 +220,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" @@ -536,9 +539,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" @@ -654,7 +659,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 b453d3bca7..a43f47f7ac 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,91 +9,96 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Преоразмеряване" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Завъртете" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Увеличаване" @@ -142,7 +147,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -150,12 +154,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "" - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -216,14 +216,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" @@ -536,9 +535,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" @@ -654,7 +655,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 a37de790b0..5e06b693f0 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,91 +9,97 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Promjeni veličinu" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Rotiraj" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Uvećaj" @@ -142,7 +148,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -150,12 +155,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Staza do LibreOffice programa." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -182,6 +183,9 @@ msgstr "" msgid "Transformations for: %s" msgstr "" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Staza do LibreOffice programa." + #~ msgid "Resize." #~ msgstr "Resize." @@ -216,14 +220,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" @@ -536,9 +539,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" @@ -654,7 +659,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 129872ce88..71f88d7207 100644 --- a/mayan/apps/converter/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/da/LC_MESSAGES/django.po @@ -1,98 +1,103 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "" @@ -141,7 +146,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -149,12 +153,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "" - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -215,14 +215,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" @@ -535,9 +534,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" @@ -653,7 +654,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 ab499d98ef..f28897f5ef 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: # Jesaja Everling , 2017 @@ -11,91 +11,99 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-24 23:01+0000\n" "Last-Translator: Jesaja Everling \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:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Konverter" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "Reihenfolge" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "Transformation" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "Argumente" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "Ausnahme bei der Ermittlung der PDF-Seitenanzahl: %s" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, fuzzy, python-format +#| msgid "Exception determining PDF page count; %s" +msgid "Exception determining page count using Pillow; %s" +msgstr "Ausnahme bei der Ermittlung der PDF-Seitenanzahl: %s" + +#: classes.py:102 msgid "Not an office file format." msgstr "Kein Office-Dateiformat" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +#, fuzzy +#| msgid "LibreOffice not installed or not found at path: %s" +msgid "LibreOffice not installed or not found." msgstr "LibreOffice nicht installiert oder in Pfad %s nicht gefunden" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "Zuschneiden" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "Drehen" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "Gaußsche Unschärfe" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "Spiegeln" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Größe ändern" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Drehen" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "Um 90° drehen" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "Um 180° drehen" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "Um 270° drehen" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "Unscharf maskieren" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Zoom" @@ -119,7 +127,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:44 msgid "Name" @@ -129,7 +139,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" @@ -144,7 +156,6 @@ msgid "Edit transformations" msgstr "Transformationen bearbeiten" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Transformationen anzeigen" @@ -152,13 +163,9 @@ msgstr "Transformationen anzeigen" msgid "Graphics conversion backend to use." msgstr "Zu benutzendes Bildverarbeitungs-Backend" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Pfad zum Programm libreoffice" - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." -msgstr "Pfad zum Popple Programm pdftoppm" +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" #: validators.py:22 msgid "Enter a valid YAML value." @@ -167,7 +174,9 @@ msgstr "Einen gültigen YAML Wert eingeben" #: views.py:64 #, 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:127 #, python-format @@ -177,13 +186,20 @@ msgstr "Transformation erstellen für %s" #: views.py:175 #, 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:216 #, python-format msgid "Transformations for: %s" msgstr "Transformationen von %s" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Pfad zum Programm libreoffice" + +#~ msgid "Path to the Popple program pdftoppm." +#~ msgstr "Pfad zum Popple Programm pdftoppm" + #~ msgid "Resize." #~ msgstr "Resize." @@ -218,14 +234,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" @@ -538,9 +553,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" @@ -656,7 +673,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 068aa3f776..3fb4dd966c 100644 --- a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po @@ -1,98 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:26-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Converter" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "Order" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "Transformation" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "Arguments" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "Exception determining PDF page count; %s" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, fuzzy, python-format +#| msgid "Exception determining PDF page count; %s" +msgid "Exception determining page count using Pillow; %s" +msgstr "Exception determining PDF page count; %s" + +#: classes.py:102 msgid "Not an office file format." msgstr "Not an office file format." -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +#, fuzzy +#| msgid "LibreOffice not installed or not found at path: %s" +msgid "LibreOffice not installed or not found." msgstr "LibreOffice not installed or not found at path: %s" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "Crop" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "Flip" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "Gaussian blur" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "Mirror" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Resize" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Rotate" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "Rotate 90 degrees" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "Rotate 180 degrees" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "Rotate 270 degrees" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "Unsharp masking" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Zoom" @@ -116,7 +124,9 @@ msgstr "Transformations" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Order in which the transformations will be executed. If left unchanged, an automatic order value will be assigned." +msgstr "" +"Order in which the transformations will be executed. If left unchanged, an " +"automatic order value will be assigned." #: models.py:44 msgid "Name" @@ -126,7 +136,9 @@ msgstr "Name" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Enter the arguments for the transformation as a YAML dictionary. ie: {\"degrees\": 180}" +msgstr "" +"Enter the arguments for the transformation as a YAML dictionary. ie: " +"{\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -141,7 +153,6 @@ msgid "Edit transformations" msgstr "Edit transformations" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "View existing transformations" @@ -149,13 +160,9 @@ msgstr "View existing transformations" msgid "Graphics conversion backend to use." msgstr "Graphics conversion backend to use." -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Path to the libreoffice program." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." -msgstr "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" #: validators.py:22 msgid "Enter a valid YAML value." @@ -181,6 +188,12 @@ msgstr "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgid "Transformations for: %s" msgstr "Transformations for: %s" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Path to the libreoffice program." + +#~ msgid "Path to the Popple program pdftoppm." +#~ msgstr "Path to the Popple program pdftoppm." + #~ msgid "Resize." #~ msgstr "Resize." @@ -215,14 +228,13 @@ msgstr "Transformations for: %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" @@ -535,9 +547,11 @@ msgstr "Transformations for: %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" @@ -653,7 +667,8 @@ msgstr "Transformations for: %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/es/LC_MESSAGES/django.po b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po index 872be8fc87..8b6f6afa8a 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,91 +10,99 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-28 19:57+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:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Convertidor" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "Orden" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "Transformación" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "Argumentos" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "Excepción determinando el número de páginas del PDF; %s" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, fuzzy, python-format +#| msgid "Exception determining PDF page count; %s" +msgid "Exception determining page count using Pillow; %s" +msgstr "Excepción determinando el número de páginas del PDF; %s" + +#: classes.py:102 msgid "Not an office file format." msgstr "No es un formato de archivo de la oficina." -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +#, fuzzy +#| msgid "LibreOffice not installed or not found at path: %s" +msgid "LibreOffice not installed or not found." msgstr "LibreOffice no instalado o no encontrado en: %s" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "Recortar" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "Dar la vuelta" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "Desenfoque gaussiano" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "Espejo" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Cambiar el tamaño" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Girar" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "Girar 90 grados" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "Girar 180 grados" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "Girar 270 grados" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "Unsharp masking" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Ampliar" @@ -118,7 +126,9 @@ msgstr "Transformaciones" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Orden de ejecución de las transformaciones. Si lo deja en blanco, un valor de orden sera asignado automáticamente. " +msgstr "" +"Orden de ejecución de las transformaciones. Si lo deja en blanco, un valor " +"de orden sera asignado automáticamente. " #: models.py:44 msgid "Name" @@ -128,7 +138,9 @@ msgstr "Nombre" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Entre el argumento de la transformación como un diccionario YAML. Ejemplo: {\"degrees\": 180}" +msgstr "" +"Entre el argumento de la transformación como un diccionario YAML. Ejemplo: " +"{\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -143,7 +155,6 @@ msgid "Edit transformations" msgstr "Editar transformaciones" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Ver transformaciones existentes" @@ -151,13 +162,9 @@ msgstr "Ver transformaciones existentes" msgid "Graphics conversion backend to use." msgstr "Módulo de conversión de gráficos a ser usado." -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Ruta de acceso al programa LibreOffice." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." -msgstr "Ruta al programa pdftoppm de Poppler." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" #: validators.py:22 msgid "Enter a valid YAML value." @@ -166,7 +173,8 @@ msgstr "Entre un valor YAML." #: views.py:64 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "¿Borrar transformación \"%(transformation)s\" para: %(content_object)s?" +msgstr "" +"¿Borrar transformación \"%(transformation)s\" para: %(content_object)s?" #: views.py:127 #, python-format @@ -183,6 +191,12 @@ msgstr "Editar transformación \"%(transformation)s\" para: %(content_object)s" msgid "Transformations for: %s" msgstr "Transformaciones para: %s" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Ruta de acceso al programa LibreOffice." + +#~ msgid "Path to the Popple program pdftoppm." +#~ msgstr "Ruta al programa pdftoppm de Poppler." + #~ msgid "Resize." #~ msgstr "Resize." @@ -217,14 +231,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" @@ -537,9 +550,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" @@ -655,7 +670,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 a55c51e761..b4bb8ccfed 100644 --- a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po @@ -1,98 +1,103 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "ترتیب" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "تبدیلات" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "آرگومانها" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "تغییر اندازه" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "چرخاندن" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "بزرگ/کوچک نمایی" @@ -141,7 +146,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -149,13 +153,9 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Path to the libreoffice program." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." -msgstr "محل Popple نرم افزار pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" #: validators.py:22 msgid "Enter a valid YAML value." @@ -181,6 +181,12 @@ msgstr "" msgid "Transformations for: %s" msgstr "تبدیلات برای : %s" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Path to the libreoffice program." + +#~ msgid "Path to the Popple program pdftoppm." +#~ msgstr "محل Popple نرم افزار pdftoppm." + #~ msgid "Resize." #~ msgstr "Resize." @@ -215,14 +221,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" @@ -535,9 +540,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" @@ -653,7 +660,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 e26cf15729..abfac3932f 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,91 +10,100 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Convertisseur" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "Ordre" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "Transformation" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "Arguments" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "Exception déterminant le nombre de pages PDF : %s" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, fuzzy, python-format +#| msgid "Exception determining PDF page count; %s" +msgid "Exception determining page count using Pillow; %s" +msgstr "Exception déterminant le nombre de pages PDF : %s" + +#: classes.py:102 msgid "Not an office file format." msgstr "Format de fichier non reconnu." -#: classes.py:120 -#, 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" +#: classes.py:123 +#, fuzzy +#| msgid "LibreOffice not installed or not found at path: %s" +msgid "LibreOffice not installed or not found." +msgstr "" +"LibreOffice n'est pas installé ou n'a pas été trouvé à l'emplacement : %s" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "Découper" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Redimensionner" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Rotation" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Zoom" @@ -118,7 +127,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:44 msgid "Name" @@ -128,7 +139,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" @@ -143,7 +156,6 @@ msgid "Edit transformations" msgstr "Modifier des transformations" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Afficher les transformations existantes" @@ -151,13 +163,9 @@ msgstr "Afficher les transformations existantes" msgid "Graphics conversion backend to use." msgstr "Module de conversion graphique à utiliser." -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Chemin vers le programme libreoffice" - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." -msgstr "Chemin pour le programme Popple pdftoppm" +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" #: validators.py:22 msgid "Enter a valid YAML value." @@ -166,7 +174,9 @@ msgstr "Saisissez une valeur YAML valide." #: views.py:64 #, 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:127 #, python-format @@ -176,13 +186,20 @@ msgstr "Créer une nouvelle transformation pour : %s" #: views.py:175 #, 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:216 #, python-format msgid "Transformations for: %s" msgstr "Transformations pour : %s" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Chemin vers le programme libreoffice" + +#~ msgid "Path to the Popple program pdftoppm." +#~ msgstr "Chemin pour le programme Popple pdftoppm" + #~ msgid "Resize." #~ msgstr "Resize." @@ -217,14 +234,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" @@ -537,9 +553,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" @@ -655,7 +673,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 e7a021e928..f0899d77cf 100644 --- a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po @@ -1,98 +1,103 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "" @@ -141,7 +146,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -149,12 +153,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "" - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -215,14 +215,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" @@ -535,9 +534,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" @@ -653,7 +654,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 47cb2d3f73..e28eb12191 100644 --- a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po @@ -1,98 +1,103 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "" @@ -141,7 +146,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -149,12 +153,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "" - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -215,14 +215,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" @@ -535,9 +534,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" @@ -653,7 +654,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 6fbbdbb0b3..cd06359da9 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: # Marco Camplese , 2016-2017 @@ -10,91 +10,99 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-30 07:55+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Convertitore" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "Ordine" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "Trasformazione" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "Argomenti" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "Eccezione che determina il conteggio pagine PDF: %s" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, fuzzy, python-format +#| msgid "Exception determining PDF page count; %s" +msgid "Exception determining page count using Pillow; %s" +msgstr "Eccezione che determina il conteggio pagine PDF: %s" + +#: classes.py:102 msgid "Not an office file format." msgstr "Non è un formato di file office" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +#, fuzzy +#| msgid "LibreOffice not installed or not found at path: %s" +msgid "LibreOffice not installed or not found." msgstr "LibreOffice non installato o non trovato nel percorso: %s" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "Taglia" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "Capovolgi" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "Sfocatura gaussiana" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "Specchio" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Ridimensiona" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Ruotare" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "Ruota di 90 Gradi" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "Ruota di 180 gradi" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "Ruota di 270 gradi" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "Maschera di contrasto" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Zoom" @@ -118,7 +126,9 @@ msgstr "Trasformazioni" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Ordine delle trasformazioni da eseguire. Se resta invariato verrà assegnato l'ordine automatico." +msgstr "" +"Ordine delle trasformazioni da eseguire. Se resta invariato verrà assegnato " +"l'ordine automatico." #: models.py:44 msgid "Name" @@ -128,7 +138,9 @@ msgstr "Nome " msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Scrivi gli argomenti per la trasformazione come dizionario YAML. es: {\"degrees\": 180}" +msgstr "" +"Scrivi gli argomenti per la trasformazione come dizionario YAML. es: " +"{\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -143,7 +155,6 @@ msgid "Edit transformations" msgstr "Modifica le trasformazioni" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Visualizza le trasformazioni esistenti" @@ -151,13 +162,9 @@ msgstr "Visualizza le trasformazioni esistenti" msgid "Graphics conversion backend to use." msgstr "Conversioni grafiche di backend da utilizzare." -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Percorso per il programma libreoffice." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." -msgstr "Percorso per il programma Popple" +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" #: validators.py:22 msgid "Enter a valid YAML value." @@ -166,7 +173,8 @@ msgstr "Inserisci un valore YAML valido." #: views.py:64 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Cancellare le trasformazioni \"%(transformation)s\" per: %(content_object)s?" +msgstr "" +"Cancellare le trasformazioni \"%(transformation)s\" per: %(content_object)s?" #: views.py:127 #, python-format @@ -176,13 +184,20 @@ msgstr "Crea una nuove trasformazioni per: %s" #: views.py:175 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Modifica le trasformazioni \"%(transformation)s\" per: %(content_object)s" +msgstr "" +"Modifica le trasformazioni \"%(transformation)s\" per: %(content_object)s" #: views.py:216 #, python-format msgid "Transformations for: %s" msgstr "Trasformazione per: %s" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Percorso per il programma libreoffice." + +#~ msgid "Path to the Popple program pdftoppm." +#~ msgstr "Percorso per il programma Popple" + #~ msgid "Resize." #~ msgstr "Resize." @@ -217,14 +232,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" @@ -537,9 +551,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" @@ -655,7 +671,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 1bd7496de0..69537f717a 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: # Evelijn Saaltink , 2016 @@ -12,91 +12,99 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Converter" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "Volgorde" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "Transformatie" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "Argumenten" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "Exceptie bij het bepalen van aan aantal bladzijden van de PDF: %s" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, fuzzy, python-format +#| msgid "Exception determining PDF page count; %s" +msgid "Exception determining page count using Pillow; %s" +msgstr "Exceptie bij het bepalen van aan aantal bladzijden van de PDF: %s" + +#: classes.py:102 msgid "Not an office file format." msgstr "Geen office bestandsformaat." -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +#, fuzzy +#| msgid "LibreOffice not installed or not found at path: %s" +msgid "LibreOffice not installed or not found." msgstr "LibreOffice niet geënstalleerd of niet gevonden in pad: %s" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "Bijsnijden" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Afmeting wijzigen" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Roteren" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Inzoomen" @@ -120,7 +128,9 @@ msgstr "Transformaties" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Volgorde waarin de transformaties worden uitgevoerd. Indien ongewijzigd zal automatisch een volgorde toegekend worden." +msgstr "" +"Volgorde waarin de transformaties worden uitgevoerd. Indien ongewijzigd zal " +"automatisch een volgorde toegekend worden." #: models.py:44 msgid "Name" @@ -130,7 +140,9 @@ msgstr "Naam" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Voer de argumenten voor de transformatie in als een YAML statement, bijvoorbeeld: {\"degrees\": 180}" +msgstr "" +"Voer de argumenten voor de transformatie in als een YAML statement, " +"bijvoorbeeld: {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -145,7 +157,6 @@ msgid "Edit transformations" msgstr "Wijzig transformaties" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Bekijk bestaande transformaties" @@ -153,13 +164,9 @@ msgstr "Bekijk bestaande transformaties" msgid "Graphics conversion backend to use." msgstr "Te gebruiken backend voor grafische conversie." -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Locatie 'libreoffice' commandline executable." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." -msgstr "Pad naar het Popple-programma pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" #: validators.py:22 msgid "Enter a valid YAML value." @@ -168,7 +175,8 @@ msgstr "Voer een geldige YAML-waarde in." #: views.py:64 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Transformatie verwijderen \"%(transformation)s\" voor: %(content_object)s?" +msgstr "" +"Transformatie verwijderen \"%(transformation)s\" voor: %(content_object)s?" #: views.py:127 #, python-format @@ -185,6 +193,12 @@ msgstr "Wijzig transformatie \"%(transformation)s\" voor: %(content_object)s" msgid "Transformations for: %s" msgstr "Transformaties voor: %s" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Locatie 'libreoffice' commandline executable." + +#~ msgid "Path to the Popple program pdftoppm." +#~ msgstr "Pad naar het Popple-programma pdftoppm." + #~ msgid "Resize." #~ msgstr "Resize." @@ -219,14 +233,13 @@ msgstr "Transformaties voor: %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" @@ -539,9 +552,11 @@ msgstr "Transformaties voor: %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" @@ -657,7 +672,8 @@ msgstr "Transformaties voor: %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/pl/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po index 285ec19a22..13465a610c 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 @@ -11,91 +11,101 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-02 17:23+0000\n" "Last-Translator: Wojtek Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Konwerter" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "Kolejność" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "Przekształcenie" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "Argumenty" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "Wyjątek określający liczbę stron PDF: %s" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, fuzzy, python-format +#| msgid "Exception determining PDF page count; %s" +msgid "Exception determining page count using Pillow; %s" +msgstr "Wyjątek określający liczbę stron PDF: %s" + +#: classes.py:102 msgid "Not an office file format." msgstr "Format niezgodny z formatem plików LibreOffice." -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +#, fuzzy +#| msgid "LibreOffice not installed or not found at path: %s" +msgid "LibreOffice not installed or not found." msgstr "LibreOffice nie został zainstalowany lub nie znaleziono ścieżki: %s" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "Przycięcie" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "Odbicie" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "Rozmycie Gaussa" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "Odbicie lustrzane" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Zmiana rozmiaru" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Obrócenie" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "Obrócenie o 90 stopni" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "Obrócenie o 180 stopni" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "Obrócenie o 270 stopni" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "Maska wyostrzająca" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Powiększenie" @@ -119,7 +129,9 @@ msgstr "Przekształcenia" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Kolejność wykonywania przekształceń. Jeśli nie zostanie zmieniona, przyjmie wartość automatyczną." +msgstr "" +"Kolejność wykonywania przekształceń. Jeśli nie zostanie zmieniona, przyjmie " +"wartość automatyczną." #: models.py:44 msgid "Name" @@ -129,7 +141,9 @@ msgstr "Nazwa" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Wprowadź argumenty dla przekształcenia w postaci słownika YAML np.: {\"degrees\": 180}" +msgstr "" +"Wprowadź argumenty dla przekształcenia w postaci słownika YAML np.: " +"{\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -144,7 +158,6 @@ msgid "Edit transformations" msgstr "Edytuj przekształcenia" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Przeglądaj utworzone przekształcenia" @@ -152,13 +165,9 @@ msgstr "Przeglądaj utworzone przekształcenia" msgid "Graphics conversion backend to use." msgstr "Backend używany do konwersji grafiki." -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Ścieżka do programu LibreOffice." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." -msgstr "Ścieżka do programu pdftoppm z pakietu Poppler." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" #: validators.py:22 msgid "Enter a valid YAML value." @@ -184,6 +193,12 @@ msgstr "Edycja przekształcenia \"%(transformation)s\" dla %(content_object)s" msgid "Transformations for: %s" msgstr "Przekształcenia dla %s" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Ścieżka do programu LibreOffice." + +#~ msgid "Path to the Popple program pdftoppm." +#~ msgstr "Ścieżka do programu pdftoppm z pakietu Poppler." + #~ msgid "Resize." #~ msgstr "Resize." @@ -218,14 +233,13 @@ msgstr "Przekształcenia 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" @@ -538,9 +552,11 @@ msgstr "Przekształcenia 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" @@ -656,7 +672,8 @@ msgstr "Przekształcenia 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 8a4307b574..32e7517a60 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,91 +11,96 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Redimensionar" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Rodar" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Zoom" @@ -144,7 +149,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -152,12 +156,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Caminho para o programa LibreOffice" - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -184,6 +184,9 @@ msgstr "" msgid "Transformations for: %s" msgstr "" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Caminho para o programa LibreOffice" + #~ msgid "Resize." #~ msgstr "Resize." @@ -218,14 +221,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" @@ -538,9 +540,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" @@ -656,7 +660,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 e8d96391ce..28c0d15269 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: # Aline Freitas , 2016 @@ -12,91 +12,99 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-04 19:21+0000\n" "Last-Translator: Jadson Ribeiro \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:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Conversor" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "Ordem" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "Transformação" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "Argumentos" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "Exceção ao determinar o número de páginas do PDF; %s" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, fuzzy, python-format +#| msgid "Exception determining PDF page count; %s" +msgid "Exception determining page count using Pillow; %s" +msgstr "Exceção ao determinar o número de páginas do PDF; %s" + +#: classes.py:102 msgid "Not an office file format." msgstr "Não é um formato de arquivo de escritório." -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +#, fuzzy +#| msgid "LibreOffice not installed or not found at path: %s" +msgid "LibreOffice not installed or not found." msgstr "LibreOffice não instalado ou não encontrado no caminho: %s" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "Recortar" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "Giro" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "Gaussian blur" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "Espelho" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Redimensionar" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Rotacionar" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "Girar 90 graus" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "Girar 180 graus" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "Girar 270 graus" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "Unsharp mascaramento" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Ampliar" @@ -120,7 +128,9 @@ msgstr "Transformações" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Ordem de execução das transformações. Se deixar em branco, um valor automático vai ser atribuído." +msgstr "" +"Ordem de execução das transformações. Se deixar em branco, um valor " +"automático vai ser atribuído." #: models.py:44 msgid "Name" @@ -130,7 +140,9 @@ msgstr "Nome" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Entre com os argumentos da transformação como um dicionário YAML. ie: {\"degrees\": 180}" +msgstr "" +"Entre com os argumentos da transformação como um dicionário YAML. ie: " +"{\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -145,7 +157,6 @@ msgid "Edit transformations" msgstr "Editar transformações" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Visualizar transformações existentes" @@ -153,13 +164,9 @@ msgstr "Visualizar transformações existentes" msgid "Graphics conversion backend to use." msgstr "Módulo de conversão de gráficos a ser usado." -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Caminho para o programa LibreOffice." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." -msgstr "Caminho para o programa pdftoppm de Popple." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" #: validators.py:22 msgid "Enter a valid YAML value." @@ -185,6 +192,12 @@ msgstr "Editar transformação \"%(transformation)s\" para: %(content_object)s" msgid "Transformations for: %s" msgstr "Transformações para: %s" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Caminho para o programa LibreOffice." + +#~ msgid "Path to the Popple program pdftoppm." +#~ msgstr "Caminho para o programa pdftoppm de Popple." + #~ msgid "Resize." #~ msgstr "Resize." @@ -219,14 +232,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" @@ -539,9 +551,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" @@ -657,7 +671,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 7d74cb4dd4..0bfe38b2ea 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,91 +9,97 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Redimensionarea" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Roti" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Zoom" @@ -142,7 +148,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -150,12 +155,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Calea către programul LibreOffice." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -182,6 +183,9 @@ msgstr "" msgid "Transformations for: %s" msgstr "" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Calea către programul LibreOffice." + #~ msgid "Resize." #~ msgstr "Resize." @@ -216,14 +220,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" @@ -536,9 +539,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" @@ -654,7 +659,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 5bf309b08c..4520d47d45 100644 --- a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # lilo.panic, 2016 @@ -9,91 +9,101 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Конвертер" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "Порядок" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "Преобразование" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "Аргументы" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "Ошибка при определении числа страниц PDF; %s" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, fuzzy, python-format +#| msgid "Exception determining PDF page count; %s" +msgid "Exception determining page count using Pillow; %s" +msgstr "Ошибка при определении числа страниц PDF; %s" + +#: classes.py:102 msgid "Not an office file format." msgstr "Не является файлом офисного формата." -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +#, fuzzy +#| msgid "LibreOffice not installed or not found at path: %s" +msgid "LibreOffice not installed or not found." msgstr "LibreOffice не установлен, или не найден по пути: %s" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "Кадрировать" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "Изменение размера" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "Вращать" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "Увеличить" @@ -117,7 +127,9 @@ msgstr "Преобразования" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Порядок выполнения преобразований. Если оставить неизменным, будет установлен флаг автоматического выставления порядка." +msgstr "" +"Порядок выполнения преобразований. Если оставить неизменным, будет " +"установлен флаг автоматического выставления порядка." #: models.py:44 msgid "Name" @@ -127,7 +139,9 @@ msgstr "Имя" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Введите аргументы для преобразования в формате YAML-словаря, например: {\"degrees\": 180}" +msgstr "" +"Введите аргументы для преобразования в формате YAML-словаря, например: " +"{\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -142,7 +156,6 @@ msgid "Edit transformations" msgstr "Изменить преобразования" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Просмотр существующих преобразований" @@ -150,13 +163,9 @@ msgstr "Просмотр существующих преобразований" msgid "Graphics conversion backend to use." msgstr "Бекенд, который будет использован для графических преобразований." -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "Путь к программе LibreOffice." - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." -msgstr "Путь до программы Popple pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" #: validators.py:22 msgid "Enter a valid YAML value." @@ -175,13 +184,21 @@ msgstr "Создать новое преобразование для: %s" #: views.py:175 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Изменить преобразование \"%(transformation)s\" for: %(content_object)sjavascript:;" +msgstr "" +"Изменить преобразование \"%(transformation)s\" for: " +"%(content_object)sjavascript:;" #: views.py:216 #, python-format msgid "Transformations for: %s" msgstr "Преобразования для: %s" +#~ msgid "Path to the libreoffice program." +#~ msgstr "Путь к программе LibreOffice." + +#~ msgid "Path to the Popple program pdftoppm." +#~ msgstr "Путь до программы Popple pdftoppm." + #~ msgid "Resize." #~ msgstr "Resize." @@ -216,14 +233,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" @@ -536,9 +552,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" @@ -654,7 +672,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/sl_SI/LC_MESSAGES/django.po b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po index e92f7e105b..364562f9b7 100644 --- a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po @@ -1,98 +1,104 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "" @@ -141,7 +147,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -149,12 +154,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "" - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -215,14 +216,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" @@ -535,9 +535,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" @@ -653,7 +655,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..a327eb92c4 --- /dev/null +++ b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,180 @@ +# 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: 2017-07-09 02:27-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:20 permissions.py:7 settings.py:7 +msgid "Converter" +msgstr "" + +#: apps.py:27 models.py:40 +msgid "Order" +msgstr "" + +#: apps.py:29 models.py:70 +msgid "Transformation" +msgstr "" + +#: apps.py:33 models.py:50 +msgid "Arguments" +msgstr "" + +#: backends/python.py:164 backends/python.py:170 +#, python-format +msgid "Exception determining PDF page count; %s" +msgstr "" + +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 +msgid "Not an office file format." +msgstr "" + +#: classes.py:123 +msgid "LibreOffice not installed or not found." +msgstr "" + +#: classes.py:306 +msgid "Crop" +msgstr "" + +#: classes.py:319 +msgid "Flip" +msgstr "" + +#: classes.py:330 +msgid "Gaussian blur" +msgstr "" + +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 +msgid "Mirror" +msgstr "" + +#: classes.py:362 +msgid "Resize" +msgstr "" + +#: classes.py:389 +msgid "Rotate" +msgstr "" + +#: classes.py:408 +msgid "Rotate 90 degrees" +msgstr "" + +#: classes.py:419 +msgid "Rotate 180 degrees" +msgstr "" + +#: classes.py:430 +msgid "Rotate 270 degrees" +msgstr "" + +#: classes.py:440 +msgid "Unsharp masking" +msgstr "" + +#: classes.py:456 +msgid "Zoom" +msgstr "" + +#: links.py:35 +msgid "Create new transformation" +msgstr "" + +#: links.py:39 +msgid "Delete" +msgstr "" + +#: links.py:43 +msgid "Edit" +msgstr "" + +#: links.py:47 models.py:71 +msgid "Transformations" +msgstr "" + +#: models.py:38 +msgid "" +"Order in which the transformations will be executed. If left unchanged, an " +"automatic order value will be assigned." +msgstr "" + +#: models.py:44 +msgid "Name" +msgstr "" + +#: models.py:48 +msgid "" +"Enter the arguments for the transformation as a YAML dictionary. ie: " +"{\"degrees\": 180}" +msgstr "" + +#: permissions.py:10 +msgid "Create new transformations" +msgstr "" + +#: permissions.py:13 +msgid "Delete transformations" +msgstr "" + +#: permissions.py:16 +msgid "Edit transformations" +msgstr "" + +#: permissions.py:19 +msgid "View existing transformations" +msgstr "" + +#: settings.py:10 +msgid "Graphics conversion backend to use." +msgstr "" + +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." +msgstr "" + +#: validators.py:22 +msgid "Enter a valid YAML value." +msgstr "" + +#: views.py:64 +#, python-format +msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Create new transformation for: %s" +msgstr "" + +#: views.py:175 +#, python-format +msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" +msgstr "" + +#: views.py:216 +#, python-format +msgid "Transformations for: %s" +msgstr "" 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 5c22d00f56..32c95ba14c 100644 --- a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po @@ -1,98 +1,103 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "" @@ -141,7 +146,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -149,12 +153,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "" - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -215,14 +215,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" @@ -535,9 +534,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" @@ -653,7 +654,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 150ffa1aea..351281f2e0 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,91 +9,96 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:38-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16: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:19 permissions.py:7 settings.py:7 +#: apps.py:20 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:26 models.py:40 +#: apps.py:27 models.py:40 msgid "Order" msgstr "" -#: apps.py:28 models.py:70 +#: apps.py:29 models.py:70 msgid "Transformation" msgstr "" -#: apps.py:32 models.py:50 +#: apps.py:33 models.py:50 msgid "Arguments" msgstr "" -#: backends/python.py:100 backends/python.py:114 +#: backends/python.py:164 backends/python.py:170 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:97 -#| msgid "suported file formats" +#: backends/python.py:184 +#, python-format +msgid "Exception determining page count using Pillow; %s" +msgstr "" + +#: classes.py:102 msgid "Not an office file format." msgstr "" -#: classes.py:120 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" +#: classes.py:123 +msgid "LibreOffice not installed or not found." msgstr "" -#: classes.py:294 +#: classes.py:306 msgid "Crop" msgstr "" -#: classes.py:307 +#: classes.py:319 msgid "Flip" msgstr "" -#: classes.py:318 +#: classes.py:330 msgid "Gaussian blur" msgstr "" -#: classes.py:329 +#: classes.py:340 +msgid "Line art" +msgstr "" + +#: classes.py:351 msgid "Mirror" msgstr "" -#: classes.py:340 +#: classes.py:362 msgid "Resize" msgstr "调整大小" -#: classes.py:367 +#: classes.py:389 msgid "Rotate" msgstr "旋转" -#: classes.py:386 -#| msgid "Rotate by n degress." +#: classes.py:408 msgid "Rotate 90 degrees" msgstr "" -#: classes.py:397 -#| msgid "Rotate by n degress." +#: classes.py:419 msgid "Rotate 180 degrees" msgstr "" -#: classes.py:408 -#| msgid "Rotate by n degress." +#: classes.py:430 msgid "Rotate 270 degrees" msgstr "" -#: classes.py:418 +#: classes.py:440 msgid "Unsharp masking" msgstr "" -#: classes.py:434 +#: classes.py:456 msgid "Zoom" msgstr "缩放" @@ -142,7 +147,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -150,12 +154,8 @@ msgstr "" msgid "Graphics conversion backend to use." msgstr "" -#: settings.py:16 -msgid "Path to the libreoffice program." -msgstr "libreoffice的目录" - -#: settings.py:20 -msgid "Path to the Popple program pdftoppm." +#: settings.py:17 +msgid "Configuration options for the graphics conversion backend." msgstr "" #: validators.py:22 @@ -182,6 +182,9 @@ msgstr "" msgid "Transformations for: %s" msgstr "" +#~ msgid "Path to the libreoffice program." +#~ msgstr "libreoffice的目录" + #~ msgid "Resize." #~ msgstr "Resize." @@ -216,14 +219,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" @@ -536,9 +538,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" @@ -654,7 +658,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 34da38ae7c..f04c4e925b 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,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\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-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 "Django GPG" @@ -96,7 +98,6 @@ msgid "Key management" msgstr "Key management" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -161,7 +162,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -194,7 +194,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -203,7 +202,6 @@ msgid "View keys" msgstr "View keys" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -216,13 +214,11 @@ 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 "" @@ -233,7 +229,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -243,7 +238,6 @@ 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 "" @@ -287,12 +281,12 @@ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po index 4b743e7957..099acc1e03 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\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-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 @@ -96,7 +97,6 @@ msgid "Key management" msgstr "Управление на ключове" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -161,7 +161,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -194,7 +193,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -203,7 +201,6 @@ msgid "View keys" msgstr "Виж ключове" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Подписи" @@ -216,13 +213,11 @@ 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 "" @@ -233,7 +228,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -243,7 +237,6 @@ 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 "" @@ -287,12 +280,12 @@ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po index 1dff0cad81..c7b1a30ed5 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,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\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-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 "Django GPG" @@ -96,7 +98,6 @@ msgid "Key management" msgstr "Upravljanje ključevima" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -161,7 +162,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -194,7 +194,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -203,26 +202,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 -#| 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 "" @@ -233,7 +231,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -243,7 +240,6 @@ 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 "" @@ -287,12 +283,12 @@ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po index 614c77101c..405c714961 100644 --- a/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\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-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 @@ -95,7 +96,6 @@ msgid "Key management" msgstr "" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -160,7 +160,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -193,7 +192,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -202,7 +200,6 @@ msgid "View keys" msgstr "" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -215,13 +212,11 @@ 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 "" @@ -232,7 +227,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -242,7 +236,6 @@ 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 "" @@ -286,12 +279,12 @@ 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." +#~ "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." +#~ "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/de_DE/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po index cd3e425608..e7fdbc31a5 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 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-05-20 21:54+0000\n" "Last-Translator: Tobias Paepke \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 @@ -72,7 +73,9 @@ msgstr "Begriff" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht wird" +msgstr "" +"Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht " +"wird" #: links.py:13 msgid "Delete" @@ -99,7 +102,6 @@ msgid "Key management" msgstr "Schlüssel-Management" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "Schlüssel hochladen" @@ -145,7 +147,9 @@ msgstr "Signaturfehler" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung verfügbar." +msgstr "" +"Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung " +"verfügbar." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -164,7 +168,6 @@ msgid "Key data" msgstr "Schlüssel-Daten" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "Schlüssel" @@ -197,7 +200,6 @@ msgid "Use keys to sign content" msgstr "Schlüssel benutzen um Inhalt zu signieren" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "Schlüssel hochladen" @@ -206,7 +208,6 @@ msgid "View keys" msgstr "Schlüssel anzeigen" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Unterschriften" @@ -219,13 +220,11 @@ msgid "Path to the GPG binary." msgstr "Pfad zum Programm GPG" #: settings.py:25 -#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "Server, der nach unbekannten Schlüsseln durchsucht wird." #: views.py:38 #, python-format -#| msgid "Delete keys" msgid "Delete key: %s" msgstr "Schlüssel löschen: %s" @@ -236,7 +235,6 @@ msgstr "Details für Schlüssel %s" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Schlüssel-ID %s importieren?" @@ -246,7 +244,6 @@ 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" @@ -290,12 +287,12 @@ msgstr "Neuen Schlüssel hochladen" #~ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po index 275f4f2856..86310f5e87 100644 --- a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -95,7 +96,6 @@ msgid "Key management" msgstr "Key management" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "Upload key" @@ -160,7 +160,6 @@ msgid "Key data" msgstr "Key data" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "Key" @@ -193,7 +192,6 @@ msgid "Use keys to sign content" msgstr "Use keys to sign content" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "Upload keys" @@ -202,7 +200,6 @@ msgid "View keys" msgstr "View keys" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Signatures" @@ -215,13 +212,11 @@ msgid "Path to the GPG binary." msgstr "Path to the GPG binary." #: settings.py:25 -#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "Keyserver used to query for keys." #: views.py:38 #, python-format -#| msgid "Delete keys" msgid "Delete key: %s" msgstr "Delete key: %s" @@ -232,7 +227,6 @@ msgstr "Details for key: %s" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Import key ID: %s?" @@ -242,7 +236,6 @@ 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 "Unable to import key: %(key_id)s; %(error)s" @@ -286,12 +279,12 @@ msgstr "Upload new 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." +#~ "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." +#~ "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/es/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po index 9e4c5c2918..cc0389f4cf 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 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-05-09 01: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:31 @@ -71,7 +72,9 @@ msgstr "Término" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "Nombre, dirección de correo electrónico, identificador de 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" @@ -98,7 +101,6 @@ msgid "Key management" msgstr "Gestión de claves" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "Subir llave" @@ -144,7 +146,9 @@ msgstr "Error de firma." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "El documento ha sido firmado pero no hay 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." @@ -163,7 +167,6 @@ msgid "Key data" msgstr "Datos de llave" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "Llave" @@ -196,7 +199,6 @@ msgid "Use keys to sign content" msgstr "Usar llaves para firmar contenido" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "Subir llaves" @@ -205,26 +207,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 -#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "Servidor usado para buscar llaves." #: views.py:38 #, python-format -#| msgid "Delete keys" msgid "Delete key: %s" msgstr "Borrar llave: %s" @@ -235,7 +236,6 @@ msgstr "Detalles para llave: %s" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "¿Importar llave: %s?" @@ -245,7 +245,6 @@ 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 "No se pudo importar la llave: %(key_id)s; %(error)s " @@ -289,12 +288,12 @@ msgstr "Subir una nueva llave" #~ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po index 7329ef5638..ad9d0888d7 100644 --- a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Nima Towhidi , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-12 07:25+0000\n" "Last-Translator: Nima Towhidi \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 @@ -96,7 +97,6 @@ msgid "Key management" msgstr "مدیریت کلید" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "کلید آپلود" @@ -161,7 +161,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "کلید" @@ -194,7 +193,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "آپلود کلیدها" @@ -203,7 +201,6 @@ msgid "View keys" msgstr "دیدن کلیدها" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "امضاها" @@ -216,13 +213,11 @@ msgid "Path to the GPG binary." msgstr "محل کتایخانه باینری GPG" #: 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 "" @@ -233,7 +228,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -243,7 +237,6 @@ 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 "" @@ -287,12 +280,12 @@ 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." +#~ "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." +#~ "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/fr/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po index ffa93e46fb..1eb569c6bd 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: # Bruno CAPELETO , 2016 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-05-23 20:02+0000\n" "Last-Translator: Bruno CAPELETO \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 @@ -98,7 +99,6 @@ msgid "Key management" msgstr "Gestion des clés" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "Uploader la clé" @@ -144,7 +144,9 @@ msgstr "Erreur de signature." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Ce document est signé mais aucune clé publique n'est disponible pour vérifier la signature." +msgstr "" +"Ce document est signé mais aucune clé publique n'est disponible pour " +"vérifier la signature." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -163,7 +165,6 @@ msgid "Key data" msgstr "Contenu de la clef" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "Clé" @@ -196,7 +197,6 @@ msgid "Use keys to sign content" msgstr "Utiliser des clefs pour signer le document" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "Uploader les clés" @@ -205,26 +205,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 -#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "Serveur de clefs à contacter" #: views.py:38 #, python-format -#| msgid "Delete keys" msgid "Delete key: %s" msgstr "Effacer la clé: %s" @@ -235,7 +234,6 @@ msgstr "Détails de la clé: %s" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Importer l'identifiant de clé : %s ?" @@ -245,7 +243,6 @@ 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" @@ -289,12 +286,12 @@ msgstr "Uploader une nouvelle clé" #~ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po index b884c3c6a5..ff4b8d8913 100644 --- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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-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 @@ -95,7 +96,6 @@ msgid "Key management" msgstr "" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -160,7 +160,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -193,7 +192,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -202,7 +200,6 @@ msgid "View keys" msgstr "" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -215,13 +212,11 @@ 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 "" @@ -232,7 +227,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -242,7 +236,6 @@ 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 "" @@ -286,12 +279,12 @@ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po index b8dc9f7b67..c2e2c9785d 100644 --- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\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-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 @@ -95,7 +96,6 @@ msgid "Key management" msgstr "" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -160,7 +160,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -193,7 +192,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -202,7 +200,6 @@ msgid "View keys" msgstr "" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -215,13 +212,11 @@ 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 "" @@ -232,7 +227,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -242,7 +236,6 @@ 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 "" @@ -286,12 +279,12 @@ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po index 892f141362..43e9f06e58 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: # Marco Camplese , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-09-24 10:33+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -97,7 +98,6 @@ msgid "Key management" msgstr "Gestione delle chiavi" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "Carica chiave" @@ -143,7 +143,9 @@ msgstr "Errore di firma" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Il documento è stato firmato, ma la chiave pubblica non è disponibile per la verifica" +msgstr "" +"Il documento è stato firmato, ma la chiave pubblica non è disponibile per la " +"verifica" #: literals.py:58 msgid "Document is signed, and signature is good." @@ -162,7 +164,6 @@ msgid "Key data" msgstr "Dati chiave" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "Chiave" @@ -195,7 +196,6 @@ msgid "Use keys to sign content" msgstr "Usa la chiave per formare i contenuti" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "Carica chiavi" @@ -204,26 +204,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 -#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "Keyserver utilizzato per richiedere le chiavi." #: views.py:38 #, python-format -#| msgid "Delete keys" msgid "Delete key: %s" msgstr "Cancellare la chiave: %s" @@ -234,7 +233,6 @@ msgstr "Dettagli della chiave: %s." #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Importare ID chiave: %s?" @@ -244,7 +242,6 @@ 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 "Impossibile importare la chiave: %(key_id)s; %(error)s" @@ -288,12 +285,12 @@ msgstr "Carica nuova 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po index 7fefbc310a..4b5effbdba 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: # Evelijn Saaltink , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-11 08:16+0000\n" "Last-Translator: Johan Braeken\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -97,7 +98,6 @@ msgid "Key management" msgstr "Sleutelbeheer" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "Upload sleutel" @@ -143,7 +143,9 @@ msgstr "Handtekeningfout" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Document is ondertekend, maar er is geen publieke sleutel beschikbaar voor verificatie." +msgstr "" +"Document is ondertekend, maar er is geen publieke sleutel beschikbaar voor " +"verificatie." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -162,7 +164,6 @@ msgid "Key data" msgstr "Sleutelgegevens" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "Sleutel" @@ -195,7 +196,6 @@ msgid "Use keys to sign content" msgstr "Gebruik sleutels om inhoud te ondertekenen" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "Upload sleutels" @@ -204,7 +204,6 @@ msgid "View keys" msgstr "Bekijk sleutels" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Handtekeningen" @@ -217,13 +216,11 @@ msgid "Path to the GPG binary." msgstr "Pad naar het GPG uitvoerbestand" #: settings.py:25 -#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "Sleutelserver om naar sleutels te zoeken." #: views.py:38 #, python-format -#| msgid "Delete keys" msgid "Delete key: %s" msgstr "Verwijder sleutel: %s" @@ -234,7 +231,6 @@ msgstr "Details voor sleutel: %s" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Sleutel ID importeren: %s?" @@ -244,7 +240,6 @@ msgstr "Importeer sleutel" #: 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 "Niet mogelijk om sleutel te importeren: %(key_id)s; %(error)s" @@ -288,12 +283,12 @@ msgstr "Upload nieuwe sleutel" #~ 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." +#~ "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." +#~ "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/pl/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po index 6a395c34d7..68a5021874 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,15 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-02 17:34+0000\n" "Last-Translator: Wojtek Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:31 msgid "Django GPG" @@ -98,7 +101,6 @@ msgid "Key management" msgstr "Zarządzanie kluczami" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "Wyślij klucz" @@ -144,7 +146,9 @@ msgstr "Błąd podpisu." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Dokument został podpisany, ale klucz publiczny nie jest dostępny dla weryfikacji." +msgstr "" +"Dokument został podpisany, ale klucz publiczny nie jest dostępny dla " +"weryfikacji." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -163,7 +167,6 @@ msgid "Key data" msgstr "Dane klucza" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "Klucz" @@ -196,7 +199,6 @@ msgid "Use keys to sign content" msgstr "Użyj kluczy, aby podpisać treść" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "Prześlij klucze" @@ -205,26 +207,24 @@ msgid "View keys" msgstr "Pokaż klucze" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Podpisy" #: 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 -#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "Serwer kluczy przeznaczony do zapytań o klucze." #: views.py:38 #, python-format -#| msgid "Delete keys" msgid "Delete key: %s" msgstr "Usuń klucz %s" @@ -235,7 +235,6 @@ msgstr "Szczegóły klucza %s" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Zaimportować klucz z ID %s?" @@ -245,7 +244,6 @@ 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 "Brak możliwości importu klucza %(key_id)s; %(error)s" @@ -289,12 +287,12 @@ msgstr "Prześlij nowy 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po index 950d9fcfa4..94de7d9a20 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,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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-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 @@ -97,7 +98,6 @@ msgid "Key management" msgstr "Gestão de chaves" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -143,7 +143,9 @@ msgstr "Erro de assinatura." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "O documento está assinado, mas não está disponível uma chave pública para verificação." +msgstr "" +"O documento está assinado, mas não está disponível uma chave pública para " +"verificação." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -162,7 +164,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -195,7 +196,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -204,7 +204,6 @@ msgid "View keys" msgstr "Ver as chaves" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Assinaturas" @@ -217,13 +216,11 @@ 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 "" @@ -234,7 +231,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -244,7 +240,6 @@ 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 "" @@ -288,12 +283,12 @@ 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." +#~ "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." +#~ "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_BR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po index bd13113d97..d7e15c51e7 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: # Aline Freitas , 2016 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-11-25 02:01+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 @@ -98,7 +99,6 @@ msgid "Key management" msgstr "Gerenciar chaves" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "Envio da chave" @@ -163,7 +163,6 @@ msgid "Key data" msgstr "Dados da chave" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "Chave" @@ -196,7 +195,6 @@ msgid "Use keys to sign content" msgstr "Usar chaves para assinar conteúdo" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "Enviar chaves" @@ -205,26 +203,25 @@ msgid "View keys" msgstr "Ver as chaves" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Assinaturas" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "Diretório inicial usado para armazenar as chaves, assim como os arquivos de configuração." +msgstr "" +"Diretório inicial usado para armazenar as chaves, assim como os arquivos de " +"configuração." #: settings.py:21 msgid "Path to the GPG binary." msgstr "Caminho para o binário GPG." #: settings.py:25 -#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "Servidor usado para procurar chaves." #: views.py:38 #, python-format -#| msgid "Delete keys" msgid "Delete key: %s" msgstr "Apagar chave: %s" @@ -235,7 +232,6 @@ msgstr "Detalhes para chave: %s" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Importar ID da chave: %s?" @@ -245,7 +241,6 @@ 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 "Não foi possível importar chave: %(key_id)s; %(error)s" @@ -289,12 +284,12 @@ msgstr "Carregar nova 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po index 10461bab69..2fd1a73f96 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,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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-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 "Django GPG" @@ -96,7 +98,6 @@ msgid "Key management" msgstr "gestionare chei" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -142,7 +143,9 @@ msgstr "Eroare semnătură." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru verificare." +msgstr "" +"Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru " +"verificare." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -161,7 +164,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -194,7 +196,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -203,26 +204,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 -#| 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 "" @@ -233,7 +233,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -243,7 +242,6 @@ 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 "" @@ -287,12 +285,12 @@ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po index b04c96b37e..e08d34cb97 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: # lilo.panic, 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-07-19 20:20+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:31 msgid "Django GPG" @@ -96,7 +99,6 @@ msgid "Key management" msgstr "Управление ключами" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "Загрузить ключ" @@ -161,7 +163,6 @@ msgid "Key data" msgstr "Содержимое ключа" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "Ключ" @@ -194,7 +195,6 @@ msgid "Use keys to sign content" msgstr "Использовать ключи для подписи контента" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "Загрузить ключи" @@ -203,26 +203,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 "Путь к GPG исходникам." #: 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 "Удалить ключ: %s" @@ -233,7 +232,6 @@ msgstr "Подробности для ключа: %s" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Получить ключ ID: %s?" @@ -243,7 +241,6 @@ 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 "Невозможно импортировать ключ %(key_id)s; %(error)s" @@ -287,12 +284,12 @@ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po index 5553f8977c..d576976fd1 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,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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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-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 "Django GPG" @@ -95,7 +97,6 @@ msgid "Key management" msgstr "" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -160,7 +161,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -193,7 +193,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -202,7 +201,6 @@ msgid "View keys" msgstr "" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -215,13 +213,11 @@ 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 "" @@ -232,7 +228,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -242,7 +237,6 @@ 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 "" @@ -286,12 +280,12 @@ 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." +#~ "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." +#~ "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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..1a8d557c96 --- /dev/null +++ b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,259 @@ +# 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: 2017-07-09 02:27-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:31 +msgid "Django GPG" +msgstr "" + +#: apps.py:47 apps.py:50 forms.py:17 +msgid "Key ID" +msgstr "" + +#: apps.py:48 apps.py:61 forms.py:19 models.py:52 +msgid "User ID" +msgstr "" + +#: apps.py:51 forms.py:34 models.py:55 +msgid "Type" +msgstr "" + +#: apps.py:53 forms.py:23 models.py:36 +msgid "Creation date" +msgstr "" + +#: apps.py:56 forms.py:27 models.py:40 +msgid "Expiration date" +msgstr "" + +#: apps.py:57 +msgid "No expiration" +msgstr "" + +#: apps.py:59 forms.py:32 models.py:47 +msgid "Length" +msgstr "" + +#: forms.py:28 +msgid "None" +msgstr "" + +#: forms.py:31 models.py:44 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:50 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 +msgid "Term" +msgstr "" + +#: forms.py:48 +msgid "Name, e-mail, key ID or key fingerprint to look for." +msgstr "" + +#: links.py:13 +msgid "Delete" +msgstr "" + +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 +msgid "Query keyservers" +msgstr "" + +#: links.py:29 +msgid "Import" +msgstr "" + +#: links.py:34 permissions.py:7 +msgid "Key management" +msgstr "" + +#: 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:15 +msgid "Secret" +msgstr "" + +#: literals.py:23 literals.py:28 +msgid "RSA" +msgstr "" + +#: literals.py:24 +msgid "DSA" +msgstr "" + +#: literals.py:29 +msgid "Elgamal" +msgstr "" + +#: literals.py:43 +msgid "Bad signature." +msgstr "" + +#: literals.py:46 +msgid "Document not signed or invalid signature." +msgstr "" + +#: literals.py:49 +msgid "Signature error." +msgstr "" + +#: literals.py:53 +msgid "Document is signed but no public key is available for verification." +msgstr "" + +#: literals.py:58 +msgid "Document is signed, and signature is good." +msgstr "" + +#: literals.py:61 +msgid "Document is signed with a valid signature." +msgstr "" + +#: models.py:32 +msgid "ASCII armored version of the key." +msgstr "" + +#: models.py:33 +msgid "Key data" +msgstr "" + +#: models.py:61 +msgid "Key" +msgstr "" + +#: models.py:62 +msgid "Keys" +msgstr "" + +#: models.py:68 +msgid "Invalid key data" +msgstr "" + +#: models.py:71 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 +msgid "Delete keys" +msgstr "" + +#: 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 +msgid "Upload keys" +msgstr "" + +#: permissions.py:25 +msgid "View keys" +msgstr "" + +#: settings.py:10 +msgid "Signatures" +msgstr "" + +#: settings.py:15 +msgid "Home directory used to store keys as well as configuration files." +msgstr "" + +#: 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 "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: %(key_id)s; %(error)s" +msgstr "" + +#: views.py:85 +#, python-format +msgid "Successfully received key: %(key_id)s" +msgstr "" + +#: views.py:107 +msgid "Search" +msgstr "" + +#: views.py:109 +msgid "Query key server" +msgstr "" + +#: views.py:119 +msgid "Key query results" +msgstr "" + +#: views.py:138 +msgid "Upload new key" +msgstr "" diff --git a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po index 829ba6ec8f..328b65704a 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\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-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 @@ -96,7 +97,6 @@ msgid "Key management" msgstr "Quản lý khóa" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -161,7 +161,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -194,7 +193,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -203,7 +201,6 @@ msgid "View keys" msgstr "Xem các khóa" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -216,13 +213,11 @@ 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 "" @@ -233,7 +228,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -243,7 +237,6 @@ 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 "" @@ -287,12 +280,12 @@ 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." +#~ "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." +#~ "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.po b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po index 107ad177d1..772f19e57b 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\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-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 @@ -96,7 +97,6 @@ msgid "Key management" msgstr "密钥管理" #: links.py:37 -#| msgid "Import key" msgid "Upload key" msgstr "" @@ -161,7 +161,6 @@ msgid "Key data" msgstr "" #: models.py:61 -#| msgid "Key ID" msgid "Key" msgstr "" @@ -194,7 +193,6 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -203,7 +201,6 @@ msgid "View keys" msgstr "查看密钥" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -216,13 +213,11 @@ 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 "" @@ -233,7 +228,6 @@ msgstr "" #: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -243,7 +237,6 @@ 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 "" @@ -287,12 +280,12 @@ 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." +#~ "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." +#~ "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.po b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po index 7330fbff83..ffcab2f59d 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +42,10 @@ msgid "Comments" 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:79 #, 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 07d9eb054a..998e568424 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +41,10 @@ msgid "Comments" 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:79 #, 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 515d482512..81aaf265b2 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +42,10 @@ msgid "Comments" msgstr "Komentari" #: 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:79 #, 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 43e893a487..d89e84fdcc 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +41,10 @@ msgid "Comments" msgstr "Kommentarer" #: 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:79 #, 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 9abedd2b01..b29764ff74 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "Kommentare" @@ -42,12 +42,10 @@ msgid "Comments" msgstr "Kommentare" #: 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:79 #, 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 29319169d7..28369fc507 100644 --- a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/en/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "Document comments" @@ -41,12 +41,10 @@ msgid "Comments" msgstr "Comments" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Document comment created" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Document comment deleted" @@ -85,7 +83,6 @@ msgstr "Add comment to document: %s" #: views.py:79 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Delete comment: %s?" 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 037f360d60..6d5e17eedf 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "Comentarios de documento" @@ -42,12 +42,10 @@ msgid "Comments" msgstr "Comentarios" #: 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:79 #, 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 dea15ba7e0..4f2e642336 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +41,10 @@ msgid "Comments" 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:79 #, 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 8b15ddc857..cc4901778b 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "Commentaires du document" @@ -42,12 +42,10 @@ msgid "Comments" msgstr "Commentaires" #: 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:79 #, 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 2f14997cd8..d6ed3cd1a1 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +41,10 @@ msgid "Comments" msgstr "Megjegyzések" #: 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:79 #, 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 767fdbd4af..9701e3e879 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +41,10 @@ msgid "Comments" msgstr "Komentar-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:79 #, 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 1e9d499138..bc26e0455b 100644 --- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Marco Camplese , 2016 @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-09-24 09:51+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "Commenti documento" @@ -42,12 +42,10 @@ msgid "Comments" msgstr "Commenti " #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Commento documento creato" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Commento documento cancellato" @@ -86,7 +84,6 @@ msgstr "Aggiungi un comento al documento: %s" #: views.py:79 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Cancellare il commento: %s?" 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 d63465bbc5..c4b3ee1b79 100644 --- a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Evelijn Saaltink , 2016 @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-10 12:13+0000\n" "Last-Translator: Johan Braeken\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "Documentopmerkingen" @@ -43,12 +43,10 @@ msgid "Comments" msgstr "Opmerkingen" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Documentopmerking aangemaakt" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Documentopmerking verwijderd" @@ -87,7 +85,6 @@ msgstr "Opmerking toevoegen aan document: %s" #: views.py:79 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Verwijder opmerking: %s?" 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 028f90f76f..25052d791d 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: # Wojtek Warczakowski , 2016 @@ -9,18 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-02 17:23+0000\n" "Last-Translator: Wojtek Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "Komentarze dokumentu" @@ -42,12 +44,10 @@ msgid "Comments" msgstr "Komentarze" #: 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 +86,6 @@ msgstr "Dodanie komentarza do dokumentu: %s" #: views.py:79 #, 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 2035f392ac..87da7ef56c 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +41,10 @@ msgid "Comments" msgstr "Comentários" #: 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:79 #, 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 725b223a77..e56b43af72 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: # Aline Freitas , 2016 @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-11-17 22:54+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "Comentários de documento" @@ -42,12 +42,10 @@ msgid "Comments" msgstr "Comentários" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Comentário de documento criado" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Comentário de documento apagado" @@ -86,7 +84,6 @@ msgstr "Adicionar comentário ao documento: %s" #: views.py:79 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Apagar comentário: %s?" 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 15816f3521..315cbb87dd 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-04-17 09:39+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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +42,10 @@ msgid "Comments" msgstr "Comentarii" #: 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:79 #, 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 aaf2d398de..993df758d1 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: # lilo.panic, 2016 @@ -9,18 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-07-14 01:35+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "Комментарии документа" @@ -42,12 +44,10 @@ msgid "Comments" msgstr "Комментарии" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Комментарий документа создан" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Комментарий документа удалён" @@ -86,7 +86,6 @@ msgstr "Добавить комментарий на документ: %s" #: views.py:79 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Удалить комментарий: %s?" 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 e6826e1ce0..09f6c1cb3c 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-23 16:43+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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +42,10 @@ msgid "Comments" msgstr "Komentarji" #: 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:79 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..394d135287 --- /dev/null +++ b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,90 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 +msgid "Document comments" +msgstr "" + +#: apps.py:46 +msgid "Date" +msgstr "" + +#: apps.py:48 models.py:27 +msgid "User" +msgstr "" + +#. Translators: Comment here is a noun and refers to the actual text stored +#: apps.py:51 models.py:30 models.py:72 views.py:23 +msgid "Comment" +msgstr "" + +#: apps.py:55 apps.py:59 links.py:22 models.py:73 permissions.py:7 +msgid "Comments" +msgstr "" + +#: events.py:9 +msgid "Document comment created" +msgstr "" + +#: events.py:13 +msgid "Document comment deleted" +msgstr "" + +#: links.py:13 +msgid "Add comment" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: models.py:23 +msgid "Document" +msgstr "" + +#: models.py:33 +msgid "Date time submitted" +msgstr "" + +#: permissions.py:10 +msgid "Create new comments" +msgstr "" + +#: permissions.py:13 +msgid "Delete comments" +msgstr "" + +#: permissions.py:16 +msgid "View comments" +msgstr "" + +#: views.py:41 +#, python-format +msgid "Add comment to document: %s" +msgstr "" + +#: views.py:79 +#, python-format +msgid "Delete comment: %s?" +msgstr "" + +#: views.py:106 +#, python-format +msgid "Comments for document: %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 eada5583cb..c701de6001 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +41,10 @@ msgid "Comments" 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:79 #, 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 f67cfed8fa..04facc17a5 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:26 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -41,12 +41,10 @@ msgid "Comments" 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:79 #, 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 bf75165f84..665dc7616a 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -60,11 +61,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Indexes" @@ -102,14 +103,13 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -139,9 +139,11 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:170 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:173 msgid "Link documents" @@ -151,7 +153,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -219,7 +221,6 @@ msgid "Rebuild document indexes" msgstr "Rebuild document indexes" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -237,7 +238,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -365,9 +365,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" @@ -404,11 +406,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 5ec8022036..ba1fc08635 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -60,11 +60,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Индекси" @@ -102,14 +102,14 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -139,8 +139,8 @@ msgstr "" #: models.py:170 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:173 @@ -151,7 +151,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -219,7 +219,6 @@ msgid "Rebuild document indexes" msgstr "" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -237,7 +236,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -365,9 +363,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" @@ -404,11 +404,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 4f4b25c374..5a658538aa 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -60,11 +61,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Indeksi" @@ -102,14 +103,14 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -135,13 +136,17 @@ msgstr "" #: models.py:162 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:170 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:173 msgid "Link documents" @@ -151,7 +156,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -219,7 +224,6 @@ msgid "Rebuild document indexes" msgstr " Obnovi indekse dokumenata" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -237,7 +241,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -365,9 +368,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" @@ -404,11 +409,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 b133ad5e69..0b64bd0c7c 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "" @@ -101,13 +101,11 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 @@ -138,8 +136,8 @@ msgstr "" #: models.py:170 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:173 @@ -150,7 +148,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -218,7 +216,6 @@ msgid "Rebuild document indexes" msgstr "" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -236,7 +233,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -364,9 +360,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" @@ -403,11 +401,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 52d42306ca..ecd2e1a7ca 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-2016 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "Dokumentenindices" @@ -64,11 +64,11 @@ msgstr "Dokument verknüpft" msgid "Node" msgstr "Knotenpunkt" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Indices" @@ -106,14 +106,14 @@ msgid "New child node" msgstr "Neuer Unterknoten" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -131,7 +131,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:157 msgid "Indexing expression" @@ -139,13 +142,18 @@ msgstr "Indexierungsausdruck" #: models.py:162 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:170 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:173 msgid "Link documents" @@ -155,12 +163,14 @@ msgstr "Dokumente verknüpfen" msgid "Root" msgstr "Wurzel" -#: models.py:240 +#: models.py:239 #, 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:268 msgid "Index node template" @@ -223,7 +233,6 @@ msgid "Rebuild document indexes" msgstr "Dokumentenindices neu aufbauen" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -241,7 +250,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "Index %s löschen?" @@ -369,9 +377,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" @@ -408,11 +418,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 633977b213..5e140c020e 100644 --- a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -27,7 +28,6 @@ msgid "Document types" msgstr "Document types" #: apps.py:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "Document indexing" @@ -59,11 +59,11 @@ msgstr "Has document links?" msgid "Node" msgstr "Node" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "Indexes to be queued for rebuilding." -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Indexes" @@ -101,14 +101,13 @@ msgid "New child node" msgstr "New child node" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "This value will be used by other apps to reference this index." #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -126,7 +125,9 @@ msgstr "Index instances" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Enter a template to render. Use Django's default templating language (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Enter a template to render. Use Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:157 msgid "Indexing expression" @@ -138,9 +139,11 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:170 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:173 msgid "Link documents" @@ -150,12 +153,14 @@ msgstr "Link documents" msgid "Root" msgstr "Root" -#: models.py:240 +#: models.py:239 #, 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:268 msgid "Index node template" @@ -218,7 +223,6 @@ msgid "Rebuild document indexes" msgstr "Rebuild document indexes" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "Delete empty index nodes" @@ -236,7 +240,6 @@ msgstr "Rebuild index" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "Delete the index: %s?" @@ -364,9 +367,11 @@ msgstr "Index rebuild queued successfully." #~ 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" @@ -403,11 +408,11 @@ msgstr "Index rebuild queued successfully." #~ 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/es/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po index 01764c114e..db6fb7d779 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,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -30,7 +31,6 @@ msgid "Document types" msgstr "Tipos de documento" #: apps.py:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "Indexación de documentos" @@ -62,11 +62,11 @@ msgstr "El documento tiene enlaces?" msgid "Node" msgstr "Nodo" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "Los índices a someter para reconstrucción." -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Índices" @@ -104,14 +104,14 @@ msgid "New child node" msgstr "nuevo nodo secundario" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -129,7 +129,9 @@ msgstr "Instancias de índices" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Introduzca una plantilla para generar. Use el lenguaje de plantillas de Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). " +msgstr "" +"Introduzca una plantilla para generar. Use el lenguaje de plantillas de " +"Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). " #: models.py:157 msgid "Indexing expression" @@ -137,13 +139,17 @@ msgstr "expresión de indexación" #: models.py:162 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:170 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:173 msgid "Link documents" @@ -153,12 +159,14 @@ msgstr "enlace de documentos" msgid "Root" msgstr "raíz" -#: models.py:240 +#: models.py:239 #, 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:268 msgid "Index node template" @@ -221,7 +229,6 @@ msgid "Rebuild document indexes" msgstr "Generar índices de documentos" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -239,7 +246,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "¿Borrar el indice: %s?" @@ -367,9 +373,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" @@ -406,11 +414,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 7972c6d8f0..e7f6e5e890 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -59,11 +59,11 @@ msgstr "آیا سند دارای پیوند است؟" msgid "Node" msgstr "گره" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "اندیس ها" @@ -101,14 +101,14 @@ msgid "New child node" msgstr "گره فرزند جدید" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -134,12 +134,14 @@ msgstr "عبارت اندیس گذاری" #: models.py:162 msgid "Causes this node to be visible and updated when document data changes." -msgstr "باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی شود." +msgstr "" +"باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی " +"شود." #: models.py:170 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:173 @@ -150,12 +152,13 @@ msgstr "اسناد پیوند" msgid "Root" msgstr "ریشه" -#: models.py:240 +#: models.py:239 #, 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:268 msgid "Index node template" @@ -218,7 +221,6 @@ msgid "Rebuild document indexes" msgstr "بازسازی ایندکسهای سند" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -236,7 +238,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -364,9 +365,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" @@ -403,11 +406,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 041dc253b4..ee4f63014b 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "Indexation de document" @@ -62,11 +62,11 @@ msgstr "Est lié à d'autres documents ?" msgid "Node" msgstr "Noeud" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Indexes" @@ -93,7 +93,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 views.py:319 msgid "Rebuild indexes" @@ -104,14 +105,14 @@ msgid "New child node" msgstr "Nouveau noeud enfant" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -129,7 +130,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:157 msgid "Indexing expression" @@ -137,13 +140,17 @@ msgstr "Expression d'indexation" #: models.py:162 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:170 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:173 msgid "Link documents" @@ -153,12 +160,14 @@ msgstr "Lier les documents" msgid "Root" msgstr "Racine" -#: models.py:240 +#: models.py:239 #, 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:268 msgid "Index node template" @@ -221,7 +230,6 @@ msgid "Rebuild document indexes" msgstr "Reconstruire les indexes des documents" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -239,7 +247,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "Supprimer l'indexe : %s ?" @@ -367,9 +374,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" @@ -406,11 +415,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 b9e34a1462..abbead08dc 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "" @@ -101,13 +101,11 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 @@ -138,8 +136,8 @@ msgstr "" #: models.py:170 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:173 @@ -150,7 +148,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -218,7 +216,6 @@ msgid "Rebuild document indexes" msgstr "" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -236,7 +233,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -364,9 +360,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" @@ -403,11 +401,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 24ea43912e..1c343af575 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "" @@ -101,13 +101,11 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 @@ -138,8 +136,8 @@ msgstr "" #: models.py:170 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:173 @@ -150,7 +148,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -218,7 +216,6 @@ msgid "Rebuild document indexes" msgstr "" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -236,7 +233,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -364,9 +360,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" @@ -403,11 +401,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 bbd2839f06..a99c44abaa 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,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 @@ -31,7 +32,6 @@ msgid "Document types" msgstr "Tipi di documento" #: apps.py:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "Indicizzazione documento" @@ -63,11 +63,11 @@ msgstr "Il documento ha un collegamento?" msgid "Node" msgstr "Nodo" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "Gli indici sono in coda per la ricostruzione." -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Indici" @@ -105,14 +105,14 @@ msgid "New child node" msgstr "Novo nodo figlio" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -130,7 +130,9 @@ msgstr "Instanze indice" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Inserisci il template da renderizzare. Usa il linguaggio di template di Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Inserisci il template da renderizzare. Usa il linguaggio di template di " +"Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:157 msgid "Indexing expression" @@ -138,13 +140,17 @@ msgstr "Espressione di indicizzazione" #: models.py:162 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:170 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:173 msgid "Link documents" @@ -154,12 +160,14 @@ msgstr "Documenti di collegamento" msgid "Root" msgstr "Principale" -#: models.py:240 +#: models.py:239 #, 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:268 msgid "Index node template" @@ -222,7 +230,6 @@ msgid "Rebuild document indexes" msgstr "Ricostruisci indici documento" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -240,7 +247,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "Cancellare l'indice: %s?" @@ -368,9 +374,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" @@ -407,11 +415,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 e292226994..8f841c1f30 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: # Evelijn Saaltink , 2016 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 @@ -30,7 +31,6 @@ msgid "Document types" msgstr "Documentsoorten" #: apps.py:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "Documentindexering" @@ -62,11 +62,11 @@ msgstr "Heeft document verwijzingen?" msgid "Node" msgstr "Node" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Indexeringen" @@ -104,14 +104,13 @@ msgid "New child node" msgstr "Nieuwe node" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -137,13 +136,15 @@ msgstr "Indexeringsexpressie" #: models.py:162 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:170 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:173 msgid "Link documents" @@ -153,12 +154,14 @@ msgstr "Koppel documenten" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Fout bij het indexeren van document: %(document)s; uitdrukking: %(expression)s; %(exception)s" +msgstr "" +"Fout bij het indexeren van document: %(document)s; uitdrukking: " +"%(expression)s; %(exception)s" #: models.py:268 msgid "Index node template" @@ -221,7 +224,6 @@ msgid "Rebuild document indexes" msgstr "documenten opnieuw indexeren" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -239,7 +241,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -367,9 +368,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" @@ -406,11 +409,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 140b058f24..6a1bc0e01d 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 @@ -11,15 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: admin.py:24 msgid "None" @@ -30,7 +33,6 @@ msgid "Document types" msgstr "Typy dokumentów" #: apps.py:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -62,11 +64,11 @@ msgstr "" msgid "Node" msgstr "Węzeł" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Indeksy" @@ -104,14 +106,14 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -129,7 +131,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:157 msgid "Indexing expression" @@ -141,9 +145,11 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:170 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:173 msgid "Link documents" @@ -153,7 +159,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -221,7 +227,6 @@ msgid "Rebuild document indexes" msgstr "Odbuduj indeksy dokumentów" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -239,7 +244,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -367,9 +371,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" @@ -406,11 +412,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 7ca9bbd190..b453dce962 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -61,11 +61,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Índices" @@ -103,14 +103,14 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -136,13 +136,17 @@ msgstr "" #: models.py:162 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:170 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:173 msgid "Link documents" @@ -152,7 +156,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -220,7 +224,6 @@ msgid "Rebuild document indexes" msgstr "Reconstruir índices de documento" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -238,7 +241,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -366,9 +368,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" @@ -405,11 +409,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 e32ccc0717..974bbb130b 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: # Aline Freitas , 2016 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 @@ -30,7 +31,6 @@ msgid "Document types" msgstr "Tipos de Documentos" #: apps.py:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "Indexação de documentos" @@ -62,11 +62,11 @@ msgstr "Tem links de documentos?" msgid "Node" msgstr "Nó" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Índices" @@ -104,14 +104,14 @@ msgid "New child node" msgstr "Novo node filho" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Faz com que este índice seja visível e atualizado quando dados de documentos forem alterados." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Faz com que este índice seja visível e atualizado quando dados de documentos " +"forem alterados." #: models.py:117 models.py:149 msgid "Index" @@ -129,7 +129,9 @@ msgstr "Instâncias de índice" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Insira um modelo para renderizar. Use a linguagem de modelo padrão do Django (https://docs.djangoproject.com/pt-br/1.10/ref/templates/builtins/)" +msgstr "" +"Insira um modelo para renderizar. Use a linguagem de modelo padrão do Django " +"(https://docs.djangoproject.com/pt-br/1.10/ref/templates/builtins/)" #: models.py:157 msgid "Indexing expression" @@ -137,13 +139,17 @@ msgstr "Indexando expressão" #: models.py:162 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Faz com que este nó seja visível e atualizado quando dados do documento forem alterados." +msgstr "" +"Faz com que este nó seja visível e atualizado quando dados do documento " +"forem alterados." #: models.py:170 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Marque esta opção para que este nó atue como um recipiente para documentos e não como um pai para outros nós secundários." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Marque esta opção para que este nó atue como um recipiente para documentos e " +"não como um pai para outros nós secundários." #: models.py:173 msgid "Link documents" @@ -153,12 +159,14 @@ msgstr "Link de documentos" msgid "Root" msgstr "Raiz" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Erro indexando documento: %(document)s; expressão: %(expression)s; %(exception)s" +msgstr "" +"Erro indexando documento: %(document)s; expressão: %(expression)s; " +"%(exception)s" #: models.py:268 msgid "Index node template" @@ -221,7 +229,6 @@ msgid "Rebuild document indexes" msgstr "Reconstruir índices de documento" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -239,7 +246,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "Apagar o índice: %s?" @@ -367,9 +373,11 @@ msgstr "Índices em fila reconstruídos com sucesso." #~ 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" @@ -406,11 +414,11 @@ msgstr "Índices em fila reconstruídos com sucesso." #~ 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 f04a3870d9..a8335315cf 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -60,11 +61,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Indexuri" @@ -102,14 +103,14 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -135,13 +136,17 @@ msgstr "" #: models.py:162 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:170 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:173 msgid "Link documents" @@ -151,7 +156,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -219,7 +224,6 @@ msgid "Rebuild document indexes" msgstr "Reconstruire index documente" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -237,7 +241,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -365,9 +368,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" @@ -404,11 +409,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 a5b791ebb1..85e6ecd79d 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: # lilo.panic, 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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" @@ -28,7 +31,6 @@ msgid "Document types" msgstr "Типы документов" #: apps.py:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "Индексирование документа" @@ -60,11 +62,11 @@ msgstr "" msgid "Node" msgstr "Узел" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "Индексы" @@ -102,14 +104,13 @@ msgid "New child node" msgstr "Новый дочерний узел" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 msgid "Index" @@ -135,13 +136,15 @@ msgstr "" #: models.py:162 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Этот узел должен быть видимым и обновляются при изменении данных документа." +msgstr "" +"Этот узел должен быть видимым и обновляются при изменении данных документа." #: models.py:170 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:173 msgid "Link documents" @@ -151,7 +154,7 @@ msgstr "" msgid "Root" msgstr "Корень" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -219,7 +222,6 @@ msgid "Rebuild document indexes" msgstr "Восстановление индексов документа" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -237,7 +239,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "Удалить индекс: %s?" @@ -365,9 +366,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" @@ -404,11 +407,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 b65d3cc87e..fd2f064fb5 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -59,11 +60,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "" @@ -101,13 +102,11 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 @@ -138,8 +137,8 @@ msgstr "" #: models.py:170 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:173 @@ -150,7 +149,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -218,7 +217,6 @@ msgid "Rebuild document indexes" msgstr "" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -236,7 +234,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -364,9 +361,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" @@ -403,11 +402,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..6deec17737 --- /dev/null +++ b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +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. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-09 02:27-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" + +#: admin.py:24 +msgid "None" +msgstr "" + +#: admin.py:26 apps.py:95 links.py:48 models.py:49 +msgid "Document types" +msgstr "" + +#: apps.py:49 +msgid "Document indexing" +msgstr "" + +#: apps.py:81 models.py:33 +msgid "Label" +msgstr "" + +#: apps.py:82 models.py:38 +msgid "Slug" +msgstr "" + +#: apps.py:84 apps.py:104 models.py:46 models.py:165 +msgid "Enabled" +msgstr "" + +#: apps.py:89 apps.py:119 apps.py:132 +msgid "Items" +msgstr "" + +#: apps.py:100 +msgid "Level" +msgstr "" + +#: apps.py:108 +msgid "Has document links?" +msgstr "" + +#: apps.py:115 apps.py:126 +msgid "Node" +msgstr "" + +#: forms.py:15 +msgid "Indexes to be queued for rebuilding." +msgstr "" + +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: views.py:73 views.py:220 +msgid "Indexes" +msgstr "" + +#: handlers.py:20 +msgid "Creation date" +msgstr "" + +#: links.py:31 views.py:34 +msgid "Create index" +msgstr "" + +#: links.py:35 links.py:64 +msgid "Edit" +msgstr "" + +#: links.py:40 links.py:68 +msgid "Delete" +msgstr "" + +#: links.py:44 +msgid "Tree template" +msgstr "" + +#: links.py:54 +msgid "Deletes and creates from scratch all the document indexes." +msgstr "" + +#: links.py:57 views.py:319 +msgid "Rebuild indexes" +msgstr "" + +#: links.py:60 +msgid "New child node" +msgstr "" + +#: models.py:37 +msgid "This value will be used by other apps to reference this index." +msgstr "" + +#: models.py:43 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" + +#: models.py:117 models.py:149 +msgid "Index" +msgstr "" + +#: models.py:136 +msgid "Index instance" +msgstr "" + +#: models.py:137 +msgid "Index instances" +msgstr "" + +#: models.py:153 +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:157 +msgid "Indexing expression" +msgstr "" + +#: models.py:162 +msgid "Causes this node to be visible and updated when document data changes." +msgstr "" + +#: models.py:170 +msgid "" +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" + +#: models.py:173 +msgid "Link documents" +msgstr "" + +#: models.py:178 +msgid "Root" +msgstr "" + +#: models.py:239 +#, python-format +msgid "" +"Error indexing document: %(document)s; expression: %(expression)s; " +"%(exception)s" +msgstr "" + +#: models.py:268 +msgid "Index node template" +msgstr "" + +#: models.py:269 +msgid "Indexes node template" +msgstr "" + +#: models.py:277 +msgid "Index template node" +msgstr "" + +#: models.py:280 +msgid "Value" +msgstr "" + +#: models.py:284 +msgid "Documents" +msgstr "" + +#: models.py:370 +msgid "Index node instance" +msgstr "" + +#: models.py:371 +msgid "Indexes node instances" +msgstr "" + +#: models.py:379 +msgid "Document index node instance" +msgstr "" + +#: models.py:380 +msgid "Document indexes node instances" +msgstr "" + +#: permissions.py:7 queues.py:8 +msgid "Indexing" +msgstr "" + +#: permissions.py:10 +msgid "Create new document indexes" +msgstr "" + +#: permissions.py:13 +msgid "Edit document indexes" +msgstr "" + +#: permissions.py:16 +msgid "Delete document indexes" +msgstr "" + +#: permissions.py:19 +msgid "View document indexes" +msgstr "" + +#: permissions.py:22 +msgid "Rebuild document indexes" +msgstr "" + +#: queues.py:12 +msgid "Delete empty index nodes" +msgstr "" + +#: queues.py:16 +msgid "Remove document" +msgstr "" + +#: queues.py:20 +msgid "Index document" +msgstr "" + +#: queues.py:24 +msgid "Rebuild index" +msgstr "" + +#: views.py:49 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:62 +#, python-format +msgid "Edit index: %s" +msgstr "" + +#: views.py:79 +msgid "Available document types" +msgstr "" + +#: views.py:81 +msgid "Document types linked" +msgstr "" + +#: views.py:96 +#, python-format +msgid "Document types linked to index: %s" +msgstr "" + +#: views.py:135 +#, python-format +msgid "Tree template nodes for index: %s" +msgstr "" + +#: views.py:157 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete the index template node: %s?" +msgstr "" + +#: views.py:203 +#, python-format +msgid "Edit the index template node: %s?" +msgstr "" + +#: views.py:268 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:273 +#, python-format +msgid "Contents for index: %s" +msgstr "" + +#: views.py:309 +#, python-format +msgid "Indexes nodes containing document: %s" +msgstr "" + +#: views.py:328 +msgid "Index rebuild queued successfully." +msgstr "" 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 9f2a6ee3dc..01eb11b2ca 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "" @@ -101,13 +101,11 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 @@ -138,8 +136,8 @@ msgstr "" #: models.py:170 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:173 @@ -150,7 +148,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -218,7 +216,6 @@ msgid "Rebuild document indexes" msgstr "" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -236,7 +233,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -364,9 +360,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" @@ -403,11 +401,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 9a719e71f3..5cc1140aec 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:49 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -60,11 +60,11 @@ msgstr "" msgid "Node" msgstr "" -#: forms.py:14 +#: forms.py:15 msgid "Indexes to be queued for rebuilding." msgstr "" -#: forms.py:15 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 +#: forms.py:16 links.py:18 links.py:22 links.py:25 links.py:28 models.py:118 #: views.py:73 views.py:220 msgid "Indexes" msgstr "索引" @@ -102,13 +102,11 @@ msgid "New child node" msgstr "" #: models.py:37 -#| msgid "Internal name used to reference this index." msgid "This value will be used by other apps to reference this index." msgstr "" #: models.py:43 -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:117 models.py:149 @@ -139,8 +137,8 @@ msgstr "当文档数据变化时,导致节点被更新和可见。" #: models.py:170 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:173 @@ -151,7 +149,7 @@ msgstr "" msgid "Root" msgstr "" -#: models.py:240 +#: models.py:239 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -219,7 +217,6 @@ msgid "Rebuild document indexes" msgstr "重建文档索引" #: queues.py:12 -#| msgid "Delete document indexes" msgid "Delete empty index nodes" msgstr "" @@ -237,7 +234,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -365,9 +361,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" @@ -404,11 +402,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 75eb05fe60..15766eb6e9 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,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -28,12 +30,10 @@ msgid "Date" msgstr "Date" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "Key ID" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,22 +54,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -102,7 +98,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -203,12 +198,10 @@ 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 "" @@ -217,22 +210,18 @@ msgid "Verify document signatures" msgstr "Verify document signatures" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -240,59 +229,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 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:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 3ac58d60e2..f80e661e3d 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -28,12 +29,10 @@ msgid "Date" msgstr "Дата" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "Ключ ID" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,22 +53,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -102,7 +97,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -203,12 +197,10 @@ 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 "" @@ -217,22 +209,18 @@ msgid "Verify document signatures" msgstr "Проверете сигнатурите на документа" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -240,59 +228,59 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 -msgid "On large databases this operation may take some time to execute." -msgstr "При големи бази данни тази операция може да отнеме известно време за изпълнение." - #: views.py:361 -#| msgid "Verify document signatures" +msgid "On large databases this operation may take some time to execute." +msgstr "" +"При големи бази данни тази операция може да отнеме известно време за " +"изпълнение." + +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 ef68beec67..0fe4c8dd7a 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,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -28,12 +30,10 @@ msgid "Date" msgstr "Datum" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID ključa" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,22 +54,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -102,7 +98,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -203,12 +198,10 @@ 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 "" @@ -217,22 +210,18 @@ msgid "Verify document signatures" msgstr "Provjeriti potpise dokumenta" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -240,59 +229,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 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:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 b302023fed..7369777699 100644 --- a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -27,12 +28,10 @@ msgid "Date" msgstr "Dato" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -53,22 +52,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -101,7 +96,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -202,12 +196,10 @@ 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 "" @@ -216,22 +208,18 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -239,59 +227,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 msgid "On large databases this operation may take some time to execute." msgstr "På store databaser kan denne operation tage lidt tid at udføre." -#: views.py:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 9bd079bfe4..eed9276cec 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,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:52 permissions.py:8 settings.py:7 @@ -32,12 +33,10 @@ msgid "Date" msgstr "Datum" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "Schlüssel-ID" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "Unterschrifts-ID" @@ -58,22 +57,18 @@ msgid "Passphrase" msgstr "Passphrase" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "Eingebettete Unterschrift?" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "Datum der Unterschrift" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "Unterschrifts-Schlüssel-ID" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "Unterschrifts-Schlüssel vorhanden?" @@ -106,7 +101,6 @@ msgid "Key type" msgstr "Schlüssel-Typ" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "Alle Dokumente überprüfen" @@ -207,12 +201,10 @@ msgid "Delete detached signatures" msgstr "Separate Unterschriften löschen" #: permissions.py:25 -#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "Separate Unterschriften der Dokumente herunterladen" #: permissions.py:29 -#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "Separate Unterschriften der Dokumente hochladen" @@ -221,22 +213,18 @@ msgid "Verify document signatures" msgstr "Dokumentenunterschriften überprüfen" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "Details der Unterschriften des Dokuments" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -244,59 +232,58 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "Passphrase wird benötigt um den Schlüssel zu entsperren" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "Passphrase ist ungültig" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "Dokumentenversion wurde erfolgreich signiert." -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "Dokumentenversion \"%s\" mit seperater Unterschrift signieren" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "Dokumentenversion \"%s\" mit eingebetteter Unterschrift signieren" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "Separate Unterschrift löschen: %s" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "Details für Signatur: %s" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "Unterschriften für Dokumentenversion: %s" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "Seperate Unterschrift für Dokumentenversion hochladen: %s" -#: views.py:360 -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." - #: views.py:361 -#| msgid "Verify document signatures" +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." + +#: views.py:362 msgid "Verify all document for signatures?" msgstr "Alle Unterschriften der Dokumente überprüfen?" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." msgstr "Überprüfung der Unterschriften erfolgreich eingereiht." 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 c19a7ca14f..471f8cf49a 100644 --- a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 permissions.py:8 settings.py:7 @@ -27,12 +28,10 @@ msgid "Date" msgstr "Date" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "Key ID" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "Signature ID" @@ -53,22 +52,18 @@ msgid "Passphrase" msgstr "Passphrase" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "Signature is embedded?" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "Signature date" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "Signature key ID" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "Signature key present?" @@ -101,7 +96,6 @@ msgid "Key type" msgstr "Key type" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "Verify all documents" @@ -202,12 +196,10 @@ msgid "Delete detached signatures" msgstr "Delete detached signatures" #: permissions.py:25 -#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "Download detached document signatures" #: permissions.py:29 -#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "Upload detached document signatures" @@ -216,22 +208,18 @@ msgid "Verify document signatures" msgstr "Verify document signatures" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "View details of document signatures" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "Verify key signatures" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "Unverify key signatures" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "Verify document version" @@ -239,59 +227,57 @@ msgstr "Verify document version" msgid "Verify missing embedded signature" msgstr "Verify missing embedded signature" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "Passphrase is needed to unlock this key." -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "Passphrase is incorrect." -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "Document version signed successfully." -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "Sign document version \"%s\" with a detached signature" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "Sign document version \"%s\" with a embedded signature" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "Delete detached signature: %s" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "Details for signature: %s" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "Signatures for document version: %s" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "Upload detached signature for document version: %s" -#: views.py:360 +#: views.py:361 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:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "Verify all document for signatures?" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." msgstr "Signature verification queued successfully." 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 d49b88d0a2..53e45fca5e 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,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 permissions.py:8 settings.py:7 @@ -31,12 +32,10 @@ msgid "Date" msgstr "Fecha" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "Identificador de clave" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "ID de firma" @@ -57,22 +56,18 @@ msgid "Passphrase" msgstr "Contraseña" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "¿Firma integrada?" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "Fecha de la firma" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "ID de llave de firma" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "¿Llave de la firma presente?" @@ -105,7 +100,6 @@ msgid "Key type" msgstr "Tipo de llave" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "Verificar todos los documents" @@ -206,12 +200,10 @@ msgid "Delete detached signatures" msgstr "Borrar firmas separadas" #: permissions.py:25 -#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "Descargar firma aparte de documentos" #: permissions.py:29 -#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "Subir firmas aparte de documentos" @@ -220,22 +212,18 @@ msgid "Verify document signatures" msgstr "Verificar firmas de documentos" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "Ver detalles de firma de documentos" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -243,59 +231,59 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "Se necesita contraseña para acceder a esta llave." -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "Contraseña incorrecta." -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "Versión de documento firmada con éxito." -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "Firmar versión de documento \"%s\" con una firma aparte " -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "Firmar versión de documento \"%s\" con una firma integrada" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "Borrar firma aparte: %s" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "Detalles para la firma: %s" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "Firmas para la versión de documento: %s" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "Subir firma aparte para la versión de documento: %s" -#: views.py:360 -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." - #: views.py:361 -#| msgid "Verify document signatures" +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." + +#: views.py:362 msgid "Verify all document for signatures?" msgstr "¿Verificar todos los documentos para firmas?" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." msgstr "Verificación de firmas colocada en la cola." 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 8db35ba662..5f2a813697 100644 --- a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -27,12 +28,10 @@ msgid "Date" msgstr "تاریخ" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "شناسه کلید" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -53,22 +52,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -101,7 +96,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -202,12 +196,10 @@ 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 "" @@ -216,22 +208,18 @@ msgid "Verify document signatures" msgstr "بررسی امضای سند" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -239,59 +227,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 msgid "On large databases this operation may take some time to execute." msgstr "در پایگاه داده بزرگ این عملیات مدت زیادی بطول خواهد انجامید." -#: views.py:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 ad340af691..f6f17a1a35 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: # Bruno CAPELETO , 2016 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -31,12 +32,10 @@ msgid "Date" msgstr "Date" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID de la clé" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "ID de la signature" @@ -57,22 +56,18 @@ msgid "Passphrase" msgstr "Phrase secrète" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "La signature est-elle intégrée?" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "Date de la signature" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "Identifiant de la clef de signature" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "Clé de signature présente?" @@ -105,7 +100,6 @@ msgid "Key type" msgstr "Type de clé" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "Vérifier tous les documents" @@ -206,12 +200,10 @@ msgid "Delete detached signatures" msgstr "Suppression des signatures détachées" #: permissions.py:25 -#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "Télécharger les signatures externes du document" #: permissions.py:29 -#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "Transmettre les signatures externes du document" @@ -220,22 +212,18 @@ msgid "Verify document signatures" msgstr "Vérifier les signatures du document" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "Voir le détails des signatures du document" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -243,59 +231,59 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "Une phrase secrète est nécessaire pour déverrouiller cette clé" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "Phrase secrète incorrecte" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "Signature de la version du document réussie." -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "Signer la version \"%s\" du document avec une signature externe" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "Signer la version \"%s\" du document avec une signature intégrée" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "Supprimer la signature détachée: %s" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "Détails de la signature: %s" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "Signatures pour cette version du document: %s" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "Transférer une signature détachée pour la version du document: %s" -#: views.py:360 -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." - #: views.py:361 -#| msgid "Verify document signatures" +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." + +#: views.py:362 msgid "Verify all document for signatures?" msgstr "Vérifier la signature des documents?" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." msgstr "Vérification de la signature ajoutée à la file d'attente" 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 90524429d9..9579eb8949 100644 --- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -27,12 +28,10 @@ msgid "Date" msgstr "" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -53,22 +52,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -101,7 +96,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -202,12 +196,10 @@ 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 "" @@ -216,22 +208,18 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -239,59 +227,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 msgid "On large databases this operation may take some time to execute." msgstr "A nagy adatbázisok esetében a művelet sokáig is tarthat." -#: views.py:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 0c368c0085..1fc2600c8a 100644 --- a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -27,12 +28,10 @@ msgid "Date" msgstr "" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -53,22 +52,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -101,7 +96,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -202,12 +196,10 @@ 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 "" @@ -216,22 +208,18 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -239,59 +227,59 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 -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." - #: views.py:361 -#| msgid "Verify document signatures" +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." + +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 e17821d674..82f4fff801 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,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -30,12 +31,10 @@ msgid "Date" msgstr "Data" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID Chiave" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "ID Firma" @@ -56,22 +55,18 @@ msgid "Passphrase" msgstr "Passphrase" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "La firma è integrata?" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "Data firma" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "ID chiave di firma" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "La chiave di firma è presente?" @@ -104,7 +99,6 @@ msgid "Key type" msgstr "Tipo chiave" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "Verifica tutti i documenti" @@ -205,12 +199,10 @@ msgid "Delete detached signatures" msgstr "Elimina firme allegate" #: permissions.py:25 -#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "Scarica firme scollegate documenti" #: permissions.py:29 -#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "Carica firme scollegate documenti" @@ -219,22 +211,18 @@ msgid "Verify document signatures" msgstr "Verifica la firma del documento" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "Vedi dettagli delle firme documento" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -242,59 +230,59 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "è richiesta la passphrase per sbloccare questa chiave." -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "La passphrase non è corretta." -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "La versione del documento è stata firmata con successo." -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "Firma la versione del documento \"%s\" con firma allegata" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "Firma la versione del documento \"%s\" con la firma integrata" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "Cancella la firma allegata: %s" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "Dettagli per la firma: %s" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "Firme per la versione del documento: %s" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "Carica la firma scollegata per la versione documento: %s" -#: views.py:360 -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." - #: views.py:361 -#| msgid "Verify document signatures" +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." + +#: views.py:362 msgid "Verify all document for signatures?" msgstr "Verificare le firme per tutti i documenti?" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." msgstr "Verifica firme messo in coda con successo." 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 656f911906..b4ccfde738 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: # Evelijn Saaltink , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -28,12 +29,10 @@ msgid "Date" msgstr "Datum" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "Sleutel-ID" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "Handtekening-ID" @@ -54,22 +53,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "Datum van handtekening" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "Handtekening sleutel-ID" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -102,7 +97,6 @@ msgid "Key type" msgstr "Sleutelsoort" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "Verifieer alle documenten" @@ -203,12 +197,10 @@ 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 "" @@ -217,22 +209,18 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -240,59 +228,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 msgid "On large databases this operation may take some time to execute." msgstr "Voor een grote database kan deze operatie lang duren." -#: views.py:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 522e44ea3e..bf755709a0 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,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:52 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -28,12 +31,10 @@ msgid "Date" msgstr "Data" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "Key ID" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,22 +55,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -102,7 +99,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -203,12 +199,10 @@ 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 "" @@ -217,22 +211,18 @@ msgid "Verify document signatures" msgstr "Verify document signatures" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -240,59 +230,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 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:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 3d90346045..689cb14e0f 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -28,12 +29,10 @@ msgid "Date" msgstr "Data" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID da chave" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,22 +53,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -102,7 +97,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -203,12 +197,10 @@ 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 "" @@ -217,22 +209,18 @@ msgid "Verify document signatures" msgstr "Verificar as assinaturas do documento" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -240,59 +228,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 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:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 95231a2f68..1499d3e589 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: # Aline Freitas , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -29,12 +30,10 @@ msgid "Date" msgstr "Data" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID da chave" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "ID da assinatura" @@ -55,22 +54,18 @@ msgid "Passphrase" msgstr "Senha" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "Assinatura integrada?" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "Data da assinatura" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "ID da chave da assinatura" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "Chave da assinatura presente?" @@ -103,7 +98,6 @@ msgid "Key type" msgstr "Tipo de chave" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "Verificar todos os documentos" @@ -204,12 +198,10 @@ msgid "Delete detached signatures" msgstr "Excluir assinaturas desanexados" #: permissions.py:25 -#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "Baixar assinatura destacada de documentos" #: permissions.py:29 -#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "Carregar assinaturas destacadas de documentos" @@ -218,22 +210,18 @@ msgid "Verify document signatures" msgstr "Verificar as assinaturas de documentos" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "Ver detalhes da assinatura de documentos" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -241,59 +229,58 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "É preciso senha para acessar a chave." -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "Senha incorreta." -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "A versão do documento foi assinada com sucesso." -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "Assinar a versão do documento \"%s\" com uma assinatura destacada" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "Assinar uma versão do documento \"%s\" com uma assinatura integrada" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "Excluir assinatura destacada: %s" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "Detalhes para a assinatura: %s" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "Assinaturas para a versão do documento: %s" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "Carregar a assinatura destacada para a versão do documento: %s" -#: views.py:360 -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." - #: views.py:361 -#| msgid "Verify document signatures" +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." + +#: views.py:362 msgid "Verify all document for signatures?" msgstr "Verificar todos os documentos para assinaturas?" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." msgstr "Verificação de assinaturas colocada em fila." 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 efbe2ef93d..fd704b297d 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,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -28,12 +30,10 @@ msgid "Date" msgstr "Data" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID cheie" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,22 +54,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -102,7 +98,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -203,12 +198,10 @@ 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 "" @@ -217,22 +210,18 @@ msgid "Verify document signatures" msgstr "Verifica semnăturile de documente" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -240,59 +229,58 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 -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." - #: views.py:361 -#| msgid "Verify document signatures" +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." + +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 d49eac15de..f1f472a670 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: # lilo.panic, 2016 @@ -10,15 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -29,12 +32,10 @@ msgid "Date" msgstr "Дата" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID ключа" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "ID подписи" @@ -55,22 +56,18 @@ msgid "Passphrase" msgstr "Кодовая фраза" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "Подпись встроена?" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "Дата подписи" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "ID ключа подписи" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "Ключ подписи предоставлен?" @@ -103,7 +100,6 @@ msgid "Key type" msgstr "Тип ключа" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "Проверить все документы" @@ -204,12 +200,10 @@ 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 "Вгрузить отделенные подписи документов" @@ -218,22 +212,18 @@ msgid "Verify document signatures" msgstr "Проверить подпись документа" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "Посмотреть подробности подписей документов" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -241,59 +231,59 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "Для разблокироваки этого ключа необходима кодовая фраза" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "Кодовая фраза неверна." -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "Версия документа успешно подписана." -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "Подписать версию документа \"%s\" отделённой подписью" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "Подписать версию документа \"%s\" встроенной подписью" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "Удалить отделённую подпись: %s" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "Подробности для подписи: %s" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "Подписи для документа версии: %s" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "Выгрузить отделённую подпись для версии документа: %s" -#: views.py:360 -msgid "On large databases this operation may take some time to execute." -msgstr "В больших базах данных эта операция может занять некоторое время для выполнения." - #: views.py:361 -#| msgid "Verify document signatures" +msgid "On large databases this operation may take some time to execute." +msgstr "" +"В больших базах данных эта операция может занять некоторое время для " +"выполнения." + +#: views.py:362 msgid "Verify all document for signatures?" msgstr "Проверить подписи во всех документах?" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 5b9182a3a4..4a10c5bcb6 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,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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -27,12 +29,10 @@ msgid "Date" msgstr "" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -53,22 +53,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -101,7 +97,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -202,12 +197,10 @@ 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 "" @@ -216,22 +209,18 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -239,59 +228,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 msgid "On large databases this operation may take some time to execute." msgstr "Če je baza velika lahko operacija zahteva nekaj več časa da se izvrši." -#: views.py:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." msgstr "" diff --git a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..6f2128e5ea --- /dev/null +++ b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,280 @@ +# 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: 2017-07-09 02:27-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:52 permissions.py:8 settings.py:7 +msgid "Document signatures" +msgstr "" + +#: apps.py:92 +msgid "Date" +msgstr "" + +#: apps.py:95 models.py:47 +msgid "Key ID" +msgstr "" + +#: apps.py:99 forms.py:64 models.py:51 +msgid "Signature ID" +msgstr "" + +#: apps.py:100 forms.py:76 +msgid "None" +msgstr "" + +#: apps.py:103 +msgid "Type" +msgstr "" + +#: forms.py:21 +msgid "Key" +msgstr "" + +#: forms.py:25 +msgid "Passphrase" +msgstr "" + +#: forms.py:46 +msgid "Signature is embedded?" +msgstr "" + +#: forms.py:48 +msgid "Signature date" +msgstr "" + +#: forms.py:51 +msgid "Signature key ID" +msgstr "" + +#: forms.py:53 +msgid "Signature key present?" +msgstr "" + +#: forms.py:66 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:70 +msgid "Key creation date" +msgstr "" + +#: forms.py:75 +msgid "Key expiration date" +msgstr "" + +#: forms.py:80 +msgid "Key length" +msgstr "" + +#: forms.py:84 +msgid "Key algorithm" +msgstr "" + +#: forms.py:88 +msgid "Key user ID" +msgstr "" + +#: forms.py:92 +msgid "Key type" +msgstr "" + +#: links.py:32 +msgid "Verify all documents" +msgstr "" + +#: links.py:39 queues.py:8 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +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:41 +msgid "Document version" +msgstr "" + +#: models.py:45 +msgid "Date signed" +msgstr "" + +#: models.py:55 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:61 +msgid "Document version signature" +msgstr "" + +#: models.py:62 +msgid "Document version signatures" +msgstr "" + +#: models.py:81 +msgid "Detached" +msgstr "" + +#: models.py:83 +msgid "Embedded" +msgstr "" + +#: models.py:98 +msgid "Document version embedded signature" +msgstr "" + +#: models.py:99 +msgid "Document version embedded signatures" +msgstr "" + +#: models.py:132 +msgid "Signature file" +msgstr "" + +#: models.py:136 +msgid "Document version detached signature" +msgstr "" + +#: models.py:137 +msgid "Document version detached signatures" +msgstr "" + +#: models.py:140 +msgid "signature" +msgstr "" + +#: 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 "" + +#: queues.py:11 +msgid "Verify key signatures" +msgstr "" + +#: queues.py:15 +msgid "Unverify key signatures" +msgstr "" + +#: queues.py:19 +msgid "Verify document version" +msgstr "" + +#: queues.py:24 +msgid "Verify missing embedded signature" +msgstr "" + +#: views.py:61 views.py:156 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:71 views.py:166 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:92 views.py:186 +msgid "Document version signed successfully." +msgstr "" + +#: views.py:118 +#, python-format +msgid "Sign document version \"%s\" with a detached signature" +msgstr "" + +#: views.py:219 +#, python-format +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "" + +#: views.py:246 +#, python-format +msgid "Delete detached signature: %s" +msgstr "" + +#: views.py:271 +#, python-format +msgid "Details for signature: %s" +msgstr "" + +#: views.py:313 +#, python-format +msgid "Signatures for document version: %s" +msgstr "" + +#: views.py:344 +#, python-format +msgid "Upload detached signature for document version: %s" +msgstr "" + +#: views.py:361 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:362 +msgid "Verify all document for signatures?" +msgstr "" + +#: views.py:372 +msgid "Signature verification queued successfully." +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 ce5e5501d8..744349cbfa 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -28,12 +29,10 @@ msgid "Date" msgstr "Ngày" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "Key ID" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,22 +53,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -102,7 +97,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -203,12 +197,10 @@ 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 "" @@ -217,22 +209,18 @@ msgid "Verify document signatures" msgstr "xác nhận chữ kí tài liệu" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -240,59 +228,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 msgid "On large databases this operation may take some time to execute." msgstr "" -#: views.py:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 76e36ddd92..155edf8cf4 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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 permissions.py:8 settings.py:7 @@ -28,12 +29,10 @@ msgid "Date" msgstr "日期" #: apps.py:95 models.py:47 -#| msgid "Key ID: %s" msgid "Key ID" msgstr "密钥ID" #: apps.py:99 forms.py:64 models.py:51 -#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,22 +53,18 @@ msgid "Passphrase" msgstr "" #: forms.py:46 -#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:48 -#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:51 -#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:53 -#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -102,7 +97,6 @@ msgid "Key type" msgstr "" #: links.py:32 -#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -203,12 +197,10 @@ 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 "" @@ -217,22 +209,18 @@ msgid "Verify document signatures" msgstr "核对文档签名" #: permissions.py:37 -#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" #: queues.py:11 -#| msgid "Verify document signatures" msgid "Verify key signatures" msgstr "" #: queues.py:15 -#| msgid "Verify document signatures" msgid "Unverify key signatures" msgstr "" #: queues.py:19 -#| msgid "Verify document signatures" msgid "Verify document version" msgstr "" @@ -240,59 +228,57 @@ msgstr "" msgid "Verify missing embedded signature" msgstr "" -#: views.py:60 views.py:155 +#: views.py:61 views.py:156 msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:70 views.py:165 +#: views.py:71 views.py:166 msgid "Passphrase is incorrect." msgstr "" -#: views.py:91 views.py:185 +#: views.py:92 views.py:186 msgid "Document version signed successfully." msgstr "" -#: views.py:117 +#: views.py:118 #, python-format msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:218 +#: views.py:219 #, python-format msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:245 +#: views.py:246 #, python-format msgid "Delete detached signature: %s" msgstr "" -#: views.py:270 +#: views.py:271 #, python-format -#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" -#: views.py:312 +#: views.py:313 #, python-format msgid "Signatures for document version: %s" msgstr "" -#: views.py:343 +#: views.py:344 #, python-format msgid "Upload detached signature for document version: %s" msgstr "" -#: views.py:360 +#: views.py:361 msgid "On large databases this operation may take some time to execute." msgstr "在大数据库中,此操作将比较耗时。" -#: views.py:361 -#| msgid "Verify document signatures" +#: views.py:362 msgid "Verify all document for signatures?" msgstr "" -#: views.py:371 +#: views.py:372 msgid "Signature verification queued successfully." 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 3ceb1af782..78333105f5 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 msgid "Document states" @@ -34,11 +36,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +56,7 @@ msgstr "لا شيء" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "مستخدم" @@ -66,15 +68,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "تعليق" @@ -82,15 +84,15 @@ msgstr "تعليق" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +104,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +116,7 @@ msgstr "تحرير" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +144,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +296,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "ارسال" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 22457ed7dd..26b7d86c66 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -34,11 +35,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +55,7 @@ msgstr "Няма" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Потребител" @@ -66,15 +67,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Коментар" @@ -82,15 +83,15 @@ msgstr "Коментар" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +103,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +115,7 @@ msgstr "Редактиране" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +143,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +295,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Подаване" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 b9db63cf79..27cd0fca3c 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 msgid "Document states" @@ -34,11 +36,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +56,7 @@ msgstr "Nijedno" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Korisnik" @@ -66,15 +68,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Komentar" @@ -82,15 +84,15 @@ msgstr "Komentar" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +104,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +116,7 @@ msgstr "Urediti" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +144,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +296,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Podnijeti" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 62c4c58a5e..ee09c3a183 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -34,11 +35,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +55,7 @@ msgstr "Ingen" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Bruger" @@ -66,15 +67,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Kommentar" @@ -82,15 +83,15 @@ msgstr "Kommentar" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +103,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +115,7 @@ msgstr "" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +143,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +295,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 fe1c4dc017..b33df8953d 100644 --- a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Jesaja Everling , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -36,11 +37,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Bezeichnung" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "Interner Name" @@ -56,7 +57,7 @@ msgstr "Keiner" msgid "Current state" msgstr "Aktueller Status" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Benutzer" @@ -68,15 +69,15 @@ msgstr "Letzter Übergang" msgid "Date and time" msgstr "Datum und Zeit" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "Fertigstellung" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "Übergang" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Kommentar" @@ -84,15 +85,15 @@ msgstr "Kommentar" msgid "Is initial state?" msgstr "Initialstatus" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "Herkunftsstatus" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "Zielstatus" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "Workflows" @@ -104,7 +105,7 @@ msgstr "Workflow erstellen" msgid "Delete" msgstr "Löschen" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "Dokumententypen" @@ -116,7 +117,7 @@ msgstr "Bearbeiten" msgid "Create state" msgstr "Status erstellen" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "Status" @@ -144,89 +145,93 @@ msgstr "Workflow-Dokumente" msgid "State documents" msgstr "Status Dokumente" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "Workflow" -#: models.py:98 +#: models.py:99 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:100 +#: models.py:101 msgid "Initial" msgstr "Initial" -#: models.py:104 +#: models.py:105 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:120 +#: models.py:113 msgid "Workflow state" msgstr "Workflow Status" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "Workflow Status" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "Workflow Übergang" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "Workflow Übergänge" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "Dokument" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "Workflow" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "Workflows" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "Zeit" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "Workflow Logeintrag" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "Workflow Logeinträge" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "Kein gültiger Übergang." -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "Workflow runtime proxy" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "Workflow runtime proxies" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "Workflow state runtime proxy" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "Workflow state runtime proxies" @@ -296,76 +301,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "Primary Key des hinzuzufügenden Übergangs." -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "Workflows für Dokument: %s" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "Detail für Workflow: %(workflow)s" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Absenden" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "Übergang für Workflow %s durchführen" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "Verfügbare Dokumententypen" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "Dokumententypen zugeordnet zu diesem Workflow" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "Dokumententypen zugeordnet zu Workflow %s" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "Status für Workflow %s" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "Status für Workflow %s erstellen" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "Übergänge für Workflow %s" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "Übergänge für Workflow %s erstellen" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "Integritätsfehler beim Speichern des Übergangs" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "Dokumente mit Workflow %s" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "Dokumente im Workflow \"%s\", Status \"%s\"" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "Alle Workflows starten?" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." msgstr "Workflow-Start wurde erfolgreich vorgemerkt." 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 12bd3c931f..f07c6605d5 100644 --- a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/en/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:44 queues.py:8 @@ -32,13 +33,14 @@ msgstr "Return the current state of the selected workflow" #: apps.py:77 msgid "" "Return the completion value of the current state of the selected workflow" -msgstr "Return the completion value of the current state of the selected workflow" +msgstr "" +"Return the completion value of the current state of the selected workflow" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Label" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "Internal name" @@ -54,7 +56,7 @@ msgstr "None" msgid "Current state" msgstr "Current state" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "User" @@ -66,15 +68,15 @@ msgstr "Last transition" msgid "Date and time" msgstr "Date and time" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "Completion" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "Transition" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Comment" @@ -82,15 +84,15 @@ msgstr "Comment" msgid "Is initial state?" msgstr "Is initial state?" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "Origin state" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "Destination state" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "Workflows" @@ -102,7 +104,7 @@ msgstr "Create workflow" msgid "Delete" msgstr "Delete" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "Document types" @@ -114,7 +116,7 @@ msgstr "Edit" msgid "Create state" msgstr "Create state" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "States" @@ -142,89 +144,95 @@ msgstr "Workflow documents" msgid "State documents" msgstr "State documents" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." -msgstr "This value will be used by other apps to reference this workflow. Can only contain letters, numbers, and underscores." +msgstr "" +"This value will be used by other apps to reference this workflow. Can only " +"contain letters, numbers, and underscores." -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "Workflow" -#: models.py:98 +#: models.py:99 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 "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 "" +"Select if this will be the state with which you want the workflow to start " +"in. Only one state can be the initial state." -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "Initial" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Enter the percent of completion that this state represents in relation to the workflow. Use numbers without the percent sign." +msgstr "" +"Enter the percent of completion that this state represents in relation to " +"the workflow. Use numbers without the percent sign." -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "Workflow state" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "Workflow states" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "Workflow transition" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "Workflow transitions" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "Document" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "Workflow instance" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "Workflow instances" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "Datetime" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "Workflow instance log entry" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "Workflow instance log entries" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "Not a valid transition choice." -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "Workflow runtime proxy" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "Workflow runtime proxies" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "Workflow state runtime proxy" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "Workflow state runtime proxies" @@ -264,7 +272,9 @@ msgstr "Primary key of the document type to be added." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "API URL pointing to a document type in relation to the workflow to which it is attached. This URL is different than the canonical document type URL." +msgstr "" +"API URL pointing to a document type in relation to the workflow to which it " +"is attached. This URL is different than the canonical document type URL." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -278,7 +288,9 @@ msgstr "Primary key of the origin state to be added." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "API URL pointing to a workflow in relation to the document to which it is attached. This URL is different than the canonical workflow URL." +msgstr "" +"API URL pointing to a workflow in relation to the document to which it is " +"attached. This URL is different than the canonical workflow URL." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -288,82 +300,89 @@ msgstr "A link to the entire history of this workflow." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Comma separated list of document type primary keys to which this workflow will be attached." +msgstr "" +"Comma separated list of document type primary keys to which this workflow " +"will be attached." #: serializers.py:319 msgid "Primary key of the transition to be added." msgstr "Primary key of the transition to be added." -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "Workflows for document: %s" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "Detail of workflow: %(workflow)s" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Submit" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "Do transition for workflow: %s" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "Available document types" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "Document types assigned this workflow" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "Document types assigned the workflow: %s" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "States of workflow: %s" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "Create states for workflow: %s" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "Transitions of workflow: %s" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "Create transitions for workflow: %s" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "Unable to save transition; integrity error." -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "Documents with the workflow: %s" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "Documents in the workflow \"%s\", state \"%s\"" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "Launch all workflows?" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." msgstr "Workflow launch queued successfully." 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 160d54f2fa..52b8b5e5f9 100644 --- a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2016-2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:44 queues.py:8 @@ -36,11 +37,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Etiqueta" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "Nombre interno" @@ -56,7 +57,7 @@ msgstr "Ninguno" msgid "Current state" msgstr "Estado actual" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Usuario" @@ -68,15 +69,15 @@ msgstr "Última transición" msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "Cantidad de completación" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "Transición" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Comentario" @@ -84,15 +85,15 @@ msgstr "Comentario" msgid "Is initial state?" msgstr "¿Es el estado inicial?" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "Estado origen" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "Estado destino" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "Flujos de trabajo" @@ -104,7 +105,7 @@ msgstr "Crear flujo de trabajo" msgid "Delete" msgstr "Borrar" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "Tipos de documentos" @@ -116,7 +117,7 @@ msgstr "Editar" msgid "Create state" msgstr "Crear estado" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "Estados" @@ -144,89 +145,93 @@ msgstr "Documentos del flujo de trabajo" msgid "State documents" msgstr "Documentos del estado de flujo" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "Flujo de trabajo" -#: models.py:98 +#: models.py:99 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:100 +#: models.py:101 msgid "Initial" msgstr "Inicial" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Introduzca el porcentaje de finalización que este estado representa en relación con el flujo de trabajo. Utilice números sin el signo de porcentaje." +msgstr "" +"Introduzca el porcentaje de finalización que este estado representa en " +"relación con el flujo de trabajo. Utilice números sin el signo de porcentaje." -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "Estado de flujo de trabajo" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "Estados de flujo de trabajo" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "Transición de flujo de trabajo" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "Transiciones de flujo de trabajo" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "Documento" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "Instancia de flujo de trabajo" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "Instancias de flujo de trabajo" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "Fecha y hora" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "Entrada de registro de la instancia de flujo de trabajo" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "Entradas de registro de las instancias de flujos de trabajo" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "No hay opción valida de transición." -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -296,76 +301,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "Flujos de trabajo para el documento: %s" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "Detalle de flujo de trabajo: %(workflow)s" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Enviar" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "Realizar la transición de flujo de trabajo: %s" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "Tipos de documentos disponibles" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "Tipos de documentos asignados a este flujo de trabajo" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "Tipos de documentos asignados al flujo de trabajo: %s" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "Estados del flujo de trabajo: %s" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "Crear estados para el flujo de trabajo: %s" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "Transiciones de flujo de trabajo: %s" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "Crear transiciones para el flujo de trabajo: %s" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "No se puede guardar la transición; error de integridad." -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "Documentos con el flujo de trabajo: %s" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "Documentos en el flujo de trabajo \"%s\", estado \"%s\"" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "¿Lanzar todos los flujos de trabajo?" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." msgstr "Lanzamiento de flujos de trabajo sometido con éxito." 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 b8a20a2d91..34c4c5b7d7 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 # Nima Towhidi , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -36,11 +37,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "برچسب" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "نام داخلی" @@ -56,7 +57,7 @@ msgstr "هیچ" msgid "Current state" msgstr "وضعیت فعلی" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "کاربر" @@ -68,15 +69,15 @@ msgstr "آخرین تغییر وضعیت" msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "تغییر وضعیت" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "شرح" @@ -84,15 +85,15 @@ msgstr "شرح" msgid "Is initial state?" msgstr "آیا در وضعیت اولیه است؟" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "وضعیت شروع" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "وضعیت نهایی" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "گردشکار" @@ -104,7 +105,7 @@ msgstr "" msgid "Delete" msgstr "حذف" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "انواع سند" @@ -116,7 +117,7 @@ msgstr "ویرایش" msgid "Create state" msgstr "وضغیت ایجاد" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "وضعیت ها" @@ -144,89 +145,93 @@ msgstr "اسناد گردش کار" msgid "State documents" msgstr "اسناد وضعیت" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "گردشکار" -#: models.py:98 +#: models.py:99 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:100 +#: models.py:101 msgid "Initial" msgstr "اولیه" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "درصد پیشرفت کار برای این وضعیت نسبت به تکمیل گردش کار را وارد کنید. از عدد بدون علامت درصد استفاده کنید." +msgstr "" +"درصد پیشرفت کار برای این وضعیت نسبت به تکمیل گردش کار را وارد کنید. از عدد " +"بدون علامت درصد استفاده کنید." -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "وضعیت گردشکار" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "وضعیتهای گردشکار" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "تغییر وضعیت گردشکار" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "تغییر وضعیت های گردشکار" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "سند" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "موردی از گردشکار" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "موردهای گردشکار" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "تاریخ زمان" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "ورودیه لاگ برای مورد گردشکار" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "ورودیهای مورد گردشکار" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -296,76 +301,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "گردشکارهای سند : %s" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "شرح گردشکار : %(workflow)s" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "ارسال" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "انجام تغییر وضعیت گردشکار : %s" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "نوع سند مرتبط با گردش کاری: %s" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "وضعیتهای گردشکار : %s" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "وضعیت ایجاد برای گردشکار : %s" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "تغییر وضعیتهای گردشکار : %s" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "ایجاد تغییر وضعیت برای گردشکار : %s" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "قادر به ذخیره انتقال نیست:خطای تجمع" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." msgstr "" 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 34d3648e09..adbd9c2f62 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -35,11 +36,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Étiquette" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "Nom interne" @@ -55,7 +56,7 @@ msgstr "Aucun" msgid "Current state" msgstr "État actuel" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Utilisateur" @@ -67,15 +68,15 @@ msgstr "Dernière transition" msgid "Date and time" msgstr "Date et heure" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "Finalisation" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "Transition" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Commentaire" @@ -83,15 +84,15 @@ msgstr "Commentaire" msgid "Is initial state?" msgstr "Est ce l'état initial?" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "État d'origine" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "État de destination" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "Flux de travail" @@ -103,7 +104,7 @@ msgstr "Créer un flux de travail" msgid "Delete" msgstr "Supprimer" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "Types de document" @@ -115,7 +116,7 @@ msgstr "Modifier" msgid "Create state" msgstr "Créer un état" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "États" @@ -143,89 +144,93 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "Flux de travail" -#: models.py:98 +#: models.py:99 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:100 +#: models.py:101 msgid "Initial" msgstr "Initial" -#: models.py:104 +#: models.py:105 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:120 +#: models.py:113 msgid "Workflow state" msgstr "État du flux de travail" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "États du flux de travail" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "Transition du flux de travail" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "Transitions du flux de travail" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "Document" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "Instance du flux de travail" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "Instances du flux de travail" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "Date et heure" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "Entrée de la journalisation de l'instance du flux de travail" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "Entrées de la journlisation du flux de travail" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -295,76 +300,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "Flux de travail du document: %s" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "Détail du flux de travail: %(workflow)s" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Soumettre" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "Construire une transition pour le flux de travail: %s" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "Types de document disponible" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "Types de document associé à ce flux de travail" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "Types de document assignés au flux de travail: %s" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "États du flux de travail: %s" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "Créer des états pour le flux de travail: %s" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "Transitions du flux de travail: %s " -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "Créer des transitions du flux de travail: %s" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "Impossible de sauvegarder la transition; erreur d'intégrité." -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "Documents avec le flux de travail: %s" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." msgstr "" 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 ff621efc14..14fb39f203 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -34,11 +35,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +55,7 @@ msgstr "Semmi" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Felhasználó" @@ -66,15 +67,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Megjegyzés" @@ -82,15 +83,15 @@ msgstr "Megjegyzés" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +103,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +115,7 @@ msgstr "" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +143,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +295,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 c8cedf7986..2718aadcd1 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -34,11 +35,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +55,7 @@ msgstr "" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Pengguna" @@ -66,15 +67,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Komentar" @@ -82,15 +83,15 @@ msgstr "Komentar" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +103,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +115,7 @@ msgstr "" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +143,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +295,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 d8c98a2ca9..5aa456e087 100644 --- a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016-2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -35,11 +36,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Etichetta" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "Nome interno" @@ -55,7 +56,7 @@ msgstr "Nessuna " msgid "Current state" msgstr "Stato corrente" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Utente" @@ -67,15 +68,15 @@ msgstr "Ultima transizione" msgid "Date and time" msgstr "Data e ora" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "Completamento" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "Transizione" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Commento" @@ -83,15 +84,15 @@ msgstr "Commento" msgid "Is initial state?" msgstr "Stato iniziale?" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "Stato originale" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "Stato di destinazione" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "I workflow" @@ -103,7 +104,7 @@ msgstr "Crea workflow" msgid "Delete" msgstr "Cancella" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "Tipi di documento" @@ -115,7 +116,7 @@ msgstr "Modifica" msgid "Create state" msgstr "Crea stato" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "Stati" @@ -143,89 +144,93 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "Workflow" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Seleziona se questo è lo stato da utilizzare quando il workflow inizia. Solo uno stato può essere quello iniziale." +msgstr "" +"Seleziona se questo è lo stato da utilizzare quando il workflow inizia. Solo " +"uno stato può essere quello iniziale." -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "Iniziale" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Inserisci la percentuale di completamento che questo stato rappresenta in relazione al workflow. Usa i numeri senza segno di percentuale." +msgstr "" +"Inserisci la percentuale di completamento che questo stato rappresenta in " +"relazione al workflow. Usa i numeri senza segno di percentuale." -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "Stato workflow" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "Stati workflow" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "Transizione workflow" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "Transizioni workflow" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "Documento" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "Istanza workflow" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "Istanze workflow" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "Data e ora" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "Voce log istanza workflow" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "Voci log istanza workflow" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -295,76 +300,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "Workflow per il documento: %s" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "Dettagli del workflow: %(workflow)s" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Invia" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "Esegui transizione per il workflow: %s" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "Tipi di documento disponibili" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "Tipi di documento assegnati a questo workflow" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "Tipi di documento assegnati al workflow: %s" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "Stati del workflow: %s" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "Crea stati del workflow: %s" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "Trasizioni per il workflow: %s" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "Crea trasizioni per il workflow: %s" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "Impossibile salvare la transizione: errore di integrità" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "Documento con il workflow: %s" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 262bf48bab..8a0cb9ea6e 100644 --- a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -35,11 +36,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Label" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -55,7 +56,7 @@ msgstr "Geen" msgid "Current state" msgstr "Huidige staat" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Gebruiker" @@ -67,15 +68,15 @@ msgstr "Laatste transitie" msgid "Date and time" msgstr "Datum en tijd" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "Voltooiing" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "Transitie" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Commentaar" @@ -83,15 +84,15 @@ msgstr "Commentaar" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "Originele staat" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "Bestemmingsstaat" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -103,7 +104,7 @@ msgstr "" msgid "Delete" msgstr "Verwijder" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "Documentsoorten" @@ -115,7 +116,7 @@ msgstr "bewerken" msgid "Create state" msgstr "Maak staat aan" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "Staten" @@ -143,89 +144,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "Workflow" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "Initieel" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "Workflowstaat" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "Workflowstaten" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "Workflowtransitie" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "Workflowtransities" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "Document" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "Workflowinstantie" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "Workflowinstanties" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "Datumtijd" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -295,76 +296,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "Workflows voor document: %s" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "Detail van workflow: %(workflow)s" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Verstuur" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "Beschikbare documentsoorten" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "Documenten met de workflow: %s" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 65de678c8f..84a4ddc2b6 100644 --- a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:44 queues.py:8 msgid "Document states" @@ -35,11 +38,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Etykieta" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -55,7 +58,7 @@ msgstr "Brak" msgid "Current state" msgstr "Aktualny stan" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Użytkownik" @@ -67,15 +70,15 @@ msgstr "" msgid "Date and time" msgstr "Data i godzina" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Komentarz" @@ -83,15 +86,15 @@ msgstr "Komentarz" msgid "Is initial state?" msgstr "Czy jest stan początkowy?" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -103,7 +106,7 @@ msgstr "" msgid "Delete" msgstr "Usuń" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "Typy dokumentu" @@ -115,7 +118,7 @@ msgstr "Edytuj" msgid "Create state" msgstr "Utwórz stan" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "Stany" @@ -143,89 +146,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "Obieg dokumentów" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "Początkowy" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "Stan obiegu" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "Stany obiegu" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "Dokument" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -295,76 +298,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "Obiegi dokumentu: %s" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "Szczegóły obiegu dokumentów: %(workflow)s" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Wyślij" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "Dokonaj zmiany w obiegu dokumentów: %s" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "Dostępne typy dokumentów" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "Typy dokumentów przypisane do obiegu dokumentów: %s" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "Stany obiegu dokumentów: %s" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "Utwórz stany obiegu dokumentów: %s" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "Zmiany obiegu dokumentów: %s" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "Utwórz zmiany w obiegu dokumentów: %s" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "Nie można zapisać zmiany; błąd integralności." -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." msgstr "" 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 0faff3a1e0..63326d3767 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -34,11 +35,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Nome" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +55,7 @@ msgstr "Nenhum" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Utilizador" @@ -66,15 +67,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Comentário" @@ -82,15 +83,15 @@ msgstr "Comentário" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +103,7 @@ msgstr "" msgid "Delete" msgstr "Eliminar" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +115,7 @@ msgstr "Editar" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +143,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +295,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Submeter" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 00a8d5f67b..f2a5c93c5a 100644 --- a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -37,11 +38,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Rótulo" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "nome interno" @@ -57,7 +58,7 @@ msgstr "Nenhum" msgid "Current state" msgstr "Estado corrente" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Usuário" @@ -69,15 +70,15 @@ msgstr "Última transação" msgid "Date and time" msgstr "data e hora" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "Finalização" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "Transações" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Comentário" @@ -85,15 +86,15 @@ msgstr "Comentário" msgid "Is initial state?" msgstr "é estado inicial?" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "Estado Original" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "Estado de destino" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "Fluxos de trabalho" @@ -105,7 +106,7 @@ msgstr "Criar fluxo de trabalho" msgid "Delete" msgstr "Excluir" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "Tipos de Documentos" @@ -117,7 +118,7 @@ msgstr "Editar" msgid "Create state" msgstr "Criar estado" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "Estados" @@ -145,89 +146,93 @@ msgstr "Documentos de fluxo de trabalho" msgid "State documents" msgstr "Estados dos documentos" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "Fluxo de trabalho" -#: models.py:98 +#: models.py:99 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:100 +#: models.py:101 msgid "Initial" msgstr "Inicial" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Entre com a porcentagem de finalização que este estado representa em relação com o fluxo de trabalho. Utilize números sem o sinal de porcentagem." +msgstr "" +"Entre com a porcentagem de finalização que este estado representa em relação " +"com o fluxo de trabalho. Utilize números sem o sinal de porcentagem." -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "Estado do Workflow" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "Estados do Workflow" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "Transição do Workflow" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "Transição dos Workflows" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "Documento" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "Instância do Workflow" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "instâncias do Workflow " -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "Hora e data" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "Workflow instance log de entrada " -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "Workflow instance log de entradas" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "Não é uma opção de transição válida." -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "Proxy de tempo de execução do fluxo de trabalho" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "Proxies de tempo de execução do fluxo de trabalho" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "Proxy de tempo de execução do fluxo de trabalho" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "Proxies de tempo de execução do fluxo de trabalho" @@ -267,7 +272,10 @@ msgstr "Chave primária do tipo de documento a ser adicionado." msgid "" "API URL pointing to a document type in relation to the workflow to which it " "is attached. This URL is different than the canonical document type URL." -msgstr "API URL que aponta para um tipo de documento em relação ao fluxo de trabalho ao qual está anexado. Esse URL é diferente do URL do tipo de documento canônico." +msgstr "" +"API URL que aponta para um tipo de documento em relação ao fluxo de trabalho " +"ao qual está anexado. Esse URL é diferente do URL do tipo de documento " +"canônico." #: serializers.py:116 msgid "Primary key of the destination state to be added." @@ -281,7 +289,9 @@ msgstr "Chave primária do estado de origem a ser adicionado." msgid "" "API URL pointing to a workflow in relation to the document to which it is " "attached. This URL is different than the canonical workflow URL." -msgstr "API URL que aponta para um fluxo de trabalho em relação ao documento ao qual está anexado. Esse URL é diferente do URL de fluxo de trabalho canônico." +msgstr "" +"API URL que aponta para um fluxo de trabalho em relação ao documento ao qual " +"está anexado. Esse URL é diferente do URL de fluxo de trabalho canônico." #: serializers.py:227 msgid "A link to the entire history of this workflow." @@ -291,82 +301,89 @@ msgstr "Um link para todo o histórico deste fluxo de trabalho." msgid "" "Comma separated list of document type primary keys to which this workflow " "will be attached." -msgstr "Lista separada por vírgulas do tipo de documento chaves primárias às quais este fluxo de trabalho será anexado." +msgstr "" +"Lista separada por vírgulas do tipo de documento chaves primárias às quais " +"este fluxo de trabalho será anexado." #: serializers.py:319 msgid "Primary key of the transition to be added." msgstr "Chave primária da transição a ser adicionada." -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "Workflows para documento: %s" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "Detalhe do workflow: %(workflow)s" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Submeter" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "Fazer a transição para o workflow: %s" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "Tipos de documentos disponíveis" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "Tipos de documentos atribuídos a este fluxo de trabalho" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "Os tipos de documento atribuído ao workflow: %s" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "Estado do workflow: %s" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "Criar estados para Workflow: %s" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "Transição do Workflow: %s" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "Criar Transição para Workflow: %s" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "Não foi possível salvar transição; erro de integridade." -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "Documentos com o fluxo de trabalho: %s" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "Documentos no fluxo de trabalho \"%s\", digite \"%s\"" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "Lançar todos os fluxos de trabalho?" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." msgstr "O lançamento do fluxo de trabalho foi enfileirado com êxito." 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 4a6afeeb25..68d6137c6e 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 msgid "Document states" @@ -34,11 +36,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Etichetă" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +56,7 @@ msgstr "Nici unul" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "utilizator" @@ -66,15 +68,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Comentariu" @@ -82,15 +84,15 @@ msgstr "Comentariu" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +104,7 @@ msgstr "" msgid "Delete" msgstr "Șterge" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +116,7 @@ msgstr "Editează" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +144,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +296,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Trimiteţi" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 032acdc0ca..9dc9c7a5a5 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 msgid "Document states" @@ -35,11 +38,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Надпись" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "Внутреннее имя" @@ -55,7 +58,7 @@ msgstr "Ничего" msgid "Current state" msgstr "Текущее состояние" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Пользователь" @@ -67,15 +70,15 @@ msgstr "" msgid "Date and time" msgstr "Дата и время" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "Завершение" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "Переход" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Комментарий" @@ -83,15 +86,15 @@ msgstr "Комментарий" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -103,7 +106,7 @@ msgstr "" msgid "Delete" msgstr "Удалить" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "Типы документов" @@ -115,7 +118,7 @@ msgstr "Редактировать" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -143,89 +146,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "Документ" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -295,76 +298,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "Подтвердить" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "Доступные типы документов" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 5fc6bca804..d11ab7a2a6 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 msgid "Document states" @@ -34,11 +36,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "Oznaka" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +56,7 @@ msgstr "Brez" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "" @@ -66,15 +68,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Komentar" @@ -82,15 +84,15 @@ msgstr "Komentar" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +104,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +116,7 @@ msgstr "" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +144,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "Dokument" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +296,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." msgstr "" diff --git a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..93e52c37c9 --- /dev/null +++ b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,374 @@ +# 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: 2017-07-09 02:27-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:44 queues.py:8 +msgid "Document states" +msgstr "" + +#: apps.py:69 apps.py:76 +msgid "Current state of a workflow" +msgstr "" + +#: apps.py:70 +msgid "Return the current state of the selected workflow" +msgstr "" + +#: apps.py:77 +msgid "" +"Return the completion value of the current state of the selected workflow" +msgstr "" + +#: apps.py:92 models.py:38 models.py:95 models.py:155 +msgid "Label" +msgstr "" + +#: apps.py:95 models.py:35 +msgid "Internal name" +msgstr "" + +#: apps.py:99 +msgid "Initial state" +msgstr "" + +#: apps.py:100 apps.py:110 apps.py:120 apps.py:126 +msgid "None" +msgstr "" + +#: apps.py:104 +msgid "Current state" +msgstr "" + +#: apps.py:108 apps.py:135 models.py:302 +msgid "User" +msgstr "" + +#: apps.py:114 +msgid "Last transition" +msgstr "" + +#: apps.py:118 apps.py:131 +msgid "Date and time" +msgstr "" + +#: apps.py:124 apps.py:151 models.py:107 +msgid "Completion" +msgstr "" + +#: apps.py:138 forms.py:52 links.py:85 models.py:300 +msgid "Transition" +msgstr "" + +#: apps.py:142 forms.py:55 models.py:303 +msgid "Comment" +msgstr "" + +#: apps.py:147 +msgid "Is initial state?" +msgstr "" + +#: apps.py:155 models.py:159 +msgid "Origin state" +msgstr "" + +#: apps.py:159 models.py:163 +msgid "Destination state" +msgstr "" + +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 +msgid "Workflows" +msgstr "" + +#: links.py:20 +msgid "Create workflow" +msgstr "" + +#: links.py:25 links.py:46 links.py:63 +msgid "Delete" +msgstr "" + +#: links.py:29 models.py:42 +msgid "Document types" +msgstr "" + +#: links.py:33 links.py:50 links.py:67 +msgid "Edit" +msgstr "" + +#: links.py:41 +msgid "Create state" +msgstr "" + +#: links.py:54 links.py:105 +msgid "States" +msgstr "" + +#: links.py:58 +msgid "Create transition" +msgstr "" + +#: links.py:71 +msgid "Transitions" +msgstr "" + +#: links.py:77 queues.py:12 +msgid "Launch all workflows" +msgstr "" + +#: links.py:81 +msgid "Detail" +msgstr "" + +#: links.py:90 +msgid "Workflow documents" +msgstr "" + +#: links.py:99 +msgid "State documents" +msgstr "" + +#: models.py:32 +msgid "" +"This value will be used by other apps to reference this workflow. Can only " +"contain letters, numbers, and underscores." +msgstr "" + +#: models.py:76 models.py:93 models.py:153 models.py:181 +msgid "Workflow" +msgstr "" + +#: models.py:99 +msgid "" +"Select if this will be the state with which you want the workflow to start " +"in. Only one state can be the initial state." +msgstr "" + +#: models.py:101 +msgid "Initial" +msgstr "" + +#: models.py:105 +msgid "" +"Enter the percent of completion that this state represents in relation to " +"the workflow. Use numbers without the percent sign." +msgstr "" + +#: models.py:113 +msgid "Workflow state" +msgstr "" + +#: models.py:114 +msgid "Workflow states" +msgstr "" + +#: models.py:174 +msgid "Workflow transition" +msgstr "" + +#: models.py:175 +msgid "Workflow transitions" +msgstr "" + +#: models.py:184 +msgid "Document" +msgstr "" + +#: models.py:279 models.py:294 +msgid "Workflow instance" +msgstr "" + +#: models.py:280 +msgid "Workflow instances" +msgstr "" + +#: models.py:297 +msgid "Datetime" +msgstr "" + +#: models.py:309 +msgid "Workflow instance log entry" +msgstr "" + +#: models.py:310 +msgid "Workflow instance log entries" +msgstr "" + +#: models.py:314 +msgid "Not a valid transition choice." +msgstr "" + +#: models.py:320 +msgid "Workflow runtime proxy" +msgstr "" + +#: models.py:321 +msgid "Workflow runtime proxies" +msgstr "" + +#: models.py:327 +msgid "Workflow state runtime proxy" +msgstr "" + +#: models.py:328 +msgid "Workflow state runtime proxies" +msgstr "" + +#: permissions.py:7 +msgid "Document workflows" +msgstr "" + +#: permissions.py:10 +msgid "Create workflows" +msgstr "" + +#: permissions.py:13 +msgid "Delete workflows" +msgstr "" + +#: permissions.py:16 +msgid "Edit workflows" +msgstr "" + +#: permissions.py:19 +msgid "View workflows" +msgstr "" + +#: permissions.py:25 +msgid "Transition workflows" +msgstr "" + +#: permissions.py:28 +msgid "Execute workflow tools" +msgstr "" + +#: serializers.py:22 +msgid "Primary key of the document type to be added." +msgstr "" + +#: serializers.py:37 +msgid "" +"API URL pointing to a document type in relation to the workflow to which it " +"is attached. This URL is different than the canonical document type URL." +msgstr "" + +#: serializers.py:116 +msgid "Primary key of the destination state to be added." +msgstr "" + +#: serializers.py:120 +msgid "Primary key of the origin state to be added." +msgstr "" + +#: serializers.py:218 +msgid "" +"API URL pointing to a workflow in relation to the document to which it is " +"attached. This URL is different than the canonical workflow URL." +msgstr "" + +#: serializers.py:227 +msgid "A link to the entire history of this workflow." +msgstr "" + +#: serializers.py:259 +msgid "" +"Comma separated list of document type primary keys to which this workflow " +"will be attached." +msgstr "" + +#: serializers.py:319 +msgid "Primary key of the transition to be added." +msgstr "" + +#: views.py:53 +#, python-format +msgid "Workflows for document: %s" +msgstr "" + +#: views.py:77 +#, python-format +msgid "Detail of workflow: %(workflow)s" +msgstr "" + +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 +msgid "Submit" +msgstr "" + +#: views.py:112 +#, python-format +msgid "Do transition for workflow: %s" +msgstr "" + +#: views.py:164 +msgid "Available document types" +msgstr "" + +#: views.py:165 +msgid "Document types assigned this workflow" +msgstr "" + +#: views.py:175 +#, python-format +msgid "Document types assigned the workflow: %s" +msgstr "" + +#: views.py:214 views.py:492 +#, python-format +msgid "States of workflow: %s" +msgstr "" + +#: views.py:232 +#, python-format +msgid "Create states for workflow: %s" +msgstr "" + +#: views.py:308 +#, python-format +msgid "Transitions of workflow: %s" +msgstr "" + +#: views.py:321 +#, python-format +msgid "Create transitions for workflow: %s" +msgstr "" + +#: views.py:351 +msgid "Unable to save transition; integrity error." +msgstr "" + +#: views.py:439 +#, python-format +msgid "Documents with the workflow: %s" +msgstr "" + +#: views.py:457 +#, python-format +msgid "Documents in the workflow \"%s\", state \"%s\"" +msgstr "" + +#: views.py:506 +msgid "Launch all workflows?" +msgstr "" + +#: views.py:513 +msgid "Workflow launch queued successfully." +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 e95b4901d6..077d17dfdb 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -34,11 +35,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +55,7 @@ msgstr "None" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "Người dùng" @@ -66,15 +67,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "Chú thích" @@ -82,15 +83,15 @@ msgstr "Chú thích" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +103,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +115,7 @@ msgstr "Sửa" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +143,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +295,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." 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 7bbe0946d2..3439ea9023 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:44 queues.py:8 @@ -34,11 +35,11 @@ msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:92 models.py:37 models.py:94 models.py:129 +#: apps.py:92 models.py:38 models.py:95 models.py:155 msgid "Label" msgstr "" -#: apps.py:95 models.py:34 +#: apps.py:95 models.py:35 msgid "Internal name" msgstr "" @@ -54,7 +55,7 @@ msgstr "无" msgid "Current state" msgstr "" -#: apps.py:108 apps.py:135 models.py:276 +#: apps.py:108 apps.py:135 models.py:302 msgid "User" msgstr "用户" @@ -66,15 +67,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:124 apps.py:151 models.py:106 +#: apps.py:124 apps.py:151 models.py:107 msgid "Completion" msgstr "" -#: apps.py:138 forms.py:43 links.py:85 models.py:274 +#: apps.py:138 forms.py:52 links.py:85 models.py:300 msgid "Transition" msgstr "" -#: apps.py:142 forms.py:46 models.py:277 +#: apps.py:142 forms.py:55 models.py:303 msgid "Comment" msgstr "评论" @@ -82,15 +83,15 @@ msgstr "评论" msgid "Is initial state?" msgstr "" -#: apps.py:155 models.py:133 +#: apps.py:155 models.py:159 msgid "Origin state" msgstr "" -#: apps.py:159 models.py:137 +#: apps.py:159 models.py:163 msgid "Destination state" msgstr "" -#: links.py:15 links.py:38 links.py:95 models.py:76 views.py:130 views.py:409 +#: links.py:15 links.py:38 links.py:95 models.py:77 views.py:134 views.py:413 msgid "Workflows" msgstr "" @@ -102,7 +103,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:29 models.py:41 +#: links.py:29 models.py:42 msgid "Document types" msgstr "" @@ -114,7 +115,7 @@ msgstr "" msgid "Create state" msgstr "" -#: links.py:54 links.py:104 +#: links.py:54 links.py:105 msgid "States" msgstr "" @@ -142,89 +143,89 @@ msgstr "" msgid "State documents" msgstr "" -#: models.py:31 +#: models.py:32 msgid "" "This value will be used by other apps to reference this workflow. Can only " "contain letters, numbers, and underscores." msgstr "" -#: models.py:75 models.py:92 models.py:127 models.py:155 +#: models.py:76 models.py:93 models.py:153 models.py:181 msgid "Workflow" msgstr "" -#: models.py:98 +#: models.py:99 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:100 +#: models.py:101 msgid "Initial" msgstr "" -#: models.py:104 +#: models.py:105 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:120 +#: models.py:113 msgid "Workflow state" msgstr "" -#: models.py:121 +#: models.py:114 msgid "Workflow states" msgstr "" -#: models.py:148 +#: models.py:174 msgid "Workflow transition" msgstr "" -#: models.py:149 +#: models.py:175 msgid "Workflow transitions" msgstr "" -#: models.py:158 +#: models.py:184 msgid "Document" msgstr "" -#: models.py:253 models.py:268 +#: models.py:279 models.py:294 msgid "Workflow instance" msgstr "" -#: models.py:254 +#: models.py:280 msgid "Workflow instances" msgstr "" -#: models.py:271 +#: models.py:297 msgid "Datetime" msgstr "" -#: models.py:283 +#: models.py:309 msgid "Workflow instance log entry" msgstr "" -#: models.py:284 +#: models.py:310 msgid "Workflow instance log entries" msgstr "" -#: models.py:288 +#: models.py:314 msgid "Not a valid transition choice." msgstr "" -#: models.py:294 +#: models.py:320 msgid "Workflow runtime proxy" msgstr "" -#: models.py:295 +#: models.py:321 msgid "Workflow runtime proxies" msgstr "" -#: models.py:301 +#: models.py:327 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:302 +#: models.py:328 msgid "Workflow state runtime proxies" msgstr "" @@ -294,76 +295,81 @@ msgstr "" msgid "Primary key of the transition to be added." msgstr "" -#: views.py:54 +#: views.py:53 #, python-format msgid "Workflows for document: %s" msgstr "" -#: views.py:78 +#: views.py:77 #, python-format msgid "Detail of workflow: %(workflow)s" msgstr "" -#: views.py:106 +#: views.py:101 +#, python-format +msgid "Document \"%s\" transitioned successfully" +msgstr "" + +#: views.py:110 msgid "Submit" msgstr "提交" -#: views.py:108 +#: views.py:112 #, python-format msgid "Do transition for workflow: %s" msgstr "" -#: views.py:160 +#: views.py:164 msgid "Available document types" msgstr "" -#: views.py:161 +#: views.py:165 msgid "Document types assigned this workflow" msgstr "" -#: views.py:171 +#: views.py:175 #, python-format msgid "Document types assigned the workflow: %s" msgstr "" -#: views.py:210 views.py:503 +#: views.py:214 views.py:492 #, python-format msgid "States of workflow: %s" msgstr "" -#: views.py:228 +#: views.py:232 #, python-format msgid "Create states for workflow: %s" msgstr "" -#: views.py:304 +#: views.py:308 #, python-format msgid "Transitions of workflow: %s" msgstr "" -#: views.py:317 +#: views.py:321 #, python-format msgid "Create transitions for workflow: %s" msgstr "" -#: views.py:347 +#: views.py:351 msgid "Unable to save transition; integrity error." msgstr "" -#: views.py:435 +#: views.py:439 #, python-format msgid "Documents with the workflow: %s" msgstr "" -#: views.py:482 +#: views.py:457 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" msgstr "" -#: views.py:517 +#: views.py:506 msgid "Launch all workflows?" msgstr "" -#: views.py:524 +#: views.py:513 msgid "Workflow launch queued successfully." msgstr "" diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po index bfd79b3f61..6e2de6ea8a 100644 --- a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po @@ -1,127 +1,128 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "الوثائق" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "نوع الملف" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "تعليق" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +143,10 @@ 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 "" @@ -176,7 +175,7 @@ msgstr "تاريخ الاضافة" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "" @@ -208,7 +207,7 @@ msgstr "موجود في التخزين" msgid "File path in storage" msgstr "مسار الملف في التخزين" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Checksum" @@ -216,8 +215,8 @@ msgstr "Checksum" msgid "Pages" msgstr "صفحات" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "نوع الوثيقة" @@ -226,13 +225,9 @@ msgid "Compress" msgstr "ضغط" #: forms.py:197 -#| 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 "" @@ -244,7 +239,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:225 literals.py:23 msgid "Page range" @@ -292,7 +289,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "تحميل" @@ -312,16 +309,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -332,7 +328,6 @@ msgid "" msgstr "مسح بيانات الرسومات المستخدمة لتسريع عرض الوثائق و نتائج التحويلات." #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +351,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "" @@ -396,10 +391,20 @@ msgstr "تحرير" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Default" @@ -408,134 +413,136 @@ msgstr "Default" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Description" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "ملف" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "صفحة %(page_num)d من أصل %(total_pages)d للوثيقة %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "اسم الملف" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "مستخدم" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "إنشاء وثائق" @@ -545,11 +552,10 @@ msgid "Delete documents" msgstr "حذف الوثائق" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "تحميل الوثائق" @@ -566,12 +572,10 @@ msgid "Edit document properties" msgstr "تحرير خصائص الوثيقة" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "" @@ -619,41 +623,44 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "حذف الوثائق" + #: settings.py:29 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:40 @@ -684,6 +691,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +727,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +736,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +751,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +776,6 @@ msgid "All later version after this one will be deleted too." msgstr "سيتم حذف جميع الإصدارات اللاحقة بعد هذا الإصدار أيضا." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,35 +788,34 @@ msgstr "تم ارجاع اصدار الوثيقة بنجاح" msgid "Error reverting document version; %s" msgstr "خطأ بارجاع اصدار الوثيقة %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" @@ -809,80 +825,83 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" @@ -892,22 +911,22 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" @@ -917,39 +936,37 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "خطأ بمسح التحويلات الخاصة بالوثيقة: %(document)s; %(error)s." -#: views/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "ارسال" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -957,17 +974,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1038,9 +1066,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1069,11 +1094,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" @@ -1206,7 +1231,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1220,11 +1246,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" @@ -1247,11 +1273,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" @@ -1268,15 +1294,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" @@ -1330,11 +1360,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" @@ -1355,11 +1385,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" @@ -1373,16 +1403,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1408,15 +1437,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1473,15 +1499,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 4b1ecd1acf..cf20698118 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po @@ -1,127 +1,127 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Документи" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Коментар" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +142,10 @@ 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 "" @@ -176,7 +174,7 @@ msgstr "Дата на добавяне" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "" @@ -208,7 +206,7 @@ msgstr "Съществува в склада" msgid "File path in storage" msgstr "Файлов път до склада" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Контролна сума" @@ -216,8 +214,8 @@ msgstr "Контролна сума" msgid "Pages" msgstr "Страници" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Вид на документа" @@ -226,13 +224,9 @@ msgid "Compress" msgstr "Компресиране" #: forms.py:197 -#| 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 "" @@ -244,7 +238,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:225 literals.py:23 msgid "Page range" @@ -292,7 +288,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Сваляне" @@ -312,16 +308,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -329,10 +324,11 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Изчистване на графичното представяне, използвано да ускори изобразяването на документите и интерактивните промени." +msgstr "" +"Изчистване на графичното представяне, използвано да ускори изобразяването на " +"документите и интерактивните промени." #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +352,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "" @@ -396,10 +392,20 @@ msgstr "Редактиране" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "По подразбиране" @@ -408,134 +414,138 @@ msgstr "По подразбиране" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Описание" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Файл" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "" -#: models.py:679 +#: models.py:685 #, 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:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Име на файл" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Потребител" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Създаване на документи" @@ -545,11 +555,10 @@ msgid "Delete documents" msgstr "Изтриване на документи" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Изтегляне на документи" @@ -566,12 +575,10 @@ msgid "Edit document properties" msgstr "Редактиране на свойства на документа" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "" @@ -619,62 +626,74 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Изтриване на документи" + #: settings.py:29 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:40 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Процент приближавани или отдалечаване на страницата на документа, приложен за потребителя" +msgstr "" +"Процент приближавани или отдалечаване на страницата на документа, приложен " +"за потребителя" #: settings.py:47 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Максимален процент (%) допустим за интерактивно увеличаване страницата от потребителя" +msgstr "" +"Максимален процент (%) допустим за интерактивно увеличаване страницата от " +"потребителя" #: settings.py:54 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Минимален процент (%) допустим за интерактивно смаляване страницата от потребителя" +msgstr "" +"Минимален процент (%) допустим за интерактивно смаляване страницата от " +"потребителя" #: settings.py:61 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Градуси на завъртане на страница от документ, при потребителско действие" +msgstr "" +"Градуси на завъртане на страница от документ, при потребителско действие" #: settings.py:70 msgid "Default documents language (in ISO639-2 format)." @@ -684,6 +703,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +739,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +748,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +763,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +788,6 @@ msgid "All later version after this one will be deleted too." msgstr "Всички версии, следващи тази, ще бъдат изтрити." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,173 +800,175 @@ msgstr "Документа е върнат успешно към предна в msgid "Error reverting document version; %s" msgstr "Грешка при връщане на версията на документа; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Подаване" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -945,17 +976,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1026,9 +1068,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1057,11 +1096,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" @@ -1190,7 +1229,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1204,11 +1244,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" @@ -1231,11 +1271,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" @@ -1252,15 +1292,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" @@ -1314,11 +1358,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" @@ -1339,11 +1383,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" @@ -1357,16 +1401,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1392,15 +1435,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1457,15 +1497,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 2079c00e13..dbbe78fbbd 100644 --- a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po @@ -1,127 +1,128 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Dokumenti" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "MIME tip" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Komentar" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +143,10 @@ 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 "" @@ -176,7 +175,7 @@ msgstr "Datum dodavanja" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "" @@ -208,7 +207,7 @@ msgstr "Postoji u pohrani" msgid "File path in storage" msgstr "Putanja dokumenta u pohrani" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Checksum" @@ -216,8 +215,8 @@ msgstr "Checksum" msgid "Pages" msgstr "Stranice" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Tip dokumenta" @@ -226,13 +225,9 @@ msgid "Compress" msgstr "Kompresuj" #: forms.py:197 -#| 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 "" @@ -244,7 +239,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:225 literals.py:23 msgid "Page range" @@ -292,7 +289,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Download" @@ -312,16 +309,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -329,10 +325,11 @@ 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:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +353,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "" @@ -396,10 +393,20 @@ msgstr "Urediti" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "default" @@ -408,134 +415,136 @@ msgstr "default" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Opis" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Datoteka" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Stranica %(page_num)d od ukupno %(total_pages)d u %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Naziv datoteke" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Korisnik" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Kreiraj dokumente" @@ -545,11 +554,10 @@ msgid "Delete documents" msgstr "Obriši dokumente" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Download dokumenata" @@ -566,12 +574,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 trashed document" msgstr "" @@ -619,42 +625,47 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Obriši dokumente" + #: settings.py:29 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:40 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -664,13 +675,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:54 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:61 msgid "Amount in degrees to rotate a document page per user interaction." @@ -684,6 +699,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +735,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +744,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +759,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +784,6 @@ msgid "All later version after this one will be deleted too." msgstr "Sve naknadne verzije nakon ove će također biti obrisane." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,176 +796,176 @@ msgstr "Verzija dokumenta uspješno vraćena" msgid "Error reverting document version; %s" msgstr "Greška pri vraćanju verzije dokumenta; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 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/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Podnijeti" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -948,17 +973,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1029,9 +1065,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1060,11 +1093,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" @@ -1194,7 +1227,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1208,11 +1242,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" @@ -1235,11 +1269,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" @@ -1256,15 +1290,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" @@ -1318,11 +1356,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" @@ -1343,11 +1381,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" @@ -1361,16 +1399,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1396,15 +1433,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1461,15 +1495,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 0d7be3092b..dc910e1ca9 100644 --- a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po @@ -1,127 +1,127 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Dokumenter" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "MIME type" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Kommentar" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +142,10 @@ 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 "" @@ -176,7 +174,7 @@ msgstr "Dato tilføjet" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "" @@ -208,7 +206,7 @@ msgstr "Eksisterer i opbevaring" msgid "File path in storage" msgstr "Filsti i opbevaring" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Checksum" @@ -216,8 +214,8 @@ msgstr "Checksum" msgid "Pages" msgstr "Sider" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Dokumenttype" @@ -226,13 +224,9 @@ msgid "Compress" msgstr "Komprimér" #: forms.py:197 -#| 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 "" @@ -244,7 +238,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:225 literals.py:23 msgid "Page range" @@ -292,7 +288,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Hent" @@ -312,16 +308,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -329,10 +324,11 @@ 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:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +352,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "" @@ -396,10 +392,20 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Standard" @@ -408,134 +414,136 @@ msgstr "Standard" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Beskrivelse" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Fil" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Side %(page_num)d ud af %(total_pages)d i %(document)s " -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Filnavn" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Bruger" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Opret dokumenter" @@ -545,11 +553,10 @@ msgid "Delete documents" msgstr "Slet dokumenter" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Hent dokumenter" @@ -566,12 +573,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 trashed document" msgstr "" @@ -619,42 +624,47 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Slet dokumenter" + #: settings.py:29 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:40 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -664,13 +674,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:54 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:61 msgid "Amount in degrees to rotate a document page per user interaction." @@ -684,6 +698,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +734,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +743,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +758,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +783,6 @@ msgid "All later version after this one will be deleted too." msgstr "Alle senere versioner af denne vil også blive slettet." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,173 +795,175 @@ msgstr "Tidligere dokumentversion genskabt" msgid "Error reverting document version; %s" msgstr "Fejl ved genskabelse af dokumentversion; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -945,17 +971,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1026,9 +1063,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1057,11 +1091,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" @@ -1190,7 +1224,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1204,11 +1239,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" @@ -1231,11 +1266,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" @@ -1252,15 +1287,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" @@ -1314,11 +1353,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" @@ -1339,11 +1378,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" @@ -1357,16 +1396,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1392,15 +1430,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1457,15 +1492,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 dcbb241727..7ef6b1d2ef 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-2016 @@ -12,120 +12,122 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Dokumente" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "Neue Seiten in diesem Monat" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "Neue Dokumente in diesem Monat" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "Alle Dokumente" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "Dokumententypen" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "Dokumente im Papierkorb" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "Dokumententyp erstellen" -#: apps.py:148 +#: apps.py:153 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:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Bezeichner" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "Der MIME-Typ der jeweiligen Dokumentenversion" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "MIME Typ" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "Miniaturbild" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "Typ" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "Aktiviert" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "Zeitpunkt der Löschung" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "Zeit und Datum" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "Kodierung" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Kommentar" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "Neue Dokumente pro Monat" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "Neue Dokumentenversionen pro Monat" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "Neue Dokumentenseiten pro Monat" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "Summe der Dokumente im Monat" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "Summe der Dokumentenversionen im Monat" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "Summe der Dokumentenseiten im Monat" @@ -146,12 +148,10 @@ 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" @@ -180,7 +180,7 @@ msgstr "Hinzugefügt am" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "Sprache" @@ -212,7 +212,7 @@ msgstr "Im Dateispeicher" msgid "File path in storage" msgstr "Pfad im Dateispeicher" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Prüfsumme" @@ -220,8 +220,8 @@ msgstr "Prüfsumme" msgid "Pages" msgstr "Seiten" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Dokumententyp" @@ -230,15 +230,14 @@ msgid "Compress" msgstr "Komprimieren" #: forms.py:197 -#| 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:204 msgid "Compressed filename" @@ -248,7 +247,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:225 literals.py:23 msgid "Page range" @@ -258,7 +259,9 @@ msgstr "Seitenbereich" msgid "" "Page number from which all the transformation will be cloned. Existing " "transformations will be lost." -msgstr "Seitenzahl von der alle Transformationen übernommen werden. Bestehende Transformationen gehen verloren." +msgstr "" +"Seitenzahl von der alle Transformationen übernommen werden. Bestehende " +"Transformationen gehen verloren." #: links.py:52 msgid "Preview" @@ -296,7 +299,7 @@ msgstr "Eigenschaften bearbeiten" msgid "Change type" msgstr "Typ ändern" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Herunterladen" @@ -316,16 +319,15 @@ msgstr "Wiederherstellen" msgid "Download version" msgstr "Version herunterladen" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "Alle Dokumente" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "Letzte Dokumente" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "Mülleimer" @@ -333,10 +335,11 @@ msgstr "Mülleimer" 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:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "Dokumentenbildercache löschen" @@ -360,7 +363,7 @@ msgstr "Vorherige Seite" msgid "Next page" msgstr "Nächste Seite" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "Dokument" @@ -400,10 +403,20 @@ msgstr "Bearbeiten" msgid "Add quick label to document type" msgstr "Schnellbezeichner zu Dokumententyp hinzufügen" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "Schnellbezeichner" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Standard" @@ -412,134 +425,143 @@ msgstr "Standard" msgid "All pages" msgstr "Alle Seiten" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "Papierkorb nach" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "Einheit (Papierkorb)" -#: models.py:79 +#: 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:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "Endgültig löschen nach" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "Einheit (Löschen)" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "Dokumententypen" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "Name des Dokuments" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Beschreibung" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "Hinzugefügt" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "Im Papierkorb?" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "Zeitpunkt der Löschung" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "Inkomplett" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Fragment, ID: %d" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "Zeitstempel" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Datei" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "Dokumentenversion" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "Schnellbezeichner" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "Seitennummer" -#: models.py:679 +#: models.py:685 #, 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:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "Dokumentenseite" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "Dokumentenseiten" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Dateiname" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "Zwischengespeichertes Bild für Dokumentenseite" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "Zwischengespeicherte Bilder für Dokumentenseite" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Benutzer" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "Letzter Zugriff" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "Letztes Dokument" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Dokumente erstellen" @@ -549,11 +571,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/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Dokumente herunterladen" @@ -570,12 +591,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 trashed document" msgstr "Dokument aus Papierkorb wiederherstellen" @@ -623,46 +642,52 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Dokumente löschen" + #: settings.py:29 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:40 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:47 msgid "" @@ -688,6 +713,18 @@ msgstr "Standarddokumentensprache (im ISO639-2 Format)" msgid "List of supported document languages." msgstr "Liste der unterstützen Dokumentensprachen" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -712,7 +749,6 @@ msgstr "Seitenbild für %s" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Dokumente des Typs: %s" @@ -722,7 +758,6 @@ msgstr "Alle Dokumente dieses Typs werden auch gelöscht." #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Dokumententyp %s löschen?" @@ -738,14 +773,18 @@ msgstr "Schnellbezeichner erstellen für Dokumentenyp %s" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" bearbeiten" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" " +"bearbeiten" #: views/document_type_views.py:164 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" +msgstr "" +"Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" #: views/document_type_views.py:192 #, python-format @@ -762,7 +801,6 @@ msgid "All later version after this one will be deleted too." msgstr "Alle späteren Versionen dieses Dokuments werden ebenfalls gelöscht." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Diese Dokumentenversion wiederherstellen?" @@ -775,173 +813,174 @@ msgstr "Dokument wurde erfolgreich wiederhergestellt" msgid "Error reverting document version; %s" msgstr "Fehler beim Wiederherstellen der Dokumentenversion %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "Das ausgwählte Dokument löschen?" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Dokument %(document)s gelöscht." -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "Die ausgwählten Dokumente löschen?" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "Ändern" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "Typ ändern für Dokument: %s" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "Dokumententyp für \"%s\" erfolgreich geändert" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Pages for document: %s" +msgid "Duplicates for document: %s" +msgstr "Seiten des Dokuments: %s" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "Eigenschaften von Dokument \"%s\" bearbeiten" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "Das ausgwählte Dokument wiederherstellen?" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Dokument %(document)s wiederhergestellt" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "Die ausgwählten Dokumente wiederherstellen?" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "Vorschau von Dokument %s" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "\"%s\" in den Papierkorb verschieben?" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Dokument \"%(document)s\" erfolgreich in den Papierkorb verschoben." -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "Die ausgewählten Dokumente in den Papierkorb verschieben?" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "Eigenschaften von Dokument %s" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "Papierkorb leeren" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "Papierkorb erfolgreich gelöscht." -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "%(count)d Dokumente vorgemerkt für Berechnung der Seitenzahl" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "%(count)d Dokumente ausgewählt für Neuberechnung der Seitenzahl" -#: views/document_views.py:530 +#: views/document_views.py:568 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/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "Seitenzahl neu berechnen für Dokument: %s?" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "Transformationen zurücksetzen für Dokument: %s?" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "Transformationen erfolgreich kopiert." -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Ändern" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "Kopieren der Seiten-Transformationen für Dokument: %s" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "%s drucken" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "Dokumentenbildercache löschen?" @@ -949,17 +988,28 @@ msgstr "Dokumentenbildercache löschen?" msgid "Document cache clearing queued successfully." msgstr "Löschung des Dokumentenbildcaches erfolgreich eingereiht." -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document cache clearing queued successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Löschung des Dokumentenbildcaches erfolgreich eingereiht." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "Seite %(page_number)d von %(total_pages)d" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "Anklickbares Bild" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "Dokumentenseitenbild" @@ -1061,11 +1111,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" @@ -1194,7 +1244,8 @@ msgstr "Dokumentenseitenbild" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1208,11 +1259,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" @@ -1235,11 +1286,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" @@ -1256,15 +1307,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" @@ -1318,11 +1373,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" @@ -1343,11 +1398,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" @@ -1361,16 +1416,15 @@ msgstr "Dokumentenseitenbild" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1396,15 +1450,12 @@ msgstr "Dokumentenseitenbild" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1461,15 +1512,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 bde9ab65dd..07bbdb57ca 100644 --- a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po @@ -1,127 +1,129 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Documents" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "New pages this month" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "New documents this month" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "Total documents" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "Document types" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "Documents in trash" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "Create a document type" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Every uploaded document must be assigned a document type, it is the basic way Mayan EDMS categorizes documents." +msgstr "" +"Every uploaded document must be assigned a document type, it is the basic " +"way Mayan EDMS categorizes documents." -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Label" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "The MIME type of any of the versions of a document" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "MIME type" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "Thumbnail" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "Type" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "Enabled" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "Date time trashed" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "Time and date" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "Encoding" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Comment" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "New documents per month" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "New document versions per month" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "New document pages per month" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "Total documents at each month" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "Total document versions at each month" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "Total document pages at each month" @@ -142,12 +144,10 @@ msgid "Document type changed" msgstr "Document type changed" #: events.py:21 -#| msgid "Version update" msgid "New version uploaded" msgstr "New version uploaded" #: events.py:25 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Document version reverted" @@ -176,7 +176,7 @@ msgstr "Date added" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "Language" @@ -208,7 +208,7 @@ msgstr "Exists in storage" msgid "File path in storage" msgstr "File path in storage" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Checksum" @@ -216,8 +216,8 @@ msgstr "Checksum" msgid "Pages" msgstr "Pages" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Document type" @@ -226,15 +226,14 @@ msgid "Compress" msgstr "Compress" #: forms.py:197 -#| 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 "" +"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 "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." #: forms.py:204 msgid "Compressed filename" @@ -244,7 +243,9 @@ msgstr "Compressed filename" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "The filename of the compressed file that will contain the documents to be downloaded, if the previous option is selected." +msgstr "" +"The filename of the compressed file that will contain the documents to be " +"downloaded, if the previous option is selected." #: forms.py:225 literals.py:23 msgid "Page range" @@ -254,7 +255,9 @@ msgstr "Page range" msgid "" "Page number from which all the transformation will be cloned. Existing " "transformations will be lost." -msgstr "Page number from which all the transformation will be cloned. Existing transformations will be lost." +msgstr "" +"Page number from which all the transformation will be cloned. Existing " +"transformations will be lost." #: links.py:52 msgid "Preview" @@ -292,7 +295,7 @@ msgstr "Edit properties" msgid "Change type" msgstr "Change type" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Download" @@ -312,16 +315,15 @@ msgstr "Restore" msgid "Download version" msgstr "Download version" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "All documents" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "Recent documents" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "Trash can" @@ -329,10 +331,11 @@ msgstr "Trash can" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Clear the graphics representations used to speed up the documents' display and interactive transformations results." +msgstr "" +"Clear the graphics representations used to speed up the documents' display " +"and interactive transformations results." #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "Clear document image cache" @@ -356,7 +359,7 @@ msgstr "Previous page" msgid "Next page" msgstr "Next page" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "Document" @@ -396,10 +399,20 @@ msgstr "Edit" msgid "Add quick label to document type" msgstr "Add quick label to document type" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "Quick labels" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Default" @@ -408,134 +421,142 @@ msgstr "Default" msgid "All pages" msgstr "All pages" -#: models.py:69 +#: 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." +"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." -#: models.py:71 +#: models.py:72 msgid "Trash time period" msgstr "Trash time period" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "Trash time unit" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Amount of time after which documents of this type in the trash will be deleted." +msgstr "" +"Amount of time after which documents of this type in the trash will be " +"deleted." -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "Delete time period" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "Delete time unit" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "Documents types" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "The name of the document" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Description" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "Added" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "In trash?" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "Date and time trashed" -#: models.py:180 +#: models.py:181 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 "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 "" +"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." -#: models.py:183 +#: models.py:184 msgid "Is stub?" msgstr "Is stub?" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Document stub, id: %d" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "Timestamp" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "File" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "Document version" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "Quick label" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "Page number" -#: models.py:679 +#: models.py:685 #, 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:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "Document page" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "Document pages" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Filename" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "Document page cached image" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "Document page cached images" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "User" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "Accessed" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "Recent document" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Create documents" @@ -545,11 +566,10 @@ msgid "Delete documents" msgstr "Delete documents" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "Trash documents" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Download documents" @@ -566,12 +586,10 @@ msgid "Edit document properties" msgstr "Edit document properties" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Print documents" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "Restore trashed document" @@ -619,42 +637,47 @@ msgstr "Documents periodic" msgid "Uploads" msgstr "Uploads" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "Check document type delete periods" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "Check document type trash periods" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "Delete document stubs" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "Clear image cache" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "Generate document page image" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "Update document page count" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "Upload new document version" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Delete documents" + #: settings.py:29 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." +"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." #: settings.py:40 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -664,13 +687,17 @@ msgstr "Amount in percent zoom in or out a document page per user interaction." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Maximum amount in percent (%) to allow user to zoom in a document page interactively." +msgstr "" +"Maximum amount in percent (%) to allow user to zoom in a document page " +"interactively." #: settings.py:54 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Minimum amount in percent (%) to allow user to zoom out a document page interactively." +msgstr "" +"Minimum amount in percent (%) to allow user to zoom out a document page " +"interactively." #: settings.py:61 msgid "Amount in degrees to rotate a document page per user interaction." @@ -684,6 +711,18 @@ msgstr "Default documents language (in ISO639-2 format)." msgid "List of supported document languages." msgstr "List of supported document languages." +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +747,6 @@ msgstr "Image of: %s" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Documents of type: %s" @@ -718,7 +756,6 @@ msgstr "All documents of this type will be deleted too." #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Delete the document type: %s?" @@ -734,14 +771,17 @@ msgstr "Create quick label for document type: %s" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" #: views/document_type_views.py:164 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" +msgstr "" +"Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" #: views/document_type_views.py:192 #, python-format @@ -758,7 +798,6 @@ msgid "All later version after this one will be deleted too." msgstr "All later version after this one will be deleted too." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Revert to this version?" @@ -771,173 +810,175 @@ msgstr "Document version reverted successfully" msgid "Error reverting document version; %s" msgstr "Error reverting document version; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "Delete the selected document?" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Document: %(document)s deleted." -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "Delete the selected documents?" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "Document type change request performed on %(count)d document" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "Document type change request performed on %(count)d documents" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "Change" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "Change the type of the selected document" msgstr[1] "Change the type of the selected documents" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "Change the type of the document: %s" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "Document type for \"%s\" changed successfully." -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Pages for document: %s" +msgid "Duplicates for document: %s" +msgstr "Pages for document: %s" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "Edit properties of document: %s" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "Restore the selected document?" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Document: %(document)s restored." -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "Restore the selected documents?" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "Preview of document: %s" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "Move \"%s\" to the trash?" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Document: %(document)s moved to trash successfully." -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "Move the selected documents to the trash?" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "Properties for document: %s" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "Empty trash?" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "Trash emptied successfully" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "%(count)d document queued for page count recalculation" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "%(count)d documents queued for page count recalculation" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "Recalculate the page count of the selected document?" msgstr[1] "Recalculate the page count of the selected documents?" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "Recalculate the page count of the document: %s?" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "Transformation clear request processed for %(count)d document" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "Transformation clear request processed for %(count)d documents" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "Clear all the page transformations for the selected document?" msgstr[1] "Clear all the page transformations for the selected document?" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "Clear all the page transformations for the document: %s?" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Error deleting the page transformations for document: %(document)s; %(error)s." +msgstr "" +"Error deleting the page transformations for document: %(document)s; " +"%(error)s." -#: views/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "Transformations cloned successfully." -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Submit" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "Clone page transformations for document: %s" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "Print: %s" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "Clear the document image cache?" @@ -945,17 +986,28 @@ msgstr "Clear the document image cache?" msgid "Document cache clearing queued successfully." msgstr "Document cache clearing queued successfully." -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document cache clearing queued successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document cache clearing queued successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "Page %(page_number)d of %(total_pages)d" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "Clickable image" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "Document page image" @@ -1057,11 +1109,11 @@ msgstr "Document page image" #~ 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" @@ -1190,7 +1242,8 @@ msgstr "Document page image" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1204,11 +1257,11 @@ msgstr "Document page image" #~ 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" @@ -1231,11 +1284,11 @@ msgstr "Document page image" #~ "(%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" @@ -1252,15 +1305,19 @@ msgstr "Document page image" #~ 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" @@ -1314,11 +1371,11 @@ msgstr "Document page image" #~ 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" @@ -1339,11 +1396,11 @@ msgstr "Document page image" #~ "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" @@ -1357,16 +1414,15 @@ msgstr "Document page image" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1392,15 +1448,12 @@ msgstr "Document page image" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1457,15 +1510,17 @@ msgstr "Document page image" #~ 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/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index 171e75bccf..56ce5b964d 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-2017 @@ -9,120 +9,122 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Documentos" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "Nuevas páginas este mes" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "Nuevos documentos este mes" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "Total de documentos" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "Tipos de documentos" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "Documentos en la papelera" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "Crear tipo un tipo de documento" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Cada documento cargado debe tener asignado un tipo de documento, es la forma básica en que Mayan EDMS clasifica los documentos." +msgstr "" +"Cada documento cargado debe tener asignado un tipo de documento, es la forma " +"básica en que Mayan EDMS clasifica los documentos." -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Etiqueta" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "El tipo MIME de cualquiera de las versiones de un documento" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "Tipo MIME" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "Foto miniatura" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "Tipo" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "Activado" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "Fecha y hora de envío a papelera " -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "Hora y fecha" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "Codificación" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Comentario" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "Nuevos documentos por mes" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "Nuevas versiones de documentos por mes" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "Nuevas páginas de documentos por mes" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "Total de documentos cada mes" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "Total de versiones de documentos cada mes" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "Total de páginas de documentos cada mes" @@ -143,12 +145,10 @@ msgid "Document type changed" msgstr "Tipo de documento ha sido cambiado" #: events.py:21 -#| msgid "Version update" msgid "New version uploaded" msgstr "Nueva versión subida" #: events.py:25 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Versión de documento revertida" @@ -177,7 +177,7 @@ msgstr "Fecha en que se agregó" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "Lenguaje" @@ -209,7 +209,7 @@ msgstr "Existe en el almacenamiento" msgid "File path in storage" msgstr "Ruta de archivo en el almacenamiento" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Suma de comprobación" @@ -217,8 +217,8 @@ msgstr "Suma de comprobación" msgid "Pages" msgstr "Páginas" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Tipo de documento" @@ -227,15 +227,15 @@ msgid "Compress" msgstr "Comprimir" #: forms.py:197 -#| 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:204 msgid "Compressed filename" @@ -245,7 +245,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:225 literals.py:23 msgid "Page range" @@ -293,7 +295,7 @@ msgstr "Editar propiedades" msgid "Change type" msgstr "Cambiar tipo" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Descargar" @@ -313,16 +315,15 @@ msgstr "Resturar" msgid "Download version" msgstr "Descarga de versión" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "Todos los documentos" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "Documentos recientes" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "Papelera" @@ -330,10 +331,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:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "Borrar la caché de imágenes de documentos" @@ -357,7 +360,7 @@ msgstr "Página previa" msgid "Next page" msgstr "Próxima página" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "Documento" @@ -397,10 +400,20 @@ msgstr "Editar" msgid "Add quick label to document type" msgstr "Añadir nombre típico al tipo de documento" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "Nombres típicos " +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Por defecto" @@ -409,134 +422,143 @@ msgstr "Por defecto" msgid "All pages" msgstr "Todas las páginas" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "Período de tiempo de envío a papelera" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "Unidad de tiempo de envío a papelera" -#: models.py:79 +#: 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:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "Período de tiempo de eliminación" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "Unidad de tiempo de eliminación" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "Tipos de documentos" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "El nombre del documento" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Descripción" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "Añadido" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "¿En la papelera?" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "Fecha y hora de envío a papelera" -#: models.py:180 +#: models.py:181 msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Un stub de documento es un documento con una entrada en la base de datos pero ningún archivo subido. Esto podría ser una subida interrumpida o una subida diferida a través de la API." +msgstr "" +"Un stub de documento es un documento con una entrada en la base de datos " +"pero ningún archivo subido. Esto podría ser una subida interrumpida o una " +"subida diferida a través de la API." -#: models.py:183 +#: models.py:184 msgid "Is stub?" msgstr "¿Es un recibo?" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Recibo de documento, id: %d" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "Marca de tiempo" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Archivo" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "Versión de documento" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "Etiqueta rapida" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "Número de página" -#: models.py:679 +#: models.py:685 #, 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:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "Página de documento" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "Páginas de documento" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Nombre del archivo" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Usuario" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "Accedido" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "Documento reciente" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Crear documentos" @@ -546,11 +568,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/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Descargar documentos" @@ -567,12 +588,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 trashed document" msgstr "Restaurar documento de la papelera" @@ -620,62 +639,75 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Eliminar documentos" + #: settings.py:29 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:40 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:47 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:54 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:61 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:70 msgid "Default documents language (in ISO639-2 format)." @@ -685,6 +717,18 @@ msgstr "Idioma por defecto para documentos (en formato ISO639-2)." msgid "List of supported document languages." msgstr "Lista de idiomas de documento apoyados." +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -709,7 +753,6 @@ msgstr "Imágen de: %s" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Documentos de tipo: %s" @@ -719,7 +762,6 @@ msgstr "Todos los documentos de este tipo serán borrados también" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "¿Eliminar el tipo de documento: %s?" @@ -735,7 +777,8 @@ msgstr "Crear una etiqueta rápida para el tipo de documento: %s" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -759,7 +802,6 @@ 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/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "¿Revertir a esta versión?" @@ -772,173 +814,175 @@ msgstr "Versión de documento revertida con éxito." msgid "Error reverting document version; %s" msgstr "Error revirtiendo la versión del documento; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "¿Eliminar el documento seleccionado?" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Documento: %(document)s eliminado." -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "¿Eliminar los documentos seleccionados?" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "Cambiar" -#: views/document_views.py:132 +#: views/document_views.py:138 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/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "Cambiar el tipo del documento: %s" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "Tipo de documento para \"%s\" cambiado con éxito." -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Pages for document: %s" +msgid "Duplicates for document: %s" +msgstr "Pagínas para documento: %s" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "Editar propiedades del documento: %s" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "¿Restaurar el documento seleccionado?" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Documento: %(document)s restaurado." -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "¿Restaurar los documentos seleccionados?" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "Visualización del documento: %s" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "¿Mover \"%s\" a la papelera?" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Documento: %(document)s movido a la papelera." -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "¿Mover los documentos seleccionados a la papelera?" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "Propiedades para el documento: %s" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "¿Vaciar papelera?" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "Papelera vaciada con éxito" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Enviar" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "Imprimir: %s" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "¿Borrar la caché de imágenes de documentos?" @@ -946,17 +990,28 @@ msgstr "¿Borrar la caché de imágenes de documentos?" msgid "Document cache clearing queued successfully." msgstr "Caché de documentos borrara con éxito." -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document cache clearing queued successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Caché de documentos borrara con éxito." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "Página %(page_number)d de %(total_pages)d" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "Imagen de página de documento" @@ -1058,11 +1113,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" @@ -1191,7 +1246,8 @@ msgstr "Imagen de página de documento" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1205,11 +1261,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" @@ -1232,11 +1288,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" @@ -1253,15 +1309,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" @@ -1315,11 +1375,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" @@ -1340,11 +1400,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" @@ -1358,16 +1418,15 @@ msgstr "Imagen de página de documento" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1393,15 +1452,12 @@ msgstr "Imagen de página de documento" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1458,15 +1514,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 0fe1e3907c..d723676210 100644 --- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po @@ -1,127 +1,127 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "اسناد" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "انواع سند" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "برچسب" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "نوع MIME" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "اندازه کوچک" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "نوع" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "فعال شده" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "تاریخ و زمان" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "Encoding" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "شرح" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +142,10 @@ 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 "" @@ -176,7 +174,7 @@ msgstr "تاریخ اضافه شدن" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "زبان" @@ -208,7 +206,7 @@ msgstr "موجود در مخزن" msgid "File path in storage" msgstr "آدرس فایل در مخزن" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "چک سام" @@ -216,8 +214,8 @@ msgstr "چک سام" msgid "Pages" msgstr "صفحات" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "نوع سند" @@ -226,13 +224,9 @@ msgid "Compress" msgstr "فشرده سازی" #: forms.py:197 -#| 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 "" @@ -244,7 +238,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:225 literals.py:23 msgid "Page range" @@ -292,7 +288,7 @@ msgstr "ویرایش خصوصیات" msgid "Change type" msgstr "تغییر نوع" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "دانلود" @@ -312,16 +308,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "کلیه اسناد" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "اسناد تازه" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -329,10 +324,11 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده قرار میگیرد." +msgstr "" +"پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده " +"قرار میگیرد." #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +352,7 @@ msgstr "صفحه قبلی" msgid "Next page" msgstr "صفحه بعدی" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "سند" @@ -396,10 +392,20 @@ msgstr "ویرایش" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "پیش فرض" @@ -408,134 +414,136 @@ msgstr "پیش فرض" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "انواع اسناد" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "نام سند" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "توضیحات" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "اضافه شده" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "علامت زمان" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "فایل" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "نسخه سند" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "شماره صفحه" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "صفحه شماره%(page_num)d از%(total_pages)d از سند %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "صفحه سند" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "صفحات سند" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "نام فایل" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "کاربر" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "دسترسی یافته" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "سند تازه" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "ایجاد اسناد" @@ -545,11 +553,10 @@ msgid "Delete documents" msgstr "حذف سند" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "دانلود اسناد" @@ -566,12 +573,10 @@ msgid "Edit document properties" msgstr "ویرایش خصوصیات سند" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "" @@ -619,42 +624,47 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "حذف سند" + #: settings.py:29 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:40 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -664,13 +674,17 @@ msgstr "اندازه بزرگنمایی/کوچک نمایی یک صفحه از msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" +msgstr "" +"حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت " +"تعاملی" #: settings.py:54 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" +msgstr "" +"حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت " +"تعاملی" #: settings.py:61 msgid "Amount in degrees to rotate a document page per user interaction." @@ -684,6 +698,18 @@ msgstr "زبان پیش فرض اسناد (in ISO639-2) میباشد." msgid "List of supported document languages." msgstr "لیست زبانهای پشتیبانی سند" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +734,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +743,6 @@ msgstr "کلیه اسناد از این نوع حذف خواهند شد." #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +758,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +783,6 @@ msgid "All later version after this one will be deleted too." msgstr "همجنین کلیه نسخه های بعد از این نسخه حذف خواهند گردید." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,170 +795,170 @@ msgstr "بازگشت موفق نسخه سند." msgid "Error reverting document version; %s" msgstr "خطا در بازگشت نسخه سند: %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "ویرایش خصوصیات سند : %s" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "پیش نمایش سند : %s" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "خصوصیات سند : %s" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "خطا %(error)s در زمان حذف تبدیلات سند %(document)s" -#: views/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "ارسال" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "چاپ : %s" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -942,17 +966,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "صفحه%(page_number)d از %(total_pages)d" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "عکس صفحه سند" @@ -1023,9 +1058,6 @@ msgstr "عکس صفحه سند" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1054,11 +1086,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" @@ -1186,7 +1218,8 @@ msgstr "عکس صفحه سند" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1200,11 +1233,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" @@ -1227,11 +1260,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" @@ -1248,15 +1281,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" @@ -1310,11 +1347,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" @@ -1335,11 +1372,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" @@ -1353,16 +1390,15 @@ msgstr "عکس صفحه سند" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1388,15 +1424,12 @@ msgstr "عکس صفحه سند" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1453,15 +1486,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 42dc9e84f3..119f381de5 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: # Bruno CAPELETO , 2016 @@ -11,120 +11,122 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Documents" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "Types de documents" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "Documents dans la corbeille" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "Créer un type de document" -#: apps.py:148 +#: apps.py:153 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:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Libellé" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "Type MIME d'une version quelconque d'un document" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "Type MIME" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "Vignette" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "Type" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "Activé" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "Date et heure d'envoi à la corbeille" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "Heure et date" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "Encodage" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Commentaire" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "Nouveaux documents par mois" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "Nouvelles versions de document par mois" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "Nouvelles pages de document par mois" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "Nombre total de documents chaque mois" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "Nombre total de versions de documents chaque mois" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "Nombre total de pages de documents chaque mois" @@ -145,12 +147,10 @@ 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" @@ -179,7 +179,7 @@ msgstr "Date d'ajout" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "Langue" @@ -211,7 +211,7 @@ msgstr "Présent dans le stockage local" msgid "File path in storage" msgstr "Chemin du fichier dans le stockage local" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Somme de contrôle" @@ -219,8 +219,8 @@ msgstr "Somme de contrôle" msgid "Pages" msgstr "Pages" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Type de document" @@ -229,15 +229,15 @@ msgid "Compress" msgstr "Compresser" #: forms.py:197 -#| 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:204 msgid "Compressed filename" @@ -247,7 +247,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:225 literals.py:23 msgid "Page range" @@ -295,7 +297,7 @@ msgstr "Modifier les propriétés" msgid "Change type" msgstr "Changer le type" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Télécharger" @@ -315,16 +317,15 @@ msgstr "Restaurer" msgid "Download version" msgstr "Télécharger cette version" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "Tous les documents" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "Documents récents" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -332,10 +333,11 @@ msgstr "" 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:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "Effacer les documents du cache" @@ -359,7 +361,7 @@ msgstr "Page précédente" msgid "Next page" msgstr "Page suivante" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "Document" @@ -399,10 +401,20 @@ msgstr "Modifier" msgid "Add quick label to document type" msgstr "Ajouter une étiquette rapide au document" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "Etiquettes rapides" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Défaut" @@ -411,134 +423,143 @@ msgstr "Défaut" msgid "All pages" msgstr "Toutes les pages" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "Temps avant déplacement vers la corbeille" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "Unité de temps du déplacement vers la corbeille" -#: models.py:79 +#: models.py:80 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:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "Temps avant suppression" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "Unité de temps avant suppression" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "Types de documents" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "Le nom du document" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Description" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "Ajouté" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "Présent dans la corbeille ?" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "Date et heure d'envoi à la corbeille" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "Parcellaire ?" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Parcelle de document, id : %d" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "Horodatage" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Fichier" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "Version du document" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "Étiquetage rapide" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "Numéro de page" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Page %(page_num)d sur %(total_pages)d de %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "Page du document" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "Pages du document" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Nom de fichier" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Utilisateur" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "Consulté" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "Document récent" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Créer les documents" @@ -548,11 +569,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/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Télécharger les documents" @@ -569,12 +589,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 trashed document" msgstr "Restaurer le document mis à la corbeille" @@ -622,62 +640,74 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Supprimer les documents" + #: settings.py:29 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:40 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:47 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:54 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:61 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:70 msgid "Default documents language (in ISO639-2 format)." @@ -687,6 +717,18 @@ 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." +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -711,7 +753,6 @@ msgstr "Image de : %s" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Documents du type : %s" @@ -721,7 +762,6 @@ msgstr "Tous les documents de ce type seront également effacés." #: views/document_type_views.py:77 #, 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 ?" @@ -737,14 +777,19 @@ msgstr "Créer une étiquette rapide pour le type de document : %s" #: views/document_type_views.py:139 #, 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/document_type_views.py:164 #, 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/document_type_views.py:192 #, python-format @@ -758,10 +803,10 @@ msgstr "Versions du document : %s" #: views/document_version_views.py:56 msgid "All later version after this one will be deleted too." -msgstr "Toutes les versions postérieures à celle-ci seront également supprimées." +msgstr "" +"Toutes les versions postérieures à celle-ci seront également supprimées." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Êtes vous certain de vouloir revenir à cette version ?" @@ -774,191 +819,213 @@ msgstr "Retour à la version précédente du document effectuée avec succès" msgid "Error reverting document version; %s" msgstr "Erreur lors du retour à une version précédente du document : %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "Êtes vous sûr de vouloir supprimer le document sélectionné ?" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Document %(document)s supprimé." -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "Êtes vous sûr de vouloir supprimer les documents sélectionnés ?" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "Type de document pour \"%s\" changé." -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Pages for document: %s" +msgid "Duplicates for document: %s" +msgstr "Pages du document : %s" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "Modifier les propriétés du document : %s" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "Êtes vous sûr de vouloir rétablir le document sélectionné ?" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Document %(document)s rétabli." -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "Êtes vous sûr de vouloir rétablir les documents sélectionnés ?" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "Aperçu du document : %s" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "Etes-vous sûr de vouloir envoyer \"%s\" à la corbeille ?" -#: views/document_views.py:287 +#: views/document_views.py:323 #, 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/document_views.py:300 +#: views/document_views.py:336 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/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "Propriétés du document : %s" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "Vider la corbeille ?" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "Corbeille vidée avec succès" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" -msgstr[0] "Êtes vous sûr de vouloir recalculer le nombre de pages du document sélectionné ?" -msgstr[1] "Êtes vous sûr de vouloir recalculer le nombre de pages des documents sélectionnés ?" +msgstr[0] "" +"Êtes vous sûr de vouloir recalculer le nombre de pages du document " +"sélectionné ?" +msgstr[1] "" +"Êtes vous sûr de vouloir recalculer le nombre de pages des documents " +"sélectionnés ?" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Soumettre" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "Imprimer : %s" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "Vider l'image en cache du document" #: views/misc_views.py:25 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." -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document cache clearing queued successfully." +msgid "Duplicated document scan queued successfully." +msgstr "" +"Demande de nettoyage du cache de documents mise en file d'attente avec " +"succès." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "Page %(page_number)d sur %(total_pages)d" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "Image de la page du document" @@ -1060,11 +1127,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" @@ -1193,7 +1260,8 @@ msgstr "Image de la page du document" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1207,11 +1275,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" @@ -1234,11 +1302,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" @@ -1255,15 +1323,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" @@ -1317,11 +1389,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" @@ -1342,11 +1414,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" @@ -1360,16 +1432,15 @@ msgstr "Image de la page du document" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1395,15 +1466,12 @@ msgstr "Image de la page du document" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1460,15 +1528,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 cf56a8e64c..1b5d834940 100644 --- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po @@ -1,127 +1,127 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "dokumentumok" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "MIME típus" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Megjegyzés" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +142,10 @@ 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 "" @@ -176,7 +174,7 @@ msgstr "Dátum megadása" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "" @@ -208,7 +206,7 @@ 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:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Ellenőrző összeg" @@ -216,8 +214,8 @@ msgstr "Ellenőrző összeg" msgid "Pages" msgstr "Lapok" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Dokumentum típus" @@ -226,13 +224,9 @@ msgid "Compress" msgstr "Tömörítés" #: forms.py:197 -#| 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 "" @@ -244,7 +238,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:225 literals.py:23 msgid "Page range" @@ -292,7 +288,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Letöltés" @@ -312,16 +308,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -329,10 +324,11 @@ 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:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +352,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "" @@ -396,10 +392,20 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "" @@ -408,134 +414,138 @@ msgstr "" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Leírás" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "" -#: models.py:679 +#: models.py:685 #, 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:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Fájlnév" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Felhasználó" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Új dokumentum" @@ -545,11 +555,10 @@ msgid "Delete documents" msgstr "Dokumentum törlése" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Dokumentum letöltése" @@ -566,12 +575,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 trashed document" msgstr "" @@ -619,46 +626,53 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Dokumentum törlése" + #: settings.py:29 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:40 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:47 msgid "" @@ -670,11 +684,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:61 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:70 msgid "Default documents language (in ISO639-2 format)." @@ -684,6 +701,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +737,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +746,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +761,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +786,6 @@ msgid "All later version after this one will be deleted too." msgstr "Minden ezután következő verzió is törölve lesz." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,173 +798,174 @@ msgstr "Dokumentum verzió sikeresen visszaállt" msgid "Error reverting document version; %s" msgstr "Hiba a dokumentum verzió visszaállítása közben; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -945,17 +973,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1026,9 +1065,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1057,11 +1093,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" @@ -1190,7 +1226,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1204,11 +1241,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" @@ -1231,11 +1268,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" @@ -1252,15 +1289,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" @@ -1314,11 +1355,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" @@ -1339,11 +1380,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" @@ -1357,16 +1398,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1392,15 +1432,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1457,15 +1494,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 3f38e2bf44..35a2962c67 100644 --- a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po @@ -1,127 +1,127 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Dokumen" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Komentar" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +142,10 @@ 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 "" @@ -176,7 +174,7 @@ msgstr "Tanggal ditambahkan" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "Bahasa" @@ -208,7 +206,7 @@ msgstr "Ada di penyimpanan" msgid "File path in storage" msgstr "" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "" @@ -216,8 +214,8 @@ msgstr "" msgid "Pages" msgstr "Halaman-halaman" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Jenis dokumen" @@ -226,13 +224,9 @@ msgid "Compress" msgstr "Kompresi" #: forms.py:197 -#| 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 "" @@ -244,7 +238,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:225 literals.py:23 msgid "Page range" @@ -292,7 +288,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Unduh" @@ -312,16 +308,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -329,10 +324,11 @@ msgstr "" 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:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +352,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "" @@ -396,10 +392,20 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "" @@ -408,134 +414,136 @@ msgstr "" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Deskripsi" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "File" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Halaman %(page_num)d dari %(total_pages)d untuk %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "namafile" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Pengguna" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Buat dokumen" @@ -545,11 +553,10 @@ msgid "Delete documents" msgstr "Hapus dokumen" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Unduh dokumen" @@ -566,12 +573,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "" @@ -619,62 +624,74 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Hapus dokumen" + #: settings.py:29 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:40 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:47 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:54 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:61 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:70 msgid "Default documents language (in ISO639-2 format)." @@ -684,6 +701,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +737,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +746,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +761,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +786,6 @@ msgid "All later version after this one will be deleted too." msgstr "Semua versi sebelum versi yang ini akan ikut dihapus juga." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,170 +798,172 @@ msgstr "Versi dokumen berhasil dikembalikan." msgid "Error reverting document version; %s" msgstr "Masalah dalam mengembalikan versi dokumen; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -942,17 +971,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1023,9 +1063,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1054,11 +1091,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" @@ -1186,7 +1223,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1200,11 +1238,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" @@ -1227,11 +1265,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" @@ -1248,15 +1286,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" @@ -1310,11 +1352,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" @@ -1335,11 +1377,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" @@ -1353,16 +1395,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1388,15 +1429,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1453,15 +1491,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 c6078f0ec7..7066339448 100644 --- a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Marco Camplese , 2016-2017 @@ -10,120 +10,122 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Documenti" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "Nuove pagine in questo mese" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "Nuovi documenti in questo mese" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "Totale documenti" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "Tipi di documento" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "Documenti nel cestino" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "Creare un tipo di documento" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Ad ogni documento caricato deve essere assegnato un tipo documento, questa è la via più semplice per categorizzare i documenti in Mayan EDMS." +msgstr "" +"Ad ogni documento caricato deve essere assegnato un tipo documento, questa " +"è la via più semplice per categorizzare i documenti in Mayan EDMS." -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Etichetta" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "Il MIME Type di qualsiasi delle versioni del documento" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "Tipo MIME" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "Miniatura" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "Tipo" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "Abilitato" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "Data e ora di spostamento nel cestino" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "Ora e data" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "Codifica" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Commento" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "Nuovi documenti per mese" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "Nuove versioni dei documenti per mese" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "Nuove pagine di documento per mese" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "Totale documenti per ogni mese" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "Totale versioni di documento documento per ogni mese" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "Totale pagine documento per ogni mese" @@ -144,12 +146,10 @@ msgid "Document type changed" msgstr "Cambiamenti al tipo di documento" #: events.py:21 -#| msgid "Version update" msgid "New version uploaded" msgstr "Nuove versioni caricate" #: events.py:25 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Versioni di documento recuperate" @@ -178,7 +178,7 @@ msgstr "Data inserimento" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "Lingua" @@ -210,7 +210,7 @@ msgstr "Esiste nello storage" msgid "File path in storage" msgstr "File path in storage" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Checksum" @@ -218,8 +218,8 @@ msgstr "Checksum" msgid "Pages" msgstr "Pagine" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Tipo documento " @@ -228,15 +228,14 @@ msgid "Compress" msgstr "Comprimere" #: forms.py:197 -#| 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 "Scarica il documento nel formato originale oppure compresso. Questa opzione è selezionabile quando scarichi un singolo documento, per documenti multipli, il pacchetto sarà sempre scaricato in formato compresso." +msgstr "" +"Scarica il documento nel formato originale oppure compresso. Questa opzione " +"è selezionabile quando scarichi un singolo documento, per documenti " +"multipli, il pacchetto sarà sempre scaricato in formato compresso." #: forms.py:204 msgid "Compressed filename" @@ -246,7 +245,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:225 literals.py:23 msgid "Page range" @@ -294,7 +295,7 @@ msgstr "Modifica proprietà" msgid "Change type" msgstr "Cambia tipo" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Scarica" @@ -314,16 +315,15 @@ msgstr "Ripristina" msgid "Download version" msgstr "Scarica versione" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "Tutti i documenti" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "Documenti recenti" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "Cestino" @@ -331,10 +331,11 @@ msgstr "Cestino" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Cancella le rappresentazioni grafiche utilizzate per accellerare la visualizzazione dei documenti e dei risultati interattivi trasformazioni." +msgstr "" +"Cancella le rappresentazioni grafiche utilizzate per accellerare la " +"visualizzazione dei documenti e dei risultati interattivi trasformazioni." #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "Pulisci la cache delle immagini dei documenti" @@ -358,7 +359,7 @@ msgstr "Pagina precedente" msgid "Next page" msgstr "Pagina successiva" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "Documento" @@ -398,10 +399,20 @@ msgstr "Modifica" msgid "Add quick label to document type" msgstr "Aggiungi un'etichetta rapida al tipo documento" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "Etichette rapide" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Default" @@ -410,134 +421,143 @@ msgstr "Default" msgid "All pages" msgstr "Tutte le pagine" -#: models.py:69 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Quantità di tempo dopo il quale i documenti di questo tipo saranno spostati nel cestino." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Quantità di tempo dopo il quale i documenti di questo tipo saranno spostati " +"nel cestino." -#: models.py:71 +#: models.py:72 msgid "Trash time period" msgstr "Tempo per cestinare" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "Unità di tempo per cestinare" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Quantità di tempo dopo il quale i documenti di questo tipo nel cestino saranno cancellati." +msgstr "" +"Quantità di tempo dopo il quale i documenti di questo tipo nel cestino " +"saranno cancellati." -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "Tempo per cancellare" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "Unità di tempo per cancellare" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "Tipi di documenti" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "Il nome del documento" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Descrizione " -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "Aggiunto" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "Nel cestino?" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "Data e ora di spostamento nel cestino" -#: models.py:180 +#: models.py:181 msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Un documento troncato è un documento presente sul database che non ha un file scaricato. Potrebbe essere dovuto ad un upload interrotto oppure rimandato per caricarlo via API." +msgstr "" +"Un documento troncato è un documento presente sul database che non ha un " +"file scaricato. Potrebbe essere dovuto ad un upload interrotto oppure " +"rimandato per caricarlo via API." -#: models.py:183 +#: models.py:184 msgid "Is stub?" msgstr "Documento troncato?" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Documento troncato, ID: %d" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "Timestamp" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "File" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "Versione documento" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "Etichetta rapida" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "Numero di pagina" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Pagina %(page_num)d di %(total_pages)d del %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "Pagina del documento" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "Le pagine del documento" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Nome file" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "Immagini pagine documenti in cache" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "Immagini pagine documenti in cache" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Utente" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "Acceduto" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "Documento recente " +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Crea documenti" @@ -547,11 +567,10 @@ msgid "Delete documents" msgstr "Cancella documenti" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "Cestina documenti" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Scarica documenti" @@ -568,12 +587,10 @@ msgid "Edit document properties" msgstr "Modifica proprietà documento" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Stampa documenti" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "Ripristina il documento cancellato" @@ -621,58 +638,69 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Cancella documenti" + #: settings.py:29 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Numero massimo di documenti recenti da ricordare per utente (creazione, modifica, visualizzazione)." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Numero massimo di documenti recenti da ricordare per utente (creazione, " +"modifica, visualizzazione)." #: settings.py:40 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Percentuale dello zoom di una pagina del documento per l'interazione dell'utente." +msgstr "" +"Percentuale dello zoom di una pagina del documento per l'interazione " +"dell'utente." #: settings.py:47 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Ingrandimento massimo in percentuale (%) da consentire all'utente per una pagina del documento in modo interattivo." +msgstr "" +"Ingrandimento massimo in percentuale (%) da consentire all'utente per una " +"pagina del documento in modo interattivo." #: settings.py:54 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:61 msgid "Amount in degrees to rotate a document page per user interaction." @@ -686,6 +714,18 @@ msgstr "Lingua predefinita per idocumenti (in formato ISO639-2)." msgid "List of supported document languages." msgstr "Elenco delle lingue supportate nei documenti." +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -710,7 +750,6 @@ msgstr "Immagine di: %s" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Documento di tipo: %s" @@ -720,7 +759,6 @@ msgstr "Tutti i documenti di questo tipo saranno cancellati ." #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Cancellare il tipo documento: %s?" @@ -736,14 +774,18 @@ msgstr "Crea etichetta rapida per il tipo documento: %s" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Modifica etichetta rapida \"%(filename)s\" dal tipo documento \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Modifica etichetta rapida \"%(filename)s\" dal tipo documento " +"\"%(document_type)s\"" #: views/document_type_views.py:164 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Cancellare l'etichetta: %(label)s, dal tipo documento \"%(document_type)s\"?" +msgstr "" +"Cancellare l'etichetta: %(label)s, dal tipo documento \"%(document_type)s\"?" #: views/document_type_views.py:192 #, python-format @@ -760,7 +802,6 @@ msgid "All later version after this one will be deleted too." msgstr "Tutte le versioni precedenti a questa verranno cancellate." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Ripristinare questa versione?" @@ -773,173 +814,175 @@ msgstr "Versione del documento ripristinato con successo" msgid "Error reverting document version; %s" msgstr "Errore restituito, al ripristino del documento; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "Cancellare il documento selezionato?" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Documento: %(document)s cancellato." -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "Cancellare i documenti selezionati?" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "Modifica" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "Tipo documento per \"%s\" cambiato con successo." -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Pages for document: %s" +msgid "Duplicates for document: %s" +msgstr "Pagine del documento: %s" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "Modifica le proprietà del documento: %s" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "Ripristinare i documenti selezionati?" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Documento: %(document)s rispristinato." -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "Ripristinare i documenti selezionati?" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "Anteprima del documento: %s" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "Spostare \"%s\" nel cestino?" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Documento: %(document)s spostato nel cestino con successo.." -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "Spostare i documenti selezionati nel cestino?" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "Proprietà del documento: %s" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "Cancellare il cestino?" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "Svuotamento cestino completato" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "Ricalcolare il conteggio delle pagine del documento selezionato?" msgstr[1] "Ricalcolare il conteggio delle pagine dei documenti selezionati?" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Invia" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "Stampa: %s" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "Cancellare la cache delle immagini documento?" @@ -947,17 +990,28 @@ msgstr "Cancellare la cache delle immagini documento?" msgid "Document cache clearing queued successfully." msgstr "Pulizia della cache documenti in coda completata con successo." -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document cache clearing queued successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Pulizia della cache documenti in coda completata con successo." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "Pagina %(page_number)d di %(total_pages)d" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "Immagine pagina documento" @@ -1059,11 +1113,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" @@ -1192,7 +1246,8 @@ msgstr "Immagine pagina documento" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1206,11 +1261,11 @@ 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" @@ -1233,11 +1288,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" @@ -1254,15 +1309,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" @@ -1316,11 +1375,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" @@ -1341,11 +1400,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" @@ -1359,16 +1418,15 @@ msgstr "Immagine pagina documento" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1394,15 +1452,12 @@ msgstr "Immagine pagina documento" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1459,15 +1514,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 2cf7edbf30..e98d222592 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: # Evelijn Saaltink , 2016 @@ -10,120 +10,120 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Documenten" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "Documentsoorten" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "Een documentsoort aanmaken" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Label" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "MIME type" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "Thumbnail" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "Type" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "Ingeschakeld" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "Tijd en datum" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Commentaar" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "Nieuwe documenten per maand" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "Nieuwe documentversies per maand" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "Nieuwe documentpagina's per maand" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -144,12 +144,10 @@ msgid "Document type changed" msgstr "Documentsoort veranderd" #: events.py:21 -#| msgid "Version update" msgid "New version uploaded" msgstr "Nieuwe versie geüpload" #: events.py:25 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Documentversie teruggedraaid" @@ -178,7 +176,7 @@ msgstr "Datum toegevoegd" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "Taal" @@ -210,7 +208,7 @@ msgstr "Aanwezig in opslag" msgid "File path in storage" msgstr "Bestandspad in opslag" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Checksum" @@ -218,8 +216,8 @@ msgstr "Checksum" msgid "Pages" msgstr "Pagina's" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Documentsoort" @@ -228,13 +226,9 @@ msgid "Compress" msgstr "Comprimeren" #: forms.py:197 -#| 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 "" @@ -246,7 +240,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:225 literals.py:23 msgid "Page range" @@ -294,7 +291,7 @@ msgstr "Bewerk eigenschappen" msgid "Change type" msgstr "Verander soort" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Download" @@ -314,16 +311,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "Alle documenten" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "Recente documenten" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -331,10 +327,11 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Opschonen van de grafische afbeeldingen, die gebuikt worden bij het versnellen van de documentweergave en interactive transformatie resultaten." +msgstr "" +"Opschonen van de grafische afbeeldingen, die gebuikt worden bij het " +"versnellen van de documentweergave en interactive transformatie resultaten." #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -358,7 +355,7 @@ msgstr "Vorige bladzijde" msgid "Next page" msgstr "Volgende bladzijde" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "Document" @@ -398,10 +395,20 @@ msgstr "bewerken" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Verstekwaarde" @@ -410,134 +417,136 @@ msgstr "Verstekwaarde" msgid "All pages" msgstr "Alle bladzijden" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "Documenttypes" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "De naam van het document" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Omschrijving" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "Toegevoegd" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "Timestamp" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Bestand" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "Documentversie" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "Paginanummer" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Pagina %(page_num)d van %(total_pages)d in %(document)s " -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "Documentpagina" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Bestandsnaam" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Gebruiker" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Documenten aanmaken" @@ -547,11 +556,10 @@ msgid "Delete documents" msgstr "Documenten verwijderen" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Documenten downloaden" @@ -568,12 +576,10 @@ msgid "Edit document properties" msgstr "Documenteigenschappen bewerken" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Druk documenten af" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "" @@ -621,42 +627,47 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Documenten verwijderen" + #: settings.py:29 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:40 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -666,13 +677,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:54 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:61 msgid "Amount in degrees to rotate a document page per user interaction." @@ -686,6 +699,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -710,7 +735,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -720,7 +744,6 @@ msgstr "Alle documenten van dit type zullen ook worden verwijderd." #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -736,7 +759,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -760,7 +784,6 @@ msgid "All later version after this one will be deleted too." msgstr "Alle recentere versies na deze zullen ook worden verwijderd." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Deze versie terugzetten?" @@ -773,173 +796,175 @@ msgstr "Documentversie succesvol teruggevoerd" msgid "Error reverting document version; %s" msgstr "Fout bij het terugvoeren van de documentversie. Foutmelding: %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "Het geselecteerde document verwijderen?" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "Documenttype voor \"%s\" succesvol veranderd." -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "Bewerk eigenschappen van document: %s" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "Het geselecteerde document terugzetten?" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "De geselecteerde documenten terugzetten?" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "Eigenschappen voor document: %s" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "Prullenbak legen?" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "Prullenbak succesvol geleegd" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Verstuur" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "Afdrukken: %s" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -947,17 +972,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "Pagina %(page_number)d van %(total_pages)d" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1028,9 +1064,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1059,11 +1092,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" @@ -1192,7 +1225,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1206,11 +1240,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" @@ -1233,11 +1267,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" @@ -1254,15 +1288,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" @@ -1316,11 +1354,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" @@ -1341,11 +1379,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" @@ -1359,16 +1397,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1394,15 +1431,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1459,15 +1493,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 0a596ec523..7ea0c781d7 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: # Wojtek Warczakowski , 2016 @@ -10,120 +10,124 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-27 18:31+0000\n" "Last-Translator: Wojtek Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Dokumenty" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "Nowe strony w bieżącym miesiącu" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "Nowe dokumenty w bieżącym miesiącu" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "Razem dokumenty" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "Typy dokumentów" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "Dokumenty w koszu" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "Utwórz typ dokumentu" -#: apps.py:148 +#: apps.py:153 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:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Etykieta" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "Typ MIME każdej wersji dokumentu" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "Typ MIME" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "Miniaturka" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "Typ" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "Włączone" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "Data i czas umieszczenia w koszu" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "Czas i data" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "Kodowanie" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Komentarz" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "Nowe dokumenty miesięcznie" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "Nowe wersje dokumentów miesięcznie" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "Nowe strony dokumentów miesięcznie" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "Liczba dokumentów w każdym miesiącu" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "Liczba wersji dokumentów w każdym miesiącu" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "Liczba stron dokumentów w każdym miesiącu" @@ -144,12 +148,10 @@ 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" @@ -178,7 +180,7 @@ msgstr "Data dodania" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "Język" @@ -210,7 +212,7 @@ msgstr "Istnieje w systemie" msgid "File path in storage" msgstr "Ścieżka pliku w systemie" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Suma kontrolna" @@ -218,8 +220,8 @@ msgstr "Suma kontrolna" msgid "Pages" msgstr "Strony" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Typ dokumentów" @@ -228,15 +230,15 @@ msgid "Compress" msgstr "Kompresuj" #: forms.py:197 -#| 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 "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." +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:204 msgid "Compressed filename" @@ -246,7 +248,9 @@ msgstr "Nazwa pliku skompresowanego" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Nazwa pliku zawierającego gotowe do pobrania dokumenty w formie skompresowanej, jeśli poprzednio wybrano opcję kompresji." +msgstr "" +"Nazwa pliku zawierającego gotowe do pobrania dokumenty w formie " +"skompresowanej, jeśli poprzednio wybrano opcję kompresji." #: forms.py:225 literals.py:23 msgid "Page range" @@ -294,7 +298,7 @@ msgstr "Edytuj właściwości" msgid "Change type" msgstr "Zmień typ" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Pobierz" @@ -314,16 +318,15 @@ msgstr "Odtwórz" msgid "Download version" msgstr "Pobierz wersję" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "Wszystkie dokumenty" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "Ostatnio przeglądane" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "Kosz" @@ -334,7 +337,6 @@ msgid "" msgstr "" #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "Wyczyść pamięć podręczną obrazu dokumentu" @@ -358,7 +360,7 @@ msgstr "Poprzednia strona" msgid "Next page" msgstr "Następna strona" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "Dokument" @@ -398,10 +400,20 @@ msgstr "Edytuj" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Domyślne" @@ -410,134 +422,136 @@ msgstr "Domyślne" msgid "All pages" msgstr "Wszystkie strony" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "Typy dokumentów" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "Nazwa dokumentu" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Opis" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "Dodano" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "Pieczęć czasu" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Plik" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "Wersja dokumentu" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "Numer strony" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Strona %(page_num)d z %(total_pages)d stron dokumentu %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "Strona dokumentu" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "Strony dokumentu" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Nazwa" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Użytkownik" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "Dostępne" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "Ostatni dokument" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Tworzenie dokumentów" @@ -547,11 +561,10 @@ msgid "Delete documents" msgstr "Usuwanie dokumentów" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Pobieranie dokumentów" @@ -568,12 +581,10 @@ msgid "Edit document properties" msgstr "Edytuj właściwości dokumentu" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Drukuj dokumenty" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "Odtwórz dokumenty z kosza" @@ -621,41 +632,44 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Usuwanie dokumentów" + #: settings.py:29 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:40 @@ -686,6 +700,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -710,7 +736,6 @@ msgstr "Obraz dokumentu: %s" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Dokumenty typu: %s" @@ -720,7 +745,6 @@ msgstr "Wszystkie dokumenty tego typu zostaną również usunięte." #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Usunąć typ dokumentu: %s?" @@ -736,7 +760,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -760,7 +785,6 @@ msgid "All later version after this one will be deleted too." msgstr "" #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -773,35 +797,34 @@ msgstr "" msgid "Error reverting document version; %s" msgstr "" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" @@ -809,80 +832,83 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Pages for document: %s" +msgid "Duplicates for document: %s" +msgstr "Strony dokumentu: %s" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "Podgląd dokumentu: %s" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "Właściwości dokumentu: %s" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" @@ -890,22 +916,22 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" @@ -913,39 +939,37 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Wykonaj" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "Wydruk: %s" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -953,17 +977,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "Strona %(page_number)d of %(total_pages)d" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1034,9 +1069,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1065,11 +1097,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" @@ -1200,7 +1232,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1214,11 +1247,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" @@ -1241,11 +1274,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" @@ -1262,15 +1295,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" @@ -1324,11 +1361,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" @@ -1349,11 +1386,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" @@ -1367,16 +1404,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1402,15 +1438,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1467,15 +1500,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 51b6e573ad..d486350f30 100644 --- a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po @@ -1,127 +1,127 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Documentos" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Nome" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "Tipo MIME" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Comentário" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +142,10 @@ 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 "" @@ -176,7 +174,7 @@ msgstr "Data de adição" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "" @@ -208,7 +206,7 @@ msgstr "Existe no armazenamento" msgid "File path in storage" msgstr "Caminho do ficheiro no armazenamento" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Soma de verificação" @@ -216,8 +214,8 @@ msgstr "Soma de verificação" msgid "Pages" msgstr "Páginas" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Tipo de documento" @@ -226,13 +224,9 @@ msgid "Compress" msgstr "Comprimir" #: forms.py:197 -#| 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 "" @@ -292,7 +286,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Descarregar" @@ -312,16 +306,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -329,10 +322,11 @@ 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:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +350,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "" @@ -396,10 +390,20 @@ msgstr "Editar" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Padrão" @@ -408,134 +412,136 @@ msgstr "Padrão" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Descrição" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Ficheiro" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "" -#: models.py:679 +#: models.py:685 #, 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:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Nome do ficheiro" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Utilizador" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Criar documentos" @@ -545,11 +551,10 @@ msgid "Delete documents" msgstr "Excluir documentos" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Descarregar documentos" @@ -566,12 +571,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 trashed document" msgstr "" @@ -619,42 +622,47 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Excluir documentos" + #: settings.py:29 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:40 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -664,17 +672,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:54 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:61 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:70 msgid "Default documents language (in ISO639-2 format)." @@ -684,6 +698,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +734,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +743,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +758,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +783,6 @@ 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/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,173 +795,175 @@ msgstr "Versão do documento revertida com sucesso" msgid "Error reverting document version; %s" msgstr "Erro ao reverter versão do documento; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Submeter" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -945,17 +971,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1026,9 +1063,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1057,11 +1091,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" @@ -1190,7 +1224,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1204,11 +1239,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" @@ -1231,11 +1266,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" @@ -1252,15 +1287,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" @@ -1314,11 +1353,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" @@ -1339,11 +1378,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" @@ -1357,16 +1396,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1392,15 +1430,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1457,15 +1492,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 a6da6f5eb4..7e35c0f76e 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: # Aline Freitas , 2016 @@ -10,120 +10,122 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Documento" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "Novas páginas este mês" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "Novos documentos este mês" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "Total de documentos" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "Tipos de Documentos" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "Documentos na lixeira" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "Criar tipo de documento" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Cada documento carregado deve ser atribuído um tipo de documento, é a forma básica que o Mayan EDMS categoriza os documentos." +msgstr "" +"Cada documento carregado deve ser atribuído um tipo de documento, é a forma " +"básica que o Mayan EDMS categoriza os documentos." -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Label" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "O tipo MIME de qualquer uma das versões de um documento" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "Tipo MIME" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "Miniatura" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "Tipo" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "Habilitado" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "Data e hora do envio para a lixeira" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "Hora e Data" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "Codificação" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Comentário" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "Novos documentos por mês" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "Novas versões de documentos por mês" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "Novas páginas de documentos por mês" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "Total de documentos por mês" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "Total de versões de documentos por mês" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "Total de páginas de documentos por mês" @@ -144,12 +146,10 @@ msgid "Document type changed" msgstr "Tipo de Documento mudado" #: events.py:21 -#| msgid "Version update" msgid "New version uploaded" msgstr "Nova versão carregada" #: events.py:25 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Versão de documento revertida" @@ -178,7 +178,7 @@ msgstr "Data de adição" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "Linguagem" @@ -210,7 +210,7 @@ msgstr "Existe no armazenamento" msgid "File path in storage" msgstr "Caminho do arquivo no armazenamento" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Verificação" @@ -218,8 +218,8 @@ msgstr "Verificação" msgid "Pages" msgstr "Páginas" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Tipo de Documento" @@ -228,15 +228,14 @@ msgid "Compress" msgstr "Comprimir" #: forms.py:197 -#| 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 "Faça o download do documento no formato original ou de forma comprimida. Esta opção só pode ser selecionada quando o download de um documento, para vários documentos. O pacote sempre será baixado como um arquivo compactado." +msgstr "" +"Faça o download do documento no formato original ou de forma comprimida. " +"Esta opção só pode ser selecionada quando o download de um documento, para " +"vários documentos. O pacote sempre será baixado como um arquivo compactado." #: forms.py:204 msgid "Compressed filename" @@ -246,7 +245,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:225 literals.py:23 msgid "Page range" @@ -256,7 +257,9 @@ msgstr "Intervalo de páginas" msgid "" "Page number from which all the transformation will be cloned. Existing " "transformations will be lost." -msgstr "Número da página a partir do qual toda a transformação será clonada. As transformações existentes serão perdidas." +msgstr "" +"Número da página a partir do qual toda a transformação será clonada. As " +"transformações existentes serão perdidas." #: links.py:52 msgid "Preview" @@ -294,7 +297,7 @@ msgstr "Editar propriedades" msgid "Change type" msgstr "Mudar o tipo" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Baixar" @@ -314,16 +317,15 @@ msgstr "Restaurar" msgid "Download version" msgstr "Baixar a versão" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "Todos os Documentos" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "Documentos recentes" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "Lixeira" @@ -331,10 +333,11 @@ msgstr "Lixeira" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Desmarque as representações gráficas utilizadas para acelerar a exibição e transformações interativas resultados dos documentos." +msgstr "" +"Desmarque as representações gráficas utilizadas para acelerar a exibição e " +"transformações interativas resultados dos documentos." #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "Apagar o cache de imagens de documentos" @@ -358,7 +361,7 @@ msgstr "Página anterior" msgid "Next page" msgstr "Próxima pagina" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "Documento" @@ -398,10 +401,20 @@ msgstr "Editar" msgid "Add quick label to document type" msgstr "Adicionar etiqueta rápida ao tipo de documento" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "Etiquetas rápidas" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Padrão" @@ -410,134 +423,142 @@ msgstr "Padrão" msgid "All pages" msgstr "Todas as páginas" -#: models.py:69 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Quantidade de tempo após a qual se enviará documentos deste tipo para a lixeira." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Quantidade de tempo após a qual se enviará documentos deste tipo para a " +"lixeira." -#: models.py:71 +#: models.py:72 msgid "Trash time period" msgstr "Período de tempo de envio para a lixeira" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "Unidade de tempo de envio para a lixeira" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Quantidade de tempo após a qual documentos deste tipo serão eliminados." +msgstr "" +"Quantidade de tempo após a qual documentos deste tipo serão eliminados." -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "Período de tempo de eliminação" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "Unidade de tempo de eliminação" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "Tipos de Documentos" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "O nome do documento" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Descrição" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "Adicionado" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "Na lixeira?" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "Data e hora de envio à lixeira" -#: models.py:180 +#: models.py:181 msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Um rascunho de documento é um documento com uma entrada no banco de dados, mas nenhum arquivo carregado. Isso pode ser um envio interrompido ou um envio diferido por meio da API." +msgstr "" +"Um rascunho de documento é um documento com uma entrada no banco de dados, " +"mas nenhum arquivo carregado. Isso pode ser um envio interrompido ou um " +"envio diferido por meio da API." -#: models.py:183 +#: models.py:184 msgid "Is stub?" msgstr "É um rascunho?" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Documento rascunho, id: %d" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "Timestamp" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Arquivo" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "Versão do Documento" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "Rótulo rápido" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "Página número" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Pagina %(page_num)d de %(total_pages)d em %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "Página do documento" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "Páginas do documento" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Nome do arquivo" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "Imagem do documento em cache" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "Imagens em cache da página do documento" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Usuário" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "Acessado" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "Documentos recentes" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Criar documentos" @@ -547,11 +568,10 @@ msgid "Delete documents" msgstr "Excluir documentos" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "Mover documentos para a lixeira" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Baixar documentos" @@ -568,12 +588,10 @@ msgid "Edit document properties" msgstr "Editar propriedades de documento" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Imprimir documentos" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "Restaurar documento da lixeira" @@ -621,62 +639,74 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Excluir documentos" + #: settings.py:29 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:40 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:47 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:54 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:61 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:70 msgid "Default documents language (in ISO639-2 format)." @@ -686,6 +716,18 @@ msgstr "Os documentos padrão linguagem (em formato ISO639-2)." msgid "List of supported document languages." msgstr "Lista de idiomas de documentos suportados." +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -693,7 +735,9 @@ msgstr "Páginas por documento: %s" #: views/document_page_views.py:102 msgid "Unknown view keyword argument schema, unable to redirect." -msgstr "Esquema de argumento de palavra-chave de vista desconhecida, não é possível redirecionar." +msgstr "" +"Esquema de argumento de palavra-chave de vista desconhecida, não é possível " +"redirecionar." #: views/document_page_views.py:134 msgid "There are no more pages in this document" @@ -710,7 +754,6 @@ msgstr "Imagem de: %s" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Documentos do tipo: %s" @@ -720,7 +763,6 @@ msgstr "Todos os documentos deste tipo serão excluídos também." #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Remove o documento do tipo: %s?" @@ -736,14 +778,18 @@ msgstr "Criar uma etiqueta rápida para o documento tipo: %s" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Editar etiqueta rápida \"%(filename)s\" para documento do tipo \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Editar etiqueta rápida \"%(filename)s\" para documento do tipo " +"\"%(document_type)s\"" #: views/document_type_views.py:164 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Apagar a etiqueta rápida: %(label)s, do documento tipo \"%(document_type)s\"?" +msgstr "" +"Apagar a etiqueta rápida: %(label)s, do documento tipo \"%(document_type)s\"?" #: views/document_type_views.py:192 #, python-format @@ -760,7 +806,6 @@ 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/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Reverter para esta versão?" @@ -773,173 +818,183 @@ msgstr "Versão do documento revertidos com sucesso" msgid "Error reverting document version; %s" msgstr "Erro ao reverter versão do documento; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "Remover o documento selecionado?" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Documento: %(document)s removido." -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "Remover os documentos selecionados?" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" -msgstr "Pedido de alteração de tipo de documento executado em %(count)d documento" +msgstr "" +"Pedido de alteração de tipo de documento executado em %(count)d documento" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" -msgstr "Pedido de alteração de tipo de documento executado em %(count)d documentos" +msgstr "" +"Pedido de alteração de tipo de documento executado em %(count)d documentos" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "Mudança" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "Alterar o tipo de documentos selecionados" msgstr[1] "Alterar o tipo de documentos selecionados" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "Alterar o tipo do documento: %s" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "Tipo de documento para \"%s\" alterado com sucesso." -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Pages for document: %s" +msgid "Duplicates for document: %s" +msgstr "Páginas por documento: %s" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "Editar propriedades de documento: %s" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "Restaurar os documentos selecionados?" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Documentq: %(document)s restaurado." -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "Restaurar os documentos selecionados?" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "Pré-visualização do documento:%s " -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "Mover \"%s\" para a lixeira?" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Documento: %(document)s movido para a lixeira com sucesso." -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "Mover os documentos selecionados para a lixeira?" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "Pré-visualização do documento:%s" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "Esvaziar a lixeira?" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "Lixeira esvaziada com sucesso" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "%(count)d documento em fila para recálculo de contagem de página" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "%(count)d documentos em fila para recálculo de contagem de página" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "Recalcular a contagem de páginas do documento selecionado?" msgstr[1] "Recalcular a contagem de páginas dos documentos selecionados?" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "Recalcular a contagem de páginas do documento: %s?" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" -msgstr "Solicitação de transparência de transformação processada para %(count)d documento" +msgstr "" +"Solicitação de transparência de transformação processada para %(count)d " +"documento" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" -msgstr "Solicitação de transparência de transformação processada para %(count)d documentos" +msgstr "" +"Solicitação de transparência de transformação processada para %(count)d " +"documentos" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" -msgstr[0] "Limpar todas as transformações de página para o documento selecionado?" -msgstr[1] "Limpar todas as transformações de página para o documento selecionado?" +msgstr[0] "" +"Limpar todas as transformações de página para o documento selecionado?" +msgstr[1] "" +"Limpar todas as transformações de página para o documento selecionado?" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "Limpar todas as transformações de página para o documento: %s?" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "Transformações clonadas com sucesso." -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Submeter" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "Transformações de página de clone para o documento: %s" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "Imprimir: %s" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "Apagar do cache a imagem do documento?" @@ -947,17 +1002,28 @@ msgstr "Apagar do cache a imagem do documento?" msgid "Document cache clearing queued successfully." msgstr "Cache do documento apagado com sucesso." -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document cache clearing queued successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Cache do documento apagado com sucesso." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "Página %(page_number)d de %(total_pages)d" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "Imagem clicável" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "Imagem da página do documento" @@ -1059,11 +1125,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" @@ -1192,7 +1258,8 @@ msgstr "Imagem da página do documento" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1206,11 +1273,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" @@ -1233,11 +1300,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" @@ -1254,15 +1321,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" @@ -1316,11 +1387,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" @@ -1341,11 +1412,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" @@ -1359,16 +1430,15 @@ msgstr "Imagem da página do documento" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1394,15 +1464,12 @@ msgstr "Imagem da página do documento" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1459,15 +1526,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 a93d2e4067..0ab3c99293 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: # Stefaniu Criste , 2016 @@ -9,120 +9,121 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Documente" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Etichetă" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "Tip MIME" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "Iconiță" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "Tip" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "Encodare" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Comentariu" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -143,12 +144,10 @@ 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 "" @@ -177,7 +176,7 @@ msgstr "Dată adaugată" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "" @@ -209,7 +208,7 @@ msgstr "Există în arhivă" msgid "File path in storage" msgstr "Cale fisier in arhiva" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Suma de control" @@ -217,8 +216,8 @@ msgstr "Suma de control" msgid "Pages" msgstr "Pagini" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Tip document" @@ -227,13 +226,9 @@ msgid "Compress" msgstr "Comprimă" #: forms.py:197 -#| 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 "" @@ -245,7 +240,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:225 literals.py:23 msgid "Page range" @@ -293,7 +290,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Descarcă" @@ -313,16 +310,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -330,10 +326,11 @@ 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:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -357,7 +354,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "" @@ -397,10 +394,20 @@ msgstr "Editează" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Iniţial" @@ -409,134 +416,136 @@ msgstr "Iniţial" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Descriere" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Fișier" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "Versiune document" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "Numarul paginii" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Pag %(page_num)d din %(total_pages)d din %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "Pagini document" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Nume fişier" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "utilizator" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "Accesat" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Document nou" @@ -546,11 +555,10 @@ msgid "Delete documents" msgstr "Şterge" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Descarcă" @@ -567,12 +575,10 @@ msgid "Edit document properties" msgstr "Editează proprietăţile" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Tipărește documente" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "" @@ -620,62 +626,75 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Şterge" + #: settings.py:29 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:40 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:47 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:54 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:61 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:70 msgid "Default documents language (in ISO639-2 format)." @@ -685,6 +704,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -709,7 +740,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -719,7 +749,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -735,7 +764,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -759,7 +789,6 @@ msgid "All later version after this one will be deleted too." msgstr "Toate versiune de dupa aceasta, vor fi şterse de asemenea." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -772,176 +801,176 @@ msgstr "Versiunea documentului refacută cu succes" msgid "Error reverting document version; %s" msgstr "Eroare la revenirea la versiunea documentului; %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 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/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Trimiteţi" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "Tipărește: %s" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -949,17 +978,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1030,9 +1070,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1061,11 +1098,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" @@ -1195,7 +1232,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1209,11 +1247,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" @@ -1236,11 +1274,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" @@ -1257,15 +1295,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" @@ -1319,11 +1361,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" @@ -1344,11 +1386,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" @@ -1362,16 +1404,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1397,15 +1438,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1462,15 +1500,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 b31ca02fe7..562eb6c3c2 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: # lilo.panic, 2016 @@ -9,120 +9,124 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Документы" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "Типы документов" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "Документы в корзине" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "Создать тип документа" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Каждому загруженому документу должен быть присвоен тип документа, - это основной способ, которым Mayan EDMS распределяет документы по категориям." +msgstr "" +"Каждому загруженому документу должен быть присвоен тип документа, - это " +"основной способ, которым Mayan EDMS распределяет документы по категориям." -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Надпись" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "MIME-тип любых версий документа" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "MIME type" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "Миниатюра" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "Тип" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "Доступно" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "Время и дата удаления" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "Время и дата" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "Кодировка" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Комментарий" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "Новых документов в месяц" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "Новых версий документов в месяц" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "Новых страниц документов в месяц" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "Всего документов в месяц" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "Новых версий документов в месяц" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "Всего страниц документов в месяц" @@ -143,12 +147,10 @@ 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 "Версия документа была восстановлена" @@ -177,7 +179,7 @@ msgstr "Дата добавления" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "Язык" @@ -209,7 +211,7 @@ msgstr "Существует в хранилище" msgid "File path in storage" msgstr "Путь к файлу в хранилище" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Контрольная сумма" @@ -217,8 +219,8 @@ msgstr "Контрольная сумма" msgid "Pages" msgstr "Страницы" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Тип документа" @@ -227,15 +229,14 @@ msgid "Compress" msgstr "Сжать" #: forms.py:197 -#| 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 "" +"Скачать документ в исходном, или в сжатом формате. Этот вариант доступен " +"только при загрузке одного документа, для нескольких документов будет " +"использован сжатый файл." #: forms.py:204 msgid "Compressed filename" @@ -245,7 +246,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:225 literals.py:23 msgid "Page range" @@ -293,7 +296,7 @@ msgstr "Редактировать свойства" msgid "Change type" msgstr "Изменить тип" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Скачать" @@ -313,16 +316,15 @@ msgstr "Восстановить" msgid "Download version" msgstr "Скачать версию" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "Все документы" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "Последние документы" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -330,10 +332,11 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Очистить графику для ускорения отображения документов и интерактивных преобразований." +msgstr "" +"Очистить графику для ускорения отображения документов и интерактивных " +"преобразований." #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "Очистить кэш изображений документа" @@ -357,7 +360,7 @@ msgstr "Предыдущая страница" msgid "Next page" msgstr "Следующая страница" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "Документ" @@ -397,10 +400,20 @@ msgstr "Редактировать" msgid "Add quick label to document type" msgstr "Добавить быструю метку к документу" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "Быстрые метки" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Умолчание" @@ -409,134 +422,143 @@ msgstr "Умолчание" msgid "All pages" msgstr "Все страницы" -#: models.py:69 +#: 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 "" +"Сколько должно пройти времени, прежде чем документы этого типа будут " +"перемещены в корзину." -#: models.py:71 +#: models.py:72 msgid "Trash time period" msgstr "Период жизни" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "Единица измерения периода жизни" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Сколько должно пройти времени, прежде чем документы этого типа будут удалены из корзины." +msgstr "" +"Сколько должно пройти времени, прежде чем документы этого типа будут удалены " +"из корзины." -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "Период удаления" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "Единица измерения периода удаления" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "Типы документов" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "Название документа" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Описание" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "Добавлено" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "В корзине?" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "Время и дата удаления" -#: models.py:180 +#: models.py:181 msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Заглушка документа - это запись в базе данных без самого документа. Документ может оказатсья заглушкой, если его загрузка оборвалась, или выполняется его отложенная загрузка через API." +msgstr "" +"Заглушка документа - это запись в базе данных без самого документа. Документ " +"может оказатсья заглушкой, если его загрузка оборвалась, или выполняется его " +"отложенная загрузка через API." -#: models.py:183 +#: models.py:184 msgid "Is stub?" msgstr "Является заглушкой?" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Заглушка документа, ид: %d" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "временная метка" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "Файл" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "Версия документа" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "Быстрая метка" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "Номер страницы" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Страница %(page_num)d из %(total_pages)d %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "Страница документа" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "Страницы документа" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Имя файла" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Пользователь" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "Допущен" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "Недавние документы" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Создание документов" @@ -546,11 +568,10 @@ msgid "Delete documents" msgstr "Удаление документов" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "Переместить документы в корзину" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Загрузка документов" @@ -567,12 +588,10 @@ msgid "Edit document properties" msgstr "Редактирование свойств документа" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Печать документов" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "" @@ -620,42 +639,47 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Удаление документов" + #: settings.py:29 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:40 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -685,6 +709,18 @@ msgstr "Язык документов по умолчанию (в формате msgid "List of supported document languages." msgstr "Список поддерживаемых языков документов" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -709,7 +745,6 @@ msgstr "Изображение для: %s" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Документы с типом: %s" @@ -719,7 +754,6 @@ msgstr "Все документы этого типа будут также уд #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Удалить тип документа: %s?" @@ -735,8 +769,11 @@ msgstr "Создать быструю метку для типа докумен #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Редактировать быструю метку %(filename)s\" с типа документов \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Редактировать быструю метку %(filename)s\" с типа документов " +"\"%(document_type)s\"" #: views/document_type_views.py:164 #, python-format @@ -759,7 +796,6 @@ msgid "All later version after this one will be deleted too." msgstr "Все более поздние версии после этого будут удалены" #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Вернуться к этой версии?" @@ -772,35 +808,34 @@ msgstr "Версия документа восстановлена" msgid "Error reverting document version; %s" msgstr "Ошибка получения версии документа %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "Удалить выбранный документ?" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Документ: %(document)s удалён." -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "Удалить выбранные документы?" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" @@ -808,80 +843,83 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "Тип документа для \"%s\" успешно изменён." -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Pages for document: %s" +msgid "Duplicates for document: %s" +msgstr "Страницы документа: %s" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "Правка свойств документа: %s" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "Восстановить выбранный документ?" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Документ %(document)s восстановлен." -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "Восстановить выбранные документы?" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "Предпросмотр документа: %s" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "Перместить \"%s\" в корзину?" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Документ %(document)s успешно перемещён в корзину." -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "Переместить выделенные документы в корзину?" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "Свойства документа: %s" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "Очистить корзину?" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "Корзина успешно очищена" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "Пересчитать количество страниц для выбранного документа?" @@ -889,22 +927,22 @@ msgstr[1] "Пересчитать количество страниц для в msgstr[2] "Пересчитать количество страниц для выбранных документов?" msgstr[3] "Пересчитать количество страниц для выбранных документов?" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" @@ -912,39 +950,39 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "Подтвердить" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "Печать: %s" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "Очистить кэш изображений документа?" @@ -952,17 +990,28 @@ msgstr "Очистить кэш изображений документа?" msgid "Document cache clearing queued successfully." msgstr "Очистка кэша документов успешно помещена в очередь." -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document cache clearing queued successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Очистка кэша документов успешно помещена в очередь." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "Страница %(page_number)d из %(total_pages)d" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "Изображение страницы документа" @@ -1064,11 +1113,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" @@ -1199,7 +1248,8 @@ msgstr "Изображение страницы документа" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1213,11 +1263,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" @@ -1240,11 +1290,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" @@ -1261,15 +1311,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" @@ -1323,11 +1377,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" @@ -1348,11 +1402,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" @@ -1366,16 +1420,15 @@ msgstr "Изображение страницы документа" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1401,15 +1454,12 @@ msgstr "Изображение страницы документа" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1466,15 +1516,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 ae24d269e3..2229e44cf6 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po @@ -1,127 +1,128 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Dokumenti" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "Oznaka" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "MIME tip" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Komentar" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +143,10 @@ 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 "" @@ -176,7 +175,7 @@ msgstr "Dodano datum" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "" @@ -208,7 +207,7 @@ msgstr "Obstaja v shrambi" msgid "File path in storage" msgstr "Pot datoteke v shrambi" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "Nadzorna vsota" @@ -216,8 +215,8 @@ msgstr "Nadzorna vsota" msgid "Pages" msgstr "Strani" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Tip dokumenta" @@ -226,13 +225,9 @@ msgid "Compress" msgstr "Stisni" #: forms.py:197 -#| 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 "" @@ -244,7 +239,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:225 literals.py:23 msgid "Page range" @@ -292,7 +289,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "Prenos" @@ -312,16 +309,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -329,10 +325,11 @@ 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:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +353,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "Dokument" @@ -396,10 +393,20 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "" @@ -408,134 +415,136 @@ msgstr "" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Opis" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Stran %(page_num)d od %(total_pages)d dokumenta %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Ime datoteke" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Ustvari dokument" @@ -545,11 +554,10 @@ msgid "Delete documents" msgstr "Izbiši dokumente" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Prenesi dokumente" @@ -566,12 +574,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 trashed document" msgstr "" @@ -619,62 +625,74 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Izbiši dokumente" + #: settings.py:29 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:40 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:47 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:54 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:61 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:70 msgid "Default documents language (in ISO639-2 format)." @@ -684,6 +702,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +738,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +747,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +762,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +787,6 @@ msgid "All later version after this one will be deleted too." msgstr "Vse prejšnje verzije bodo tudi izbrisane." #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,35 +799,34 @@ msgstr "Povrnitev verzije dokumenta je bila uspešna" msgid "Error reverting document version; %s" msgstr "Napaka v povrnitvi dokumenta verzija: %s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" @@ -807,80 +834,83 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" @@ -888,22 +918,22 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" @@ -911,39 +941,38 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, 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/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -951,17 +980,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1032,9 +1072,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1063,11 +1100,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" @@ -1198,7 +1235,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1212,11 +1250,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" @@ -1239,11 +1277,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" @@ -1260,15 +1298,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" @@ -1322,11 +1364,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" @@ -1347,11 +1389,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" @@ -1365,16 +1407,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1400,15 +1441,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1465,15 +1503,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..21be24f343 --- /dev/null +++ b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,971 @@ +# 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: 2017-07-09 02:27-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=INTEGER; plural=EXPRESSION;\n" + +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 +msgid "Documents" +msgstr "" + +#: apps.py:116 +msgid "New pages this month" +msgstr "" + +#: apps.py:125 +msgid "New documents this month" +msgstr "" + +#: apps.py:134 +msgid "Total documents" +msgstr "" + +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 +msgid "Document types" +msgstr "" + +#: apps.py:146 views/document_views.py:73 +msgid "Documents in trash" +msgstr "" + +#: apps.py:151 +msgid "Create a document type" +msgstr "" + +#: apps.py:153 +msgid "" +"Every uploaded document must be assigned a document type, it is the basic " +"way Mayan EDMS categorizes documents." +msgstr "" + +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 +msgid "Label" +msgstr "" + +#: apps.py:165 +msgid "The MIME type of any of the versions of a document" +msgstr "" + +#: apps.py:166 apps.py:268 search.py:19 search.py:39 +msgid "MIME type" +msgstr "" + +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 +msgid "Thumbnail" +msgstr "" + +#: apps.py:214 apps.py:232 apps.py:256 +msgid "Type" +msgstr "" + +#: apps.py:244 models.py:657 +msgid "Enabled" +msgstr "" + +#: apps.py:259 +msgid "Date time trashed" +msgstr "" + +#: apps.py:264 +msgid "Time and date" +msgstr "" + +#: apps.py:272 +msgid "Encoding" +msgstr "" + +#: apps.py:276 models.py:372 +msgid "Comment" +msgstr "" + +#: apps.py:286 links.py:293 views/document_views.py:768 +msgid "Duplicates" +msgstr "" + +#: apps.py:489 +msgid "New documents per month" +msgstr "" + +#: apps.py:496 +msgid "New document versions per month" +msgstr "" + +#: apps.py:503 +msgid "New document pages per month" +msgstr "" + +#: apps.py:510 +msgid "Total documents at each month" +msgstr "" + +#: apps.py:517 +msgid "Total document versions at each month" +msgstr "" + +#: apps.py:524 +msgid "Total document pages at each month" +msgstr "" + +#: events.py:8 +msgid "Document created" +msgstr "" + +#: events.py:12 +msgid "Document downloaded" +msgstr "" + +#: events.py:15 +msgid "Document properties edited" +msgstr "" + +#: events.py:18 +msgid "Document type changed" +msgstr "" + +#: events.py:21 +msgid "New version uploaded" +msgstr "" + +#: events.py:25 +msgid "Document version reverted" +msgstr "" + +#: events.py:29 +msgid "Document viewed" +msgstr "" + +#: forms.py:39 links.py:219 +msgid "Page image" +msgstr "" + +#: forms.py:51 forms.py:54 +#, python-format +msgid "Document pages (%d)" +msgstr "" + +#: forms.py:92 +msgid "Quick document rename" +msgstr "" + +#: forms.py:114 +msgid "Date added" +msgstr "" + +#: forms.py:118 +msgid "UUID" +msgstr "" + +#: forms.py:120 models.py:168 +msgid "Language" +msgstr "" + +#: forms.py:122 +msgid "Unknown" +msgstr "" + +#: forms.py:130 +msgid "File mimetype" +msgstr "" + +#: forms.py:131 forms.py:136 +msgid "None" +msgstr "" + +#: forms.py:134 +msgid "File encoding" +msgstr "" + +#: forms.py:140 +msgid "File size" +msgstr "" + +#: forms.py:145 +msgid "Exists in storage" +msgstr "" + +#: forms.py:147 +msgid "File path in storage" +msgstr "" + +#: forms.py:150 models.py:388 search.py:24 search.py:48 +msgid "Checksum" +msgstr "" + +#: forms.py:151 links.py:67 +msgid "Pages" +msgstr "" + +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 +msgid "Document type" +msgstr "" + +#: forms.py:195 +msgid "Compress" +msgstr "" + +#: forms.py:197 +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 "" + +#: forms.py:204 +msgid "Compressed filename" +msgstr "" + +#: forms.py:207 +msgid "" +"The filename of the compressed file that will contain the documents to be " +"downloaded, if the previous option is selected." +msgstr "" + +#: forms.py:225 literals.py:23 +msgid "Page range" +msgstr "" + +#: forms.py:231 +msgid "" +"Page number from which all the transformation will be cloned. Existing " +"transformations will be lost." +msgstr "" + +#: links.py:52 +msgid "Preview" +msgstr "" + +#: links.py:57 +msgid "Properties" +msgstr "" + +#: links.py:62 +msgid "Versions" +msgstr "" + +#: links.py:73 links.py:119 +msgid "Clear transformations" +msgstr "" + +#: links.py:78 +msgid "Clone transformations" +msgstr "" + +#: links.py:83 links.py:127 links.py:254 links.py:268 +msgid "Delete" +msgstr "" + +#: links.py:88 links.py:123 +msgid "Move to trash" +msgstr "" + +#: links.py:93 +msgid "Edit properties" +msgstr "" + +#: links.py:97 links.py:131 +msgid "Change type" +msgstr "" + +#: links.py:101 links.py:135 views/document_views.py:418 +msgid "Download" +msgstr "" + +#: links.py:105 +msgid "Print" +msgstr "" + +#: links.py:110 links.py:138 +msgid "Recalculate page count" +msgstr "" + +#: links.py:114 links.py:142 +msgid "Restore" +msgstr "" + +#: links.py:146 +msgid "Download version" +msgstr "" + +#: links.py:151 views/document_views.py:55 +msgid "All documents" +msgstr "" + +#: links.py:154 models.py:898 views/document_views.py:379 +msgid "Recent documents" +msgstr "" + +#: links.py:158 +msgid "Trash can" +msgstr "" + +#: links.py:166 +msgid "" +"Clear the graphics representations used to speed up the documents' display " +"and interactive transformations results." +msgstr "" + +#: links.py:169 +msgid "Clear document image cache" +msgstr "" + +#: links.py:173 permissions.py:47 +msgid "Empty trash" +msgstr "" + +#: links.py:181 +msgid "First page" +msgstr "" + +#: links.py:186 +msgid "Last page" +msgstr "" + +#: links.py:193 +msgid "Previous page" +msgstr "" + +#: links.py:199 +msgid "Next page" +msgstr "" + +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 +msgid "Document" +msgstr "" + +#: links.py:210 +msgid "Rotate left" +msgstr "" + +#: links.py:215 +msgid "Rotate right" +msgstr "" + +#: links.py:223 +msgid "Reset view" +msgstr "" + +#: links.py:228 +msgid "Zoom in" +msgstr "" + +#: links.py:234 +msgid "Zoom out" +msgstr "" + +#: links.py:243 +msgid "Revert" +msgstr "" + +#: links.py:250 views/document_type_views.py:64 +msgid "Create document type" +msgstr "" + +#: links.py:258 links.py:272 +msgid "Edit" +msgstr "" + +#: links.py:263 +msgid "Add quick label to document type" +msgstr "" + +#: links.py:276 models.py:663 +msgid "Quick labels" +msgstr "" + +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "" + +#: links.py:297 +msgid "Duplicated document scan" +msgstr "" + +#: literals.py:14 +msgid "Default" +msgstr "" + +#: literals.py:23 +msgid "All pages" +msgstr "" + +#: models.py:70 +msgid "" +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" + +#: models.py:72 +msgid "Trash time period" +msgstr "" + +#: models.py:76 +msgid "Trash time unit" +msgstr "" + +#: models.py:80 +msgid "" +"Amount of time after which documents of this type in the trash will be " +"deleted." +msgstr "" + +#: models.py:82 +msgid "Delete time period" +msgstr "" + +#: models.py:87 +msgid "Delete time unit" +msgstr "" + +#: models.py:107 +msgid "Documents types" +msgstr "" + +#: models.py:158 +msgid "The name of the document" +msgstr "" + +#: models.py:161 search.py:22 search.py:45 +msgid "Description" +msgstr "" + +#: models.py:164 models.py:910 +msgid "Added" +msgstr "" + +#: models.py:172 +msgid "In trash?" +msgstr "" + +#: models.py:177 +msgid "Date and time trashed" +msgstr "" + +#: models.py:181 +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:184 +msgid "Is stub?" +msgstr "" + +#: models.py:192 +#, python-format +msgid "Document stub, id: %d" +msgstr "" + +#: models.py:369 +msgid "Timestamp" +msgstr "" + +#: models.py:378 +msgid "File" +msgstr "" + +#: models.py:460 models.py:461 models.py:676 +msgid "Document version" +msgstr "" + +#: models.py:662 +msgid "Quick label" +msgstr "" + +#: models.py:680 +msgid "Page number" +msgstr "" + +#: models.py:685 +#, python-format +msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" +msgstr "" + +#: models.py:701 models.py:849 models.py:866 +msgid "Document page" +msgstr "" + +#: models.py:702 models.py:867 +msgid "Document pages" +msgstr "" + +#: models.py:851 +msgid "Filename" +msgstr "" + +#: models.py:854 +msgid "Document page cached image" +msgstr "" + +#: models.py:855 +msgid "Document page cached images" +msgstr "" + +#: models.py:877 +msgid "User" +msgstr "" + +#: models.py:883 +msgid "Accessed" +msgstr "" + +#: models.py:897 +msgid "Recent document" +msgstr "" + +#: models.py:919 +msgid "Duplicated document" +msgstr "" + +#: permissions.py:10 +msgid "Create documents" +msgstr "" + +#: permissions.py:13 +msgid "Delete documents" +msgstr "" + +#: permissions.py:16 +msgid "Trash documents" +msgstr "" + +#: permissions.py:19 views/document_views.py:420 +msgid "Download documents" +msgstr "" + +#: permissions.py:22 +msgid "Edit documents" +msgstr "" + +#: permissions.py:25 +msgid "Create new document versions" +msgstr "" + +#: permissions.py:28 +msgid "Edit document properties" +msgstr "" + +#: permissions.py:31 +msgid "Print documents" +msgstr "" + +#: permissions.py:34 +msgid "Restore trashed document" +msgstr "" + +#: permissions.py:37 +msgid "Execute document modifying tools" +msgstr "" + +#: permissions.py:41 +msgid "Revert documents to a previous version" +msgstr "" + +#: permissions.py:44 +msgid "View documents" +msgstr "" + +#: permissions.py:51 +msgid "Documents setup" +msgstr "" + +#: permissions.py:54 +msgid "Create document types" +msgstr "" + +#: permissions.py:57 +msgid "Delete document types" +msgstr "" + +#: permissions.py:60 +msgid "Edit document types" +msgstr "" + +#: permissions.py:63 +msgid "View document types" +msgstr "" + +#: queues.py:9 +msgid "Converter" +msgstr "" + +#: queues.py:12 +msgid "Documents periodic" +msgstr "" + +#: queues.py:15 +msgid "Uploads" +msgstr "" + +#: queues.py:23 +msgid "Check document type delete periods" +msgstr "" + +#: queues.py:27 +msgid "Check document type trash periods" +msgstr "" + +#: queues.py:31 +msgid "Delete document stubs" +msgstr "" + +#: queues.py:36 +msgid "Clear image cache" +msgstr "" + +#: queues.py:41 +msgid "Generate document page image" +msgstr "" + +#: queues.py:46 +msgid "Update document page count" +msgstr "" + +#: queues.py:50 +msgid "Upload new document version" +msgstr "" + +#: queues.py:54 +msgid "Delete a document" +msgstr "" + +#: settings.py:29 +msgid "" +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" + +#: settings.py:40 +msgid "Amount in percent zoom in or out a document page per user interaction." +msgstr "" + +#: settings.py:47 +msgid "" +"Maximum amount in percent (%) to allow user to zoom in a document page " +"interactively." +msgstr "" + +#: settings.py:54 +msgid "" +"Minimum amount in percent (%) to allow user to zoom out a document page " +"interactively." +msgstr "" + +#: settings.py:61 +msgid "Amount in degrees to rotate a document page per user interaction." +msgstr "" + +#: settings.py:70 +msgid "Default documents language (in ISO639-2 format)." +msgstr "" + +#: settings.py:74 +msgid "List of supported document languages." +msgstr "" + +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + +#: views/document_page_views.py:50 +#, python-format +msgid "Pages for document: %s" +msgstr "" + +#: views/document_page_views.py:102 +msgid "Unknown view keyword argument schema, unable to redirect." +msgstr "" + +#: views/document_page_views.py:134 +msgid "There are no more pages in this document" +msgstr "" + +#: views/document_page_views.py:151 +msgid "You are already at the first page of this document" +msgstr "" + +#: views/document_page_views.py:179 +#, python-format +msgid "Image of: %s" +msgstr "" + +#: views/document_type_views.py:38 +#, python-format +msgid "Documents of type: %s" +msgstr "" + +#: views/document_type_views.py:75 +msgid "All documents of this type will be deleted too." +msgstr "" + +#: views/document_type_views.py:77 +#, python-format +msgid "Delete the document type: %s?" +msgstr "" + +#: views/document_type_views.py:93 +#, python-format +msgid "Edit document type: %s" +msgstr "" + +#: views/document_type_views.py:118 +#, python-format +msgid "Create quick label for document type: %s" +msgstr "" + +#: views/document_type_views.py:139 +#, python-format +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" + +#: views/document_type_views.py:164 +#, python-format +msgid "" +"Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" +msgstr "" + +#: views/document_type_views.py:192 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views/document_version_views.py:42 +#, python-format +msgid "Versions of document: %s" +msgstr "" + +#: views/document_version_views.py:56 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views/document_version_views.py:59 +msgid "Revert to this version?" +msgstr "" + +#: views/document_version_views.py:69 +msgid "Document version reverted successfully" +msgstr "" + +#: views/document_version_views.py:74 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views/document_views.py:85 +msgid "Delete the selected document?" +msgstr "" + +#: views/document_views.py:106 +#, python-format +msgid "Document: %(document)s deleted." +msgstr "" + +#: views/document_views.py:114 +msgid "Delete the selected documents?" +msgstr "" + +#: views/document_views.py:126 +#, python-format +msgid "Document type change request performed on %(count)d document" +msgstr "" + +#: views/document_views.py:129 +#, python-format +msgid "Document type change request performed on %(count)d documents" +msgstr "" + +#: views/document_views.py:136 +msgid "Change" +msgstr "" + +#: views/document_views.py:138 +msgid "Change the type of the selected document" +msgid_plural "Change the type of the selected documents" +msgstr[0] "" +msgstr[1] "" + +#: views/document_views.py:149 +#, python-format +msgid "Change the type of the document: %s" +msgstr "" + +#: views/document_views.py:170 +#, python-format +msgid "Document type for \"%s\" changed successfully." +msgstr "" + +#: views/document_views.py:201 +#, python-format +msgid "Duplicates for document: %s" +msgstr "" + +#: views/document_views.py:220 +#, python-format +msgid "Edit properties of document: %s" +msgstr "" + +#: views/document_views.py:236 +msgid "Restore the selected document?" +msgstr "" + +#: views/document_views.py:257 +#, python-format +msgid "Document: %(document)s restored." +msgstr "" + +#: views/document_views.py:265 +msgid "Restore the selected documents?" +msgstr "" + +#: views/document_views.py:292 +#, python-format +msgid "Preview of document: %s" +msgstr "" + +#: views/document_views.py:300 +#, python-format +msgid "Move \"%s\" to the trash?" +msgstr "" + +#: views/document_views.py:323 +#, python-format +msgid "Document: %(document)s moved to trash successfully." +msgstr "" + +#: views/document_views.py:336 +msgid "Move the selected documents to the trash?" +msgstr "" + +#: views/document_views.py:354 +#, python-format +msgid "Properties for document: %s" +msgstr "" + +#: views/document_views.py:360 +msgid "Empty trash?" +msgstr "" + +#: views/document_views.py:373 +msgid "Trash emptied successfully" +msgstr "" + +#: views/document_views.py:557 +#, python-format +msgid "%(count)d document queued for page count recalculation" +msgstr "" + +#: views/document_views.py:560 +#, python-format +msgid "%(count)d documents queued for page count recalculation" +msgstr "" + +#: views/document_views.py:568 +msgid "Recalculate the page count of the selected document?" +msgid_plural "Recalculate the page count of the selected documents?" +msgstr[0] "" +msgstr[1] "" + +#: views/document_views.py:579 +#, python-format +msgid "Recalculate the page count of the document: %s?" +msgstr "" + +#: views/document_views.py:596 +#, python-format +msgid "Transformation clear request processed for %(count)d document" +msgstr "" + +#: views/document_views.py:599 +#, python-format +msgid "Transformation clear request processed for %(count)d documents" +msgstr "" + +#: views/document_views.py:607 +msgid "Clear all the page transformations for the selected document?" +msgid_plural "Clear all the page transformations for the selected document?" +msgstr[0] "" +msgstr[1] "" + +#: views/document_views.py:618 +#, python-format +msgid "Clear all the page transformations for the document: %s?" +msgstr "" + +#: views/document_views.py:633 views/document_views.py:661 +#, python-format +msgid "" +"Error deleting the page transformations for document: %(document)s; " +"%(error)s." +msgstr "" + +#: views/document_views.py:669 +msgid "Transformations cloned successfully." +msgstr "" + +#: views/document_views.py:684 views/document_views.py:739 +msgid "Submit" +msgstr "" + +#: views/document_views.py:686 +#, python-format +msgid "Clone page transformations for document: %s" +msgstr "" + +#: views/document_views.py:740 +#, python-format +msgid "Print: %s" +msgstr "" + +#: views/misc_views.py:18 +msgid "Clear the document image cache?" +msgstr "" + +#: views/misc_views.py:25 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views/misc_views.py:31 +msgid "Scan for duplicated documents?" +msgstr "" + +#: views/misc_views.py:38 +msgid "Duplicated document scan queued successfully." +msgstr "" + +#: widgets.py:67 +#, python-format +msgid "Page %(page_number)d of %(total_pages)d" +msgstr "" + +#: widgets.py:90 +msgid "Clickable image" +msgstr "" + +#: widgets.py:253 +msgid "Document page image" +msgstr "" 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 8890fba511..88f8dc340d 100644 --- a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po @@ -1,127 +1,127 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "Tài liệu" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "MIME type" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "Chú thích" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +142,10 @@ 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 "" @@ -176,7 +174,7 @@ msgstr "Ngày thêm vào" msgid "UUID" msgstr "" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "" @@ -208,7 +206,7 @@ msgstr "" msgid "File path in storage" msgstr "" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "" @@ -216,8 +214,8 @@ msgstr "" msgid "Pages" msgstr "Trang" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "Kiểu tài liệu" @@ -226,13 +224,9 @@ msgid "Compress" msgstr "Nén" #: forms.py:197 -#| 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 "" @@ -292,7 +286,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "" @@ -312,16 +306,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -332,7 +325,6 @@ msgid "" msgstr "" #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +348,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "" @@ -396,10 +388,20 @@ msgstr "Sửa" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "Mặc định" @@ -408,134 +410,136 @@ msgstr "Mặc định" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "Mô tả" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "File" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Trang %(page_num)d ngoài phạm vi của %(total_pages)d của %(document)s" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "Tên file" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "Người dùng" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "Tạo tài liệu" @@ -545,11 +549,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/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "Tải xuống tài liệu" @@ -566,12 +569,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "" @@ -619,52 +620,59 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "Xóa tài liệu" + #: settings.py:29 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:40 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:47 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:54 msgid "" @@ -684,6 +692,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +728,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +737,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +752,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +777,6 @@ msgid "All later version after this one will be deleted too." msgstr "" #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,170 +789,170 @@ msgstr "" msgid "Error reverting document version; %s" msgstr "" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -942,17 +960,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1023,9 +1052,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1054,11 +1080,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" @@ -1186,7 +1212,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1200,11 +1227,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" @@ -1227,11 +1254,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" @@ -1248,15 +1275,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" @@ -1310,11 +1341,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" @@ -1335,11 +1366,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" @@ -1353,16 +1384,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1388,15 +1418,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1453,15 +1480,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 48b9ced1a2..82ff25fd71 100644 --- a/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po @@ -1,127 +1,127 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:43+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:88 apps.py:232 apps.py:454 menus.py:8 models.py:229 -#: permissions.py:7 settings.py:13 +#: apps.py:92 apps.py:237 apps.py:486 menus.py:8 models.py:230 permissions.py:7 +#: queues.py:18 settings.py:13 msgid "Documents" msgstr "文档" -#: apps.py:111 -#| msgid "View document types" +#: apps.py:116 msgid "New pages this month" msgstr "" -#: apps.py:120 -#| msgid "New document filename" +#: apps.py:125 msgid "New documents this month" msgstr "" -#: apps.py:129 -#| msgid "Transform documents" +#: apps.py:134 msgid "Total documents" msgstr "" -#: apps.py:135 links.py:280 links.py:285 views/document_type_views.py:49 +#: apps.py:140 links.py:280 links.py:285 views/document_type_views.py:49 msgid "Document types" msgstr "" -#: apps.py:141 views/document_views.py:69 -#| msgid "Documents in storage: %d" +#: apps.py:146 views/document_views.py:73 msgid "Documents in trash" msgstr "" -#: apps.py:146 +#: apps.py:151 msgid "Create a document type" msgstr "" -#: apps.py:148 +#: apps.py:153 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:155 models.py:65 models.py:157 models.py:649 search.py:21 -#: search.py:39 +#: apps.py:160 models.py:66 models.py:158 models.py:655 search.py:21 +#: search.py:42 msgid "Label" msgstr "" -#: apps.py:160 +#: apps.py:165 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:161 apps.py:263 search.py:19 search.py:36 +#: apps.py:166 apps.py:268 search.py:19 search.py:39 msgid "MIME type" msgstr "MIME类型" -#: apps.py:203 apps.py:213 apps.py:220 apps.py:244 +#: apps.py:208 apps.py:218 apps.py:225 apps.py:249 apps.py:280 msgid "Thumbnail" msgstr "" -#: apps.py:209 apps.py:227 apps.py:251 +#: apps.py:214 apps.py:232 apps.py:256 msgid "Type" msgstr "" -#: apps.py:239 models.py:651 +#: apps.py:244 models.py:657 msgid "Enabled" msgstr "" -#: apps.py:254 +#: apps.py:259 msgid "Date time trashed" msgstr "" -#: apps.py:259 +#: apps.py:264 msgid "Time and date" msgstr "" -#: apps.py:267 +#: apps.py:272 msgid "Encoding" msgstr "" -#: apps.py:271 models.py:367 +#: apps.py:276 models.py:372 msgid "Comment" msgstr "评论" -#: apps.py:457 -#| msgid "New document filename" +#: apps.py:286 links.py:293 views/document_views.py:768 +#, fuzzy +#| msgid "Find duplicates" +msgid "Duplicates" +msgstr "find duplicates" + +#: apps.py:489 msgid "New documents per month" msgstr "" -#: apps.py:464 -#| msgid "Document version reverted successfully" +#: apps.py:496 msgid "New document versions per month" msgstr "" -#: apps.py:471 -#| msgid "View document types" +#: apps.py:503 msgid "New document pages per month" msgstr "" -#: apps.py:478 +#: apps.py:510 msgid "Total documents at each month" msgstr "" -#: apps.py:485 +#: apps.py:517 msgid "Total document versions at each month" msgstr "" -#: apps.py:492 +#: apps.py:524 msgid "Total document pages at each month" msgstr "" @@ -142,12 +142,10 @@ 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 "" @@ -176,7 +174,7 @@ msgstr "添加日期" msgid "UUID" msgstr "UUID" -#: forms.py:120 models.py:167 +#: forms.py:120 models.py:168 msgid "Language" msgstr "" @@ -208,7 +206,7 @@ msgstr "在存储中存在" msgid "File path in storage" msgstr "在存储中的文件路径" -#: forms.py:150 models.py:382 +#: forms.py:150 models.py:388 search.py:24 search.py:48 msgid "Checksum" msgstr "校验码" @@ -216,8 +214,8 @@ msgstr "校验码" msgid "Pages" msgstr "页面" -#: forms.py:179 models.py:105 models.py:153 models.py:646 search.py:16 -#: search.py:32 +#: forms.py:179 models.py:106 models.py:154 models.py:652 search.py:16 +#: search.py:35 msgid "Document type" msgstr "文档类型" @@ -226,13 +224,9 @@ msgid "Compress" msgstr "压缩" #: forms.py:197 -#| 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 "" @@ -292,7 +286,7 @@ msgstr "" msgid "Change type" msgstr "" -#: links.py:101 links.py:135 views/document_views.py:380 +#: links.py:101 links.py:135 views/document_views.py:418 msgid "Download" msgstr "下载" @@ -312,16 +306,15 @@ msgstr "" msgid "Download version" msgstr "" -#: links.py:151 views/document_views.py:51 +#: links.py:151 views/document_views.py:55 msgid "All documents" msgstr "" -#: links.py:154 models.py:889 views/document_views.py:341 +#: links.py:154 models.py:898 views/document_views.py:379 msgid "Recent documents" msgstr "" #: links.py:158 -#| msgid "Transform documents" msgid "Trash can" msgstr "" @@ -332,7 +325,6 @@ msgid "" msgstr "清除图像信息有助于加速文档显示和变换结果交互。" #: links.py:169 -#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -356,7 +348,7 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:205 models.py:228 models.py:361 models.py:871 +#: links.py:205 models.py:229 models.py:366 models.py:880 models.py:904 msgid "Document" msgstr "" @@ -396,10 +388,20 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:276 models.py:657 +#: links.py:276 models.py:663 msgid "Quick labels" msgstr "" +#: links.py:288 models.py:907 models.py:920 views/document_views.py:777 +msgid "Duplicated documents" +msgstr "duplicated documents" + +#: links.py:297 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document scan" +msgstr "duplicated documents" + #: literals.py:14 msgid "Default" msgstr "" @@ -408,134 +410,136 @@ msgstr "" msgid "All pages" msgstr "" -#: models.py:69 +#: 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:71 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:75 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:79 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:81 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:86 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:106 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:157 +#: models.py:158 msgid "The name of the document" msgstr "" -#: models.py:160 search.py:22 search.py:42 +#: models.py:161 search.py:22 search.py:45 msgid "Description" msgstr "描述" -#: models.py:163 +#: models.py:164 models.py:910 msgid "Added" msgstr "" -#: models.py:171 +#: models.py:172 msgid "In trash?" msgstr "" -#: models.py:176 +#: models.py:177 msgid "Date and time trashed" msgstr "" -#: models.py:180 +#: models.py:181 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:183 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:191 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:364 +#: models.py:369 msgid "Timestamp" msgstr "" -#: models.py:373 +#: models.py:378 msgid "File" msgstr "文件" -#: models.py:454 models.py:455 models.py:670 +#: models.py:460 models.py:461 models.py:676 msgid "Document version" msgstr "" -#: models.py:656 +#: models.py:662 msgid "Quick label" msgstr "" -#: models.py:674 +#: models.py:680 msgid "Page number" msgstr "" -#: models.py:679 +#: models.py:685 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "文档%(document)s页%(page_num)d超出%(total_pages)d" -#: models.py:695 models.py:840 models.py:857 +#: models.py:701 models.py:849 models.py:866 msgid "Document page" msgstr "" -#: models.py:696 models.py:858 +#: models.py:702 models.py:867 msgid "Document pages" msgstr "" -#: models.py:842 +#: models.py:851 msgid "Filename" msgstr "文件名" -#: models.py:845 +#: models.py:854 msgid "Document page cached image" msgstr "" -#: models.py:846 +#: models.py:855 msgid "Document page cached images" msgstr "" -#: models.py:868 +#: models.py:877 msgid "User" msgstr "用户" -#: models.py:874 +#: models.py:883 msgid "Accessed" msgstr "" -#: models.py:888 +#: models.py:897 msgid "Recent document" msgstr "" +#: models.py:919 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Duplicated document" +msgstr "duplicated documents" + #: permissions.py:10 msgid "Create documents" msgstr "创建文档" @@ -545,11 +549,10 @@ msgid "Delete documents" msgstr "删除文档" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views/document_views.py:382 +#: permissions.py:19 views/document_views.py:420 msgid "Download documents" msgstr "下载文档" @@ -566,12 +569,10 @@ msgid "Edit document properties" msgstr "编辑文档属性" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore trashed document" msgstr "" @@ -619,41 +620,44 @@ msgstr "" msgid "Uploads" msgstr "" -#: queues.py:20 +#: queues.py:23 msgid "Check document type delete periods" msgstr "" -#: queues.py:24 +#: queues.py:27 msgid "Check document type trash periods" msgstr "" -#: queues.py:28 -#| msgid "Delete documents" +#: queues.py:31 msgid "Delete document stubs" msgstr "" -#: queues.py:33 -#| msgid "Clear the document image cache" +#: queues.py:36 msgid "Clear image cache" msgstr "" -#: queues.py:38 +#: queues.py:41 msgid "Generate document page image" msgstr "" -#: queues.py:43 +#: queues.py:46 msgid "Update document page count" msgstr "" -#: queues.py:47 -#| msgid "upload new documents" +#: queues.py:50 msgid "Upload new document version" msgstr "" +#: queues.py:54 +#, fuzzy +#| msgid "Delete documents" +msgid "Delete a document" +msgstr "删除文档" + #: settings.py:29 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:40 @@ -684,6 +688,18 @@ msgstr "" msgid "List of supported document languages." msgstr "" +#: settings.py:79 +msgid "" +"Disables the first cache tier which stores high resolution, non transformed " +"versions of documents's pages." +msgstr "" + +#: settings.py:86 +msgid "" +"Disables the second cache tier which stores medium to low resolution, " +"transformed (rotated, zoomed, etc) versions of documents' pages." +msgstr "" + #: views/document_page_views.py:50 #, python-format msgid "Pages for document: %s" @@ -708,7 +724,6 @@ msgstr "" #: views/document_type_views.py:38 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -718,7 +733,6 @@ msgstr "" #: views/document_type_views.py:77 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -734,7 +748,8 @@ msgstr "" #: views/document_type_views.py:139 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views/document_type_views.py:164 @@ -758,7 +773,6 @@ msgid "All later version after this one will be deleted too." msgstr "此版本以后的所有版本将被删除" #: views/document_version_views.py:59 -#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -771,170 +785,170 @@ msgstr "文档版本恢复成功" msgid "Error reverting document version; %s" msgstr "恢复文档版本失败%s" -#: views/document_views.py:81 +#: views/document_views.py:85 msgid "Delete the selected document?" msgstr "" -#: views/document_views.py:100 +#: views/document_views.py:106 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views/document_views.py:108 +#: views/document_views.py:114 msgid "Delete the selected documents?" msgstr "" -#: views/document_views.py:120 +#: views/document_views.py:126 #, python-format msgid "Document type change request performed on %(count)d document" msgstr "" -#: views/document_views.py:123 +#: views/document_views.py:129 #, python-format msgid "Document type change request performed on %(count)d documents" msgstr "" -#: views/document_views.py:130 +#: views/document_views.py:136 msgid "Change" msgstr "" -#: views/document_views.py:132 +#: views/document_views.py:138 msgid "Change the type of the selected document" msgid_plural "Change the type of the selected documents" msgstr[0] "" -#: views/document_views.py:143 +#: views/document_views.py:149 #, python-format msgid "Change the type of the document: %s" msgstr "" -#: views/document_views.py:164 +#: views/document_views.py:170 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views/document_views.py:184 +#: views/document_views.py:201 +#, fuzzy, python-format +#| msgid "Duplicated documents" +msgid "Duplicates for document: %s" +msgstr "duplicated documents" + +#: views/document_views.py:220 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views/document_views.py:200 +#: views/document_views.py:236 msgid "Restore the selected document?" msgstr "" -#: views/document_views.py:221 +#: views/document_views.py:257 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views/document_views.py:229 +#: views/document_views.py:265 msgid "Restore the selected documents?" msgstr "" -#: views/document_views.py:256 +#: views/document_views.py:292 #, python-format msgid "Preview of document: %s" msgstr "" -#: views/document_views.py:264 +#: views/document_views.py:300 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views/document_views.py:287 +#: views/document_views.py:323 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views/document_views.py:300 +#: views/document_views.py:336 msgid "Move the selected documents to the trash?" msgstr "" -#: views/document_views.py:318 +#: views/document_views.py:354 #, python-format msgid "Properties for document: %s" msgstr "" -#: views/document_views.py:324 +#: views/document_views.py:360 msgid "Empty trash?" msgstr "" -#: views/document_views.py:335 -#| msgid "Document deleted successfully." +#: views/document_views.py:373 msgid "Trash emptied successfully" msgstr "" -#: views/document_views.py:519 +#: views/document_views.py:557 #, python-format msgid "%(count)d document queued for page count recalculation" msgstr "" -#: views/document_views.py:522 +#: views/document_views.py:560 #, python-format msgid "%(count)d documents queued for page count recalculation" msgstr "" -#: views/document_views.py:530 +#: views/document_views.py:568 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views/document_views.py:541 +#: views/document_views.py:579 #, python-format msgid "Recalculate the page count of the document: %s?" msgstr "" -#: views/document_views.py:558 +#: views/document_views.py:596 #, python-format msgid "Transformation clear request processed for %(count)d document" msgstr "" -#: views/document_views.py:561 +#: views/document_views.py:599 #, python-format msgid "Transformation clear request processed for %(count)d documents" msgstr "" -#: views/document_views.py:569 +#: views/document_views.py:607 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected document?" msgstr[0] "" -#: views/document_views.py:580 +#: views/document_views.py:618 #, python-format msgid "Clear all the page transformations for the document: %s?" msgstr "" -#: views/document_views.py:595 views/document_views.py:623 +#: views/document_views.py:633 views/document_views.py:661 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "删除文档: %(document)s变换页数失败%(error)s" -#: views/document_views.py:631 -#| msgid "Document page transformation created successfully." +#: views/document_views.py:669 msgid "Transformations cloned successfully." msgstr "" -#: views/document_views.py:646 views/document_views.py:701 +#: views/document_views.py:684 views/document_views.py:739 msgid "Submit" msgstr "提交" -#: views/document_views.py:648 +#: views/document_views.py:686 #, python-format msgid "Clone page transformations for document: %s" msgstr "" -#: views/document_views.py:702 +#: views/document_views.py:740 #, python-format msgid "Print: %s" msgstr "" #: views/misc_views.py:18 -#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -942,17 +956,28 @@ msgstr "" msgid "Document cache clearing queued successfully." msgstr "" -#: widgets.py:64 +#: views/misc_views.py:31 +#, fuzzy +#| msgid "Duplicated documents" +msgid "Scan for duplicated documents?" +msgstr "duplicated documents" + +#: views/misc_views.py:38 +#, fuzzy +#| msgid "Document \"%s\" edited successfully." +msgid "Duplicated document scan queued successfully." +msgstr "Document \"%s\" edited successfully." + +#: widgets.py:67 #, python-format msgid "Page %(page_number)d of %(total_pages)d" msgstr "" -#: widgets.py:87 -#| msgid "Page image" +#: widgets.py:90 msgid "Clickable image" msgstr "" -#: widgets.py:242 +#: widgets.py:253 msgid "Document page image" msgstr "" @@ -1023,9 +1048,6 @@ msgstr "" #~ msgid "Document: %(document)s error moving to trash: %(error)s" #~ msgstr "Document: %(document)s delete error: %(error)s" -#~ msgid "Document \"%s\" edited successfully." -#~ msgstr "Document \"%s\" edited successfully." - #~ msgid "Return" #~ msgstr "Return" @@ -1054,11 +1076,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" @@ -1186,7 +1208,8 @@ msgstr "" #~ msgid "Transformations for: %s" #~ msgstr "transformations for: %s" -#~ 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" @@ -1200,11 +1223,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" @@ -1227,11 +1250,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" @@ -1248,15 +1271,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" @@ -1310,11 +1337,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" @@ -1335,11 +1362,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" @@ -1353,16 +1380,15 @@ msgstr "" #~ msgid "Release level serial" #~ msgstr "Release level serial" -#~ msgid "Find duplicates" -#~ msgstr "find duplicates" - #~ msgid "Find all duplicates" #~ 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" @@ -1388,15 +1414,12 @@ msgstr "" #~ msgid "Are you sure you wish to find all duplicates?" #~ msgstr "Are you sure you wish to find all duplicates?" -#~ msgid "Duplicated documents" -#~ 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" @@ -1453,15 +1476,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 b3e9bab681..f30d860c9d 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,21 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 msgid "Dynamic search" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -59,13 +61,11 @@ msgstr "أقصى عدد لجلب وعرض نتائج البحث." #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -93,7 +93,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 bda88fcd1e..621d9aa0b1 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,21 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 msgid "Dynamic search" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -59,13 +60,11 @@ msgstr "Максимален брой резултати от търсене з #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -93,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/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po index 54e1221f02..447cdc6da1 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,21 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 msgid "Dynamic search" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -59,13 +61,11 @@ msgstr "Maksimalni broj pretražnih hitova da se rezultati prikažu." #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -93,7 +93,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 117705faf9..8402fb4be9 100644 --- a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po @@ -1,28 +1,29 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 msgid "Dynamic search" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -58,13 +59,11 @@ msgstr "" #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -92,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/de_DE/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po index 99eaf4db61..d5f771ef68 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: # Jesaja Everling , 2017 @@ -12,21 +12,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-24 22:45+0000\n" "Last-Translator: Jesaja Everling \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 msgid "Dynamic search" msgstr "Dynamische Suche" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "Kein passendes Such-Model gefunden" @@ -38,7 +39,10 @@ msgstr "Alle Felder" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Wenn aktiviert, werden nur Ergebnisse angezeigt bei denen alle Felder zutreffen. Ohne diese Option werden Ergebnisse mit mindestens einem Feld angezeigt." +msgstr "" +"Wenn aktiviert, werden nur Ergebnisse angezeigt bei denen alle Felder " +"zutreffen. Ohne diese Option werden Ergebnisse mit mindestens einem Feld " +"angezeigt." #: forms.py:29 msgid "Search terms" @@ -62,13 +66,11 @@ msgstr "Maximale Anzahl an Treffern, die angezeigt werden soll" #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "Suchergebnisse für: %s" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "Suche nach: %s" @@ -96,7 +98,8 @@ msgstr "Suche nach: %s" #~ 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 b5aeee9a31..36f21a8101 100644 --- a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po @@ -1,28 +1,29 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 msgid "Dynamic search" msgstr "Dynamic search" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "No search model matching the query" @@ -34,7 +35,9 @@ msgstr "Match all" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "When checked, only results that match all fields will be returned. When unchecked results that match at least one field will be returned." +msgstr "" +"When checked, only results that match all fields will be returned. When " +"unchecked results that match at least one field will be returned." #: forms.py:29 msgid "Search terms" @@ -58,13 +61,11 @@ msgstr "Maximum amount search hits to fetch and display." #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "Search results for: %s" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "Search for: %s" @@ -92,7 +93,8 @@ msgstr "Search for: %s" #~ 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/es/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po index 520205c066..793f3a1282 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,21 +12,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-28 19:55+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 msgid "Dynamic search" msgstr "Búsqueda dinámica " -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "Ningún modelo de búsqueda que coincida con la consulta" @@ -38,7 +39,10 @@ msgstr "Parear todos" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Cuando se selecciona, sólo se devolverán los resultados que coincidan con todos los campos. Si no se selecciona los resultados que coincidan con al menos un campo se devolverá." +msgstr "" +"Cuando se selecciona, sólo se devolverán los resultados que coincidan con " +"todos los campos. Si no se selecciona los resultados que coincidan con al " +"menos un campo se devolverá." #: forms.py:29 msgid "Search terms" @@ -62,13 +66,11 @@ msgstr "La cantidad máxima de resultados de búsqueda a recabar y mostrar." #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "Resultados de la búsqueda para: %s" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "Búsqueda para: %s" @@ -96,7 +98,8 @@ msgstr "Búsqueda para: %s" #~ 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 cd6c8b8ec9..778ad0a069 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 @@ -10,21 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-04 08:02+0000\n" "Last-Translator: Nima Towhidi \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 msgid "Dynamic search" msgstr "جستجوی پویا" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "هیچ مدل جستجویی با این عبارت جستجو پیدا نشد." @@ -36,7 +37,10 @@ msgstr "انطباق با همه" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "با انتخاب این گزینه، فقط نتایجی که با همه‌ی فیلدها منطبق باشند برگردانده می‌شوند. وقتی این گزینه انتخاب نشده باشد، نتایجی که دست کم با یک فیلد منطبق باشند برگردانده می‌شوند." +msgstr "" +"با انتخاب این گزینه، فقط نتایجی که با همه‌ی فیلدها منطبق باشند برگردانده " +"می‌شوند. وقتی این گزینه انتخاب نشده باشد، نتایجی که دست کم با یک فیلد منطبق " +"باشند برگردانده می‌شوند." #: forms.py:29 msgid "Search terms" @@ -60,13 +64,11 @@ msgstr "جداکثر نتایج قابل نمایش" #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -94,7 +96,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 f7fd103933..c8cc2844cc 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,21 +11,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 msgid "Dynamic search" msgstr "Recherche dynamique" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -61,13 +62,11 @@ msgstr "Nombre maximum de résultats de recherche à traiter et afficher." #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -95,7 +94,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/hu/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po index d7f74a8b67..59a7c3338b 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,21 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 msgid "Dynamic search" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -59,13 +60,11 @@ msgstr "A letölthető és megjeleníthető keresési találatok maximális szá #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -93,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/id/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po index ad8b270c3d..358c02a2ce 100644 --- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po @@ -1,28 +1,29 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 msgid "Dynamic search" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -58,13 +59,11 @@ msgstr "" #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -92,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/it/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po index 4b56fb8097..b89d2d0ab5 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,21 +12,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-30 08:15+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 msgid "Dynamic search" msgstr "Ricerca dinamica" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -62,13 +63,11 @@ msgstr "Massimo numero ricerca risultati da recuperare e visualizzare. " #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "Risultati ricerca per: %s" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "Cerca: %s" @@ -96,7 +95,8 @@ msgstr "Cerca: %s" #~ 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 5fbc30fdbe..dc4f66a0e9 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: # Evelijn Saaltink , 2016 @@ -11,21 +11,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 msgid "Dynamic search" msgstr "Dynamisch zoeken" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -61,13 +62,11 @@ msgstr "Het maximum aantal zoekresultaten." #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -95,7 +94,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 dc501f5612..748f33baee 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,21 +12,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:16 msgid "Dynamic search" msgstr "Dynamiczne wyszukiwanie" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -62,13 +65,11 @@ msgstr "Maksymalna liczba trafień do wyświetlenia na ekranie." #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -96,7 +97,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/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po index dc60c8ba89..a45bb2de07 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,21 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 msgid "Dynamic search" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -60,13 +61,11 @@ msgstr "Número máximo de resultados a buscar e mostrar." #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -94,7 +93,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 6ba40113c0..b1c93fcfbf 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: # Aline Freitas , 2016 @@ -12,21 +12,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-04 02:24+0000\n" "Last-Translator: Jadson Ribeiro \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 msgid "Dynamic search" msgstr "Busca dinâmica" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "Nenhum modelo de pesquisa que corresponda à consulta" @@ -38,7 +39,10 @@ msgstr "Corresponder a todos" msgid "" "When checked, only results that match all fields will be returned. When " "unchecked results that match at least one field will be returned." -msgstr "Quando marcado, somente os resultados que correspondem a todos os campos serão retornados. Quando os resultados não verificados correspondentes a pelo menos um campo serão retornados." +msgstr "" +"Quando marcado, somente os resultados que correspondem a todos os campos " +"serão retornados. Quando os resultados não verificados correspondentes a " +"pelo menos um campo serão retornados." #: forms.py:29 msgid "Search terms" @@ -62,13 +66,11 @@ msgstr "Quantidade máxima acessos para a pesquisa buscar e mostrar." #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "Resultados da pesquisa para: %s" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "Pesquisar por: %s" @@ -96,7 +98,8 @@ msgstr "Pesquisar por: %s" #~ 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 d69d4a2cd9..c4176b3aaa 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,21 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -59,13 +61,11 @@ msgstr "Căutare suma maximă hit-uri pentru a prelua și afișa." #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -93,7 +93,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 89853619f9..cacee2f508 100644 --- a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po @@ -1,28 +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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -58,13 +61,11 @@ msgstr "Максимальное количество отображаемых #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -92,7 +93,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 6197da0a33..13c8bede2c 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,28 +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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:16 msgid "Dynamic search" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -58,13 +60,11 @@ msgstr "" #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -92,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..000fa0d8ab --- /dev/null +++ b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,66 @@ +# 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: 2017-07-09 02:27-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:16 +msgid "Dynamic search" +msgstr "" + +#: classes.py:27 +msgid "No search model matching the query" +msgstr "" + +#: forms.py:9 +msgid "Match all" +msgstr "" + +#: forms.py:10 +msgid "" +"When checked, only results that match all fields will be returned. When " +"unchecked results that match at least one field will be returned." +msgstr "" + +#: forms.py:29 +msgid "Search terms" +msgstr "" + +#: links.py:8 settings.py:8 views.py:51 views.py:62 +msgid "Search" +msgstr "" + +#: links.py:11 views.py:76 +msgid "Advanced search" +msgstr "" + +#: links.py:15 +msgid "Search again" +msgstr "" + +#: settings.py:11 +msgid "Maximum amount search hits to fetch and display." +msgstr "" + +#: views.py:24 +#, python-format +msgid "Search results for: %s" +msgstr "" + +#: views.py:64 +#, python-format +msgid "Search for: %s" +msgstr "" 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 d74e5fa1ca..a35231dfdd 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,21 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 msgid "Dynamic search" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -59,13 +60,11 @@ msgstr "" #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -93,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/zh_CN/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po index b2514c569e..3a4125abec 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,21 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 msgid "Dynamic search" msgstr "" -#: classes.py:26 +#: classes.py:27 msgid "No search model matching the query" msgstr "" @@ -59,13 +60,11 @@ msgstr "搜索的最大查询和显示数量" #: views.py:24 #, python-format -#| msgid "Search results" msgid "Search results for: %s" msgstr "" #: views.py:64 #, python-format -#| msgid "Search error: %s" msgid "Search for: %s" msgstr "" @@ -93,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/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po index ac890f70aa..f7e7941320 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 msgid "Events" @@ -33,7 +35,7 @@ msgstr "" msgid "Verb" msgstr "" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "" diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po index 53e7136e29..4d78fd6597 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -33,7 +34,7 @@ msgstr "" msgid "Verb" msgstr "" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" 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 10a35c4fad..efddbe3815 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 msgid "Events" @@ -33,7 +35,7 @@ msgstr "" msgid "Verb" msgstr "" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "" diff --git a/mayan/apps/events/locale/da/LC_MESSAGES/django.po b/mayan/apps/events/locale/da/LC_MESSAGES/django.po index c46564941e..3217bb73ff 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -33,7 +34,7 @@ msgstr "" msgid "Verb" msgstr "" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" 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 0c2835539d..97c2c88192 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -33,7 +34,7 @@ msgstr "Akteur" msgid "Verb" msgstr "Verb" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "Unbekannter oder obsoleter Ereignistyp: {0}" diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.po b/mayan/apps/events/locale/en/LC_MESSAGES/django.po index 11d5660099..45a6d71117 100644 --- a/mayan/apps/events/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/en/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:31 links.py:35 permissions.py:7 views.py:36 @@ -33,7 +34,7 @@ msgstr "Actor" msgid "Verb" msgstr "Verb" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "Unknown or obsolete event type: {0}" diff --git a/mayan/apps/events/locale/es/LC_MESSAGES/django.po b/mayan/apps/events/locale/es/LC_MESSAGES/django.po index c86599b9b6..c6fd4a7e10 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -34,7 +35,7 @@ msgstr "Actor" msgid "Verb" msgstr "Verbo" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "Tipo de evento desconocido u obsoleto: {0}" diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po index 4cad6e6c07..55c5925f3e 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -34,7 +35,7 @@ msgstr "فعال" msgid "Verb" msgstr "فعل" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "نوع رخداد ناشناخته :{0}" diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po index 0d63ea7ca5..aa9a63c832 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -35,7 +36,7 @@ msgstr "Acteur" msgid "Verb" msgstr "Verbe" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "Type d'évènement inconnu ou obsolète: {0}" diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po index 7af500d7bc..56d2bd4e66 100644 --- a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/events/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -33,7 +34,7 @@ msgstr "" msgid "Verb" msgstr "" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "" diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.po b/mayan/apps/events/locale/id/LC_MESSAGES/django.po index fc6cc1323d..f86cff3452 100644 --- a/mayan/apps/events/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -33,7 +34,7 @@ msgstr "" msgid "Verb" msgstr "" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "" diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.po b/mayan/apps/events/locale/it/LC_MESSAGES/django.po index a2b5958cb1..8eeca95577 100644 --- a/mayan/apps/events/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-09-24 09:51+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:31 links.py:35 permissions.py:7 views.py:36 @@ -34,7 +35,7 @@ msgstr "Attore" msgid "Verb" msgstr "Verbo" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "Tipo di evento obsoleto o sconosciuto: {0}" 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 6f1de81fa4..9648bd1273 100644 --- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-10-28 12:33+0000\n" "Last-Translator: Evelijn Saaltink \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:31 links.py:35 permissions.py:7 views.py:36 @@ -34,7 +35,7 @@ msgstr "Acteur" msgid "Verb" msgstr "Werkwoord" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "Onbekende of verouderde evenementsoort: {0}" diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po index 0776581853..56b74180fe 100644 --- a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:18 links.py:31 links.py:35 permissions.py:7 views.py:36 msgid "Events" @@ -34,7 +37,7 @@ msgstr "Czynnik" msgid "Verb" msgstr "Słowo" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "Nieznany, bądź przestarzały typ zdarzenia: {0}" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po index 8407947fe8..e8721f229c 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -33,7 +34,7 @@ msgstr "Actor" msgid "Verb" msgstr "Verbo" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "Tipo de evento obsoleto ou desconhecido: {0}" 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 a63bdd6c66..f0e6544814 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -35,7 +36,7 @@ msgstr "Ator" msgid "Verb" msgstr "Verbo" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "Desconhecido ou obsoletos tipo de evento: {0}" 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 8ae13c2517..c74c10b9fe 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 msgid "Events" @@ -33,7 +35,7 @@ msgstr "" msgid "Verb" msgstr "" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "" diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po index 90e834148b..e2838995a6 100644 --- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-07-19 20:01+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:18 links.py:31 links.py:35 permissions.py:7 views.py:36 msgid "Events" @@ -34,7 +37,7 @@ msgstr "Субъект" msgid "Verb" msgstr "Глагол" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "Неизвестный или устаревший тип события: {0}" 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 67f66cc686..a12146b1af 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 msgid "Events" @@ -33,7 +35,7 @@ msgstr "" msgid "Verb" msgstr "" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "" diff --git a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..7120963bce --- /dev/null +++ b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +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. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-09 02:27-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:18 links.py:31 links.py:35 permissions.py:7 views.py:36 +msgid "Events" +msgstr "" + +#: apps.py:27 +msgid "Timestamp" +msgstr "" + +#: apps.py:29 +msgid "Actor" +msgstr "" + +#: apps.py:31 +msgid "Verb" +msgstr "" + +#: classes.py:23 +#, python-brace-format +msgid "Unknown or obsolete event type: {0}" +msgstr "" + +#: models.py:13 +msgid "Name" +msgstr "" + +#: models.py:17 +msgid "Event type" +msgstr "" + +#: models.py:18 +msgid "Event types" +msgstr "" + +#: permissions.py:9 +msgid "Access the events of an object" +msgstr "" + +#: views.py:29 views.py:84 +msgid "Target" +msgstr "" + +#: views.py:69 +#, python-format +msgid "Events for: %s" +msgstr "" + +#: views.py:92 +#, python-format +msgid "Events of type: %s" +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 f0f66173b2..a2697a3fb3 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -33,7 +34,7 @@ msgstr "" msgid "Verb" msgstr "" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" 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 95f874d713..36afc382d0 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:31 links.py:35 permissions.py:7 views.py:36 @@ -33,7 +34,7 @@ msgstr "" msgid "Verb" msgstr "" -#: classes.py:22 +#: classes.py:23 #, python-brace-format msgid "Unknown or obsolete event type: {0}" msgstr "" diff --git a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po index 346a6f5a26..75b3302b72 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,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 #: views.py:95 @@ -89,7 +91,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +99,6 @@ msgid "Remove documents from folders" msgstr "إزالة وثائق من المجلدات" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -112,7 +112,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -189,7 +188,6 @@ msgid "Remove" msgstr "إزالة" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -201,7 +199,6 @@ msgstr[5] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -211,13 +208,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -297,11 +292,11 @@ msgstr "" #~ 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" @@ -334,12 +329,12 @@ msgstr "" #~ 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 9f0a1e2c30..e1ac67c99c 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,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -90,7 +91,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -99,7 +99,6 @@ msgid "Remove documents from folders" msgstr "Премахване на документи от папки" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -113,7 +112,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -186,7 +184,6 @@ msgid "Remove" msgstr "Премахнете" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -194,7 +191,6 @@ msgstr[1] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -204,13 +200,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -282,11 +276,11 @@ msgstr "" #~ 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" @@ -319,12 +313,12 @@ msgstr "" #~ 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 fd58eb6a7b..2bf750de44 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,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 #: views.py:95 @@ -89,7 +91,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +99,6 @@ msgid "Remove documents from folders" msgstr "Ukloniti dokumente iz foldera" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -112,7 +112,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -186,7 +185,6 @@ msgid "Remove" msgstr "Ukloniti" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -195,7 +193,6 @@ msgstr[2] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -205,13 +202,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -285,11 +280,11 @@ msgstr "" #~ 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" @@ -322,12 +317,12 @@ msgstr "" #~ 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 d4c1a2dcab..3203cae4df 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -89,7 +90,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +98,6 @@ msgid "Remove documents from folders" msgstr "Fjern dokumenter fra mapper" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -112,7 +111,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -185,7 +183,6 @@ msgid "Remove" msgstr "" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -193,7 +190,6 @@ msgstr[1] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -203,13 +199,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -281,11 +275,11 @@ msgstr "" #~ 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" @@ -318,12 +312,12 @@ msgstr "" #~ 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 8416e18860..33635ef128 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,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-26 15:54+0000\n" "Last-Translator: Jesaja Everling \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 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -94,7 +95,6 @@ msgid "Edit folders" msgstr "Ordner bearbeiten" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Ordner löschen" @@ -103,7 +103,6 @@ msgid "Remove documents from folders" msgstr "Dokumente aus Ordnern entfernen" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "Ordner anzeigen" @@ -117,7 +116,6 @@ msgstr "Primärschlüssel des hinzuzufügenden Dokuments." #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Ordner %s löschen?" @@ -190,7 +188,6 @@ msgid "Remove" msgstr "Entfernen" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -198,7 +195,6 @@ msgstr[1] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "Dokument \"%s\" aus Ordnern entfernen" @@ -208,13 +204,11 @@ msgstr "Ordner aus denen das ausgewählte Dokument entfernt wird." #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -286,11 +280,11 @@ msgstr "" #~ 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" @@ -323,12 +317,12 @@ msgstr "" #~ 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 e58e11838c..a94b02cc8f 100644 --- a/mayan/apps/folders/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -88,7 +89,6 @@ msgid "Edit folders" msgstr "Edit folders" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Delete folders" @@ -97,7 +97,6 @@ msgid "Remove documents from folders" msgstr "Remove documents from folders" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "View folders" @@ -111,7 +110,6 @@ msgstr "Primary key of the document to be added." #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Delete the folder: %s?" @@ -184,7 +182,6 @@ msgid "Remove" msgstr "Remove" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "Remove document from folders" @@ -192,7 +189,6 @@ msgstr[1] "Remove documents from folders" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "Remove document \"%s\" to folders" @@ -202,13 +198,11 @@ msgstr "Folders from which the selected documents will be removed." #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "Document: %(document)s is not in folder: %(folder)s." #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "Document: %(document)s removed from folder: %(folder)s." @@ -280,11 +274,11 @@ msgstr "Document: %(document)s removed from folder: %(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" @@ -317,12 +311,12 @@ msgstr "Document: %(document)s removed from folder: %(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/es/LC_MESSAGES/django.po b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po index d8964deaa4..f34f84b8ab 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,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-28 19: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:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -92,7 +93,6 @@ msgid "Edit folders" msgstr "Editar carpetas" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Borrar carpetas" @@ -101,7 +101,6 @@ msgid "Remove documents from folders" msgstr "Eliminar documentos de las carpetas" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "Ver carpetas" @@ -115,7 +114,6 @@ msgstr "Llave primaria del documento a ser agregado." #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "¿Eliminar la carpeta: %s?" @@ -188,7 +186,6 @@ msgid "Remove" msgstr "Eliminar" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -196,7 +193,6 @@ msgstr[1] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -206,13 +202,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -284,11 +278,11 @@ msgstr "" #~ 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" @@ -321,12 +315,12 @@ msgstr "" #~ 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 29056ea62a..c76809318e 100644 --- a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/folders/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -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 "حذف اسناد از پرونده ها" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -111,7 +110,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -183,14 +181,12 @@ msgid "Remove" msgstr "حذف" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -200,13 +196,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -276,11 +270,11 @@ msgstr "" #~ 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" @@ -313,12 +307,12 @@ msgstr "" #~ 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 46e01b46cc..5479db7566 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,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -91,7 +92,6 @@ msgid "Edit folders" msgstr "Modifier les dossiers" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Supprimer les dossiers" @@ -100,7 +100,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" @@ -114,7 +113,6 @@ msgstr "Clé primaire du document à ajouter." #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Supprimer les dossier : %s ?" @@ -165,7 +163,8 @@ msgstr "" #: views.py:190 #, 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:200 #, python-format @@ -187,7 +186,6 @@ msgid "Remove" msgstr "Supprimer" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -195,7 +193,6 @@ msgstr[1] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -205,13 +202,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -283,11 +278,11 @@ msgstr "" #~ 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" @@ -320,12 +315,12 @@ msgstr "" #~ 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 22231fd87f..b2c69ef970 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -89,7 +90,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +98,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 "" @@ -112,7 +111,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -185,7 +183,6 @@ msgid "Remove" msgstr "" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -193,7 +190,6 @@ msgstr[1] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -203,13 +199,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -281,11 +275,11 @@ msgstr "" #~ 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" @@ -318,12 +312,12 @@ msgstr "" #~ 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 07e4bbdfe0..dba1ad3d49 100644 --- a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/folders/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -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 "" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -111,7 +110,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -183,14 +181,12 @@ msgid "Remove" msgstr "hapus" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -200,13 +196,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -276,11 +270,11 @@ msgstr "" #~ 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" @@ -313,12 +307,12 @@ msgstr "" #~ 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 fce360910d..2e996bf729 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,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-30 08:18+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -93,7 +94,6 @@ msgid "Edit folders" msgstr "Modifica cartelle" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Cancella cartelle" @@ -102,7 +102,6 @@ msgid "Remove documents from folders" msgstr "Rimuovere i documenti da cartelle" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "Vedi cartelle" @@ -116,7 +115,6 @@ msgstr "Chiave primaria del documento da aggiungere" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Cancellare la cartella: %s?" @@ -172,7 +170,8 @@ msgstr "Documento: %(document)s è già nella cartella: %(folder)s." #: views.py:200 #, 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:212 #, python-format @@ -189,7 +188,6 @@ msgid "Remove" msgstr "Rimuovi" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -197,7 +195,6 @@ msgstr[1] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -207,13 +204,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -285,11 +280,11 @@ msgstr "" #~ 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" @@ -322,12 +317,12 @@ msgstr "" #~ 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 e097ffa41c..cd01595b57 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: # Evelijn Saaltink , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -90,7 +91,6 @@ msgid "Edit folders" msgstr "Bewerk mappen" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Verwijder mappe" @@ -99,7 +99,6 @@ msgid "Remove documents from folders" msgstr "Verwijder documenten van mappen" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "Bekijk mappen" @@ -113,7 +112,6 @@ msgstr "Primaire sleutel van het toe te voegen document." #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Verwijder de map: %s?" @@ -186,7 +184,6 @@ msgid "Remove" msgstr "Verwijder" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -194,7 +191,6 @@ msgstr[1] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -204,13 +200,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -282,11 +276,11 @@ msgstr "" #~ 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" @@ -319,12 +313,12 @@ msgstr "" #~ 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 36f4c45918..638d6f2903 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,15 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-02 17:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 #: views.py:95 @@ -91,7 +94,6 @@ msgid "Edit folders" msgstr "Edytuj foldery" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Usuń foldery" @@ -100,7 +102,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" @@ -114,7 +115,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Usunąć folder: %s?" @@ -189,7 +189,6 @@ msgid "Remove" msgstr "Usuń" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -199,7 +198,6 @@ msgstr[3] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -209,13 +207,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -291,11 +287,11 @@ msgstr "" #~ 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" @@ -328,12 +324,12 @@ msgstr "" #~ 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 3e1b1193b8..a30c55303d 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,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -91,7 +92,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -100,7 +100,6 @@ msgid "Remove documents from folders" msgstr "Remover documentos das pastas" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -114,7 +113,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -187,7 +185,6 @@ msgid "Remove" msgstr "Remover" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -195,7 +192,6 @@ msgstr[1] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -205,13 +201,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -283,11 +277,11 @@ msgstr "" #~ 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" @@ -320,12 +314,12 @@ msgstr "" #~ 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 f1c36de003..3855cc40fc 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: # Aline Freitas , 2016 @@ -14,14 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-04 19:40+0000\n" "Last-Translator: Jadson Ribeiro \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 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -94,7 +95,6 @@ msgid "Edit folders" msgstr "Editar pastas" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Apagar pastas" @@ -103,7 +103,6 @@ msgid "Remove documents from folders" msgstr "Remover documentos das pastas" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "Visualizar pastas" @@ -117,7 +116,6 @@ msgstr "Chave primária do documento a ser adicionado." #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Apagar a pasta: %s?" @@ -190,7 +188,6 @@ msgid "Remove" msgstr "Remover" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "Remover documentos de pastas" @@ -198,7 +195,6 @@ msgstr[1] "Remover documentos de pastas" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "Remover o documento \"%s\" para pastas" @@ -208,13 +204,11 @@ msgstr "Pastas das quais os documentos selecionados serão removidos." #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "Documento: %(document)s não está na pasta: %(folder)s." #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "Documento: %(document)s removido da pasta: %(folder)s." @@ -286,11 +280,11 @@ msgstr "Documento: %(document)s removido da pasta: %(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" @@ -323,12 +317,12 @@ msgstr "Documento: %(document)s removido da pasta: %(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/ro_RO/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po index fdb441055a..ad5d604ae6 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,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 #: views.py:95 @@ -89,7 +91,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +99,6 @@ msgid "Remove documents from folders" msgstr "Scoateți documentele din directoare" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -112,7 +112,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -169,7 +168,8 @@ msgstr "Documentul: %(document)s este deja în directorul : %(folder)s." #: views.py:200 #, 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:212 #, python-format @@ -186,7 +186,6 @@ msgid "Remove" msgstr "Şterge" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -195,7 +194,6 @@ msgstr[2] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -205,13 +203,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -285,11 +281,11 @@ msgstr "" #~ 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" @@ -322,12 +318,12 @@ msgstr "" #~ 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 63f63052a9..b793f85a54 100644 --- a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/folders/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 #: views.py:95 @@ -88,7 +91,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,7 +99,6 @@ msgid "Remove documents from folders" msgstr "Удаление документов из папок" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -111,7 +112,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -186,7 +186,6 @@ msgid "Remove" msgstr "Удалить" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -196,7 +195,6 @@ msgstr[3] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -206,13 +204,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -288,11 +284,11 @@ msgstr "" #~ 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" @@ -325,12 +321,12 @@ msgstr "" #~ 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 1352d649aa..f1bea9cf52 100644 --- a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/folders/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 #: views.py:95 @@ -88,7 +90,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,7 +98,6 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -111,7 +111,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -186,7 +185,6 @@ msgid "Remove" msgstr "" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" @@ -196,7 +194,6 @@ msgstr[3] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -206,13 +203,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -288,11 +283,11 @@ msgstr "" #~ 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" @@ -325,12 +320,12 @@ msgstr "" #~ 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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/folders/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..44b257f19b --- /dev/null +++ b/mayan/apps/folders/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,206 @@ +# 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: 2017-07-09 02:27-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=INTEGER; plural=EXPRESSION;\n" + +#: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 +#: views.py:95 +msgid "Folders" +msgstr "" + +#: apps.py:68 +msgid "Created" +msgstr "" + +#: apps.py:71 links.py:56 models.py:24 +msgid "Documents" +msgstr "" + +#: links.py:24 links.py:34 +msgid "Remove from folders" +msgstr "" + +#: links.py:27 +msgid "Add to a folders" +msgstr "" + +#: links.py:31 +msgid "Add to folders" +msgstr "" + +#: links.py:42 views.py:37 +msgid "Create folder" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:49 +msgid "Edit" +msgstr "" + +#: links.py:53 +msgid "All" +msgstr "" + +#: models.py:18 +msgid "Label" +msgstr "" + +#: models.py:21 +msgid "Datetime created" +msgstr "" + +#: models.py:42 +msgid "Folder" +msgstr "" + +#: models.py:56 +msgid "Document folder" +msgstr "" + +#: models.py:57 +msgid "Document folders" +msgstr "" + +#: permissions.py:10 +msgid "Create folders" +msgstr "" + +#: permissions.py:13 +msgid "Edit folders" +msgstr "" + +#: permissions.py:16 +msgid "Delete folders" +msgstr "" + +#: permissions.py:19 +msgid "Remove documents from folders" +msgstr "" + +#: permissions.py:22 +msgid "View folders" +msgstr "" + +#: permissions.py:27 +msgid "Add documents to folders" +msgstr "" + +#: serializers.py:58 +msgid "Primary key of the document to be added." +msgstr "" + +#: views.py:49 +#, python-format +msgid "Delete the folder: %s?" +msgstr "" + +#: views.py:61 +#, python-format +msgid "Documents in folder: %s" +msgstr "" + +#: views.py:84 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:116 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Add to folder request performed on %(count)d document" +msgstr "" + +#: views.py:130 +#, python-format +msgid "Add to folder request performed on %(count)d documents" +msgstr "" + +#: views.py:137 +msgid "Add" +msgstr "" + +#: views.py:139 +msgid "Add document to folders" +msgid_plural "Add documents to folders" +msgstr[0] "" +msgstr[1] "" + +#: views.py:150 +#, python-format +msgid "Add document \"%s\" to folders" +msgstr "" + +#: views.py:161 +msgid "Folders to which the selected documents will be added." +msgstr "" + +#: views.py:190 +#, python-format +msgid "Document: %(document)s is already in folder: %(folder)s." +msgstr "" + +#: views.py:200 +#, python-format +msgid "Document: %(document)s added to folder: %(folder)s successfully." +msgstr "" + +#: views.py:212 +#, python-format +msgid "Remove from folder request performed on %(count)d document" +msgstr "" + +#: views.py:215 +#, python-format +msgid "Remove from folder request performed on %(count)d documents" +msgstr "" + +#: views.py:222 +msgid "Remove" +msgstr "" + +#: views.py:224 +msgid "Remove document from folders" +msgid_plural "Remove documents from folders" +msgstr[0] "" +msgstr[1] "" + +#: views.py:235 +#, python-format +msgid "Remove document \"%s\" to folders" +msgstr "" + +#: views.py:246 +msgid "Folders from which the selected documents will be removed." +msgstr "" + +#: views.py:273 +#, python-format +msgid "Document: %(document)s is not in folder: %(folder)s." +msgstr "" + +#: views.py:282 +#, python-format +msgid "Document: %(document)s removed from folder: %(folder)s." +msgstr "" 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 6305f3cdd7..ac3bd1d998 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -89,7 +90,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +98,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 "" @@ -112,7 +111,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -184,14 +182,12 @@ msgid "Remove" msgstr "Xóa" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -201,13 +197,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -277,11 +271,11 @@ msgstr "" #~ 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" @@ -314,12 +308,12 @@ msgstr "" #~ 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 153bed7ed4..445c1fc192 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,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 forms.py:30 links.py:18 menus.py:8 models.py:43 permissions.py:7 @@ -89,7 +90,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +98,6 @@ msgid "Remove documents from folders" msgstr "从文件夹中移除文档" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -112,7 +111,6 @@ msgstr "" #: views.py:49 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -184,14 +182,12 @@ msgid "Remove" msgstr "移除" #: views.py:224 -#| msgid "Remove documents from folders" msgid "Remove document from folders" msgid_plural "Remove documents from folders" msgstr[0] "" #: views.py:235 #, python-format -#| msgid "Remove documents from folders" msgid "Remove document \"%s\" to folders" msgstr "" @@ -201,13 +197,11 @@ msgstr "" #: views.py:273 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s is not in folder: %(folder)s." msgstr "" #: views.py:282 #, python-format -#| msgid "Document: %(document)s is already in folder: %(folder)s." msgid "Document: %(document)s removed from folder: %(folder)s." msgstr "" @@ -277,11 +271,11 @@ msgstr "" #~ 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" @@ -314,12 +308,12 @@ msgstr "" #~ 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/linking/locale/ar/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po index 94ad036f97..96f1487dcf 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:34 msgid "Linking" @@ -31,11 +33,11 @@ msgstr "" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -67,7 +69,7 @@ msgstr "" msgid "Documents" msgstr "الوثائق" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "الروابط الذكية" @@ -140,11 +142,11 @@ msgstr "is in regular expression" msgid "is in regular expression (case insensitive)" msgstr "is in regular expression (case insensitive)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -152,43 +154,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "يتم تجاهل الإدراج للغرض الأول." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Inverts the logic of the operator." -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "not" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -231,7 +233,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -259,7 +262,6 @@ msgstr "تحرير الرابط الذكي: %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -279,7 +281,6 @@ msgstr "تحرير شرط الرابط الذكي" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -387,14 +388,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 043233a711..b35ad98f55 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 @@ -31,11 +32,11 @@ msgstr "" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -67,7 +68,7 @@ msgstr "" msgid "Documents" msgstr "Документи" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "" @@ -140,11 +141,11 @@ msgstr "" msgid "is in regular expression (case insensitive)" msgstr "" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -152,43 +153,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "" -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "не" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -231,7 +232,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -259,7 +261,6 @@ msgstr "" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -279,7 +280,6 @@ msgstr "" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -387,14 +387,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 f5ab4fd2cf..7222cf4944 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:34 msgid "Linking" @@ -31,11 +33,11 @@ msgstr "" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -67,7 +69,7 @@ msgstr "" msgid "Documents" msgstr "Dokumenti" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Smart linkovi" @@ -140,11 +142,11 @@ msgstr "je u regularnom izrazu" msgid "is in regular expression (case insensitive)" msgstr "je u regularnom izrazu (nije bitno velika ili mala slova)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -152,43 +154,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "Inkluzija je ignorisana za prvu stavku" -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Obrće logiku operatora" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "ne" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -231,7 +233,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -259,7 +262,6 @@ msgstr "Izmjeni smart link: %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -279,7 +281,6 @@ msgstr "Izmjeniti uslove smart linka" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -387,14 +388,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 9d396d278d..ac8fb1cbbe 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 @@ -30,11 +31,11 @@ msgstr "" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -66,7 +67,7 @@ msgstr "" msgid "Documents" msgstr "Dokumenter" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "" @@ -139,11 +140,11 @@ msgstr "" msgid "is in regular expression (case insensitive)" msgstr "" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -151,43 +152,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "" -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -230,7 +231,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -258,7 +260,6 @@ msgstr "" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -278,7 +279,6 @@ msgstr "" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -386,14 +386,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 df702820ce..75e4069a9e 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: # Jesaja Everling , 2017 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-26 15:56+0000\n" "Last-Translator: Jesaja Everling \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 @@ -35,11 +36,11 @@ msgstr "Bezeichnung" msgid "Dynamic label" msgstr "Dynamische Bezeichnung" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "Aktiviert" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "Fremddokumentattribut" @@ -71,7 +72,7 @@ msgstr "Dokumententypen" msgid "Documents" msgstr "Dokumente" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Ähnliche Dokumente" @@ -144,55 +145,58 @@ msgstr "ist in regulärem Ausdruck" msgid "is in regular expression (case insensitive)" msgstr "ist in regulärem Ausdruck (ohne Groß/Kleinschreibung)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 #, python-format msgid "Error generating dynamic label; %s" msgstr "Fehler bei der Generierung des dynamischen Titels: %s" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "Dieser Smart Link ist nicht erlaubt für diesen Dokumententyp" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "Smart Link" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "Die Einbeziehung wird für das erste Element ignoriert." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "Repräsentiert die Metadaten aller anderen Dokumente" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "Ausdruck" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Kehrt die Logik der Operation um." -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "Verneint" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "Nicht" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "Bedingung" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "Bedingungen" @@ -235,8 +239,10 @@ msgstr "Ähnliche Dokumente für %s" #: views.py:71 #, 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:87 msgid "Available document types" @@ -263,7 +269,6 @@ msgstr "Smart Link %s bearbeiten" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Smart Link %s wirklich löschen?" @@ -283,7 +288,6 @@ msgstr "Bedingung für Smart Link bearbeiten" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Bedingung für Smart Link \"%s\" wirklich löschen?" @@ -391,14 +395,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 9c223c2dab..74a495ef64 100644 --- a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 @@ -30,11 +31,11 @@ msgstr "Label" msgid "Dynamic label" msgstr "Dynamic label" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "Enabled" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "Foreign document attribute" @@ -66,7 +67,7 @@ msgstr "Document types" msgid "Documents" msgstr "Documents" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Smart links" @@ -139,55 +140,58 @@ msgstr "is in regular expression" msgid "is in regular expression (case insensitive)" msgstr "is in regular expression (case insensitive)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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 "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 "" +"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." #: models.py:46 #, python-format msgid "Error generating dynamic label; %s" msgstr "Error generating dynamic label; %s" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "This smart link is not allowed for the selected document's type." -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "Smart link" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "The inclusion is ignored for the first item." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "This represents the metadata of all other documents." -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "Expression" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Inverts the logic of the operator." -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "Negated" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "not" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "Link condition" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "Link conditions" @@ -211,7 +215,9 @@ msgstr "Edit smart links" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Comma separated list of document type primary keys to which this smart link will be attached." +msgstr "" +"Comma separated list of document type primary keys to which this smart link " +"will be attached." #: serializers.py:139 #, python-format @@ -230,8 +236,10 @@ msgstr "Documents in smart link: %s" #: views.py:71 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "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 "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" #: views.py:87 msgid "Available document types" @@ -258,7 +266,6 @@ msgstr "Edit smart link: %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Delete smart link: %s" @@ -278,7 +285,6 @@ msgstr "Edit smart link condition" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Delete smart link condition: \"%s\"?" @@ -386,14 +392,14 @@ msgstr "Delete smart link condition: \"%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/es/LC_MESSAGES/django.po b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po index d37ba1075c..0a6530ea3b 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,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 @@ -33,11 +34,11 @@ msgstr "Etiqueta" msgid "Dynamic label" msgstr "Etiqueta dinámica" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "Habilitado" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "Datos de documento foráneo" @@ -69,7 +70,7 @@ msgstr "Tipos de documento" msgid "Documents" msgstr "Documentos" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Enlaces inteligentes" @@ -142,55 +143,60 @@ msgstr "está en la expresión regular" msgid "is in regular expression (case insensitive)" msgstr "está en la expresión regular (no sensible a mayúsculas)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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 "Introduzca una plantilla para generar. Use el lenguaje de plantillas de Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). La variable {{ document }} está disponible en el contexto de la plantilla." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Introduzca una plantilla para generar. Use el lenguaje de plantillas de " +"Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). La " +"variable {{ document }} está disponible en el contexto de la plantilla." #: models.py:46 #, python-format msgid "Error generating dynamic label; %s" msgstr "Error generando etiqueta dinámica; %s" -#: models.py:55 +#: models.py:57 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:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "Enlace inteligente" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "La inclusión es ignorada para el primer artículo." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "Esto representa los meta datos de los documentos foráneos." -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "Expresión" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Invierte la lógica del operador." -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "Negado" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "no" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "Condición de enlace" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "Condiciones de enlace" @@ -233,8 +239,11 @@ msgstr "Documentos en enlace inteligente: %s" #: views.py:71 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Los documentos en enlace inteligente \"%(smart_link)s\" en relación con \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Los documentos en enlace inteligente \"%(smart_link)s\" en relación con " +"\"%(document)s\"" #: views.py:87 msgid "Available document types" @@ -261,7 +270,6 @@ msgstr "Editar enlace inteligente: %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Borrar enlace inteligente: %s" @@ -281,7 +289,6 @@ msgstr "Editar condición de enlace inteligente" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "¿Borrar condición de enlace inteligente: \"%s\"?" @@ -389,14 +396,14 @@ msgstr "¿Borrar condición de enlace inteligente: \"%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/fa/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po index 834f204ff4..ca5477d238 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 @@ -31,11 +32,11 @@ msgstr "برچسب" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "فعال شده" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "مختصات سند خارجی" @@ -67,7 +68,7 @@ msgstr "انواع مستندات" msgid "Documents" msgstr "مستندات" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "پیوند هوشمند" @@ -140,11 +141,11 @@ msgstr "موجود در عبارات منظم" msgid "is in regular expression (case insensitive)" msgstr "موجود در عبارات منظم (case insensitive)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -152,43 +153,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "این لینک هوشمند برای نوع سند منتخب مجاز نیست" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "پیوند هوشمند" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "ورود اولین آیتم در نطر گرفته نشد." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "این مورد نشانگر متا داده تمامی اسناد می باشد." -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "عبارت" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "منطق عملگر را برعکس میکند." -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "منفی شده" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "نه " -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "شرط پیوند" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "شرایط پیوند" @@ -231,7 +232,8 @@ msgstr "اسناد در لینک هوشمند: %s" #: views.py:71 #, 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:87 @@ -259,7 +261,6 @@ msgstr "ویرایش پیوند هوشمند %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -279,7 +280,6 @@ msgstr "ویرایش شرط پیوند هوشمند \"%s\"" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -387,14 +387,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 7d76fa7177..922c01a21b 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 @@ -32,11 +33,11 @@ msgstr "Libellé" msgid "Dynamic label" msgstr "Etiquette dynamique" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "Activé" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "Attribut étranger du document " @@ -68,7 +69,7 @@ msgstr "Types de document" msgid "Documents" msgstr "Documents" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Liens intelligents" @@ -141,55 +142,59 @@ msgstr "est une expression régulière" msgid "is in regular expression (case insensitive)" msgstr "est une expression régulière (insensible à la casse)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 #, python-format msgid "Error generating dynamic label; %s" msgstr "Erreur de génération de l'étiquette dynamique : %s" -#: models.py:55 +#: models.py:57 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:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "Lien intelligent" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "Ignorer l'inclusion sur le premier élément" -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "Ceci représente la méta-donnée de tous les autres documents." -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "Expression" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Inverser l'opérateur logique" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "Négation" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "ne pas" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "Condition sur le lien" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "Conditions sur le lien" @@ -232,8 +237,11 @@ msgstr "Lien inetlligent du document: %s" #: views.py:71 #, 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:87 msgid "Available document types" @@ -260,7 +268,6 @@ msgstr "Modifier le lien intelligent:%s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Supprimer le lien intelligent : %s" @@ -280,7 +287,6 @@ msgstr "Modifier la condition sur le lien intelligent" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Supprimer la condition du lien intelligent : \"%s\" ?" @@ -388,14 +394,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 d114e4e8c0..b3ac21071d 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 @@ -30,11 +31,11 @@ msgstr "" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -66,7 +67,7 @@ msgstr "" msgid "Documents" msgstr "dokumentumok" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "" @@ -139,11 +140,11 @@ msgstr "" msgid "is in regular expression (case insensitive)" msgstr "" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -151,43 +152,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "" -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -230,7 +231,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -258,7 +260,6 @@ msgstr "" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -278,7 +279,6 @@ msgstr "" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -386,14 +386,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 6c4a95c6a2..823273bd71 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 @@ -30,11 +31,11 @@ msgstr "" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -66,7 +67,7 @@ msgstr "" msgid "Documents" msgstr "Dokumen" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "" @@ -139,11 +140,11 @@ msgstr "" msgid "is in regular expression (case insensitive)" msgstr "" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -151,43 +152,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "" -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -230,7 +231,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -258,7 +260,6 @@ msgstr "" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -278,7 +279,6 @@ msgstr "" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -386,14 +386,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 0ceaa6ff5d..890e2f8e80 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: # Marco Camplese , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 @@ -32,11 +33,11 @@ msgstr "Etichetta" msgid "Dynamic label" msgstr "Etichetta dinamica" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "Abilitato" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "Attributo documento esterno" @@ -68,7 +69,7 @@ msgstr "Tipi di documento" msgid "Documents" msgstr "Documenti" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Link intelligenti" @@ -141,55 +142,59 @@ msgstr "è un'espressione regolare" msgid "is in regular expression (case insensitive)" msgstr "è un'espressione regolare (case insensitive)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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 "Inserisci il template da renderizzare. Usa il linguaggio di template di Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Variabili di contesto disponibili: {{ document }} " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Inserisci il template da renderizzare. Usa il linguaggio di template di " +"Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). " +"Variabili di contesto disponibili: {{ document }} " #: models.py:46 #, python-format msgid "Error generating dynamic label; %s" msgstr "Errore generando l'etichetta dinamica; %s" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." -msgstr "Questo link intelligente non è consentito per questo tipo di documento." +msgstr "" +"Questo link intelligente non è consentito per questo tipo di documento." -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "Link intelligente" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "L'inserimento viene ignorato per la prima voce." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "Questo rappresenta i metadati degli altri documenti." -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "Espressione" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Inverti la logica dell'operazione" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "Negato" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "not" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "Condizione link" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "Condizioni link" @@ -232,8 +237,11 @@ msgstr "Documenti nel link intelligente: %s" #: views.py:71 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Documenti nel link intelligente: \"%(smart_link)s\" è correlato con \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Documenti nel link intelligente: \"%(smart_link)s\" è correlato con " +"\"%(document)s\"" #: views.py:87 msgid "Available document types" @@ -260,7 +268,6 @@ msgstr "Modifica il link intelligente: %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Cancella collegamento intelligente: %s" @@ -280,7 +287,6 @@ msgstr "Modifica condizioni per i link intelligenti" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Cancella condizione collegamento intelligente: \"%s\" ?" @@ -388,14 +394,14 @@ msgstr "Cancella condizione collegamento intelligente: \"%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/nl_NL/LC_MESSAGES/django.po b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po index ee841e51da..025e63321a 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: # Evelijn Saaltink , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 @@ -32,11 +33,11 @@ msgstr "Label" msgid "Dynamic label" msgstr "Dynamisch label" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "Ingeschakeld" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -68,7 +69,7 @@ msgstr "Documentsoorten" msgid "Documents" msgstr "Documenten" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "'Smartlinks'" @@ -141,11 +142,11 @@ msgstr "komt overeen met 'reguliere expressie'" msgid "is in regular expression (case insensitive)" msgstr "komt overeen met 'reguliere expressie (hoofdletter ongevoelig)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -153,43 +154,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "Slimme link" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "De berekening is genegeerd voor het eerste item" -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "Uitdrukking" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Inverteerd de operatorlogica" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "niet" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -232,7 +233,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -260,7 +262,6 @@ msgstr "'smartlink': %s bewerken." #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -280,7 +281,6 @@ msgstr "Bewerk 'smartlink' conditie." #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -388,14 +388,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 313d07d3a9..00590c1f68 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 @@ -11,15 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 14:03+0000\n" "Last-Translator: Wojtek Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:34 msgid "Linking" @@ -33,11 +36,11 @@ msgstr "Etykieta" msgid "Dynamic label" msgstr "Dynamiczna etykieta" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "Włączony" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "Atrybut obcego dokumentu" @@ -69,7 +72,7 @@ msgstr "Typy dokumentów" msgid "Documents" msgstr "Dokumenty" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Łącza" @@ -142,55 +145,58 @@ msgstr "jest w wyrażeniu regularnym" msgid "is in regular expression (case insensitive)" msgstr "jest w wyrażeniu regularnym (wielkość liter ma znaczenie)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 #, python-format msgid "Error generating dynamic label; %s" msgstr "Błąd podczas generowania dynamicznej etykiety: %s" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "To łącze nie jest dostępne dla wybranego typu dokumentu." -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "Łącze" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "To wliczenie jest ignorowane dla pierwszego elementu." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "To odpowiada meta danym wszystkich pozostałych dokumentów." -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "Wyrażenie" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Odwraca logikę operatora." -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "Zanegowany" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "nie" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "Warunek łącza" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "Warunki łącza" @@ -214,7 +220,9 @@ msgstr "Edytuj łącza" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Lista rozdzielonych przecinkami kluczy głównych dotyczących typów dokumentów, do których łącze będzie się odnosić." +msgstr "" +"Lista rozdzielonych przecinkami kluczy głównych dotyczących typów " +"dokumentów, do których łącze będzie się odnosić." #: serializers.py:139 #, python-format @@ -233,7 +241,8 @@ msgstr "Dokumenty w łączu: %s" #: views.py:71 #, 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:87 @@ -261,7 +270,6 @@ msgstr "Edytuj łącze: %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Usuń łącze: %s" @@ -281,7 +289,6 @@ msgstr "Edycja warunku łącza" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Usunąć warunek łącza: \"%s\"?" @@ -389,14 +396,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 194834d660..59edd9ed68 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:34 @@ -33,11 +34,11 @@ msgstr "Nome" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -69,7 +70,7 @@ msgstr "" msgid "Documents" msgstr "Documentos" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Ligações inteligentes" @@ -142,11 +143,11 @@ msgstr "contido em expressão regular" msgid "is in regular expression (case insensitive)" msgstr "contido em expressão regular (insensível a minúsculas/maiúsculas)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -154,43 +155,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "A inclusão é ignorada para o primeiro item." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Inverte a lógica do operador." -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "não" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -233,7 +234,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -261,7 +263,6 @@ msgstr "Editar Ligação inteligente: %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -281,7 +282,6 @@ msgstr "Editar condição de ligação inteligente" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -389,14 +389,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 0fed97aba9..d28d3d70f4 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: # Aline Freitas , 2016 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-04 19:46+0000\n" "Last-Translator: Jadson Ribeiro \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 @@ -35,11 +36,11 @@ msgstr "Label" msgid "Dynamic label" msgstr "Etiqueta dinâmica" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "habilitado" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "Atributo documento externo" @@ -71,7 +72,7 @@ msgstr "Tipo de Documento" msgid "Documents" msgstr "Documentos" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Ligações inteligentes" @@ -144,55 +145,59 @@ msgstr "está em expressão regular" msgid "is in regular expression (case insensitive)" msgstr "está em expressão regular (case insensitive)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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 "Introduza um template para renderizar. Use a linguagem de templates padrão do Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). A variável {{ document }} está disponível. " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Introduza um template para renderizar. Use a linguagem de templates padrão " +"do Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). A " +"variável {{ document }} está disponível. " #: models.py:46 #, python-format msgid "Error generating dynamic label; %s" msgstr "Erro gerando etiqueta dinâmica; %s" -#: models.py:55 +#: models.py:57 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:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "link inteligente" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "A inclusão é ignorada para o primeiro item." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "Esta expressão será avaliada contra o documento atual." -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "expressão" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Inverte a lógica do operador." -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "negada" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "não" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "condição de ligação" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "condições de ligação" @@ -216,7 +221,9 @@ msgstr "Editar ligações inteligentes" msgid "" "Comma separated list of document type primary keys to which this smart link " "will be attached." -msgstr "Lista separada por vírgulas do tipo de documento chaves primárias às quais este link inteligente será anexado." +msgstr "" +"Lista separada por vírgulas do tipo de documento chaves primárias às quais " +"este link inteligente será anexado." #: serializers.py:139 #, python-format @@ -235,8 +242,11 @@ msgstr "Os documentos em referência inteligente: %s " #: views.py:71 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Os documentos em link inteligente \"%(smart_link)s\" em relação com \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Os documentos em link inteligente \"%(smart_link)s\" em relação com " +"\"%(document)s\"" #: views.py:87 msgid "Available document types" @@ -263,7 +273,6 @@ msgstr "Editar Ligação inteligente: %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Apagar link inteligente: %s" @@ -283,7 +292,6 @@ msgstr "Editar condição de ligação Inteligente" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Apagar condição de link inteligente: %s?" @@ -391,14 +399,14 @@ msgstr "Apagar condição de link inteligente: %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/ro_RO/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po index 9e439de608..c60e41f00a 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 msgid "Linking" @@ -31,11 +33,11 @@ msgstr "Etichetă" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -67,7 +69,7 @@ msgstr "" msgid "Documents" msgstr "Documente" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Link-uri inteligente" @@ -140,11 +142,11 @@ msgstr "este în expresie regulată" msgid "is in regular expression (case insensitive)" msgstr "este în expresie regulată (case insensitive)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -152,43 +154,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "Includerea este ignorată pentru primul element." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Inversează logica operatorului." -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "nu" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -231,7 +233,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -259,7 +262,6 @@ msgstr "Editare legătură inteligentă:% s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -279,7 +281,6 @@ msgstr "Editați condiție legătură inteligentă" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -387,14 +388,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 d901082f67..f815af054a 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 msgid "Linking" @@ -30,11 +33,11 @@ msgstr "Надпись" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "Доступно" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -66,7 +69,7 @@ msgstr "Типы документов" msgid "Documents" msgstr "Документы" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Отношения" @@ -139,11 +142,11 @@ msgstr "В регулярном выражении" msgid "is in regular expression (case insensitive)" msgstr "В регулярном выражении (без учета регистра)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -151,43 +154,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "Включение игнорируется для первого элемента." -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "Инвертирует логику оператора." -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "не" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -230,7 +233,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -258,7 +262,6 @@ msgstr "Редактировать отношение %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -278,7 +281,6 @@ msgstr "Изменить условие отношения" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -386,14 +388,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 ec53525b6d..4c836a9c60 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:34 msgid "Linking" @@ -30,11 +32,11 @@ msgstr "Oznaka" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -66,7 +68,7 @@ msgstr "" msgid "Documents" msgstr "Dokumenti" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "" @@ -139,11 +141,11 @@ msgstr "" msgid "is in regular expression (case insensitive)" msgstr "" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -151,43 +153,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "" -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -230,7 +232,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -258,7 +261,6 @@ msgstr "" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -278,7 +280,6 @@ msgstr "" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -386,14 +387,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..aa935380f5 --- /dev/null +++ b/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +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. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-09 02:27-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:34 +msgid "Linking" +msgstr "" + +#: apps.py:58 models.py:19 +msgid "Label" +msgstr "" + +#: apps.py:65 models.py:26 +msgid "Dynamic label" +msgstr "" + +#: apps.py:69 apps.py:74 models.py:28 models.py:129 +msgid "Enabled" +msgstr "" + +#: forms.py:36 models.py:114 +msgid "Foreign document attribute" +msgstr "" + +#: links.py:14 +msgid "Create condition" +msgstr "" + +#: links.py:19 links.py:36 +msgid "Delete" +msgstr "" + +#: links.py:23 links.py:43 +msgid "Edit" +msgstr "" + +#: links.py:27 +msgid "Conditions" +msgstr "" + +#: links.py:32 views.py:167 +msgid "Create new smart link" +msgstr "" + +#: links.py:39 models.py:30 +msgid "Document types" +msgstr "" + +#: links.py:47 +msgid "Documents" +msgstr "" + +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 +#: views.py:129 +msgid "Smart links" +msgstr "" + +#: literals.py:9 +msgid "and" +msgstr "" + +#: literals.py:10 +msgid "or" +msgstr "" + +#: literals.py:14 +msgid "is equal to" +msgstr "" + +#: literals.py:15 +msgid "is equal to (case insensitive)" +msgstr "" + +#: literals.py:16 +msgid "contains" +msgstr "" + +#: literals.py:17 +msgid "contains (case insensitive)" +msgstr "" + +#: literals.py:18 +msgid "is in" +msgstr "" + +#: literals.py:19 +msgid "is greater than" +msgstr "" + +#: literals.py:20 +msgid "is greater than or equal to" +msgstr "" + +#: literals.py:21 +msgid "is less than" +msgstr "" + +#: literals.py:22 +msgid "is less than or equal to" +msgstr "" + +#: literals.py:23 +msgid "starts with" +msgstr "" + +#: literals.py:24 +msgid "starts with (case insensitive)" +msgstr "" + +#: literals.py:25 +msgid "ends with" +msgstr "" + +#: literals.py:26 +msgid "ends with (case insensitive)" +msgstr "" + +#: literals.py:27 +msgid "is in regular expression" +msgstr "" + +#: literals.py:28 +msgid "is in regular expression (case insensitive)" +msgstr "" + +#: models.py:22 models.py:119 +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 "" + +#: models.py:46 +#, python-format +msgid "Error generating dynamic label; %s" +msgstr "" + +#: models.py:57 +msgid "This smart link is not allowed for the selected document's type." +msgstr "" + +#: models.py:93 models.py:105 +msgid "Smart link" +msgstr "" + +#: models.py:109 +msgid "The inclusion is ignored for the first item." +msgstr "" + +#: models.py:113 +msgid "This represents the metadata of all other documents." +msgstr "" + +#: models.py:123 +msgid "Expression" +msgstr "" + +#: models.py:126 +msgid "Inverts the logic of the operator." +msgstr "" + +#: models.py:127 +msgid "Negated" +msgstr "" + +#: models.py:134 +msgid "not" +msgstr "" + +#: models.py:139 +msgid "Link condition" +msgstr "" + +#: models.py:140 +msgid "Link conditions" +msgstr "" + +#: permissions.py:10 +msgid "View existing smart links" +msgstr "" + +#: permissions.py:13 +msgid "Create new smart links" +msgstr "" + +#: permissions.py:16 +msgid "Delete smart links" +msgstr "" + +#: permissions.py:19 +msgid "Edit smart links" +msgstr "" + +#: serializers.py:115 +msgid "" +"Comma separated list of document type primary keys to which this smart link " +"will be attached." +msgstr "" + +#: serializers.py:139 +#, python-format +msgid "No such document type: %s" +msgstr "" + +#: views.py:60 +#, python-format +msgid "Smart link query error: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Documents in smart link: %s" +msgstr "" + +#: views.py:71 +#, python-format +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" + +#: views.py:87 +msgid "Available document types" +msgstr "" + +#: views.py:89 +msgid "Document types enabled" +msgstr "" + +#: views.py:98 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:159 +#, python-format +msgid "Smart links for document: %s" +msgstr "" + +#: views.py:182 +#, python-format +msgid "Edit smart link: %s" +msgstr "" + +#: views.py:194 +#, python-format +msgid "Delete smart link: %s" +msgstr "" + +#: views.py:206 +#, python-format +msgid "Conditions for smart link: %s" +msgstr "" + +#: views.py:233 +#, python-format +msgid "Add new conditions to smart link: \"%s\"" +msgstr "" + +#: views.py:274 +msgid "Edit smart link condition" +msgstr "" + +#: views.py:304 +#, python-format +msgid "Delete smart link condition: \"%s\"?" +msgstr "" 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 d022157330..99f4754ee6 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:34 @@ -31,11 +32,11 @@ msgstr "" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -67,7 +68,7 @@ msgstr "" msgid "Documents" msgstr "Tài liệu" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "Liên kết thông minh" @@ -140,11 +141,11 @@ msgstr "" msgid "is in regular expression (case insensitive)" msgstr "" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -152,43 +153,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "" -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -231,7 +232,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -259,7 +261,6 @@ msgstr "Sửa liên kết thông minh: %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -279,7 +280,6 @@ msgstr "" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -387,14 +387,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 638b08da7f..2da0c459c7 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 @@ -31,11 +32,11 @@ msgstr "" msgid "Dynamic label" msgstr "" -#: apps.py:69 apps.py:74 models.py:28 models.py:127 +#: apps.py:69 apps.py:74 models.py:28 models.py:129 msgid "Enabled" msgstr "" -#: forms.py:35 models.py:112 +#: forms.py:36 models.py:114 msgid "Foreign document attribute" msgstr "" @@ -67,7 +68,7 @@ msgstr "" msgid "Documents" msgstr "文档" -#: links.py:54 links.py:58 links.py:63 models.py:92 permissions.py:7 +#: links.py:54 links.py:58 links.py:63 models.py:94 permissions.py:7 #: views.py:129 msgid "Smart links" msgstr "智能链接" @@ -140,11 +141,11 @@ msgstr "正则表达式" msgid "is in regular expression (case insensitive)" msgstr "正则表达式(大小写不敏感)" -#: models.py:22 models.py:117 +#: models.py:22 models.py:119 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:46 @@ -152,43 +153,43 @@ msgstr "" msgid "Error generating dynamic label; %s" msgstr "" -#: models.py:55 +#: models.py:57 msgid "This smart link is not allowed for the selected document's type." msgstr "" -#: models.py:91 models.py:103 +#: models.py:93 models.py:105 msgid "Smart link" msgstr "" -#: models.py:107 +#: models.py:109 msgid "The inclusion is ignored for the first item." msgstr "第一项的包含将被忽略。" -#: models.py:111 +#: models.py:113 msgid "This represents the metadata of all other documents." msgstr "" -#: models.py:121 +#: models.py:123 msgid "Expression" msgstr "" -#: models.py:124 +#: models.py:126 msgid "Inverts the logic of the operator." msgstr "颠倒操作符的逻辑" -#: models.py:125 +#: models.py:127 msgid "Negated" msgstr "" -#: models.py:132 +#: models.py:134 msgid "not" msgstr "否" -#: models.py:137 +#: models.py:139 msgid "Link condition" msgstr "" -#: models.py:138 +#: models.py:140 msgid "Link conditions" msgstr "" @@ -231,7 +232,8 @@ msgstr "" #: views.py:71 #, 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:87 @@ -259,7 +261,6 @@ msgstr "编辑智能链接: %s" #: views.py:194 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -279,7 +280,6 @@ msgstr "编辑智能链接条件" #: views.py:304 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -387,14 +387,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 029a94fd85..f505ae098f 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 4f4952ba22..d6de0d04ee 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 52eaa95f8a..ac3b059427 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 653ae3b015..1e621e3e62 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 acd7fc2a76..9faea8ba83 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 792878ff34..9f361b9478 100644 --- a/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/en/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.py:10 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 8a30dd8702..2be82f28ad 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 b78cad8f4d..15e5598894 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 f8180d80fd..ec3f1646e4 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 0f3742231e..5de1e05bc1 100644 --- a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:10 settings.py:10 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 67ce7d8fb7..219ed62177 100644 --- a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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:10 settings.py:10 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 9ab9da6a4a..c51148a191 100644 --- a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-09-24 09:13+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.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 078ddd6659..7a148d82c4 100644 --- a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016-2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-05-10 18:57+0000\n" "Last-Translator: Evelijn Saaltink \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 settings.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 388e1c3c63..0baf5a435f 100644 --- a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:10 settings.py: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 d4b86f1a4f..405e63520e 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 05ba81cb17..bd1913337e 100644 --- a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2016-11-04 19:32+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 settings.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 6eaaa8f168..4e8cd3d4f2 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 4ab23d76d1..5f2d53b2b2 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 38484ae6b5..ae5788f22b 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.py:10 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..74ec12ca3d --- /dev/null +++ b/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,42 @@ +# 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: 2017-07-09 02:27-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:10 settings.py:10 +msgid "Lock manager" +msgstr "" + +#: models.py:14 +msgid "Creation datetime" +msgstr "" + +#: models.py:17 +msgid "Timeout" +msgstr "" + +#: models.py:20 +msgid "Name" +msgstr "" + +#: models.py:46 +msgid "Lock" +msgstr "" + +#: models.py:47 +msgid "Locks" +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 725ddb4bbb..a3044de2dd 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 cd5e5a58ab..6cc860873c 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-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 settings.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 4ed1826448..8aa9612132 100644 --- a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po @@ -1,56 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -71,18 +121,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -96,7 +265,27 @@ msgid "Send document via email" msgstr "" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -127,26 +316,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 32aa000e01..de7fd97d45 100644 --- a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po @@ -1,57 +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. -# +# # Translators: # Pavlin Koldamov , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "Ел. поща адрес" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Относно" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Съдържание" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profile" +msgstr "Изпращане" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "Пощ. документ" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "Пощ. връзка" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profiles" +msgstr "Изпращане" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -72,18 +125,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "Изпращане" @@ -97,7 +269,27 @@ msgid "Send document via email" msgstr "Изпрати документа по ел. поща" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -128,26 +320,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Изпрати" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 825f6c264a..318533655d 100644 --- a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po @@ -1,56 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:27-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -71,18 +121,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -96,7 +265,27 @@ msgid "Send document via email" msgstr "" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -127,26 +316,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 088a0c87c9..344f8b4d55 100644 --- a/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po @@ -1,56 +1,105 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -71,18 +120,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -96,7 +264,27 @@ msgid "Send document via email" msgstr "" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -127,26 +315,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 4b632b7b4d..356c383248 100644 --- a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po @@ -1,59 +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: # Jesaja Everling , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "Mailer" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "Zeit" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "Nachricht" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "E-Mailadresse" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Betreff" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Nachrichtenteil" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profile" +msgstr "E-Mail" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "Dokument als E-Mailanhang senden" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "Link zum Dokument per E-Mail senden" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +#, fuzzy +#| msgid "Document mailing error log" +msgid "System mailer error log" msgstr "Fehlerprotokoll" +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profiles" +msgstr "E-Mail" + +#: links.py:58 views.py:246 +msgid "Test" +msgstr "" + #: literals.py:7 #, python-format msgid "" @@ -61,7 +116,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 @@ -70,20 +129,144 @@ 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 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "Zeit" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "Protokolleintrag" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "Protokolleinträge" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "E-Mail" @@ -97,9 +280,31 @@ msgid "Send document via email" msgstr "Dokument als E-Mailanhang senden" #: permissions.py:16 -msgid "View document mailing error log" +#, fuzzy +#| msgid "View document mailing error log" +msgid "View system mailing error log" msgstr "Fehlerprotokoll anzeigen" +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" +msgstr "" + #: queues.py:12 msgid "Send document" msgstr "" @@ -110,11 +315,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 }}" @@ -122,32 +330,67 @@ 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:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "Fehlerprotokoll" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "%(count)d Dokumente vorgemerkt für Email-Versand" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Senden" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %s" +msgstr "" diff --git a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po index 15eb4c6d72..1ae96ebadb 100644 --- a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po @@ -1,58 +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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:27 +#: apps.py:36 msgid "Mailer" msgstr "Mailer" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "Date and time" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "Message" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "Email address" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Subject" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Body" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profile" +msgstr "Mailing" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "Email document" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "Email link" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +#, fuzzy +#| msgid "Document mailing error log" +msgid "System mailer error log" msgstr "Document mailing error log" +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profiles" +msgstr "Mailing" + +#: links.py:58 views.py:246 +msgid "Test" +msgstr "" + #: literals.py:7 #, python-format msgid "" @@ -60,7 +115,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Attached to this email is the document: {{ document }}\n\n --------\n This email has been sent from %(project_title)s (%(project_website)s)" +msgstr "" +"Attached to this email is the document: {{ document }}\n" +"\n" +" --------\n" +" This email has been sent from %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -69,20 +128,143 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "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 "" +"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)" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "Date time" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "Log entry" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "Log entries" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "Mailing" @@ -96,9 +278,31 @@ msgid "Send document via email" msgstr "Send document via email" #: permissions.py:16 -msgid "View document mailing error log" +#, fuzzy +#| msgid "View document mailing error log" +msgid "View system mailing error log" msgstr "View document mailing error log" +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" +msgstr "" + #: queues.py:12 msgid "Send document" msgstr "Send document" @@ -127,26 +331,59 @@ msgstr "Template for the document email form subject line." msgid "Template for the document email form body line." msgstr "Template for the document email form body line." -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "Document mailing error log" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "%(count)d document queued for email delivery" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "%(count)d documents queued for email delivery" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Send" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "%(count)d document link queued for email delivery" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "%(count)d document links queued for email delivery" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 7c48df45f1..3e660e7747 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,52 +10,107 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05: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:27 +#: apps.py:36 msgid "Mailer" msgstr "Correspondencia" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "Mensaje" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "Dirección de correo electrónico" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Tema" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Cuerpo" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profile" +msgstr "Correspondencia" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "Enviar documento" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "Enviar enlace" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +#, fuzzy +#| msgid "Document mailing error log" +msgid "System mailer error log" msgstr "Biracora de errores de envío" +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profiles" +msgstr "Correspondencia" + +#: links.py:58 views.py:246 +msgid "Test" +msgstr "" + #: literals.py:7 #, python-format msgid "" @@ -63,7 +118,13 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Se adjunta a este correo electrónico es el documento: {{ document }}\n\n\n--------\nEste correo electrónico ha sido enviado desde %(project_title)s (%(project_website)s)" +msgstr "" +"Se adjunta a este correo electrónico es el documento: {{ document }}\n" +"\n" +"\n" +"--------\n" +"Este correo electrónico ha sido enviado desde %(project_title)s " +"(%(project_website)s)" #: literals.py:13 #, python-format @@ -72,20 +133,145 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Para acceder a este documento, haga clic en el siguiente enlace: {{ link }}\n\n\n--------\nEste correo electrónico ha sido enviado desde %(project_title)s (%(project_website)s)" +msgstr "" +"Para acceder a este documento, haga clic en el siguiente enlace: {{ link }}\n" +"\n" +"\n" +"--------\n" +"Este correo electrónico ha sido enviado desde %(project_title)s " +"(%(project_website)s)" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "Fecha y hora" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "Entrada de bitácora" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "Entradas de bitácora" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "Correspondencia" @@ -99,9 +285,31 @@ msgid "Send document via email" msgstr "Enviar documento por correo electrónico" #: permissions.py:16 -msgid "View document mailing error log" +#, fuzzy +#| msgid "View document mailing error log" +msgid "View system mailing error log" msgstr "Ver bitácora de errores de envío" +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" +msgstr "" + #: queues.py:12 msgid "Send document" msgstr "" @@ -112,11 +320,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 }}" @@ -124,32 +336,71 @@ 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:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "Biracora de errores de envío" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "%(count)d documento en sometido para entrega por correo electrónico" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "%(count)d documentos sometidos para entrega por correo electrónico" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Enviar" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" -msgstr "%(count)d enlace de documento sometido para entrega por correo electrónico" +msgstr "" +"%(count)d enlace de documento sometido para entrega por correo electrónico" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" -msgstr "%(count)d enlaces de documento sometido para entrega por correo electrónico" +msgstr "" +"%(count)d enlaces de documento sometido para entrega por correo electrónico" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %s" +msgstr "" diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po index fe42724648..890bb2a611 100644 --- a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po @@ -1,57 +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. -# +# # Translators: # Mehdi Amani , 2014 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "پست الکترونیکی" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "موضوع" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "بدنه" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profile" +msgstr "پست کردن" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "ایمیل کردن سند" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "پیوند پلکترونیکی" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profiles" +msgstr "پست کردن" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -72,18 +125,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "تاریخ زمان" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "ورودیهای لاگ" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "پست کردن" @@ -97,7 +269,27 @@ msgid "Send document via email" msgstr "ارسال سند بوسیله ایمیل" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -128,26 +320,59 @@ msgstr "الگوی ارسال سند بوسیله پیوند آن از داخل msgid "Template for the document email form body line." msgstr "الگوی ارسال سند از داخل بدنه" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "ارسال" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %s" +msgstr "" diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po index 39c15ac416..d136272d31 100644 --- a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po @@ -1,59 +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: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "Gestionnaire d'envoi" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "Date et heure" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "Message" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "Adresse du courriel" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Sujet" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Corps" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profile" +msgstr "Liste de diffusion" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "Envoyer le document par courriel" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "Lien du courriel" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +#, fuzzy +#| msgid "Document mailing error log" +msgid "System mailer error log" msgstr "Journal d'erreur du document envoyé" +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profiles" +msgstr "Liste de diffusion" + +#: links.py:58 views.py:246 +msgid "Test" +msgstr "" + #: literals.py:7 #, python-format msgid "" @@ -61,7 +116,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,20 +129,143 @@ 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 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "Date et heure" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "Entrée du journal" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "Entrées du journal" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "Liste de diffusion" @@ -97,9 +279,31 @@ msgid "Send document via email" msgstr "Envoyer le document par courriel" #: permissions.py:16 -msgid "View document mailing error log" +#, fuzzy +#| msgid "View document mailing error log" +msgid "View system mailing error log" msgstr "Voir le journal d'erreur du document envoyé" +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" +msgstr "" + #: queues.py:12 msgid "Send document" msgstr "" @@ -128,26 +332,59 @@ 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:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "Journal d'erreur du document envoyé" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Envoyé" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %s" +msgstr "" diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po index 7c72d3a86d..69a77af19a 100644 --- a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po @@ -1,56 +1,105 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -71,18 +120,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -96,7 +264,27 @@ msgid "Send document via email" msgstr "" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -127,26 +315,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 5d0d4bef47..9aa1375743 100644 --- a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po @@ -1,56 +1,105 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -71,18 +120,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "tanggal waktu" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -96,7 +264,27 @@ msgid "Send document via email" msgstr "" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -127,26 +315,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 1eccb78b9c..8a174c523c 100644 --- a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po @@ -1,59 +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: # Marco Camplese , 2016-2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "Posta" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "Data e ora" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "Messaggio" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "Indirizzo email" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Oggetto" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Corpo" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profile" +msgstr "Mailing" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "Documento email" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "Link email" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +#, fuzzy +#| msgid "Document mailing error log" +msgid "System mailer error log" msgstr "Log errori mailing documento" +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profiles" +msgstr "Mailing" + +#: links.py:58 views.py:246 +msgid "Test" +msgstr "" + #: literals.py:7 #, python-format msgid "" @@ -61,7 +116,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Allegato a questa mail è il documento: {{ document }}\n\n --------\nQuesta mail è stata inviata da %(project_title)s (%(project_website)s)" +msgstr "" +"Allegato a questa mail è il documento: {{ document }}\n" +"\n" +" --------\n" +"Questa mail è stata inviata da %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -70,20 +129,143 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Per accedere al documento fai click sul seguente link: {{ link }}\n\n--------\nQuesta mail è stata inviata da %(project_title)s (%(project_website)s)" +msgstr "" +"Per accedere al documento fai click sul seguente link: {{ link }}\n" +"\n" +"--------\n" +"Questa mail è stata inviata da %(project_title)s (%(project_website)s)" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "Appuntamento " -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "Elemento log" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "Elementi log" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "Mailing" @@ -97,9 +279,31 @@ msgid "Send document via email" msgstr "Invia il documento via mail" #: permissions.py:16 -msgid "View document mailing error log" +#, fuzzy +#| msgid "View document mailing error log" +msgid "View system mailing error log" msgstr "Vedi i log di errore del mailing documenti" +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" +msgstr "" + #: queues.py:12 msgid "Send document" msgstr "" @@ -110,11 +314,15 @@ msgstr "Link per il documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Template per l'oggetto del modulo e-mail per l'invio del collegamento al documento." +msgstr "" +"Template per l'oggetto del modulo e-mail per l'invio del collegamento al " +"documento." #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "Template per il corpo del modulo e-mail per l'invio del collegamento al documento." +msgstr "" +"Template per il corpo del modulo e-mail per l'invio del collegamento al " +"documento." #: settings.py:24 msgid "Document: {{ document }}" @@ -128,26 +336,59 @@ msgstr "Template per l'oggetto del modulo e-mail per l'invio documento." msgid "Template for the document email form body line." msgstr "Template per il corpo del modulo e-mail per l'invio documento." -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "Log errori mailing documento" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "%(count)ddocumento in coda per la consegna via mail" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "%(count)d documenti in coda per la consegna via mail" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Invia" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "%(count)d link documento in coda per la consegna via mail" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "%(count)dlink documenti in coda per la consegna via mail" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 4dd1829202..31d3c1e416 100644 --- a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po @@ -1,57 +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: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "Mailer" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "Datum en tijd" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "Bericht" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "E-mailadres" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Onderwerp" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Body" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "E-mail document" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "E-mail lin" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -72,18 +121,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "Datum en tijd" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "Loginvoer" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "Loginvoer" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -97,7 +265,27 @@ msgid "Send document via email" msgstr "Verzend document via e-mai" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -128,26 +316,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Verzenden" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 2a216e9a23..d754f743a0 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 # Wojtek Warczakowski , 2016 @@ -9,52 +9,109 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "Data i godzina" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "Adres e-mail:" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Temat" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Treść" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profile" +msgstr "Wysyłanie" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "Dokument e-mail" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "Link e-mail" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +#, fuzzy +#| msgid "Document mailing error log" +msgid "System mailer error log" msgstr "Błędy wysyłania dokumentów" +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profiles" +msgstr "Wysyłanie" + +#: links.py:58 views.py:246 +msgid "Test" +msgstr "" + #: literals.py:7 #, python-format msgid "" @@ -73,18 +130,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "Data godzina" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "Wpisy rejestru logów" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "Wysyłanie" @@ -98,7 +274,29 @@ msgid "Send document via email" msgstr "Wyślij dokument za pomocą e-mail" #: permissions.py:16 -msgid "View document mailing error log" +#, fuzzy +#| msgid "Document mailing error log" +msgid "View system mailing error log" +msgstr "Błędy wysyłania dokumentów" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -129,26 +327,59 @@ msgstr "Szablon tematu wiadomości email" msgid "Template for the document email form body line." msgstr "Szablon treści e-mail" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "Błędy wysyłania dokumentów" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Wyślij" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %s" +msgstr "" diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po index 535ffa6293..472d86034c 100644 --- a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po @@ -1,56 +1,105 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "Endereço de correio eletrónico" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Assunto" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Corpo" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "Documento de correio eletrónico" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "Hiperçigação de correio eletrónico" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -71,18 +120,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -96,7 +264,27 @@ msgid "Send document via email" msgstr "Enviar documento através de mensagem" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -109,7 +297,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." @@ -127,26 +317,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Enviar" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 80c355a16f..a67b9ec498 100644 --- a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -10,52 +10,107 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "Envio de emails" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "Data e hora" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "Mensagem" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "Endereço de E-mail" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Assunto" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Corpo" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profile" +msgstr "Envio de e-mails" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "Documento do e-mail" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "Ligação do e-mail" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +#, fuzzy +#| msgid "Document mailing error log" +msgid "System mailer error log" msgstr "Registro de erro de envio" +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +#, fuzzy +#| msgid "Mailing" +msgid "Mailing profiles" +msgstr "Envio de e-mails" + +#: links.py:58 views.py:246 +msgid "Test" +msgstr "" + #: literals.py:7 #, python-format msgid "" @@ -63,7 +118,10 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Se anexa a este documento de e-mail: {{ document }}\n--------\nEste e-mail foi enviado por %(project_title)s (%(project_website)s)" +msgstr "" +"Se anexa a este documento de e-mail: {{ document }}\n" +"--------\n" +"Este e-mail foi enviado por %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -72,20 +130,142 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Para acessar este documento clique na ligação a seguir: {{ link }}\n--------\nEste email foi enviado por %(project_title)s (%(project_website)s)" +msgstr "" +"Para acessar este documento clique na ligação a seguir: {{ link }}\n" +"--------\n" +"Este email foi enviado por %(project_title)s (%(project_website)s)" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "Data e hora" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "Entrada de registro" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "As entradas de log" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "Envio de e-mails" @@ -99,9 +279,31 @@ msgid "Send document via email" msgstr "Enviar documento por e-mail" #: permissions.py:16 -msgid "View document mailing error log" +#, fuzzy +#| msgid "View document mailing error log" +msgid "View system mailing error log" msgstr "Visualizar registro de erros de envio de e-mails" +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" +msgstr "" + #: queues.py:12 msgid "Send document" msgstr "" @@ -112,11 +314,14 @@ msgstr "Link para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Modelo para a linha de assunto do e-mail para envio do link do documento." +msgstr "" +"Modelo para a linha de assunto do e-mail para envio do link do documento." #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "Modelo para a linha do corpo do formulário do e-mail para envio do link do documento" +msgstr "" +"Modelo para a linha do corpo do formulário do e-mail para envio do link do " +"documento" #: settings.py:24 msgid "Document: {{ document }}" @@ -130,26 +335,59 @@ msgstr "Modelo para a linha de assunto do e-mail de envio de documento." msgid "Template for the document email form body line." msgstr "Modelo para a linha de corpo do e-mail para envio de documento." -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "Registro de erro de envio" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "%(count)d documento em fila para entrega de e-mail" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "%(count)d documentos em fila para entrega de e-mail" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Enviar" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "%(count)d link de documento em fila para entrega de e-mail" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "%(count)d links de documentos em fila para entrega de e-mail" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %s" +msgstr "" 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 f3276469e5..017030e7b2 100644 --- a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po @@ -1,56 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -71,18 +121,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "Data și ora" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -96,7 +265,27 @@ msgid "Send document via email" msgstr "" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -127,26 +316,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 d86083d8c7..75d4a7abd2 100644 --- a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po @@ -1,59 +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: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "Электронный почтальон" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "Дата и время" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "Сообщение" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "Адрес электронной почты" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "Тема" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "Тело письма" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +#, fuzzy +#| msgid "Document mailing error log" +msgid "System mailer error log" msgstr "Журнал ошибок отправки электронной почты" +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" +msgstr "" + #: literals.py:7 #, python-format msgid "" @@ -72,18 +125,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "Дата и время" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "Запись журнала" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "Записи журнала" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -97,9 +269,31 @@ msgid "Send document via email" msgstr "Отослать документ по электронной почте" #: permissions.py:16 -msgid "View document mailing error log" +#, fuzzy +#| msgid "View document mailing error log" +msgid "View system mailing error log" msgstr "Просмотр журнала ошибок отправки почты" +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" +msgstr "" + #: queues.py:12 msgid "Send document" msgstr "" @@ -128,26 +322,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "Журнал ошибок отправки электронной почты" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "Отправить" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 9dc174ffa2..4eb0ece615 100644 --- a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po @@ -1,56 +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: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -71,18 +121,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -96,7 +265,27 @@ msgid "Send document via email" msgstr "" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -127,26 +316,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %s" +msgstr "" diff --git a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..a38baab558 --- /dev/null +++ b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,372 @@ +# 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: 2017-07-09 02:28-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:36 +msgid "Mailer" +msgstr "" + +#: apps.py:51 +msgid "Date and time" +msgstr "" + +#: apps.py:54 models.py:19 models.py:126 +msgid "Message" +msgstr "" + +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 +msgid "Email address" +msgstr "" + +#: forms.py:58 +msgid "Subject" +msgstr "" + +#: forms.py:60 +msgid "Body" +msgstr "" + +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 +msgid "Email document" +msgstr "" + +#: links.py:20 links.py:26 +msgid "Email link" +msgstr "" + +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 +msgid "Date time" +msgstr "" + +#: models.py:25 +msgid "Log entry" +msgstr "" + +#: models.py:26 +msgid "Log entries" +msgstr "" + +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + +#: permissions.py:7 queues.py:8 settings.py:11 +msgid "Mailing" +msgstr "" + +#: permissions.py:10 +msgid "Send document link via email" +msgstr "" + +#: permissions.py:13 +msgid "Send document via email" +msgstr "" + +#: permissions.py:16 +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" +msgstr "" + +#: queues.py:12 +msgid "Send document" +msgstr "" + +#: settings.py:14 +msgid "Link for document: {{ document }}" +msgstr "" + +#: settings.py:15 +msgid "Template for the document link email form subject line." +msgstr "" + +#: settings.py:20 +msgid "Template for the document link email form body line." +msgstr "" + +#: settings.py:24 +msgid "Document: {{ document }}" +msgstr "" + +#: settings.py:25 +msgid "Template for the document email form subject line." +msgstr "" + +#: settings.py:30 +msgid "Template for the document email form body line." +msgstr "" + +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 +#, python-format +msgid "%(count)d document queued for email delivery" +msgstr "" + +#: views.py:51 +#, python-format +msgid "%(count)d documents queued for email delivery" +msgstr "" + +#: views.py:62 +msgid "Send" +msgstr "" + +#: views.py:121 +#, python-format +msgid "%(count)d document link queued for email delivery" +msgstr "" + +#: views.py:123 +#, python-format +msgid "%(count)d document links queued for email delivery" +msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 e2ab296f0e..58860b1f96 100644 --- a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po @@ -1,56 +1,105 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -71,18 +120,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -96,7 +264,27 @@ msgid "Send document via email" msgstr "" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -127,26 +315,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 219ca93c59..1d61408ea3 100644 --- a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po @@ -1,56 +1,105 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:27 +#: apps.py:36 msgid "Mailer" msgstr "" -#: apps.py:39 +#: apps.py:51 msgid "Date and time" msgstr "" -#: apps.py:43 models.py:16 +#: apps.py:54 models.py:19 models.py:126 msgid "Message" msgstr "" -#: forms.py:36 +#: apps.py:57 apps.py:72 models.py:31 +msgid "Label" +msgstr "" + +#: apps.py:60 +msgid "Default?" +msgstr "" + +#: apps.py:66 +msgid "Enabled?" +msgstr "" + +#: forms.py:57 forms.py:111 msgid "Email address" msgstr "" -#: forms.py:37 +#: forms.py:58 msgid "Subject" msgstr "" -#: forms.py:39 +#: forms.py:60 msgid "Body" msgstr "" -#: links.py:14 links.py:21 +#: forms.py:63 views.py:226 +msgid "Mailing profile" +msgstr "" + +#: forms.py:68 +msgid "Backend" +msgstr "" + +#: links.py:16 links.py:23 msgid "Email document" msgstr "" -#: links.py:18 links.py:24 +#: links.py:20 links.py:26 msgid "Email link" msgstr "" -#: links.py:28 views.py:23 -msgid "Document mailing error log" +#: links.py:30 +msgid "System mailer error log" +msgstr "" + +#: links.py:34 +msgid "User mailer create" +msgstr "" + +#: links.py:38 +msgid "Delete" +msgstr "" + +#: links.py:42 +msgid "Edit" +msgstr "" + +#: links.py:46 +msgid "Log" +msgstr "" + +#: links.py:50 +msgid "Mailing profiles list" +msgstr "" + +#: links.py:54 +msgid "Mailing profiles" +msgstr "" + +#: links.py:58 views.py:246 +msgid "Test" msgstr "" #: literals.py:7 @@ -71,18 +120,137 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: models.py:13 +#: mailers.py:14 +msgid "Host" +msgstr "" + +#: mailers.py:16 +msgid "The host to use for sending email." +msgstr "" + +#: mailers.py:22 +msgid "Port" +msgstr "" + +#: mailers.py:24 +msgid "Port to use for the SMTP server." +msgstr "" + +#: mailers.py:28 +msgid "Use TLS" +msgstr "" + +#: mailers.py:31 +msgid "" +"Whether to use a TLS (secure) connection when talking to the SMTP server. " +"This is used for explicit TLS connections, generally on port 587." +msgstr "" + +#: mailers.py:37 +msgid "Use SSL" +msgstr "" + +#: mailers.py:40 +msgid "" +"Whether to use an implicit TLS (secure) connection when talking to the SMTP " +"server. In most email documentation this type of TLS connection is referred " +"to as SSL. It is generally used on port 465. If you are experiencing " +"problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " +"and \"Use SSL\" are mutually exclusive, so only set one of those settings to " +"True." +msgstr "" + +#: mailers.py:50 +msgid "Username" +msgstr "" + +#: mailers.py:53 +msgid "" +"Username to use for the SMTP server. If empty, authentication won't " +"attempted." +msgstr "" + +#: mailers.py:60 +msgid "Password" +msgstr "" + +#: mailers.py:63 +msgid "" +"Password to use for the SMTP server. This setting is used in conjunction " +"with the username when authenticating to the SMTP server. If either of these " +"settings is empty, authentication won't be attempted." +msgstr "" + +#: mailers.py:80 +msgid "Django SMTP backend" +msgstr "" + +#: mailers.py:87 +msgid "File path" +msgstr "" + +#: mailers.py:93 +msgid "Django file based backend" +msgstr "" + +#: models.py:16 models.py:123 msgid "Date time" msgstr "" -#: models.py:22 +#: models.py:25 msgid "Log entry" msgstr "" -#: models.py:23 +#: models.py:26 msgid "Log entries" msgstr "" +#: models.py:35 +msgid "" +"If default, this mailing profile will be pre-selected on the document " +"mailing form." +msgstr "" + +#: models.py:37 +msgid "Default" +msgstr "" + +#: models.py:39 +msgid "Enabled" +msgstr "" + +#: models.py:42 +msgid "The dotted Python path to the backend class." +msgstr "" + +#: models.py:43 +msgid "Backend path" +msgstr "" + +#: models.py:46 +msgid "Backend data" +msgstr "" + +#: models.py:51 models.py:120 +msgid "User mailer" +msgstr "" + +#: models.py:52 +msgid "User mailers" +msgstr "" + +#: models.py:115 +msgid "Test email from Mayan EDMS" +msgstr "" + +#: models.py:132 +msgid "User mailer log entry" +msgstr "" + +#: models.py:133 +msgid "User mailer log entries" +msgstr "" + #: permissions.py:7 queues.py:8 settings.py:11 msgid "Mailing" msgstr "" @@ -96,7 +264,27 @@ msgid "Send document via email" msgstr "" #: permissions.py:16 -msgid "View document mailing error log" +msgid "View system mailing error log" +msgstr "" + +#: permissions.py:19 +msgid "Create an user mailer" +msgstr "" + +#: permissions.py:22 +msgid "Delete an user mailer" +msgstr "" + +#: permissions.py:25 +msgid "Edit an user mailer" +msgstr "" + +#: permissions.py:28 +msgid "View an user mailer" +msgstr "" + +#: permissions.py:31 +msgid "Use an user mailer" msgstr "" #: queues.py:12 @@ -127,26 +315,59 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:35 +#: views.py:37 +msgid "Document mailing error log" +msgstr "" + +#: views.py:49 #, python-format msgid "%(count)d document queued for email delivery" msgstr "" -#: views.py:37 +#: views.py:51 #, python-format msgid "%(count)d documents queued for email delivery" msgstr "" -#: views.py:48 +#: views.py:62 msgid "Send" msgstr "" -#: views.py:100 +#: views.py:121 #, python-format msgid "%(count)d document link queued for email delivery" msgstr "" -#: views.py:102 +#: views.py:123 #, python-format msgid "%(count)d document links queued for email delivery" msgstr "" + +#: views.py:132 +msgid "New mailing profile backend selection" +msgstr "" + +#: views.py:160 +#, python-format +msgid "Create a \"%s\" mailing profile" +msgstr "" + +#: views.py:181 +#, python-format +msgid "Delete mailing profile: %s" +msgstr "" + +#: views.py:195 +#, python-format +msgid "Edit mailing profile: %s" +msgstr "" + +#: views.py:213 +#, python-format +msgid "%s error log" +msgstr "" + +#: views.py:247 +#, python-format +msgid "Test mailing profile: %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 f924fd5bcb..8e70ecc7f0 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,64 +9,66 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "البيانات الوصفية" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "قيمة" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "نوع البيانات الوصفية" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "قيمة البيانات الوصفية" @@ -82,34 +84,49 @@ msgstr "اسم" msgid "Update" msgstr "تحديث" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "إزالة" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -122,41 +139,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "تحرير" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "أنواع البيانات الوصفية" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "نوع الوثيقة" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:61 views.py:252 +msgid "Edit" +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." msgstr "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -170,8 +180,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 search.py:25 @@ -190,8 +200,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 search.py:31 @@ -286,25 +295,25 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "إضافة" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" @@ -314,42 +323,43 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, 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:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" @@ -359,37 +369,37 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "قم بتعديل البيانات الوصفية للوثيقة: %s" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "تم تعديل البيانات الوصفية للوثيقة %s بنجاح" -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" @@ -399,62 +409,66 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Delete metadata types" +msgid "Document types for metadata type: %s" +msgstr "حذف نوع من البيانات الوصفية" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -546,9 +560,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -643,53 +654,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po index 942463db7c..56e6f15fb8 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,64 +9,65 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Стойност" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Стойност на мета данни" @@ -82,34 +83,49 @@ msgstr "Име" msgid "Update" msgstr "Актуализация" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Премахване" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -122,41 +138,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Редактиране" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Вид на документа" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:61 views.py:252 +msgid "Edit" +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." msgstr "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -170,8 +179,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 search.py:25 @@ -190,8 +199,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 search.py:31 @@ -286,163 +294,166 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Добави" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Non members of metadata set: %s" +msgid "Document types for metadata type: %s" +msgstr "non members of metadata set: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -518,9 +529,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -563,9 +571,6 @@ msgstr "" #~ msgid "Edit metadata set: %s" #~ msgstr "edit metadata set: %s" -#~ msgid "Non members of metadata set: %s" -#~ msgstr "non members of metadata set: %s" - #~ msgid "Members of metadata set: %s" #~ msgstr "members of metadata set: %s" @@ -615,53 +620,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." 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 c31a897827..91e00daff6 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,64 +9,66 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Metadata" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Vrijednost" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Metadata tip" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Metadata vrijednost" @@ -82,34 +84,49 @@ msgstr "Ime" msgid "Update" msgstr "Update" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Ukloni" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -122,41 +139,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Urediti" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Metadata tip" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Tip dokumenta" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Urediti" + #: 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 "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -170,8 +180,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 search.py:25 @@ -190,8 +200,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 search.py:31 @@ -286,166 +295,170 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Dodati" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "Metadata tip: %(metadata_type)s već postoji u dokumentu %(document)s." -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "Izmjeni metadata za dokument: %s" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadata za dokument %s uspješno izmjenjen." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Delete metadata types" +msgid "Document types for metadata type: %s" +msgstr "Izbriši metadata tip" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -525,9 +538,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -622,53 +632,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po index 82ea9b53b5..46feffb538 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,64 +9,65 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Metadata type" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Metadata værdi" @@ -82,34 +83,49 @@ msgstr "Navn" msgid "Update" msgstr "" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -122,41 +138,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Dokumenttype" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:61 views.py:252 +msgid "Edit" +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." msgstr "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -170,8 +179,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 search.py:25 @@ -190,8 +199,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 search.py:31 @@ -286,163 +294,166 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Non members of metadata set: %s" +msgid "Document types for metadata type: %s" +msgstr "non members of metadata set: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -518,9 +529,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -563,9 +571,6 @@ msgstr "" #~ msgid "Edit metadata set: %s" #~ msgstr "edit metadata set: %s" -#~ msgid "Non members of metadata set: %s" -#~ msgstr "non members of metadata set: %s" - #~ msgid "Members of metadata set: %s" #~ msgstr "members of metadata set: %s" @@ -615,53 +620,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." 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 60c188171c..1456d57ab1 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,64 +13,67 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Metadaten" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "Dokumente mit fehlenden erforderlichen Metadaten" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "Dokumente mit fehlenden optionalen Metadaten" -#: apps.py:117 +#: apps.py:116 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:123 +#: apps.py:122 msgid "Metadata type name" msgstr "Name Metadatentyp" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "Metadatentypwert" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "Metadatenwert" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "Gibt den Wert einer spezifischen Dokumentmetadatums zurück" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Wert" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "erforderlich" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Metadatentyp" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Metadatenwert" @@ -86,34 +89,51 @@ msgstr "Name" msgid "Update" msgstr "Aktualisieren" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "Fehler für Suchwert: %s" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "Fehler für Standardwert: %s" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "\"%s\" wird für diesen Dokumententyp benötigt." -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "Metadatentypen für die ausgewählten Dokumente." -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "Verfügbare Kontextvariablen:" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Entfernen" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Bezeichner" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +#, fuzzy +#| msgid "Optional metadata" +msgid "Optional" +msgstr "Optionale Metadaten" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "Metadaten hinzufügen" @@ -126,46 +146,44 @@ msgstr "Metadaten bearbeiten" msgid "Remove metadata" msgstr "Metadaten entfernen" -#: links.py:42 -msgid "Optional metadata" -msgstr "Optionale Metadaten" - -#: links.py:46 -msgid "Required metadata" -msgstr "Erforderliche Metadaten" - -#: links.py:51 -msgid "Create new" -msgstr "Erstellen" - -#: links.py:56 -msgid "Delete" -msgstr "Löschen" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Bearbeiten" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Metadatentypen" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Dokumententyp" + +#: links.py:53 +msgid "Create new" +msgstr "Erstellen" + +#: links.py:58 +msgid "Delete" +msgstr "Löschen" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Bearbeiten" + #: 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." - -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Bezeichner" +msgstr "" +"Name unter dem andere Apps diesen Wert referenzieren. Keine reservierten " +"Worte aus Python oder Leerzeichen verwenden." #: 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:55 search.py:22 msgid "Default" @@ -174,9 +192,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 search.py:25 msgid "Lookup" @@ -186,7 +207,9 @@ msgstr "Suche" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem geforderten Format nicht entspricht." +msgstr "" +"Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem " +"geforderten Format nicht entspricht." #: models.py:72 search.py:28 msgid "Validator" @@ -194,9 +217,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 search.py:31 msgid "Parser" @@ -290,163 +314,190 @@ msgstr "Primärschlüssel des hinzuzufügenden Metadatentyps" msgid "Primary key of the metadata type to be added to the document." msgstr "Primary Key des zum Dokument hinzuzufügenden Metadatentyps." -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "Ausgewählte Dokumente müssen den gleichen Typ haben." -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Hinzufügen" -#: views.py:97 +#: views.py:100 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:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "Metadatentypen hinzufügen zu Dokument: %s" -#: views.py:154 +#: views.py:157 #, 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:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, 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:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "Metadaten bearbeiten" msgstr[1] "Metadaten bearbeiten" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "Metadaten des Dokuments %s bearbeiten" -#: views.py:313 +#: views.py:320 #, 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:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadaten des Dokuments %s erfolgreich bearbeitet." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "Metadaten von Dokument %s" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 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:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, 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:483 +#: views.py:492 #, 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:494 +#: views.py:503 msgid "Create metadata type" msgstr "Metadatentyp erstellen" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "Metadatentyp %s löschen?" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "Metadatentyp %s bearbeiten" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "Interner Name" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "Verfügbare Metadatentypen" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "Zugewiesene Metadatentypen" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Optional metadata types for document type: %s" +msgid "Metadata types for document type: %s" msgstr "Optionale Metadatentypen für Dokumententyp %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "Erforderliche Metadatentypen für Dokumententyp %s" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Document type metadata type options" +msgid "Document types for metadata type: %s" +msgstr "Metadatentyp Optionen" + +#~ msgid "Required metadata" +#~ msgstr "Erforderliche Metadaten" + +#~| msgid "View metadata types" +#~ msgid "Available metadata types" +#~ msgstr "Verfügbare Metadatentypen" + +#~ msgid "Metadata types assigned" +#~ msgstr "Zugewiesene Metadatentypen" + +#~ msgid "Required metadata types for document type: %s" +#~ msgstr "Erforderliche Metadatentypen für Dokumententyp %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -619,53 +670,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po index 58bfa130fd..99f9a6706f 100644 --- a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po @@ -1,71 +1,74 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Metadata" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "Documents missing required metadata" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "Documents missing optional metadata" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "Queryset containing a MetadataType instance reference and a value for that metadata type" +msgstr "" +"Queryset containing a MetadataType instance reference and a value for that " +"metadata type" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "Metadata type name" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "Metadata type value" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "Value of a metadata" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "Return the value of a specific document metadata" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Value" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "Required" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Metadata type" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Metadata value" @@ -81,34 +84,51 @@ msgstr "Name" msgid "Update" msgstr "Update" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "Lookup value error: %s" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "Default value error: %s" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "\"%s\" is required for this document type." -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "Metadata types to be added to the selected documents." -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr " Available template context variables: " -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Remove" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Label" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +#, fuzzy +#| msgid "Optional metadata" +msgid "Optional" +msgstr "Optional metadata" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "Add metadata" @@ -121,46 +141,43 @@ msgstr "Edit metadata" msgid "Remove metadata" msgstr "Remove metadata" -#: links.py:42 -msgid "Optional metadata" -msgstr "Optional metadata" - -#: links.py:46 -msgid "Required metadata" -msgstr "Required metadata" - -#: links.py:51 -msgid "Create new" -msgstr "Create new" - -#: links.py:56 -msgid "Delete" -msgstr "Delete" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Edit" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Metadata types" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Document type" + +#: links.py:53 +msgid "Create new" +msgstr "Create new" + +#: links.py:58 +msgid "Delete" +msgstr "Delete" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Edit" + #: 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 used by other apps to reference this value. Do not use python reserved words, or spaces." - -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Label" +msgstr "" +"Name used by other apps to reference this value. Do not use python reserved " +"words, or spaces." #: 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 "Enter a template to render. Use Django's default templating language (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Enter a template to render. Use Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:55 search.py:22 msgid "Default" @@ -169,9 +186,12 @@ 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/)." -msgstr "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 "" +"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/)." #: models.py:65 search.py:25 msgid "Lookup" @@ -181,7 +201,9 @@ msgstr "Lookup" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "The validator will reject data entry if the value entered does not conform to the expected format." +msgstr "" +"The validator will reject data entry if the value entered does not conform " +"to the expected format." #: models.py:72 search.py:28 msgid "Validator" @@ -189,9 +211,9 @@ msgstr "Validator" #: 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." +"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." #: models.py:78 search.py:31 msgid "Parser" @@ -285,163 +307,187 @@ msgstr "Primary key of the metadata type to be added." msgid "Primary key of the metadata type to be added to the document." msgstr "Primary key of the metadata type to be added to the document." -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "Metadata add request performed on %(count)d document" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "Metadata add request performed on %(count)d documents" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "Selected documents must be of the same type." -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Add" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "Add metadata types to document" msgstr[1] "Add metadata types to documents" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "Add metadata types to document: %s" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; %(exception)s" +msgstr "" +"Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " +"%(exception)s" -#: views.py:170 +#: views.py:173 #, 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." +"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:180 +#: views.py:183 #, 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." +msgstr "" +"Metadata type: %(metadata_type)s already present in document %(document)s." -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "Metadata edit request performed on %(count)d document" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "Metadata edit request performed on %(count)d documents" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "Edit document metadata" msgstr[1] "Edit documents metadata" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "Edit metadata for document: %s" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "Error editing metadata for document: %(document)s; %(exception)s." -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadata for document %s edited successfully." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "Metadata for document: %s" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "Metadata remove request performed on %(count)d document" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "Metadata remove request performed on %(count)d documents" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "Remove metadata types from the document" msgstr[1] "Remove metadata types from the documents" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "Remove metadata types from the document: %s" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Successfully remove metadata type \"%(metadata_type)s\" from document: %(document)s." +msgstr "" +"Successfully remove metadata type \"%(metadata_type)s\" from document: " +"%(document)s." -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Error removing metadata type \"%(metadata_type)s\" from document: %(document)s; %(exception)s" +msgstr "" +"Error removing metadata type \"%(metadata_type)s\" from document: " +"%(document)s; %(exception)s" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "Create metadata type" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "Delete the metadata type: %s?" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "Edit metadata type: %s" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "Internal name" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "Available metadata types" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "Metadata types assigned" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Optional metadata types for document type: %s" +msgid "Metadata types for document type: %s" msgstr "Optional metadata types for document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "Required metadata types for document type: %s" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Document type metadata type options" +msgid "Document types for metadata type: %s" +msgstr "Document type metadata type options" + +#~ msgid "Required metadata" +#~ msgstr "Required metadata" + +#~| msgid "View metadata types" +#~ msgid "Available metadata types" +#~ msgstr "Available metadata types" + +#~ msgid "Metadata types assigned" +#~ msgstr "Metadata types assigned" + +#~ msgid "Required metadata types for document type: %s" +#~ msgstr "Required metadata types for document type: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -614,53 +660,47 @@ msgstr "Required metadata types for document type: %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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po index bc7fcda6fa..686e2f0539 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,64 +12,67 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05: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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Metadatos" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "Documentos que sin metadatos requeridos" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "Documentos sin metadatos opcionales" -#: apps.py:117 +#: apps.py:116 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:123 +#: apps.py:122 msgid "Metadata type name" msgstr "Nombre del tipo de metadatos" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "Valor del tipo de metadatos" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "Valor de un metadato" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "Retornar al valor de metadata de un documento específico" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Valor" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "Requerido" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Tipo de metadato" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Valor de metadato" @@ -85,34 +88,51 @@ msgstr "Nombre" msgid "Update" msgstr "Actualizar" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "Error en valor de búsqueda: %s" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "Error en valor por defecto: %s" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "\"%s\" es requerido para este tipo de documento." -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "Tipos de metadatos que se añadirán a los documentos seleccionados." -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "Variables de contexto de plantilla disponibles:" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Eliminar" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Etiqueta" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +#, fuzzy +#| msgid "Optional metadata" +msgid "Optional" +msgstr "Metadatos opcionales" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "Añadir metadatos" @@ -125,46 +145,43 @@ msgstr "Editar metadatos" msgid "Remove metadata" msgstr "Remover metadatos" -#: links.py:42 -msgid "Optional metadata" -msgstr "Metadatos opcionales" - -#: links.py:46 -msgid "Required metadata" -msgstr "Metadatos requeridos" - -#: links.py:51 -msgid "Create new" -msgstr "Crear nuevo" - -#: links.py:56 -msgid "Delete" -msgstr "Borrar" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Editar" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Tipos de metadatos" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Tipo de documento" + +#: links.py:53 +msgid "Create new" +msgstr "Crear nuevo" + +#: links.py:58 +msgid "Delete" +msgstr "Borrar" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Editar" + #: 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 "Nombre usado por otros módulos para hacer referencia a este valor. No utilize palabras reservadas de Python o espacios." - -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Etiqueta" +msgstr "" +"Nombre usado por otros módulos para hacer referencia a este valor. No " +"utilize palabras reservadas de Python o espacios." #: 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 "Introduzca una plantilla para generar. Use el lenguaje de plantillas de Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). " +msgstr "" +"Introduzca una plantilla para generar. Use el lenguaje de plantillas de " +"Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). " #: models.py:55 search.py:22 msgid "Default" @@ -173,9 +190,12 @@ 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/)." -msgstr "Introduzca una plantilla para generar. Debe resultar en una cadena de texto delimitada por comas. Use el lenguaje de plantillas de 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 "" +"Introduzca una plantilla para generar. Debe resultar en una cadena de texto " +"delimitada por comas. Use el lenguaje de plantillas de Django (https://docs." +"djangoproject.com/en/1.7/ref/templates/builtins/). " #: models.py:65 search.py:25 msgid "Lookup" @@ -185,7 +205,9 @@ msgstr "Lista de opciones" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "El validador rechazará la entrada de datos si el valor introducido no se ajusta al formato esperado." +msgstr "" +"El validador rechazará la entrada de datos si el valor introducido no se " +"ajusta al formato esperado." #: models.py:72 search.py:28 msgid "Validator" @@ -193,9 +215,10 @@ msgstr "Validador" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "El analizador volverá a formatear el valor introducido para ajustarse al formato esperado." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"El analizador volverá a formatear el valor introducido para ajustarse al " +"formato esperado." #: models.py:78 search.py:31 msgid "Parser" @@ -289,163 +312,191 @@ msgstr "Llave principal del tipo de meta datos a ser agregada." msgid "Primary key of the metadata type to be added to the document." msgstr "Llave primaria del tipo de metadato que se agregará al documento." -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "Solicitud de agregación de metadatos realizada en %(count)d documento " -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "Solicitud de agregación de metadatos realizada en %(count)d documentos" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "Los documentos seleccionados deben ser del mismo tipo." -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Agregar" -#: views.py:97 +#: views.py:100 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:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "Añadir tipos de metadatos al documento: %s" -#: views.py:154 +#: views.py:157 #, 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:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, 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:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "Solicitud de edición de metadatos realizada en %(count)d documento " -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "Solicitud de edición de metadatos realizada en %(count)d documentos" -#: views.py:249 +#: views.py:254 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:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "Editar metadatos del documento: %s" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "Error editando metadato para el documento %(document)s; %(exception)s." -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadatos del documento %s editados con éxito." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "Meta datos para el documento: %s" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" -msgstr "Solicitud de eliminación de metadatos realizada en %(count)d documento " +msgstr "" +"Solicitud de eliminación de metadatos realizada en %(count)d documento " -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" -msgstr "Solicitud de eliminación de metadatos realizada en %(count)d documentos" +msgstr "" +"Solicitud de eliminación de metadatos realizada en %(count)d documentos" -#: views.py:415 +#: views.py:424 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:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "Eliminar los tipos de metadatos del documento: %s" -#: views.py:473 +#: views.py:482 #, 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:483 +#: views.py:492 #, 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:494 +#: views.py:503 msgid "Create metadata type" msgstr "Crear tipo de metadatos" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "¿Borrar el tipo de metadato: %s?" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "Editar tipo de metadatos: %s" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "Nombre interno" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "Tipos de metadatos disponibles" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "Tipos de metadatos asignados" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Optional metadata types for document type: %s" +msgid "Metadata types for document type: %s" msgstr "Tipos de metadatos opcionales para tipo de documento: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "Tipos de metadata requerida para tipo de documento: %s" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Document type metadata type options" +msgid "Document types for metadata type: %s" +msgstr "Opciones de tipo de meta datos de tipo de documento " + +#~ msgid "Required metadata" +#~ msgstr "Metadatos requeridos" + +#~| msgid "View metadata types" +#~ msgid "Available metadata types" +#~ msgstr "Tipos de metadatos disponibles" + +#~ msgid "Metadata types assigned" +#~ msgstr "Tipos de metadatos asignados" + +#~ msgid "Required metadata types for document type: %s" +#~ msgstr "Tipos de metadata requerida para tipo de documento: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -618,53 +669,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po index 7f86f9b63c..d501b87836 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,64 +9,67 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "متادیتا" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "اسناد متا داده مورد نیاز را ندارد" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "محتوای مجموعه درخواستها شامل یک نمونه مرجع و یک مقدار برای متا داده مورد نظر است" +msgstr "" +"محتوای مجموعه درخواستها شامل یک نمونه مرجع و یک مقدار برای متا داده مورد نظر " +"است" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "نام نوع متا داده" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "مقدار نوع متاداده" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "مقدار متا داده" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "مقدار خاص مستندات متا داده" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "مقدار" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "الزامی" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "نوع متادیتا" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "مقدار متادیتا" @@ -82,34 +85,51 @@ msgstr "نام" msgid "Update" msgstr "به‌روزرسانی" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "حذف" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "برچسب" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +#, fuzzy +#| msgid "Optional metadata" +msgid "Optional" +msgstr "متادیتای اختیاری" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "اضافه کردن متادیتا" @@ -122,41 +142,34 @@ msgstr "ویرایش متادیتا" msgid "Remove metadata" msgstr "حذف کردن متادیتا" -#: links.py:42 -msgid "Optional metadata" -msgstr "متادیتای اختیاری" - -#: links.py:46 -msgid "Required metadata" -msgstr "متادیتای الزامی" - -#: links.py:51 -msgid "Create new" -msgstr "ایجاد" - -#: links.py:56 -msgid "Delete" -msgstr "حذف" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "ویرایش" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "انواه متادیتا" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "نوع سند" + +#: links.py:53 +msgid "Create new" +msgstr "ایجاد" + +#: links.py:58 +msgid "Delete" +msgstr "حذف" + +#: links.py:61 views.py:252 +msgid "Edit" +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." msgstr "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "برچسب" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -170,8 +183,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 search.py:25 @@ -190,8 +203,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 search.py:31 @@ -286,160 +298,173 @@ msgstr "کلید اولیه برای نوع متا داده اضافه گردد" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "افزودن" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "ًانواع متا داده را به اسناد اضافه کنید" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, 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:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "متادیتای نوع : %(metadata_type)s در سند %(document)s. موجود است." -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "اسناد متاداده را ویرایش کنید" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "ویرایش متادیتای سند : %s" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "متادیتای سند %s با موفقیت ویرایش شد." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "متا داده برای سند : %s" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "انواع متا داده را از اسناد حذف کنید" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "حذف موفق متادیتای نوع \"%(metadata_type)s\" از سند %(document)s." -#: views.py:483 +#: views.py:492 #, 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:494 +#: views.py:503 msgid "Create metadata type" msgstr "ایجاد نوع متا دیتا" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "ویرایش نوع متا دیتا : %s" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "نام داخلی" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Optional metadata types for document type: %s" +msgid "Metadata types for document type: %s" msgstr "متادیتا نوع اختیاری برای نوع ستئ %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "متادیتای نوع الزامی برای نوع سند :%s" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Document type metadata type options" +msgid "Document types for metadata type: %s" +msgstr "متادیتای قابل قبول برای این نوع از سند." + +#~ msgid "Required metadata" +#~ msgstr "متادیتای الزامی" + +#~ msgid "Required metadata types for document type: %s" +#~ msgstr "متادیتای نوع الزامی برای نوع سند :%s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -608,53 +633,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po index faa044f3a1..ba4d5c898f 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: # Christophe CHAUVET , 2016 @@ -13,64 +13,67 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Métadonnées" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "Documents avec des métadonnées manquantes" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "Documents avec métadonnées optionnelles manquantes" -#: apps.py:117 +#: apps.py:116 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:123 +#: apps.py:122 msgid "Metadata type name" msgstr "Nom du type de métadonnée" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "Valeur du type de métadonnée" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "Valeur de la métadonnées" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "Retourne la valeur de la métadonnée du document spécifié" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Valeur" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "Requis" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Type de métadonnée" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Valeur de la métadonnée" @@ -86,34 +89,51 @@ msgstr "Nom" msgid "Update" msgstr "Mettre à jour" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "Erreur de recherche de valeur : %s" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "Erreur de valeur par défaut : %s" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "\"%s\" est requis pour ce type de document." -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "Variable de contexte du modèle disponibles :" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Supprimer" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Libellé" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +#, fuzzy +#| msgid "Optional metadata" +msgid "Optional" +msgstr "Métadonnée optionnelle" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "Ajouter une métadonnée" @@ -126,46 +146,43 @@ msgstr "Modifier la métadonnée" msgid "Remove metadata" msgstr "Supprimer la métadonnée" -#: links.py:42 -msgid "Optional metadata" -msgstr "Métadonnée optionnelle" - -#: links.py:46 -msgid "Required metadata" -msgstr "Metadonnée requise" - -#: links.py:51 -msgid "Create new" -msgstr "Créer une nouvelle" - -#: links.py:56 -msgid "Delete" -msgstr "Supprimer" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Modifier" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Types de métadonnées" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Type de document" + +#: links.py:53 +msgid "Create new" +msgstr "Créer une nouvelle" + +#: links.py:58 +msgid "Delete" +msgstr "Supprimer" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Modifier" + #: 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." - -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Libellé" +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:51 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 search.py:22 msgid "Default" @@ -174,9 +191,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 search.py:25 msgid "Lookup" @@ -186,7 +206,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 search.py:28 msgid "Validator" @@ -194,9 +216,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 search.py:31 msgid "Parser" @@ -290,163 +313,191 @@ msgstr "Clé primaire du type de la métadonnée à ajouter." msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Ajouter" -#: views.py:97 +#: views.py:100 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:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, 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:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, 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:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 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:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "Modifier les métadonnées pour le document: %s" -#: views.py:313 +#: views.py:320 #, 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:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Métadonnées pour le document %s modifiées avec succès." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "Métadonnées du document: %s" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 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:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, 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:483 +#: views.py:492 #, 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:494 +#: views.py:503 msgid "Create metadata type" msgstr "Créer un type de métadonnée" -#: views.py:510 +#: views.py:519 #, 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?" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "Modifier le type de métadonnée: %s" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "Nom interne" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "Types de métadonnées disponibles" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "Types de métadonnées attribués" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Optional metadata types for document type: %s" +msgid "Metadata types for document type: %s" msgstr "Types de métadonnées optionnelles pour le type de document: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "Types de métadonnées requises pour le type de document: %s" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Document type metadata type options" +msgid "Document types for metadata type: %s" +msgstr "Options de type de document de type de métadonnées" + +#~ msgid "Required metadata" +#~ msgstr "Metadonnée requise" + +#~| msgid "View metadata types" +#~ msgid "Available metadata types" +#~ msgstr "Types de métadonnées disponibles" + +#~ msgid "Metadata types assigned" +#~ msgstr "Types de métadonnées attribués" + +#~ msgid "Required metadata types for document type: %s" +#~ msgstr "Types de métadonnées requises pour le type de document: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -619,53 +670,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po index b824f70b01..4e42ea5889 100644 --- a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po @@ -1,71 +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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Metaadat típus" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Metaadat érték" @@ -81,34 +82,49 @@ msgstr "" msgid "Update" msgstr "" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -121,41 +137,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Dokumentum típus" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:61 views.py:252 +msgid "Edit" +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." msgstr "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -169,8 +178,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 search.py:25 @@ -189,8 +198,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 search.py:31 @@ -285,163 +293,166 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Non members of metadata set: %s" +msgid "Document types for metadata type: %s" +msgstr "non members of metadata set: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -517,9 +528,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -562,9 +570,6 @@ msgstr "" #~ msgid "Edit metadata set: %s" #~ msgstr "edit metadata set: %s" -#~ msgid "Non members of metadata set: %s" -#~ msgstr "non members of metadata set: %s" - #~ msgid "Members of metadata set: %s" #~ msgstr "members of metadata set: %s" @@ -614,53 +619,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po index 3fabfc6d4a..abec5df5cc 100644 --- a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po @@ -1,71 +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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Jenis 'metadata'" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Nilai 'metadata'" @@ -81,34 +82,49 @@ msgstr "" msgid "Update" msgstr "" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "hapus" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -121,41 +137,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Jenis dokumen" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:61 views.py:252 +msgid "Edit" +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." msgstr "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -169,8 +178,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 search.py:25 @@ -189,8 +198,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 search.py:31 @@ -285,160 +293,163 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "tambah" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Non members of metadata set: %s" +msgid "Document types for metadata type: %s" +msgstr "non members of metadata set: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -510,9 +521,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -555,9 +563,6 @@ msgstr "" #~ msgid "Edit metadata set: %s" #~ msgstr "edit metadata set: %s" -#~ msgid "Non members of metadata set: %s" -#~ msgstr "non members of metadata set: %s" - #~ msgid "Members of metadata set: %s" #~ msgstr "members of metadata set: %s" @@ -607,53 +612,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po index 2d9b102431..918e6fd539 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: # Marco Camplese , 2016 @@ -10,64 +10,66 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Metadati" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "Nel documento manca un metadato obbligatorio" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "Nel documento mancano metadati opzionali" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "Queryset che contiene il riferimento all'istanza MetadataType e il valore " +msgstr "" +"Queryset che contiene il riferimento all'istanza MetadataType e il valore " -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "Nome tipo metadato" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "Valore del tipo metadato" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "Valore del metadato" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "Ritorna il valore di un metadato specifico del documento" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Valore" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "Obbligatorio" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Tipo di metadato" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Valore metadata" @@ -83,34 +85,51 @@ msgstr "Nome" msgid "Update" msgstr "Aggiornato" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "Errore nel valore di ricerca: %s" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "Valore di default errore: %s" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "\"%s\" è richiesto per questo tipo di documento.." -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "Variabili di contesto template disponibili:" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Revoca" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Etichetta" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +#, fuzzy +#| msgid "Optional metadata" +msgid "Optional" +msgstr "Metadato opzionale" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "Aggiungi metadato" @@ -123,46 +142,43 @@ msgstr "Modifica metadato" msgid "Remove metadata" msgstr "Rimuovi metadato" -#: links.py:42 -msgid "Optional metadata" -msgstr "Metadato opzionale" - -#: links.py:46 -msgid "Required metadata" -msgstr "Metadato obbligatorio" - -#: links.py:51 -msgid "Create new" -msgstr "Crea nuovo" - -#: links.py:56 -msgid "Delete" -msgstr "Cancella" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Modifica" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Tipi di Metadati" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Tipo documento " + +#: links.py:53 +msgid "Create new" +msgstr "Crea nuovo" + +#: links.py:58 +msgid "Delete" +msgstr "Cancella" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Modifica" + #: 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 "Nome usato dalle altre app per riferirsi a questo valore. Non utilizzare parole riservate di python o spazi." - -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Etichetta" +msgstr "" +"Nome usato dalle altre app per riferirsi a questo valore. Non utilizzare " +"parole riservate di python o spazi." #: 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 "Inserisci il template da renderizzare. Usa il linguaggio di template di Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Inserisci il template da renderizzare. Usa il linguaggio di template di " +"Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:55 search.py:22 msgid "Default" @@ -171,9 +187,12 @@ 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/)." -msgstr "Inserisci il template da renderizzare. Deve essere una stringa separata da virgole. Usa il linguaggio di template di 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 "" +"Inserisci il template da renderizzare. Deve essere una stringa separata da " +"virgole. Usa il linguaggio di template di Django (https://docs.djangoproject." +"com/en/1.7/ref/templates/builtins/)" #: models.py:65 search.py:25 msgid "Lookup" @@ -183,7 +202,9 @@ msgstr "Ricerca" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Il validatore rifiuterà l'inserimento se il valore immesso non è conforme al formato richiesto." +msgstr "" +"Il validatore rifiuterà l'inserimento se il valore immesso non è conforme al " +"formato richiesto." #: models.py:72 search.py:28 msgid "Validator" @@ -191,9 +212,10 @@ msgstr "Validatore" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "Il parser riformatta il valore immesso per renderlo conforme al formato voluto." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"Il parser riformatta il valore immesso per renderlo conforme al formato " +"voluto." #: models.py:78 search.py:31 msgid "Parser" @@ -287,163 +309,189 @@ msgstr "Chiave primaria del tipo metadato da aggiungere." msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Aggiungi" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "Aggiungi tipo metadato al documento" msgstr[1] "Aggiungi tipo metadati ai documenti " -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Errore aggiungendo il tipo metadato \"%(metadata_type)s\" al documento: %(document)s; %(exception)s" +msgstr "" +"Errore aggiungendo il tipo metadato \"%(metadata_type)s\" al documento: " +"%(document)s; %(exception)s" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, 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:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "Modifica metadato documento" msgstr[1] "Modifica metadato documenti" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "Modifica metadata per il documento: %s" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Errore modifica metadato per il documento: %(document)s; %(exception)s." +msgstr "" +"Errore modifica metadato per il documento: %(document)s; %(exception)s." -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadata per il documento %s modificato con successo." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "Metadati per il documento: %s" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "Rimuovi tipi matadato dal documento" msgstr[1] "Rimuovi tipi matadato dai documenti" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Rimosso con successo il tipo metadato \"%(metadata_type)s\" dal documento: %(document)s." +msgstr "" +"Rimosso con successo il tipo metadato \"%(metadata_type)s\" dal documento: " +"%(document)s." -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Errore rimuovendo il tipo metadato \"%(metadata_type)s\" dal documento: %(document)s; %(exception)s" +msgstr "" +"Errore rimuovendo il tipo metadato \"%(metadata_type)s\" dal documento: " +"%(document)s; %(exception)s" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "Crea tipo metadato" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "Cancellare il tipo metadato: %s?" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "Modifica il tipo metadato: %s" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "Nome interno" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "Tipo metadato disponibili" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "Tipi metadato assegnati" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Optional metadata types for document type: %s" +msgid "Metadata types for document type: %s" msgstr "Tipi metadati opzionali per il tipo documento: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "Tipi metadati obbligatori per il tipo documento: %s" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Document type metadata type options" +msgid "Document types for metadata type: %s" +msgstr "Opzione per tipo documento del tipo metadato" + +#~ msgid "Required metadata" +#~ msgstr "Metadato obbligatorio" + +#~| msgid "View metadata types" +#~ msgid "Available metadata types" +#~ msgstr "Tipo metadato disponibili" + +#~ msgid "Metadata types assigned" +#~ msgstr "Tipi metadato assegnati" + +#~ msgid "Required metadata types for document type: %s" +#~ msgstr "Tipi metadati obbligatori per il tipo documento: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -616,53 +664,47 @@ msgstr "Tipi metadati obbligatori per il tipo 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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." 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 5e0d009cc9..fe049ae57f 100644 --- a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Evelijn Saaltink , 2016 @@ -10,64 +10,65 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Metadata" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "Documenten missen vereiste metadata" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "Documenten met ontbrekende optionele metadata" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "Metadata soortnaam" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "Metadata typenaam" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "Waarde van een metadata" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Waarde" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "Verplicht" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Metadata type" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Metadata waarde" @@ -83,34 +84,51 @@ msgstr "Naam" msgid "Update" msgstr "Updaten" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "Standaard waardefout: %s" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "\"%s\" is vereist voor deze documentsoort." -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Verwijder" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Label" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +#, fuzzy +#| msgid "Optional metadata" +msgid "Optional" +msgstr "Optionele metadata" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "Voeg metadata toe" @@ -123,41 +141,34 @@ msgstr "Bewerk metadata" msgid "Remove metadata" msgstr "Verwijder metadata" -#: links.py:42 -msgid "Optional metadata" -msgstr "Optionele metadata" - -#: links.py:46 -msgid "Required metadata" -msgstr "Vereiste metadata" - -#: links.py:51 -msgid "Create new" -msgstr "Maak nieuwe aan" - -#: links.py:56 -msgid "Delete" -msgstr "Verwijder" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "bewerken" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Metadatasoorten" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Documentsoort" + +#: links.py:53 +msgid "Create new" +msgstr "Maak nieuwe aan" + +#: links.py:58 +msgid "Delete" +msgstr "Verwijder" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "bewerken" + #: 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 "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Label" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -171,8 +182,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 search.py:25 @@ -191,8 +202,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 search.py:31 @@ -287,163 +297,169 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Voeg toe" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Delete metadata types" +msgid "Document types for metadata type: %s" +msgstr "Verwijder metadatatypes" + +#~ msgid "Required metadata" +#~ msgstr "Vereiste metadata" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -519,9 +535,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -616,53 +629,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po index 52f5335de6..dfb53f699e 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 @@ -12,64 +12,69 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Metadane" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "Dokumenty, w których brak jest wymaganych metadanych" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "Dokumenty, w których brak jest opcjonalnych metadanych" -#: apps.py:117 +#: apps.py:116 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:123 +#: apps.py:122 msgid "Metadata type name" msgstr "Nazwa typu metadanych" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "Wartość typu metadanych" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "Wartość metadanych" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Wartość" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "Wymagane" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Typ metadanych" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Wartość metadanych" @@ -85,34 +90,51 @@ msgstr "Nazwa" msgid "Update" msgstr "Aktualizacja" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "Błąd dotyczący domyślnej wartości: %s" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "Dostępne zmienne kontekstowe szablonu:" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Usuń" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Etykieta" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +#, fuzzy +#| msgid "Optional metadata" +msgid "Optional" +msgstr "Metadane opcjonalne" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "Dodaj metadane" @@ -125,46 +147,41 @@ msgstr "Edytuj metadane" msgid "Remove metadata" msgstr "Usuń metadane" -#: links.py:42 -msgid "Optional metadata" -msgstr "Metadane opcjonalne" - -#: links.py:46 -msgid "Required metadata" -msgstr "Metadane wymagane" - -#: links.py:51 -msgid "Create new" -msgstr "Utwórz nowy" - -#: links.py:56 -msgid "Delete" -msgstr "Usuń" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Edytuj" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Typy metadanych" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Typ dokumentu" + +#: links.py:53 +msgid "Create new" +msgstr "Utwórz nowy" + +#: links.py:58 +msgid "Delete" +msgstr "Usuń" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Edytuj" + #: 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 "" -#: models.py:47 search.py:19 -msgid "Label" -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 "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 search.py:22 msgid "Default" @@ -173,9 +190,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 search.py:25 msgid "Lookup" @@ -185,7 +205,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 search.py:28 msgid "Validator" @@ -193,8 +215,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 search.py:31 @@ -289,25 +310,25 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Dodaj" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" @@ -315,42 +336,41 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" @@ -358,37 +378,38 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "" -#: views.py:313 +#: views.py:320 #, 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:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadane dla dokumentu %s zostały pomyślnie zmodyfikowane." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "Metadane dokumentu: %s" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" @@ -396,62 +417,69 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Metadata for document: %s" +msgid "Metadata types for document type: %s" +msgstr "Metadane dokumentu: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Document type metadata type options" +msgid "Document types for metadata type: %s" +msgstr "Opcje typu metadanych dla typu dokumentów" + +#~ msgid "Required metadata" +#~ msgstr "Metadane wymagane" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -632,53 +660,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po index cf9b3f867e..1b7d0253b2 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,64 +11,65 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Metadados" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Valor" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Tipo de metadados" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Valor de metadados" @@ -84,34 +85,49 @@ msgstr "Nome" msgid "Update" msgstr "Atualizar" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Remover" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Nome" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -124,41 +140,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "Eliminar" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Editar" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Tipos de metadados" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Tipo de documento" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "Eliminar" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Editar" + #: 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 "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Nome" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -172,8 +181,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 search.py:25 @@ -192,8 +201,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 search.py:31 @@ -288,163 +296,169 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Adicionar" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, 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:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "Editar os metadados do documento: %s" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadados do documento %s alterados com sucesso." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Delete metadata types" +msgid "Document types for metadata type: %s" +msgstr "Excluir tipos de metadados" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -520,9 +534,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -617,53 +628,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." 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 445139066c..1ed96c67f7 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: # Aline Freitas , 2016 @@ -13,64 +13,67 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Metadados" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "Documentos em falta metadados necessários" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "Documentos sem metadados opcionais" -#: apps.py:117 +#: apps.py:116 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:123 +#: apps.py:122 msgid "Metadata type name" msgstr "Metadados nome do tipo" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "Metadados valor do tipo" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "Valor do metadata" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "Devolver o valor de um documento específico de metadados" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Valor" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "exigido" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Tipo de metadados" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Valor de metadados" @@ -86,34 +89,51 @@ msgstr "Nome" msgid "Update" msgstr "Atualizar" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "Erro de valor de pesquisa: %s" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "Erro de valor padrão: %s" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "\"%s\" é necessário para este tipo de documento." -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "Tipos de metadados a serem adicionados aos documentos selecionados." -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "Variáveis de contexto do modelo disponíveis:" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Remover" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Label" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +#, fuzzy +#| msgid "Optional metadata" +msgid "Optional" +msgstr "Metadados Opcional" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "Adicionar metadados" @@ -126,46 +146,43 @@ msgstr "Editar Metadata" msgid "Remove metadata" msgstr "Remover metadado" -#: links.py:42 -msgid "Optional metadata" -msgstr "Metadados Opcional" - -#: links.py:46 -msgid "Required metadata" -msgstr "Necessita do metadato" - -#: links.py:51 -msgid "Create new" -msgstr "Criar novo" - -#: links.py:56 -msgid "Delete" -msgstr "Excluir" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Editar" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Tipos de metadados" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Tipo de Documento" + +#: links.py:53 +msgid "Create new" +msgstr "Criar novo" + +#: links.py:58 +msgid "Delete" +msgstr "Excluir" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Editar" + #: 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 "Nome usado por outros aplicativos em referência a este valor. Não usar palavras reservadas de python, ou espaços." - -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Label" +msgstr "" +"Nome usado por outros aplicativos em referência a este valor. Não usar " +"palavras reservadas de python, ou espaços." #: 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 "Insira um modelo para renderizar. Use a linguagem de modelo padrão do Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Insira um modelo para renderizar. Use a linguagem de modelo padrão do Django " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:55 search.py:22 msgid "Default" @@ -174,9 +191,12 @@ 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/)." -msgstr "Insira um modelo para renderizar. Precisa resultar em uma seqüência de caracteres delimitada por vírgulas. Use a linguagem de modelo padrão do 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 "" +"Insira um modelo para renderizar. Precisa resultar em uma seqüência de " +"caracteres delimitada por vírgulas. Use a linguagem de modelo padrão do " +"Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:65 search.py:25 msgid "Lookup" @@ -186,7 +206,9 @@ msgstr "Tipo de metadados não é válido, para o tipo de documento" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "O validador rejeitará a entrada de dados se o valor inserido não estiver de acordo com o formato esperado." +msgstr "" +"O validador rejeitará a entrada de dados se o valor inserido não estiver de " +"acordo com o formato esperado." #: models.py:72 search.py:28 msgid "Validator" @@ -194,9 +216,10 @@ msgstr "Validador" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "O analisador irá reformatar o valor inserido para estar em conformidade com o formato esperado." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"O analisador irá reformatar o valor inserido para estar em conformidade com " +"o formato esperado." #: models.py:78 search.py:31 msgid "Parser" @@ -290,163 +313,188 @@ msgstr "Chave primária do tipo de metadados a ser adicionado." msgid "Primary key of the metadata type to be added to the document." msgstr "Chave primária do tipo de metadados a ser adicionado ao documento." -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "Solicitação de adicionar metadados executada em %(count)d documento" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "Solicitação de inserção de metadados realizada em %(count)d documentos" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "Os documentos selecionados devem ser do mesmo tipo." -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Adicionar" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "Adicionar tipos de metadados para o documento" msgstr[1] "Adicionar tipos de metadados para os documentos" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "Adicionar tipos de metadados ao documento: %s" -#: views.py:154 +#: views.py:157 #, 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:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, 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:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "Solicitação de edição de metadados executada em %(count)d documento" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "Solicitação de edição de metadados executada em %(count)d documentos" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "Editar metadado do documento" msgstr[1] "Editar metadados dos documentos" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "Editar os metadados do documento: %s" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "Erro editando metadados para o documento: %(document)s; %(exception)s." -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadados para o documento %s alterados com sucesso." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "Metadados para documento: %s" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "Pedido de remoção de metadados executado em %(count)d documento" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "Solicitação de remoção de metadados realizada em %(count)d documentos" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "Remover tipos de metadados do documento" msgstr[1] "Remover tipos de metadados dos documentos" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "Remover tipos de metadados do documento: %s" -#: views.py:473 +#: views.py:482 #, 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:483 +#: views.py:492 #, 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:494 +#: views.py:503 msgid "Create metadata type" msgstr "Criar Tipo de documento" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "Apagar o tipo de metadados: %s?" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "Editar o tipo de documento: %s" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "nome interno" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "Tipos de metadados disponíveis" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "Tipos de metadados atribuídos" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Optional metadata types for document type: %s" +msgid "Metadata types for document type: %s" msgstr "Tipo de metadado opicional para os tipos de documentos : %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "Tipos de metadados requeridos para documento do tipo: %s" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Document type metadata type options" +msgid "Document types for metadata type: %s" +msgstr "Tipo de Documento - Opções de tipo de metadados" + +#~ msgid "Required metadata" +#~ msgstr "Necessita do metadato" + +#~| msgid "View metadata types" +#~ msgid "Available metadata types" +#~ msgstr "Tipos de metadados disponíveis" + +#~ msgid "Metadata types assigned" +#~ msgstr "Tipos de metadados atribuídos" + +#~ msgid "Required metadata types for document type: %s" +#~ msgstr "Tipos de metadados requeridos para documento do tipo: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -619,53 +667,47 @@ msgstr "Tipos de metadados requeridos para documento do tipo: %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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." 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 5c1cfb56c6..00fcf7063f 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,64 +9,66 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Metadate" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Valoare" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Metadate de tip" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Valoare metadate " @@ -82,34 +84,49 @@ msgstr "Nume" msgid "Update" msgstr "Actualizați" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Scoate" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Etichetă" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -122,41 +139,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "Șterge" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Editează" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Metadate tipuri de" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Tip document" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "Șterge" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Editează" + #: 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 "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Etichetă" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -170,8 +180,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 search.py:25 @@ -190,8 +200,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 search.py:31 @@ -286,166 +295,173 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Adaugă" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, 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:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "Editați metadate pentru document:% s" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadate pentru documentul %s editat cu succes." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Delete metadata types" +msgid "Document types for metadata type: %s" +msgstr "Ștergeți tipuri de metadate" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -525,9 +541,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -622,53 +635,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po index e3d7cfd855..58c886b86b 100644 --- a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # lilo.panic, 2016 @@ -9,64 +9,67 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Метаданные" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Значение" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "Требуется" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Тип метаданных" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Значение метаданных" @@ -82,34 +85,51 @@ msgstr "Имя" msgid "Update" msgstr "Обновить" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Удалить" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Надпись" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +#, fuzzy +#| msgid "Optional metadata" +msgid "Optional" +msgstr "Необязательные метаданные" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "Добавить метаданные" @@ -122,41 +142,34 @@ msgstr "Редактировать метаданные" msgid "Remove metadata" msgstr "Удалить метаданные" -#: links.py:42 -msgid "Optional metadata" -msgstr "Необязательные метаданные" - -#: links.py:46 -msgid "Required metadata" -msgstr "Обязательные метаданные" - -#: links.py:51 -msgid "Create new" -msgstr "Создать новые" - -#: links.py:56 -msgid "Delete" -msgstr "Удалить" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Редактировать" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "Типы метаданных" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Тип документа" + +#: links.py:53 +msgid "Create new" +msgstr "Создать новые" + +#: links.py:58 +msgid "Delete" +msgstr "Удалить" + +#: links.py:61 views.py:252 +msgid "Edit" +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." msgstr "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Надпись" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -170,8 +183,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 search.py:25 @@ -190,9 +203,10 @@ msgstr "Валидатор" #: 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 "" +"Введённое значение будет переформатировано парсером так, чтобы удовлетворять " +"требованиям формата." #: models.py:78 search.py:31 msgid "Parser" @@ -286,25 +300,25 @@ msgstr "Первичный ключ добавляемого типа метад msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Добавить" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "Добавить тип метаданных к документам" @@ -312,42 +326,44 @@ msgstr[1] "Добавить типы метаданных к документа msgstr[2] "Добавить типы метаданных к документам" msgstr[3] "Добавить типы метаданных к документам" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, 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:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "Тип метаданных: %(metadata_type)s уже есть в документе %(document)s." -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "Редактировать метаданные документа." @@ -355,37 +371,38 @@ msgstr[1] "Редактировать метаданные документов. msgstr[2] "Редактировать метаданные документов." msgstr[3] "Редактировать метаданные документов." -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "Редактировать метаданные документа:%s." -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Ошибка при редактировании метаданных документа: %(document)s; %(exception)s." +msgstr "" +"Ошибка при редактировании метаданных документа: %(document)s; %(exception)s." -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Метаданные для документов %s изменены." -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "Метаданные документа: %s" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "Удалить тип метаданных из документов" @@ -393,62 +410,83 @@ msgstr[1] "Удалить типы метаданных из документо msgstr[2] "Удалить типы метаданных из документов" msgstr[3] "Удалить типы метаданных из документов" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Успешно удалён тип метаданных \"%(metadata_type)s\" из документа %(document)s." +msgstr "" +"Успешно удалён тип метаданных \"%(metadata_type)s\" из документа " +"%(document)s." -#: views.py:483 +#: views.py:492 #, 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:494 +#: views.py:503 msgid "Create metadata type" msgstr "Создать тип метаданных" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "Удалить тип метаданных: %s?" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "Редактировать тип метаданных: %s" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "Внутреннее имя" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "Доступные типы метаданных" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "Назначенные типы метаданных" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Optional metadata types for document type: %s" +msgid "Metadata types for document type: %s" msgstr "Дополнительные типы метаданных для типов документов: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "Обязательные типы метаданных для типов документов: %s" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Delete the metadata type: %s?" +msgid "Document types for metadata type: %s" +msgstr "Удалить тип метаданных: %s?" + +#~ msgid "Required metadata" +#~ msgstr "Обязательные метаданные" + +#~| msgid "View metadata types" +#~ msgid "Available metadata types" +#~ msgstr "Доступные типы метаданных" + +#~ msgid "Metadata types assigned" +#~ msgstr "Назначенные типы метаданных" + +#~ msgid "Required metadata types for document type: %s" +#~ msgstr "Обязательные типы метаданных для типов документов: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -629,53 +667,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." 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 172b40e99f..f6c7623b51 100644 --- a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -1,71 +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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Tip metapodatkov" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Vrednost metapodatkov" @@ -81,34 +83,49 @@ msgstr "Ime" msgid "Update" msgstr "" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "Oznaka" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -121,41 +138,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Tip dokumenta" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:61 views.py:252 +msgid "Edit" +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." msgstr "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "Oznaka" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -169,8 +179,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 search.py:25 @@ -189,8 +199,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 search.py:31 @@ -285,25 +294,25 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" @@ -311,42 +320,41 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" @@ -354,37 +362,37 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" @@ -392,62 +400,66 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Non members of metadata set: %s" +msgid "Document types for metadata type: %s" +msgstr "non members of metadata set: %s" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -531,9 +543,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -576,9 +585,6 @@ msgstr "" #~ msgid "Edit metadata set: %s" #~ msgstr "edit metadata set: %s" -#~ msgid "Non members of metadata set: %s" -#~ msgstr "non members of metadata set: %s" - #~ msgid "Members of metadata set: %s" #~ msgstr "members of metadata set: %s" @@ -628,53 +634,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..3f1314e958 --- /dev/null +++ b/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,447 @@ +# 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: 2017-07-09 02:28-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=INTEGER; plural=EXPRESSION;\n" + +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 +#: settings.py:10 +msgid "Metadata" +msgstr "" + +#: apps.py:80 +msgid "Documents missing required metadata" +msgstr "" + +#: apps.py:97 +msgid "Documents missing optional metadata" +msgstr "" + +#: apps.py:116 +msgid "" +"Queryset containing a MetadataType instance reference and a value for that " +"metadata type" +msgstr "" + +#: apps.py:122 +msgid "Metadata type name" +msgstr "" + +#: apps.py:125 +msgid "Metadata type value" +msgstr "" + +#: apps.py:129 +msgid "Value of a metadata" +msgstr "" + +#: apps.py:131 +msgid "Return the value of a specific document metadata" +msgstr "" + +#: apps.py:158 forms.py:20 models.py:159 +msgid "Value" +msgstr "" + +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 +msgid "Required" +msgstr "" + +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 +msgid "Metadata type" +msgstr "" + +#: apps.py:187 apps.py:196 +msgid "Metadata value" +msgstr "" + +#: forms.py:13 +msgid "ID" +msgstr "" + +#: forms.py:16 models.py:45 search.py:16 +msgid "Name" +msgstr "" + +#: forms.py:25 +msgid "Update" +msgstr "" + +#: forms.py:75 +#, python-format +msgid "Lookup value error: %s" +msgstr "" + +#: forms.py:88 +#, python-format +msgid "Default value error: %s" +msgstr "" + +#: forms.py:104 models.py:124 +#, python-format +msgid "\"%s\" is required for this document type." +msgstr "" + +#: forms.py:122 +msgid "Metadata types to be added to the selected documents." +msgstr "" + +#: forms.py:151 +msgid " Available template context variables: " +msgstr "" + +#: forms.py:162 views.py:422 +msgid "Remove" +msgstr "" + +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + +#: links.py:16 links.py:24 +msgid "Add metadata" +msgstr "" + +#: links.py:20 links.py:27 +msgid "Edit metadata" +msgstr "" + +#: links.py:30 links.py:34 +msgid "Remove metadata" +msgstr "" + +#: links.py:43 links.py:66 models.py:92 views.py:551 +msgid "Metadata types" +msgstr "" + +#: links.py:48 +msgid "Document types" +msgstr "" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "" + +#: models.py:42 +msgid "" +"Name used by other apps to reference this value. Do not use python reserved " +"words, or spaces." +msgstr "" + +#: 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:55 search.py:22 +msgid "Default" +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/)." +msgstr "" + +#: models.py:65 search.py:25 +msgid "Lookup" +msgstr "" + +#: models.py:70 +msgid "" +"The validator will reject data entry if the value entered does not conform " +"to the expected format." +msgstr "" + +#: models.py:72 search.py:28 +msgid "Validator" +msgstr "" + +#: models.py:76 +msgid "" +"The parser will reformat the value entered to conform to the expected format." +msgstr "" + +#: models.py:78 search.py:31 +msgid "Parser" +msgstr "" + +#: models.py:132 +msgid "Value is not one of the provided options." +msgstr "" + +#: models.py:154 +msgid "Document" +msgstr "" + +#: models.py:156 +msgid "Type" +msgstr "" + +#: models.py:168 +msgid "Metadata type is required for this document type." +msgstr "" + +#: models.py:176 +msgid "Metadata type is not valid for this document type." +msgstr "" + +#: models.py:190 models.py:191 +msgid "Document metadata" +msgstr "" + +#: models.py:204 +msgid "Document type" +msgstr "" + +#: models.py:216 +msgid "Document type metadata type options" +msgstr "" + +#: models.py:217 +msgid "Document type metadata types options" +msgstr "" + +#: permissions.py:9 +msgid "Edit a document's metadata" +msgstr "" + +#: permissions.py:12 +msgid "Add metadata to a document" +msgstr "" + +#: permissions.py:15 +msgid "Remove metadata from a document" +msgstr "" + +#: permissions.py:18 +msgid "View metadata from a document" +msgstr "" + +#: permissions.py:21 +msgid "Metadata setup" +msgstr "" + +#: permissions.py:23 +msgid "Edit metadata types" +msgstr "" + +#: permissions.py:26 +msgid "Create new metadata types" +msgstr "" + +#: permissions.py:29 +msgid "Delete metadata types" +msgstr "" + +#: permissions.py:32 +msgid "View metadata types" +msgstr "" + +#: queues.py:12 +msgid "Remove metadata type" +msgstr "" + +#: queues.py:16 +msgid "Add required metadata type" +msgstr "" + +#: serializers.py:49 +msgid "Primary key of the metadata type to be added." +msgstr "" + +#: serializers.py:130 +msgid "Primary key of the metadata type to be added to the document." +msgstr "" + +#: views.py:42 +#, python-format +msgid "Metadata add request performed on %(count)d document" +msgstr "" + +#: views.py:44 +#, python-format +msgid "Metadata add request performed on %(count)d documents" +msgstr "" + +#: views.py:59 views.py:215 views.py:385 +msgid "Selected documents must be of the same type." +msgstr "" + +#: views.py:98 +msgid "Add" +msgstr "" + +#: views.py:100 +msgid "Add metadata types to document" +msgid_plural "Add metadata types to documents" +msgstr[0] "" +msgstr[1] "" + +#: views.py:111 +#, python-format +msgid "Add metadata types to document: %s" +msgstr "" + +#: views.py:157 +#, python-format +msgid "" +"Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " +"%(exception)s" +msgstr "" + +#: views.py:173 +#, python-format +msgid "" +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" + +#: views.py:183 +#, python-format +msgid "" +"Metadata type: %(metadata_type)s already present in document %(document)s." +msgstr "" + +#: views.py:197 +#, python-format +msgid "Metadata edit request performed on %(count)d document" +msgstr "" + +#: views.py:200 +#, python-format +msgid "Metadata edit request performed on %(count)d documents" +msgstr "" + +#: views.py:254 +msgid "Edit document metadata" +msgid_plural "Edit documents metadata" +msgstr[0] "" +msgstr[1] "" + +#: views.py:265 +#, python-format +msgid "Edit metadata for document: %s" +msgstr "" + +#: views.py:320 +#, python-format +msgid "Error editing metadata for document: %(document)s; %(exception)s." +msgstr "" + +#: views.py:331 +#, python-format +msgid "Metadata for document %s edited successfully." +msgstr "" + +#: views.py:355 +#, python-format +msgid "Metadata for document: %s" +msgstr "" + +#: views.py:367 +#, python-format +msgid "Metadata remove request performed on %(count)d document" +msgstr "" + +#: views.py:370 +#, python-format +msgid "Metadata remove request performed on %(count)d documents" +msgstr "" + +#: views.py:424 +msgid "Remove metadata types from the document" +msgid_plural "Remove metadata types from the documents" +msgstr[0] "" +msgstr[1] "" + +#: views.py:435 +#, python-format +msgid "Remove metadata types from the document: %s" +msgstr "" + +#: views.py:482 +#, python-format +msgid "" +"Successfully remove metadata type \"%(metadata_type)s\" from document: " +"%(document)s." +msgstr "" + +#: views.py:492 +#, python-format +msgid "" +"Error removing metadata type \"%(metadata_type)s\" from document: " +"%(document)s; %(exception)s" +msgstr "" + +#: views.py:503 +msgid "Create metadata type" +msgstr "" + +#: views.py:519 +#, python-format +msgid "Delete the metadata type: %s?" +msgstr "" + +#: views.py:532 +#, python-format +msgid "Edit metadata type: %s" +msgstr "" + +#: views.py:546 +msgid "Internal name" +msgstr "" + +#: views.py:569 +#, python-format +msgid "Error updating relationship; %s" +msgstr "" + +#: views.py:573 +msgid "Relationships updated successfully" +msgstr "" + +#: views.py:588 +#, python-format +msgid "Metadata types for document type: %s" +msgstr "" + +#: views.py:621 +#, python-format +msgid "Document types for metadata type: %s" +msgstr "" 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 68540690e7..92745903d1 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,64 +9,65 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "Siêu dữ liệu" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "Giá trị" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "Loại siêu dữ liệu" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "" @@ -82,34 +83,49 @@ msgstr "Tên" msgid "Update" msgstr "Cập nhật" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "Xóa" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -122,41 +138,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "Sửa" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "Kiểu tài liệu" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:61 views.py:252 +msgid "Edit" +msgstr "Sửa" + #: 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 "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -170,8 +179,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 search.py:25 @@ -190,8 +199,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 search.py:31 @@ -286,160 +294,163 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "Thêm" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Delete metadata types" +msgid "Document types for metadata type: %s" +msgstr "Xóa loại siêu dữ liệu" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -511,9 +522,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -608,53 +616,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." 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 78d609ef4e..d892f9f979 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,64 +9,65 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:54 apps.py:147 apps.py:152 links.py:39 permissions.py:7 queues.py:8 +#: apps.py:53 apps.py:146 apps.py:151 links.py:39 permissions.py:7 queues.py:8 #: settings.py:10 msgid "Metadata" msgstr "元数据" -#: apps.py:81 +#: apps.py:80 msgid "Documents missing required metadata" msgstr "" -#: apps.py:98 +#: apps.py:97 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:117 +#: apps.py:116 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Metadata type name" msgstr "" -#: apps.py:126 +#: apps.py:125 msgid "Metadata type value" msgstr "" -#: apps.py:130 +#: apps.py:129 msgid "Value of a metadata" msgstr "" -#: apps.py:132 +#: apps.py:131 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:159 forms.py:20 models.py:159 +#: apps.py:158 forms.py:20 models.py:159 msgid "Value" msgstr "值" -#: apps.py:163 forms.py:46 models.py:209 +#: apps.py:162 forms.py:46 forms.py:185 models.py:209 msgid "Required" msgstr "" -#: apps.py:185 apps.py:193 forms.py:120 models.py:91 models.py:207 +#: apps.py:184 apps.py:192 forms.py:123 models.py:91 models.py:207 msgid "Metadata type" msgstr "元数据类型" -#: apps.py:188 apps.py:197 +#: apps.py:187 apps.py:196 msgid "Metadata value" msgstr "Metadata值" @@ -82,34 +83,49 @@ msgstr "名称" msgid "Update" msgstr "更新" -#: forms.py:72 +#: forms.py:75 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:85 +#: forms.py:88 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:101 models.py:124 +#: forms.py:104 models.py:124 #, python-format msgid "\"%s\" is required for this document type." msgstr "" -#: forms.py:119 +#: forms.py:122 msgid "Metadata types to be added to the selected documents." msgstr "" -#: forms.py:148 -#| msgid " Available models: %s" +#: forms.py:151 msgid " Available template context variables: " msgstr "" -#: forms.py:159 views.py:413 +#: forms.py:162 views.py:422 msgid "Remove" msgstr "移除" +#: forms.py:177 models.py:47 search.py:19 +msgid "Label" +msgstr "" + +#: forms.py:181 +msgid "Relationship" +msgstr "" + +#: forms.py:183 +msgid "None" +msgstr "" + +#: forms.py:184 +msgid "Optional" +msgstr "" + #: links.py:16 links.py:24 msgid "Add metadata" msgstr "" @@ -122,41 +138,34 @@ msgstr "" msgid "Remove metadata" msgstr "" -#: links.py:42 -msgid "Optional metadata" -msgstr "" - -#: links.py:46 -msgid "Required metadata" -msgstr "" - -#: links.py:51 -msgid "Create new" -msgstr "" - -#: links.py:56 -msgid "Delete" -msgstr "" - -#: links.py:59 views.py:247 -msgid "Edit" -msgstr "" - -#: links.py:64 models.py:92 views.py:542 +#: links.py:43 links.py:66 models.py:92 views.py:551 msgid "Metadata types" msgstr "元数据类型" +#: links.py:48 +#, fuzzy +#| msgid "Document type" +msgid "Document types" +msgstr "文档类型" + +#: links.py:53 +msgid "Create new" +msgstr "" + +#: links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:61 views.py:252 +msgid "Edit" +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." msgstr "" -#: models.py:47 search.py:19 -msgid "Label" -msgstr "" - #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " @@ -170,8 +179,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 search.py:25 @@ -190,8 +199,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 search.py:31 @@ -286,160 +294,163 @@ msgstr "" msgid "Primary key of the metadata type to be added to the document." msgstr "" -#: views.py:41 +#: views.py:42 #, python-format msgid "Metadata add request performed on %(count)d document" msgstr "" -#: views.py:43 +#: views.py:44 #, python-format msgid "Metadata add request performed on %(count)d documents" msgstr "" -#: views.py:56 views.py:210 views.py:376 +#: views.py:59 views.py:215 views.py:385 msgid "Selected documents must be of the same type." msgstr "" -#: views.py:95 +#: views.py:98 msgid "Add" msgstr "新增" -#: views.py:97 +#: views.py:100 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" -#: views.py:108 +#: views.py:111 #, python-format msgid "Add metadata types to document: %s" msgstr "" -#: views.py:154 +#: views.py:157 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:170 +#: views.py:173 #, 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:180 +#: views.py:183 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "元数据类型: %(metadata_type)s 已经存在于文档%(document)s." -#: views.py:194 +#: views.py:197 #, python-format msgid "Metadata edit request performed on %(count)d document" msgstr "" -#: views.py:197 +#: views.py:200 #, python-format msgid "Metadata edit request performed on %(count)d documents" msgstr "" -#: views.py:249 +#: views.py:254 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" -#: views.py:260 +#: views.py:265 #, python-format msgid "Edit metadata for document: %s" msgstr "编辑文档 %s 元数据" -#: views.py:313 +#: views.py:320 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:324 +#: views.py:331 #, python-format msgid "Metadata for document %s edited successfully." msgstr "文档 %s 的元数据编辑成功。" -#: views.py:348 +#: views.py:355 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:360 +#: views.py:367 #, python-format msgid "Metadata remove request performed on %(count)d document" msgstr "" -#: views.py:363 +#: views.py:370 #, python-format msgid "Metadata remove request performed on %(count)d documents" msgstr "" -#: views.py:415 +#: views.py:424 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" -#: views.py:426 +#: views.py:435 #, python-format msgid "Remove metadata types from the document: %s" msgstr "" -#: views.py:473 +#: views.py:482 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:483 +#: views.py:492 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:494 +#: views.py:503 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:519 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:532 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:546 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" -msgid "Available metadata types" -msgstr "" +#: views.py:569 +#, fuzzy, python-format +#| msgid "Error updating document indexes; %s" +msgid "Error updating relationship; %s" +msgstr "Error updating document indexes; %s" -#: views.py:550 -msgid "Metadata types assigned" -msgstr "" +#: views.py:573 +#, fuzzy +#| msgid "Document indexes updated successfully." +msgid "Relationships updated successfully" +msgstr "Document indexes updated successfully." -#: views.py:581 -#, python-format -msgid "Optional metadata types for document type: %s" -msgstr "" +#: views.py:588 +#, fuzzy, python-format +#| msgid "Members of document type: %s" +msgid "Metadata types for document type: %s" +msgstr "members of document type: %s" -#: views.py:599 -#, python-format -msgid "Required metadata types for document type: %s" -msgstr "" +#: views.py:621 +#, fuzzy, python-format +#| msgid "Delete metadata types" +msgid "Document types for metadata type: %s" +msgstr "删除元数据类型" #~ msgid "'metadata' object has no attribute '%s'" #~ msgstr "'metadata' object has no attribute '%s'" @@ -511,9 +522,6 @@ msgstr "" #~ msgid "Non members of document type: %s" #~ msgstr "non members of document type: %s" -#~ msgid "Members of document type: %s" -#~ msgstr "members of document type: %s" - #~ msgid "id" #~ msgstr "id" @@ -608,53 +616,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" - -#~ msgid "Error updating document indexes; %s" -#~ msgstr "Error updating document indexes; %s" - -#~ msgid "Document indexes updated successfully." -#~ msgstr "Document indexes updated successfully." diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po index 9c86e3ef8d..1bebccb2d8 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 b77cb8470c..b293abc953 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 4fc9dab316..d970915ac8 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 7a07296510..fbd9eccc7f 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 cec70f36a1..2a79417b75 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 744b0cc066..04956cb71c 100644 --- a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/en/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po index d86ef011ed..6de7f3cfac 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 f6169ee4d8..234c36de0f 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 c6e75737a4..3a145a950c 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 63f974440b..dee8726f11 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 7957ce033c..e6d6b441ea 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 df9354adc7..291a3d5599 100644 --- a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-09-24 08:52+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 @@ -25,8 +26,11 @@ msgstr "Mirroring " #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Tempo in secondi per mettere in cache il percorso di ricerca del documento." +msgstr "" +"Tempo in secondi per mettere in cache il percorso di ricerca del documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Tempo in secondi per mettere in cache il percorso di ricerca del nodo indice.." +msgstr "" +"Tempo in secondi per mettere in cache il percorso di ricerca del nodo " +"indice.." diff --git a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po index a8c55bf7d5..9c70fe97fb 100644 --- a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-11-09 16:40+0000\n" "Last-Translator: Evelijn Saaltink \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py: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 0776673a05..562f18c751 100644 --- a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py: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 480c6f159e..ba05fe70ad 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 4866015338..b37a3ea567 100644 --- a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-11-04 19:01+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:7 @@ -24,8 +25,12 @@ msgstr "Espelhamento" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Tempo em segundos durante o qual se armazenará no cache a rota de busca de acesso a um documento." +msgstr "" +"Tempo em segundos durante o qual se armazenará no cache a rota de busca de " +"acesso a um documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Tempo em segundos durante o qual se armazenará em cache a rota de busca de acesso a um nó de índice." +msgstr "" +"Tempo em segundos durante o qual se armazenará em cache a rota de busca de " +"acesso a um nó de índice." diff --git a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po index 23fb1e5ce0..01983f8188 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 e4d2da76c5..a9caa18490 100644 --- a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-07-19 20:05+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py: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 769f805cbb..519f24c955 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..0785e25501 --- /dev/null +++ b/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +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. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-09 02:28-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:9 settings.py:7 +msgid "Mirroring" +msgstr "" + +#: settings.py:11 +msgid "Time in seconds to cache the path lookup to a document." +msgstr "" + +#: settings.py:15 +msgid "Time in seconds to cache the path lookup to an index node." +msgstr "" 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 eabe906cd8..282645c390 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 42ff53dd3f..a2b1475696 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 index 405ddd4c72..c2f1ef8f93 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 6ec63cfc1c..7abb2c1e0e 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 44d706ce94..3533839b75 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 c67253a91c..377c2c8304 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 a114e29cc9..3206a563fa 100644 --- a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2016 # Tobias Paepke , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-05-20 21:31+0000\n" "Last-Translator: Tobias Paepke \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 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 cf4b32685a..8294936209 100644 --- a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/en/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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po index e75d77682f..16060c9d3e 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 09a95d555a..7c70bd75ae 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 05aa6ac945..c2a424f803 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-04-26 07:54+0000\n" "Last-Translator: Baptiste GAILLET \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 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 72ba25a21e..7f32f7fea5 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 27f5a0abdc..c3511b8f82 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 1a1b7f23ab..656cecc09a 100644 --- a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-09-24 10:04+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 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 fc8d68b3ac..a65ec55089 100644 --- a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-10 12:13+0000\n" "Last-Translator: Evelijn Saaltink \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 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 c5ad77585e..37f9dd4e9c 100644 --- a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:22 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 0982d33e10..97c5a2f602 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 a0c977abfa..a79a0be553 100644 --- a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-04 19:40+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 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 24fa324f2e..2cd5e52e00 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 9c331942e4..751b4dff0f 100644 --- a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-11-02 04:15+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:22 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 0fddc66c9c..00af4ee050 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 links.py:25 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..ba0eb96945 --- /dev/null +++ b/mayan/apps/motd/locale/tr_TR/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: 2017-07-09 02:28-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:22 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:32 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:35 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:36 apps.py:40 +msgid "None" +msgstr "" + +#: apps.py:39 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 index 34969ae2b1..666905d826 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 23306bb056..c51ca68324 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: 2017-06-23 01:39-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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:22 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 ee0693bd19..e5f523f8d1 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 618f1c456c..73c5ac9312 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 ec9226208e..f82cdc4afc 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 da837d08aa..9fbcf2bf2d 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 2280dcee56..800fc72ff6 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 d0ac8fff67..63df31267d 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 5af275f99e..7d7a493a21 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 dab5fb615f..f72cbc0bd6 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 b4da739c0e..a13be35f7e 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 59d5738b73..0b9640e86a 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 598d22a4cd..9da1146a89 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 e8a8330dd3..4bf95c70b3 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 f7e5ed38f6..66aaaa5a32 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 20425cbecf..016a0703e1 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 36d53b6738..d8e301f7a3 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 8b577261cd..16fea8b905 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 89429fe6c3..0917189300 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 f86bef9a3c..794ded7f69 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 cb5fee84b1..f237c2617f 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..3d543e71fe --- /dev/null +++ b/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +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. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-09 02:28-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:11 +msgid "Navigation" +msgstr "" + +#: forms.py:14 +msgid "Actions" +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 a715629367..c20a830f9b 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 510c7c5f38..b41334a057 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: 2017-06-30 15:54-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 6a8a2480f5..3c2ed622f9 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,30 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -46,7 +48,6 @@ msgid "Contents" msgstr "المحتويات" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -62,10 +63,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "نوع الوثيقة" @@ -111,7 +116,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -143,9 +147,9 @@ msgstr "" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -155,55 +159,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -392,11 +392,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." @@ -453,9 +453,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 67eb354bf7..ec836fb674 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,30 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -46,7 +47,6 @@ msgid "Contents" msgstr "Съдържание" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -62,10 +62,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Вид на документа" @@ -111,7 +115,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -143,8 +146,7 @@ msgstr "" #: settings.py:12 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:19 @@ -155,55 +157,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -384,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." @@ -445,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/bs_BA/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po index 0c674b6b28..3bffa52107 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,30 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -46,7 +48,6 @@ msgid "Contents" msgstr "Sadržaj" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -62,10 +63,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Tip dokumenta" @@ -111,7 +116,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -143,9 +147,9 @@ msgstr "" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -155,55 +159,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -386,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." @@ -447,9 +447,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 b045764826..76016c73a5 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,30 +10,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -47,7 +48,6 @@ msgid "Contents" msgstr "Indhold" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -63,10 +63,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Dokumenttype" @@ -112,7 +116,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -144,9 +147,10 @@ msgstr "" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -156,55 +160,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -385,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." @@ -446,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/de_DE/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po index a5927b7af4..7f668f0bf6 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-2016 @@ -13,30 +13,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR-Schrifterkennung" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "Dokument" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "Hinzugefügt" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "Ergebnis" @@ -50,7 +51,6 @@ msgid "Contents" msgstr "Inhalte" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "In die OCR-Verarbeitung einstellen" @@ -66,10 +66,14 @@ msgstr "OCR Einrichtung" msgid "OCR documents per type" msgstr "Texterkennung pro Dokumententyp durchführen" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "OCR Fehler" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Dokumententyp" @@ -115,7 +119,6 @@ msgid "Document page content" msgstr "Seiteninhalt" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Seiteninhalt" @@ -147,67 +150,70 @@ msgstr "" #: settings.py:12 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:19 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:24 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:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "Dokumente in die OCR-Verarbeitung einstellen?" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "%d Dokumente in OCR-Warteschlange eingereiht" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "\"%s\" in die OCR-Warteschlange einreihen?" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Dokument %(document)s in OCR-Warteschlange eingereiht" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "Ausgewählte Dokumente in die OCR-Warteschlange einreihen?" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "Alle Dokumente eines Typs in die OCR-Verarbeitung einstellen" -#: views.py:102 +#: views.py:103 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "%(count)d Dokumente vom Typ \"%(document_type)s\" in OCR-Warteschlange eingereiht" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" +"%(count)d Dokumente vom Typ \"%(document_type)s\" in OCR-Warteschlange " +"eingereiht" -#: views.py:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "OCR-Einstellungen für Dokumententyp %s bearbeiten" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "Ergebnis der OCR-Texterkennung für Dokument %s" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -388,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." @@ -449,9 +455,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 525d965135..0c80c4f45b 100644 --- a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po @@ -1,37 +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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "Document" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "Added" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "Result" @@ -45,7 +46,6 @@ msgid "Contents" msgstr "Contents" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Submit for OCR" @@ -61,10 +61,14 @@ msgstr "Setup OCR" msgid "OCR documents per type" msgstr "OCR documents per type" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "OCR errors" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Document type" @@ -110,7 +114,6 @@ msgid "Document page content" msgstr "Document page content" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Document pages contents" @@ -142,9 +145,9 @@ msgstr "Document version OCR" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -154,55 +157,52 @@ msgstr "Full path to the backend to be used to do OCR." msgid "Set new document types to perform OCR automatically by default." msgstr "Set new document types to perform OCR automatically by default." -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "Submit all documents for OCR?" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "%d documents added to the OCR queue." -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "Submit \"%s\" to the OCR queue?" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Document: %(document)s was added to the OCR queue." -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "Submit the selected documents to the OCR queue?" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "Submit all documents of a type for OCR" -#: views.py:102 +#: views.py:103 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "%(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 "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -#: views.py:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "Edit OCR settings for document type: %s" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "OCR result for document: %s" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "OCR errors for document: %s" @@ -383,11 +383,11 @@ msgstr "OCR errors for document: %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." @@ -444,9 +444,11 @@ msgstr "OCR errors for document: %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/es/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po index e758280dc0..c8cfce986e 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,30 +11,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05: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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "Documento" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "Añadido" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "Resultado" @@ -48,7 +49,6 @@ msgid "Contents" msgstr "Contenido" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Enviar para OCR" @@ -64,10 +64,14 @@ msgstr "Configurar OCR" msgid "OCR documents per type" msgstr "Realizar OCR por tipo de documento" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "Errores de OCR" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Tipo de documento" @@ -113,7 +117,6 @@ msgid "Document page content" msgstr "Contenido de página de documento" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Contenido de página de documento" @@ -145,9 +148,10 @@ msgstr "" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -157,55 +161,51 @@ msgstr "Ruta completa a la aplicación que se usará para OCR." msgid "Set new document types to perform OCR automatically by default." msgstr "Realizar OCR a nuevo tipos de documentos por defecto." -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "¿Enviar todos los documentos para OCR?" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "%d documentos enviados para OCR." -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "¿Enviar \"%s\" para OCR?" -#: views.py:67 +#: views.py:68 #, 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:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "¿Enviar los documentos seleccionados para OCR?" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "Enviar todos los documentos de un tipo para OCR" -#: views.py:102 +#: views.py:103 #, 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 "%(count)d documentos de tipo \"%(document_type)s\" enviados para OCR." -#: views.py:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "Editar opciones OCR para el tipo de documento: %s" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "Resultados del OCR para documento: %s" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -386,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." @@ -447,9 +447,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 894dfd3a56..18270bdf35 100644 --- a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po @@ -1,37 +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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "سند" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "اضافه شده" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "جواب" @@ -45,7 +46,6 @@ msgid "Contents" msgstr "محتوا" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -61,10 +61,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "خطای OCR " +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "نوع سند" @@ -110,7 +114,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -142,8 +145,7 @@ msgstr "" #: settings.py:12 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:19 @@ -154,55 +156,51 @@ msgstr "محل اجرای نرم افزار OCR" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "سند : %(document)s جهت ocr وارد صف شد." -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -381,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." @@ -442,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/fr/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po index 9535668382..7b2db1ff81 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: # Bruno CAPELETO , 2016 @@ -13,30 +13,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR - Reconnaissance de caractères" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "Document" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "Ajouté" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "Résultat" @@ -50,7 +51,6 @@ msgid "Contents" msgstr "Contenus" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Soumettre à l'OCR" @@ -66,17 +66,22 @@ msgstr "Paramétrage de l'OCR" msgid "OCR documents per type" msgstr "OCR documents par type" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "Erreurs OCR" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" 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" @@ -115,7 +120,6 @@ msgid "Document page content" msgstr "Contenu de la page du document" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Contenu des pages du document" @@ -147,9 +151,10 @@ msgstr "" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -159,55 +164,53 @@ 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 "Traiter automatiquement les nouveaux types de document par l'OCR." -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "Soumettre tous les documents à l'OCR ?" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "%d documents ajoutés à la file d'attente de l'OCR." -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "Soumettre \"%s\" à la file d'attente OCR ?" -#: views.py:67 +#: views.py:68 #, 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:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "Soumettre les documents sélectionnés à la file d'attente OCR ?" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "Soumettre tous les documents d'un type à l'OCR" -#: views.py:102 +#: views.py:103 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "%(count)d documents de type \"%(document_type)s\" ajoutés à la file d'attente OCR" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" +"%(count)d documents de type \"%(document_type)s\" ajoutés à la file " +"d'attente OCR" -#: views.py:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "Modifier les paramètres OCR pour le type de document : %s" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "Résultats de l'OCR pour le document: %s" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -388,11 +391,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 +452,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 b6f71fc940..26cfae8917 100644 --- a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po @@ -1,37 +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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -45,7 +46,6 @@ msgid "Contents" msgstr "Tartalom" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -61,10 +61,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Dokumentum típus" @@ -110,7 +114,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -142,8 +145,7 @@ msgstr "" #: settings.py:12 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:19 @@ -154,55 +156,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -383,11 +381,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 +442,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 04c06875ec..dc94460d54 100644 --- a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po @@ -1,37 +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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -45,7 +46,6 @@ msgid "Contents" msgstr "Isi" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -61,10 +61,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Jenis dokumen" @@ -110,7 +114,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -142,8 +145,7 @@ msgstr "" #: settings.py:12 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:19 @@ -154,55 +156,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -381,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." @@ -442,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/it/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po index 50bfff1cad..f53604821c 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: # Marco Camplese , 2016 @@ -10,30 +10,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "Documento" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "Aggiunto" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "Risultato" @@ -47,7 +48,6 @@ msgid "Contents" msgstr "Contenuti" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Invia per l'OCR" @@ -63,10 +63,14 @@ msgstr "Configura OCR" msgid "OCR documents per type" msgstr "OCR per tipo documento" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "Errori OCR" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Tipo documento " @@ -112,7 +116,6 @@ msgid "Document page content" msgstr "Contenuto pagina del documento" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Contenuti pagine documento" @@ -144,9 +147,10 @@ msgstr "" #: settings.py:12 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Percorso del programma poppler pdftotext.usato per estrarre il testo dai file PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Percorso del programma poppler pdftotext.usato per estrarre il testo dai " +"file PDF." #: settings.py:19 msgid "Full path to the backend to be used to do OCR." @@ -154,57 +158,56 @@ msgstr "Percorso completo al backend utilizzato per eseguire l'OCR." #: settings.py:24 msgid "Set new document types to perform OCR automatically by default." -msgstr "Imposta i nuovi tipi documento per eseguire automaticamente l'OCR per default." +msgstr "" +"Imposta i nuovi tipi documento per eseguire automaticamente l'OCR per " +"default." -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "Inviare tutti i documenti per l'OCR?" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "%d documenti aggiunti alla coda OCR." -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "Inviare \"%s\" alla coda OCR?" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Documento: %(document)s è stato aggiunto alla coda OCR.." -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "Inviare i documenti selezionati alla coda OCR?" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "Invia tutti i documenti del tipo alla coda OCR" -#: views.py:102 +#: views.py:103 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "%(count)d documenti di tipo \"%(document_type)s\" aggiunti alla coda OCR." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" +"%(count)d documenti di tipo \"%(document_type)s\" aggiunti alla coda OCR." -#: views.py:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "Modifica le impostazioni OCR per il tipo documento: %s" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "Risultati OCR per il documento: %s" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -385,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." @@ -446,9 +449,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 ccd7ac29da..98c9a3e920 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: # Evelijn Saaltink , 2016 @@ -11,30 +11,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "Document" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "Toegevoegd" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "Resultaat" @@ -48,7 +49,6 @@ msgid "Contents" msgstr "Inhoud" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -64,10 +64,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "OCR-fouten" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Documentsoort" @@ -113,7 +117,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -145,9 +148,10 @@ msgstr "" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -157,55 +161,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -386,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." @@ -447,9 +447,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 f0af41bd25..a4bfaf606d 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,30 +10,33 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "Dokument" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "Dodano" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "Wynik" @@ -47,7 +50,6 @@ msgid "Contents" msgstr "Zawartość" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Zgłoś do OCR" @@ -63,10 +65,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "Błędy OCR" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Typ dokumentów" @@ -112,7 +118,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -144,8 +149,7 @@ msgstr "" #: settings.py:12 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:19 @@ -156,55 +160,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Dokument : %(document)s dodany do kolejki OCR" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -389,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." @@ -450,9 +450,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 7400ffe2a5..fb6d7e8e14 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,30 +11,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -48,7 +49,6 @@ msgid "Contents" msgstr "Conteúdos" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -64,10 +64,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Tipo de documento" @@ -113,7 +117,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -145,9 +148,10 @@ msgstr "" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -157,55 +161,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -386,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." @@ -447,9 +447,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 8e43327ea6..584323efec 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: # Aline Freitas , 2016 @@ -11,30 +11,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "Enviar para a fila de OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "Documento" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "adicionado" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "resultado" @@ -48,7 +49,6 @@ msgid "Contents" msgstr "Conteúdos" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Enviar para OCR" @@ -64,10 +64,14 @@ msgstr "Configurar OCR" msgid "OCR documents per type" msgstr "Realizar OCR de documentos por tipo" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "Erros de OCR" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Tipo de Documento" @@ -113,7 +117,6 @@ msgid "Document page content" msgstr "Conteúdo de página de documento" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Conteúdo de páginas de documento" @@ -145,9 +148,10 @@ msgstr "" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -157,55 +161,51 @@ msgstr "Caminho completo para o servidor a ser usado para fazer OCR." msgid "Set new document types to perform OCR automatically by default." msgstr "Definir novos tipos de documentos para realizar OCR automaticamente" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "Enviar todos os documentos para OCR?" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "%d documentos enviados para OCR." -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "Enviar \"%s\" para OCR?" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Documento: %(document)s foi adicionado à fila de OCR." -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "Enviar os documentos selecionados para OCR?" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "Enviar todos os documentos do tipo para OCR" -#: views.py:102 +#: views.py:103 #, 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 "%(count)d documentos do tipo \"%(document_type)s\" enviados para OCR." -#: views.py:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "Editar configurações de OCR para documento de tipo: %s" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "Resultados de OCR para documento: %s" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -386,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." @@ -447,9 +447,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 553cc44522..be06eb467f 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,30 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -46,7 +48,6 @@ msgid "Contents" msgstr "Conţinut" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -62,10 +63,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Tip document" @@ -111,7 +116,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -143,9 +147,10 @@ msgstr "" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -155,55 +160,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -386,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." @@ -447,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/ru/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po index e1b6566b15..be7cc7a870 100644 --- a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # lilo.panic, 2016 @@ -9,30 +9,33 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "Распознавание текста" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "Документ" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "Добавлено" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "Результат" @@ -46,7 +49,6 @@ msgid "Contents" msgstr "Содержание" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Отправить на распознавание" @@ -62,10 +64,14 @@ msgstr "Настройки распознавания" msgid "OCR documents per type" msgstr "Распознавание документов с определенным типом" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "Ошибки распознавания" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Тип документа" @@ -111,7 +117,6 @@ msgid "Document page content" msgstr "Содержимое страницы документа" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Содержимое страниц документа" @@ -143,9 +148,10 @@ msgstr "" #: settings.py:12 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:19 msgid "Full path to the backend to be used to do OCR." @@ -153,57 +159,57 @@ msgstr "Полный путь до бекенда, выполняющего OCR. #: settings.py:24 msgid "Set new document types to perform OCR automatically by default." -msgstr "Задать новые типы документов для которых распознавание будет запускаться по умолчанию. " +msgstr "" +"Задать новые типы документов для которых распознавание будет запускаться по " +"умолчанию. " -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "Отправить все документы на распознавание?" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "%d документов помещено в очередь распознавания." -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "Отправить \"%s\" в очередь распознавания?" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Документ: %(document)s добавлен в очередь распознавания." -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "Отправить выделенные документы в очедерь распознавания?" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "Отправить все документы определённого типа на распознавание" -#: views.py:102 +#: views.py:103 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "%(count)d документов с типом \"%(document_type)s\" помещены в очередь распознавания." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" +"%(count)d документов с типом \"%(document_type)s\" помещены в очередь " +"распознавания." -#: views.py:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "Редактировать настройки распознавания для типа документов: %s" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "Результат распозанвания для документа: %s" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -388,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." @@ -449,9 +455,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 f12d60535d..2e853e2d81 100644 --- a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po @@ -1,37 +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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "Dokument" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -45,7 +47,6 @@ msgid "Contents" msgstr "Vsebina" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -61,10 +62,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Tip dokumenta" @@ -110,7 +115,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -142,8 +146,7 @@ msgstr "" #: settings.py:12 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:19 @@ -154,55 +157,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -387,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." @@ -448,9 +447,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..145a11b630 --- /dev/null +++ b/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,203 @@ +# 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: 2017-07-09 02:28-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:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 +#: settings.py:7 +msgid "OCR" +msgstr "" + +#: apps.py:89 +msgid "Document" +msgstr "" + +#: apps.py:93 +msgid "Added" +msgstr "" + +#: apps.py:97 models.py:37 +msgid "Result" +msgstr "" + +#: forms.py:40 +#, python-format +msgid "Page %(page_number)d" +msgstr "" + +#: forms.py:48 +msgid "Contents" +msgstr "" + +#: links.py:18 links.py:25 +msgid "Submit for OCR" +msgstr "" + +#: links.py:22 +msgid "OCR all documents" +msgstr "" + +#: links.py:28 +msgid "Setup OCR" +msgstr "" + +#: links.py:33 +msgid "OCR documents per type" +msgstr "" + +#: links.py:37 links.py:41 views.py:155 +msgid "OCR errors" +msgstr "" + +#: links.py:46 +msgid "Download OCR text" +msgstr "" + +#: models.py:16 +msgid "Document type" +msgstr "" + +#: models.py:20 +msgid "Automatically queue newly created documents for OCR." +msgstr "" + +#: models.py:24 +msgid "Document type settings" +msgstr "" + +#: models.py:25 +msgid "Document types settings" +msgstr "" + +#: models.py:32 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date time submitted" +msgstr "" + +#: models.py:44 +msgid "Document Version OCR Error" +msgstr "" + +#: models.py:45 +msgid "Document Version OCR Errors" +msgstr "" + +#: models.py:55 +msgid "Document page" +msgstr "" + +#: models.py:57 +msgid "Content" +msgstr "" + +#: models.py:63 +msgid "Document page content" +msgstr "" + +#: models.py:64 +msgid "Document pages contents" +msgstr "" + +#: parsers.py:101 +#, python-format +msgid "Exception parsing page; %s" +msgstr "" + +#: parsers.py:128 +#, python-format +msgid "Cannot find pdftotext executable at: %s" +msgstr "" + +#: permissions.py:10 +msgid "Submit documents for OCR" +msgstr "" + +#: permissions.py:14 +msgid "View the transcribed text from document" +msgstr "" + +#: permissions.py:18 +msgid "Change document type OCR settings" +msgstr "" + +#: queues.py:9 +msgid "Document version OCR" +msgstr "" + +#: settings.py:12 +msgid "" +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" + +#: settings.py:19 +msgid "Full path to the backend to be used to do OCR." +msgstr "" + +#: settings.py:24 +msgid "Set new document types to perform OCR automatically by default." +msgstr "" + +#: views.py:27 +msgid "Submit all documents for OCR?" +msgstr "" + +#: views.py:39 +#, python-format +msgid "%d documents added to the OCR queue." +msgstr "" + +#: views.py:47 +#, python-format +msgid "Submit \"%s\" to the OCR queue?" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Document: %(document)s was added to the OCR queue." +msgstr "" + +#: views.py:82 +msgid "Submit the selected documents to the OCR queue?" +msgstr "" + +#: views.py:89 +msgid "Submit all documents of a type for OCR" +msgstr "" + +#: views.py:103 +#, python-format +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" + +#: views.py:126 +#, python-format +msgid "Edit OCR settings for document type: %s" +msgstr "" + +#: views.py:148 +#, python-format +msgid "OCR result for document: %s" +msgstr "" + +#: views.py:173 +#, python-format +msgid "OCR errors for document: %s" +msgstr "" 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 76a323606d..9450bfa9e8 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,30 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -46,7 +47,6 @@ msgid "Contents" msgstr "Nội dung" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -62,10 +62,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "Kiểu tài liệu" @@ -111,7 +115,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -143,8 +146,7 @@ msgstr "" #: settings.py:12 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:19 @@ -155,55 +157,51 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -382,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." @@ -443,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/zh_CN/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po index 0ce42b22a6..0215a208fa 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,30 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:55 apps.py:113 apps.py:117 links.py:14 permissions.py:7 queues.py:7 +#: apps.py:56 apps.py:114 apps.py:118 links.py:14 permissions.py:7 queues.py:7 #: settings.py:7 msgid "OCR" msgstr "扫描输入" -#: apps.py:88 +#: apps.py:89 msgid "Document" msgstr "" -#: apps.py:92 +#: apps.py:93 msgid "Added" msgstr "" -#: apps.py:96 models.py:37 +#: apps.py:97 models.py:37 msgid "Result" msgstr "" @@ -46,7 +47,6 @@ msgid "Contents" msgstr "内容" #: links.py:18 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -62,10 +62,14 @@ msgstr "" msgid "OCR documents per type" msgstr "" -#: links.py:37 links.py:41 views.py:154 +#: links.py:37 links.py:41 views.py:155 msgid "OCR errors" msgstr "" +#: links.py:46 +msgid "Download OCR text" +msgstr "" + #: models.py:16 msgid "Document type" msgstr "文档类型" @@ -111,7 +115,6 @@ msgid "Document page content" msgstr "" #: models.py:64 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -143,8 +146,7 @@ msgstr "" #: settings.py:12 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:19 @@ -155,55 +157,51 @@ msgstr "用于执行OCR后台应用的全路径。" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:26 -#| msgid "Submit documents for OCR" +#: views.py:27 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:38 +#: views.py:39 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:46 +#: views.py:47 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:67 +#: views.py:68 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:81 -#| msgid "Submit documents for OCR" +#: views.py:82 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:89 msgid "Submit all documents of a type for OCR" msgstr "" -#: views.py:102 +#: views.py:103 #, 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:125 +#: views.py:126 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:147 +#: views.py:148 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" -#: views.py:172 +#: views.py:173 #, python-format -#| msgid "Queued documents: %d" msgid "OCR errors for document: %s" msgstr "" @@ -382,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." @@ -443,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/permissions/locale/ar/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index fe7a229cab..0442c0e8b1 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,21 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "الصلاحيات" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "صلاحيات غير كافية." @@ -47,7 +49,7 @@ msgstr "" msgid "Edit" msgstr "تحرير" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Roles" @@ -122,29 +124,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -177,8 +178,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?" @@ -194,13 +197,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 d14af248dd..546e7af651 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,21 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Разрешения" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Недостатъчни разрешения." @@ -47,7 +48,7 @@ msgstr "" msgid "Edit" msgstr "Редактиране" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Роли" @@ -122,29 +123,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -177,8 +177,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?" @@ -194,13 +196,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 3933e9169a..1bddc6261d 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,21 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Dozvole" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Nedovoljne dozvole." @@ -47,7 +49,7 @@ msgstr "" msgid "Edit" msgstr "Urediti" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Role" @@ -122,29 +124,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -177,8 +178,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?" @@ -194,13 +197,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 be7bf9fbf9..e32749fef5 100644 --- a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po @@ -1,28 +1,29 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "" @@ -46,7 +47,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "" @@ -121,29 +122,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -176,8 +176,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?" @@ -193,13 +195,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 a67cf28b43..6a8c01fa78 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 @@ -12,21 +12,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-24 23:14+0000\n" "Last-Translator: Jesaja Everling \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:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Berechtigungen" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Unzureichende Berechtigungen" @@ -50,7 +51,7 @@ msgstr "Löschen" msgid "Edit" msgstr "Bearbeiten" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Rollen" @@ -114,7 +115,9 @@ msgstr "Berechtigungen widerrufen" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Komma getrennte Liste der Primary Keys der Gruppen die zu dieser Rolle hinzugefügt oder ersetzt werden sollen." +msgstr "" +"Komma getrennte Liste der Primary Keys der Gruppen die zu dieser Rolle " +"hinzugefügt oder ersetzt werden sollen." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." @@ -125,29 +128,28 @@ msgstr "" msgid "No such permission: %s" msgstr "Keine solche Berechtigung: %s" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Verfügbare Gruppen" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "Rollengruppen" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "Gruppen für Rolle %s" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "Verfügbare Berechtigungen" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "Erteilte Berechtigungen" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "Berechtigungen der Rolle %s" @@ -180,8 +182,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?" @@ -197,13 +201,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 e4347b3373..7bf03309cd 100644 --- a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po @@ -1,28 +1,29 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Permissions" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Insufficient permissions." @@ -46,7 +47,7 @@ msgstr "Delete" msgid "Edit" msgstr "Edit" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Roles" @@ -110,7 +111,9 @@ msgstr "Revoke permissions" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Comma separated list of groups primary keys to add to, or replace in this role." +msgstr "" +"Comma separated list of groups primary keys to add to, or replace in this " +"role." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." @@ -121,29 +124,28 @@ msgstr "Comma separated list of permission primary keys to grant to this role." msgid "No such permission: %s" msgstr "No such permission: %s" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Available groups" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "Role groups" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "Groups of role: %s" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "Available permissions" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "Granted permissions" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "Permissions for role: %s" @@ -176,8 +178,10 @@ msgstr "Permissions for role: %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?" @@ -193,13 +197,17 @@ msgstr "Permissions for role: %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/es/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po index 52c14fe133..b5807d2aad 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,21 +11,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:42+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Permisos" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Permisos insuficientes." @@ -49,7 +50,7 @@ msgstr "Borrar" msgid "Edit" msgstr "Editar" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Roles" @@ -113,40 +114,43 @@ msgstr "Revocar permisos" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Lista separada por comas de llaves primarias de grupos para agregar o reemplazar en este rol." +msgstr "" +"Lista separada por comas de llaves primarias de grupos para agregar o " +"reemplazar en este rol." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Separación por comas de las llaves primarias de permiso para otorgar a este rol." +msgstr "" +"Separación por comas de las llaves primarias de permiso para otorgar a este " +"rol." #: serializers.py:92 #, python-format msgid "No such permission: %s" msgstr "No existe el permiso: %s" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Grupos disponibles" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "Grupos del rol" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "Grupos del rol: %s" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "Permisos disponibles" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "Permisos otorgados" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "Permisos para el rol: %s" @@ -179,8 +183,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?" @@ -196,13 +202,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 c7928fc757..72294948e1 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,21 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-12 07: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:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "مجوزها" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "اجازه ناکافی" @@ -48,7 +49,7 @@ msgstr "حذف" msgid "Edit" msgstr "ویرایش" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "نقش ها" @@ -123,29 +124,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "مجوزهای موجود" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "مجوزهای داده شده" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -178,8 +178,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?" @@ -195,13 +197,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 bebe94ebe8..3d46ed1798 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,21 +11,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Droits" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Droits insuffisants" @@ -49,7 +50,7 @@ msgstr "Supprimer" msgid "Edit" msgstr "Modifier" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Rôles" @@ -124,29 +125,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Groupes disponibles" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "Rôles" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "Groupes ayant le rôle : %s" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "Permissions disponibles" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "Permissions accordées" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "Permissions pour le rôle : %s" @@ -179,8 +179,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?" @@ -196,13 +198,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 5167e9293d..a64b0095e0 100644 --- a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po @@ -1,28 +1,29 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "" @@ -46,7 +47,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "" @@ -121,29 +122,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -176,8 +176,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?" @@ -193,13 +195,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 72b7016aa4..a9ee231537 100644 --- a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po @@ -1,28 +1,29 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "" @@ -46,7 +47,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "" @@ -121,29 +122,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -176,8 +176,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?" @@ -193,13 +195,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 d1e412811f..531f621b5d 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 @@ -11,21 +11,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-30 08:06+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Permessi" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Permessi insufficienti" @@ -49,7 +50,7 @@ msgstr "Cancella " msgid "Edit" msgstr "Modifica " -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Ruoli " @@ -113,7 +114,9 @@ msgstr "Revoca le autorizzazioni" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Lista separata da virgole di ID gruppi da aggiungere o sostituire in questo ruolo" +msgstr "" +"Lista separata da virgole di ID gruppi da aggiungere o sostituire in questo " +"ruolo" #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." @@ -124,29 +127,28 @@ msgstr "Lista separata da virgole di ID permessi da assegnare a questo ruolo" msgid "No such permission: %s" msgstr "Nessun permesso: %s" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Gruppi disponibili " -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "Gruppi di ruoli " -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "Gruppi del ruolo: %s" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "Autorizzazioni disponibili " -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "Autorizzazioni concesse " -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "Autorizzazioni per ruolo: %s" @@ -179,8 +181,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?" @@ -196,13 +200,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 e68939f610..9fee230889 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: # Evelijn Saaltink , 2016 @@ -10,21 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Permissies" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Permissies zijn ontoereikend" @@ -48,7 +49,7 @@ msgstr "Verwijder" msgid "Edit" msgstr "bewerken" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "gebruikersrollen" @@ -123,29 +124,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Beschikbare groepen" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "Gebruikersrolgroepen" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "Groepen van gebruikersrollen: %s" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "Beschikbare permissies" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "Toegekende permissies" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "Permissies voor gebruikersrol: %s" @@ -178,8 +178,10 @@ msgstr "Permissies voor gebruikersrol: %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?" @@ -195,13 +197,17 @@ msgstr "Permissies voor gebruikersrol: %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/pl/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po index 46336a76f5..8e94278e18 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,21 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-02 17:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Uprawnienia" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Niewystarczające uprawnienia." @@ -47,7 +50,7 @@ msgstr "Usunąć" msgid "Edit" msgstr "Edytuj" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Role" @@ -122,29 +125,28 @@ msgstr "" msgid "No such permission: %s" msgstr "Brak uprawnienia: %s" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Dostępne grupy" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "Dostępne uprawnienia" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "Przyznane uprawnienia" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -177,8 +179,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?" @@ -194,13 +198,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 ff51bf4e68..691ce33123 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,21 +11,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Permissões" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Permissões insuficientes." @@ -49,7 +50,7 @@ msgstr "Eliminar" msgid "Edit" msgstr "Editar" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Funções" @@ -124,29 +125,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Grupos disponíveis" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -179,8 +179,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?" @@ -196,13 +198,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 dca99b2fda..8d75291f10 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: # Aline Freitas , 2016 @@ -13,21 +13,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-04 19:53+0000\n" "Last-Translator: Jadson Ribeiro \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:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Permissões" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Permissões insuficientes." @@ -51,7 +52,7 @@ msgstr "Excluir" msgid "Edit" msgstr "Editar" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Regras" @@ -115,40 +116,43 @@ msgstr "Revogar as permissões" msgid "" "Comma separated list of groups primary keys to add to, or replace in this " "role." -msgstr "Lista separada por vírgulas de chaves primárias de grupo para adicionar ou substituir nesta função." +msgstr "" +"Lista separada por vírgulas de chaves primárias de grupo para adicionar ou " +"substituir nesta função." #: serializers.py:53 msgid "Comma separated list of permission primary keys to grant to this role." -msgstr "Lista separada por vírgulas de chaves primárias de permissão para conceder a esta função." +msgstr "" +"Lista separada por vírgulas de chaves primárias de permissão para conceder a " +"esta função." #: serializers.py:92 #, python-format msgid "No such permission: %s" msgstr "Sem permissão: %s" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Grupos disponíveis" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "Grupos de papéis" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "Grupos do papel: %s" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "Permissões disponíveis" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "Permissões outorgadas" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "Permissões para papel: %s" @@ -181,8 +185,10 @@ msgstr "Permissões para papel: %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?" @@ -198,13 +204,17 @@ msgstr "Permissões para papel: %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/ro_RO/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po index 31eadb39de..e09b1c21ba 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,21 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Permisiuni" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Permisiuni insuficiente." @@ -47,7 +49,7 @@ msgstr "Șterge" msgid "Edit" msgstr "Editează" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Roluri" @@ -122,29 +124,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Grupuri disponibile" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -177,8 +178,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?" @@ -194,13 +197,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 1bab1f4c24..54d57082f0 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: # lilo.panic, 2016 @@ -9,21 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Разрешения" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "Недостаточно разрешений." @@ -47,7 +50,7 @@ msgstr "Удалить" msgid "Edit" msgstr "Редактировать" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Роли" @@ -122,29 +125,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "Доступные группы" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "Группы роли" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "Группы роли: %s" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "Доступные разрешения" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "Предоставленные разрешения" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "Разрешения роли: %s" @@ -177,8 +179,10 @@ msgstr "Разрешения роли: %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?" @@ -194,13 +198,17 @@ msgstr "Разрешения роли: %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/sl_SI/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po index 8ce4509623..69f555b974 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po @@ -1,28 +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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "Pravice" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "" @@ -46,7 +48,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "Vloge" @@ -121,29 +123,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -176,8 +177,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?" @@ -193,13 +196,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..faf896a04f --- /dev/null +++ b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,147 @@ +# 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: 2017-07-09 02:28-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:22 models.py:46 models.py:77 permissions.py:7 +msgid "Permissions" +msgstr "" + +#: classes.py:75 +msgid "Insufficient permissions." +msgstr "" + +#: links.py:14 +msgid "Grant" +msgstr "" + +#: links.py:18 +msgid "Revoke" +msgstr "" + +#: links.py:22 +msgid "Create new role" +msgstr "" + +#: links.py:26 +msgid "Delete" +msgstr "" + +#: links.py:30 +msgid "Edit" +msgstr "" + +#: links.py:35 models.py:98 views.py:137 +msgid "Roles" +msgstr "" + +#: links.py:38 +msgid "Members" +msgstr "" + +#: links.py:43 +msgid "Role permissions" +msgstr "" + +#: models.py:19 +msgid "Namespace" +msgstr "" + +#: models.py:20 +msgid "Name" +msgstr "" + +#: models.py:45 +msgid "Permission" +msgstr "" + +#: models.py:74 +msgid "Label" +msgstr "" + +#: models.py:80 +msgid "Groups" +msgstr "" + +#: models.py:97 +msgid "Role" +msgstr "" + +#: permissions.py:10 +msgid "View roles" +msgstr "" + +#: permissions.py:13 +msgid "Edit roles" +msgstr "" + +#: permissions.py:16 +msgid "Create roles" +msgstr "" + +#: permissions.py:19 +msgid "Delete roles" +msgstr "" + +#: permissions.py:22 +msgid "Grant permissions" +msgstr "" + +#: permissions.py:25 +msgid "Revoke permissions" +msgstr "" + +#: serializers.py:46 +msgid "" +"Comma separated list of groups primary keys to add to, or replace in this " +"role." +msgstr "" + +#: serializers.py:53 +msgid "Comma separated list of permission primary keys to grant to this role." +msgstr "" + +#: serializers.py:92 +#, python-format +msgid "No such permission: %s" +msgstr "" + +#: views.py:46 +msgid "Available groups" +msgstr "" + +#: views.py:47 +msgid "Role groups" +msgstr "" + +#: views.py:57 +#, python-format +msgid "Groups of role: %s" +msgstr "" + +#: views.py:80 +msgid "Available permissions" +msgstr "" + +#: views.py:81 +msgid "Granted permissions" +msgstr "" + +#: views.py:94 +#, python-format +msgid "Permissions for role: %s" +msgstr "" 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 6ba9190d3f..7b07e0d4c7 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,21 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "" @@ -47,7 +48,7 @@ msgstr "" msgid "Edit" msgstr "Sửa" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "" @@ -122,29 +123,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -177,8 +177,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?" @@ -194,13 +196,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 2f058b480c..2eb3b3ef35 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,21 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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:46 models.py:77 permissions.py:7 msgid "Permissions" msgstr "权限" -#: classes.py:72 +#: classes.py:75 msgid "Insufficient permissions." msgstr "权限不足" @@ -47,7 +48,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:98 views.py:136 +#: links.py:35 models.py:98 views.py:137 msgid "Roles" msgstr "角色" @@ -122,29 +123,28 @@ msgstr "" msgid "No such permission: %s" msgstr "" -#: views.py:45 +#: views.py:46 msgid "Available groups" msgstr "" -#: views.py:46 +#: views.py:47 msgid "Role groups" msgstr "" -#: views.py:56 +#: views.py:57 #, python-format msgid "Groups of role: %s" msgstr "" -#: views.py:79 +#: views.py:80 msgid "Available permissions" msgstr "" -#: views.py:80 -#| msgid "Grant permissions" +#: views.py:81 msgid "Granted permissions" msgstr "" -#: views.py:93 +#: views.py:94 #, python-format msgid "Permissions for role: %s" msgstr "" @@ -177,8 +177,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?" @@ -194,13 +196,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 275a5117f4..c141983256 100644 --- a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po index 5dfef07c43..6b7704aa48 100644 --- a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 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 06429366a5..577c145f18 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,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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 links.py:8 msgid "REST API" 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 d4b5f49a72..95218bdefc 100644 --- a/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 links.py:8 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 6a0fd8f83f..409a2d107d 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,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Jesaja Everling , 2017 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-24 21:12+0000\n" "Last-Translator: Jesaja Everling \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 37a90555d8..d52d4f2d37 100644 --- a/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/en/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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 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 0cdd3079c5..2ee93a1772 100644 --- a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2015,2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-23 03: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: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 45cf520199..37f5343fa2 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 6074c27129..3a893b8651 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 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 1d09872f12..f1899e46f5 100644 --- a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 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 ddcb5cfaf4..ce2e44fdd0 100644 --- a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 links.py:8 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 32ef7625a1..de3a769ce5 100644 --- a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2017 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-30 08:03+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 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 2b5d0c27c7..8d1b95f6f0 100644 --- a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 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 faf6692148..a3770ba238 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,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py: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 d3a265d18f..67acde35c7 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py: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 696351ad9c..f2c8646110 100644 --- a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 # Jadson Ribeiro , 2017 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-04 18:38+0000\n" "Last-Translator: Jadson Ribeiro \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 e73aa371bb..63d5108362 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,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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po index 466275750f..99ace3d693 100644 --- a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po index 1d53a2e004..e28e93121c 100644 --- a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:16 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..8e8d8b0307 --- /dev/null +++ b/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +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. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-09 02:28-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:16 links.py:8 +msgid "REST API" +msgstr "" + +#: fields.py:30 +#, python-format +msgid "Unable to find serializer class for: %s" +msgstr "" + +#: links.py:12 +msgid "API Documentation" +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 a666baa5f6..288f2c9630 100644 --- a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 links.py:8 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 7f0684abc2..f28767e540 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,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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 links.py:8 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 a800f329e4..d8a8841c74 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py: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 55757c7b5c..7f878fa695 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py: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 71fe4cb0a5..d2bcf2a7b0 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py: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 d647385a30..bc25bc53d8 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 29846e22d2..65ba25638a 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 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 f61e86d335..c6ae9c899e 100644 --- a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 a96507166a..ca9dcefbec 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 ff7f070eac..eb6824d88f 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 fd2358d925..54a48c32c5 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 11f88f47c2..7843edfbc7 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py: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 ebada4bc4e..f8832d3b76 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 fbb8fda2a6..be27e9d40e 100644 --- a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Marco Camplese , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 efec9e6142..fdb0b373d4 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: # Evelijn Saaltink , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py: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 888fdfea8f..b626f44b7b 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,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py: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 b2a661e678..d6e7972f2f 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py: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 393bb4b6dd..1c0039b087 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: # Aline Freitas , 2016 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 17d4da992e..9c06342201 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 301b1bfa99..7ce6a3531d 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: # lilo.panic, 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 bdd0e7a33a..0ee06c3bb6 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..f91cf717f4 --- /dev/null +++ b/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,56 @@ +# 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: 2017-07-09 02:28-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:18 permissions.py:7 +msgid "Smart settings" +msgstr "" + +#: apps.py:26 +msgid "Setting count" +msgstr "" + +#: apps.py:30 +msgid "Name" +msgstr "" + +#: apps.py:34 +msgid "Value" +msgstr "" + +#: links.py:11 links.py:14 +msgid "Settings" +msgstr "" + +#: permissions.py:10 +msgid "View settings" +msgstr "" + +#: views.py:15 +msgid "Setting namespaces" +msgstr "" + +#: views.py:29 +#, python-format +msgid "Settings in namespace: %s" +msgstr "" + +#: views.py:37 +#, python-format +msgid "Namespace: %s, not found" +msgstr "" 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 eae7dc58b5..a5cb833f3d 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py: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 c6cbeda10d..61232a22c9 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-04-21 16:26+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 bf9a2fecf6..90d69e0f71 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -43,31 +44,31 @@ msgstr "" msgid "Thumbnail" msgstr "" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "تعليق" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "فك الملفات المضغوطة" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "تحميل الملفات في ملف مضغوط كوثائق منفردة" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "ملف الاعداد" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "ملف" @@ -171,15 +172,15 @@ msgstr "اسئل المستخدم" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -187,7 +188,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -195,292 +196,291 @@ msgstr "" msgid "Label" msgstr "" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "مسار نظام الملفات على الخادم" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "قيمة العرض لتمريرها إلى نظام المعالجة" -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "قيمة الارتفاع لتمريرها إلى نظام المعالجة" -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "هل يتم فك الملفات المضغوطة أم لا." -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "حذف الملف بعد رفعه بنجاح." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "غير قادر على ايجاد قائمة بملفات الاعداد: %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "نوع الوثيقة" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -509,7 +509,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -522,7 +521,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -530,9 +528,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -540,104 +537,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "انشاء مصدر جديد من النوع: %s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "الخطوة التالية" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -726,9 +720,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 201b38f319..68b29ebd8c 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,22 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -43,31 +43,31 @@ msgstr "" msgid "Thumbnail" msgstr "" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Коментар" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Файл" @@ -171,15 +171,15 @@ msgstr "Питане на потребителя" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -187,7 +187,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -195,292 +195,291 @@ msgstr "" msgid "Label" msgstr "" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "" -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Вид на документа" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -509,7 +508,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -522,7 +520,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -530,9 +527,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -540,104 +536,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Следваща стъпка" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -726,9 +719,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 8175fc14ec..b95f977fb0 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -43,31 +44,31 @@ msgstr "" msgid "Thumbnail" msgstr "" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Komentar" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Otpakuj kompresovane datoteke" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "Upload kompresovane datoteke koja sadrži individualne dokumente" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Osnovna datoteka" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Datoteka" @@ -171,15 +172,15 @@ msgstr "Pitaj korisnika" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -187,7 +188,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -195,292 +196,291 @@ msgstr "" msgid "Label" msgstr "" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "Serverska putanja na filesystem-u" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Vrijednost za širinu za konvertovanje na backend-u." -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Vrijednost za visinu za konvertovanje na backend-u." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Otpakuj ili ne kompresovane datoteke" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Obriši datoteku nakon što bude uspješno upload-ana." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "Onemogući dobivanje liste osnovnih datoteka: %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Tip dokumenta" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -509,7 +509,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -522,7 +521,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -530,9 +528,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -540,104 +537,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Kreiraj novi tip izvora: %s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Sljedeći korak" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -726,9 +720,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 165de56bec..9dc34a5ec6 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,22 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -43,31 +43,31 @@ msgstr "" msgid "Thumbnail" msgstr "" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Kommentar" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Udpak komprimerede filer" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "Upload individuelle filer fra komprimeret arkiv" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Staging fil" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Fil" @@ -171,15 +171,15 @@ msgstr "Spørg bruger" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -187,7 +187,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -195,292 +195,291 @@ msgstr "" msgid "Label" msgstr "" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "Serverside filsystem sti." -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Bredde, der overføres til konverter backend." -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Højde, der overføres til konverter backend." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Hvorvidt et pakket arkiv skal udpakkes eller ikke" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Slet filen, efter upload." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "Kan ikke danne en liste med staging filer: %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Dokumenttype" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -509,7 +508,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -522,7 +520,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -530,9 +527,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -540,104 +536,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Dan en ny kilde af typen: %s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Næste skridt" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -726,9 +719,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 521fa02d57..4b40f128e4 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-2016 @@ -15,22 +15,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "Quellen" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "Quelle definieren" @@ -39,7 +39,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:69 msgid "Created" @@ -49,31 +52,31 @@ msgstr "Erstellt" msgid "Thumbnail" msgstr "Bild" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "Zeit" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "Nachricht" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Kommentar" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Komprimierte Dateien entpacken" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "Ein komprimiertes Archiv hochladen, das einzelne Dokumente enthält" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Arbeitsdatei" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Datei" @@ -177,15 +180,15 @@ msgstr "Benutzer fragen" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "Webformular" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "Staging-Ordner" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "Beobachtungs-Ordner" @@ -193,7 +196,7 @@ msgstr "Beobachtungs-Ordner" msgid "POP3 email" msgstr "POP3" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "IMAP" @@ -201,292 +204,304 @@ msgstr "IMAP" msgid "Label" msgstr "Bezeichner" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "Aktiviert" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "Quelle" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "Interaktive Quelle" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "Interaktive Quellen" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "Pfad auf dem Server" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "Ordnerpfad" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Breite, die an den Konverter übergeben wird" -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "Vorschaubreite" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Höhe, die an den Konverter übergeben wird" -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "Vorschauhöhe" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Sollen komprimierte Archive entpackt werden?" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "Entpacken" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Datei nach erfolgreichem Hochladen löschen." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "Nach Hochladen löschen" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "Die Liste der Arbeitsdateien kann nicht ermittelt werden: %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "Fehler beim Löschen von Staging-Datei: %s" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "Staging-Ordner" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "Webformular" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "Außer Kontrolle" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "Intervall in Sekunden zwischen den Überprüfungen auf neue Dokumente" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "Intervall" -#: models.py:412 +#: models.py:421 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:414 +#: models.py:423 msgid "Document type" msgstr "Dokumententyp" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "Ob komprimierte Archive entpackt werden sollen" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "Intarvall Quelle" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "Intarvall Quellen" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "Host" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "SSL" -#: models.py:485 +#: models.py:494 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:486 +#: models.py:495 msgid "Port" msgstr "Port" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "Benutzer" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Passwort" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "Name Metadatenattachment" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Betreffs, der für den ausgewählten Dokumententyp zulässig ist" +msgstr "" +"Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Betreffs, der für " +"den ausgewählten Dokumententyp zulässig ist" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "Metadatentyp des Betreffs" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Absenders, der für den ausgewählten Dokumententyp zulässig ist" +msgstr "" +"Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Absenders, der für " +"den ausgewählten Dokumententyp zulässig ist" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "Metadatentyp des Absenders" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "Textkörper der Nachricht als Textdokument speichern" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "Textkörper der E-Mail speichern" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Metadatentyp \"%(metadata_type)s\" des Betreffs ist für den Dokumententyp \"%(document_type)s\" nicht zulässig." +msgstr "" +"Metadatentyp \"%(metadata_type)s\" des Betreffs ist für den Dokumententyp " +"\"%(document_type)s\" nicht zulässig." -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Metadatentyp \"%(metadata_type)s\" des Absenders ist für den Dokumententyp \"%(document_type)s\" nicht zulässig." +msgstr "" +"Metadatentyp \"%(metadata_type)s\" des Absenders ist für den Dokumententyp " +"\"%(document_type)s\" nicht zulässig." -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "Anhang-%i" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "E-Mail Quelle" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "E-Mail Quellen" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "Timeout" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "POP email" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP-Mailbox, die auf Nachrichten überprüft werden soll. " -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "Mailbox" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "Beobachtungs-Ordner" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "Protokolleintrag" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "Logeinträge" @@ -515,7 +530,6 @@ msgid "Delete staging files" msgstr "Staging-Datei löschen" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -528,7 +542,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -536,9 +549,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Fehler bei der Verarbeitung der Quelle %s" @@ -546,104 +558,106 @@ msgstr "Fehler bei der Verarbeitung der Quelle %s" msgid "Clear" msgstr "Löschen" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "Logeinträge für Quelle %s" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "Dokumenteneigenschaften" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "Dateien im Staging Pfad" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 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:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "Ein Dokument aus Quelle %s hochladen" -#: views.py:329 +#: views.py:338 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Vom Dokument \"%s\" können keine neuen Versionen hochgeladen werden." -#: 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:390 +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:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "Eine neue Version von Quelle %s hochladen" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Überprüfung anstoßen für Quelle \"%s\"?" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "Quellenüberprüfung vorgemerkt." -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Quelle des Typs %s erstellen" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Quelle %s wirklich löschen?" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "Quelle %s bearbeiten" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "Typ" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "Schritt 1 von 3: Dokumententyp auswählen" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "Schritt 2 von 3: Metadaten des Dokuments eingeben" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "Schritt 3 von 3: Tags auswählen" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Nächster Schritt" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "Uploadassistent" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "Hinzuzufügende Tags." @@ -732,9 +746,11 @@ msgstr "Hinzuzufügende Tags." #~ 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 d3706770db..b7822255e9 100644 --- a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po @@ -1,29 +1,29 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "Sources" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "Create a document source" @@ -32,7 +32,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "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 "" +"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." #: apps.py:69 msgid "Created" @@ -42,31 +45,31 @@ msgstr "Created" msgid "Thumbnail" msgstr "Thumbnail" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "Date time" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "Message" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Comment" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Expand compressed files" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "Upload a compressed file's contained files as individual documents" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Staging file" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "File" @@ -170,15 +173,15 @@ msgstr "Ask user" msgid "Scanner" msgstr "Scanner" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "Web form" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "Staging folder" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "Watch folder" @@ -186,7 +189,7 @@ msgstr "Watch folder" msgid "POP3 email" msgstr "POP3 email" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "IMAP email" @@ -194,292 +197,313 @@ msgstr "IMAP email" msgid "Label" msgstr "Label" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "Enabled" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "Source" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "Interactive source" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "Interactive sources" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "Device name as returned by the SANE backend." -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "Device name" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." -msgstr "Selects the scan mode (e.g., lineart, monochrome, or color). If this option is not supported by your scanner, leave it blank." +msgstr "" +"Selects the scan mode (e.g., lineart, monochrome, or color). If this option " +"is not supported by your scanner, leave it blank." -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "Mode" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." -msgstr "Sets the resolution of the scanned image in DPI (dots per inch). Typical value is 200. If this option is not supported by your scanner, leave it blank." +msgstr "" +"Sets the resolution of the scanned image in DPI (dots per inch). Typical " +"value is 200. If this option is not supported by your scanner, leave it " +"blank." -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "Resolution" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." -msgstr "Selects the scan source (such as a document-feeder). If this option is not supported by your scanner, leave it blank." +msgstr "" +"Selects the scan source (such as a document-feeder). If this option is not " +"supported by your scanner, leave it blank." -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "Paper source" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." -msgstr "Selects the document feeder mode (simplex/duplex). If this option is not supported by your scanner, leave it blank." +msgstr "" +"Selects the document feeder mode (simplex/duplex). If this option is not " +"supported by your scanner, leave it blank." -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "ADF mode" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "SANE Scanner" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "SANE Scanners" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "Error while scanning; %s" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "Server side filesystem path." -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "Folder path" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Width value to be passed to the converter backend." -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "Preview width" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Height value to be passed to the converter backend." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "Preview height" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Whether to expand or not compressed archives." -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "Uncompress" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Delete the file after is has been successfully uploaded." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "Delete after upload" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "Unable get list of staging files: %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "Error deleting staging file; %s" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "Staging folders" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "Web forms" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "Out of process" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "Interval in seconds between checks for new documents." -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "Interval" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "Assign a document type to documents uploaded from this source." -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Document type" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "Whether to expand or not, compressed archives." -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "Interval source" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "Interval sources" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "Host" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "SSL" -#: models.py:485 +#: models.py:494 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:486 +#: models.py:495 msgid "Port" msgstr "Port" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "Username" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Password" -#: models.py:493 +#: models.py:502 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 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 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." -#: models.py:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "Metadata attachment name" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Select a metadata type valid for the document type selected in which to store the email's subject." +msgstr "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "Subject metadata type" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Select a metadata type valid for the document type selected in which to store the email's \"from\" value." +msgstr "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "From metadata type" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "Store the body of the email as a text document." -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "Store email body" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Subject metadata type \"%(metadata_type)s\" is not valid for the document type: %(document_type)s" +msgstr "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document type: %(document_type)s" +msgstr "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "attachment-%i" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "Email source" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "Email sources" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "Timeout" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "POP email" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP Mailbox from which to check for messages." -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "Mailbox" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "Watch folders" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "Log entry" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "Log entries" @@ -508,7 +532,6 @@ msgid "Delete staging files" msgstr "Delete staging files" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "Sources periodic" @@ -521,7 +544,6 @@ msgid "Handle upload" msgstr "Handle upload" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "Upload document" @@ -529,9 +551,8 @@ msgstr "Upload document" msgid "File path to the scanimage program used to control image scanners." msgstr "File path to the scanimage program used to control image scanners." -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Error processing source: %s" @@ -539,104 +560,104 @@ msgstr "Error processing source: %s" msgid "Clear" msgstr "Clear" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "Log entries for source: %s" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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." +"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." -#: views.py:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "Document properties" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "Files in staging path" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "Scan" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "New document queued for uploaded and will be available shortly." -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "Upload a local document from source: %s" -#: views.py:329 +#: views.py:338 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Document \"%s\" is blocked from uploading new versions." -#: views.py:381 -msgid "" +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" "New document version queued for uploaded and will be available shortly." -msgstr "New document version queued for uploaded and will be available shortly." -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "Upload a new version from source: %s" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Trigger check for source \"%s\"?" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "Source check queued." -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Create new source of type: %s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Delete the source: %s?" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "Edit source: %s" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "Type" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "Step 1 of 3: Select document type" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "Step 2 of 3: Enter document metadata" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "Step 3 of 3: Select tags" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Next step" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "Document upload wizard" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "Tags to be attached." @@ -725,9 +746,11 @@ msgstr "Tags to be attached." #~ 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/es/LC_MESSAGES/django.po b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po index 6cf81cd6c3..769a8679f7 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,22 +12,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05: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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "Fuentes" #: apps.py:57 -#| 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:69 msgid "Created" @@ -46,31 +49,32 @@ msgstr "Creado" msgid "Thumbnail" msgstr "Foto miniatura" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "Fecha y hora" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "Mensaje" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Comentario" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Expandir archivos comprimidos" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Subir los archivos de un archivo comprimido como documentos individuales" +msgstr "" +"Subir los archivos de un archivo comprimido como documentos individuales" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Archivo provisional" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Archivo" @@ -174,15 +178,15 @@ msgstr "Preguntar al usuario" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "Formulario web" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "Archivos provisionales" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "Carpeta observada" @@ -190,7 +194,7 @@ msgstr "Carpeta observada" msgid "POP3 email" msgstr "Correo electrónico POP3" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "Correo electrónico IMAP" @@ -198,292 +202,302 @@ msgstr "Correo electrónico IMAP" msgid "Label" msgstr "Etiqueta" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "Habilitado" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "Fuente" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "Fuente interactiva" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "Fuentes interactivas" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "Ruta a los archivos en el servidor." -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "Ruta de la carpeta" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Valor de la anchura que se pasa al backend convertidor." -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "Ancho de muestra" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Valor de la altura que se pasa al backend convertidor." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "Alto de muestra" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Expandir o no archivos comprimidos." -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "Descomprimir" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Eliminar el archivo después de que se haya cargado correctamente." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "Borrar después de subir" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "No es posible obtener la lista de los archivos provisionales: %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "Error al borrar archivo de ensayo; %s" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "Archivos provisionales" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "Formularios web" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "Fuera de proceso" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "Intérvalo en segundos para detectar documentos nuevos" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "Intérvalo" -#: models.py:412 +#: models.py:421 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:414 +#: models.py:423 msgid "Document type" msgstr "Tipo de documento" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "Expandir o no archivos comprimidos." -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "Intervalo de fuente." -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "Intervalo de fuentes" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "Host" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "SSL" -#: models.py:485 +#: models.py:494 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:486 +#: models.py:495 msgid "Port" msgstr "Puerto" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "Usuario" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Contraseña" -#: models.py:493 +#: models.py:502 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "Nombre del archivo adjunto que contiene los nombres de los tipos de metadatos y los pares de valores que se asignará al resto de los archivos adjuntos descargados. Nota: Este anejo tiene que ser el primer archivo adjunto." +msgstr "" +"Nombre del archivo adjunto que contiene los nombres de los tipos de " +"metadatos y los pares de valores que se asignará al resto de los archivos " +"adjuntos descargados. Nota: Este anejo tiene que ser el primer archivo " +"adjunto." -#: models.py:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "Nombre del anejo de metadatos" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Seleccione un tipo de metadatos válido para el tipo de documento seleccionado para almacenar el asunto del correo electrónico." +msgstr "" +"Seleccione un tipo de metadatos válido para el tipo de documento " +"seleccionado para almacenar el asunto del correo electrónico." -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "Tipo de metadatos de asunto " -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Seleccione un tipo de metadatos válido para el tipo de documento seleccionado para almacenar el valor \"de\" del correo electrónico." +msgstr "" +"Seleccione un tipo de metadatos válido para el tipo de documento " +"seleccionado para almacenar el valor \"de\" del correo electrónico." -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "Tipo de metadato de remitente" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "Almacenar el cuerpo del correo electrónico como un documento de texto." -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "Almacenar cuerpo del correo electrónico" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "Anejo-%i" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "Fuente de correo electrónico" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "Fuentes de correo electrónico" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "Tiempo de espera" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "Correo electrónico POP" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "Buzón IMAP en el cual revisar mensajes." -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "Buzón" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "Carpetas observadas" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "Entrada de bitácora" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "Entradas de bitácora" @@ -512,7 +526,6 @@ msgid "Delete staging files" msgstr "Borrar archivos provisionales" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -525,7 +538,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -533,9 +545,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Error procesando fuente: %s" @@ -543,104 +554,105 @@ msgstr "Error procesando fuente: %s" msgid "Clear" msgstr "Limpiar" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "Entradas de bitácora para fuente: %s" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "Propiedades de documento" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "Archivos en ruta de ensayo" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 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:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "Subir documento local desde la fuente: %s" -#: views.py:329 +#: views.py:338 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Documento \"%s\" esta bloqueado de crear nuevas versiones." -#: 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:390 +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:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "Subir una nueva versión de la fuente: %s" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "¿Lanzar chequeo para la fuenta \"%s\"? " -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "Verificación del origen en sometida." -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Crear nuevo tipo de fuente: %s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "¿Eliminar la fuente: %s?" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "Editar fuente: %s" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "Tipo" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "Paso 1 de 3: Seleccione tipo de documento" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "Paso 2 de 3: Entre la metadata del documento" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "Pago 3 de 3: Seleccione las etiquetas" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Siguiente paso" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "Asistente de carga de documentos" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "Etiquetas a ser anejadas." @@ -729,9 +741,11 @@ msgstr "Etiquetas a ser anejadas." #~ 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 bf9ccb1228..36d7deaf8d 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,22 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "سورس" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -43,31 +43,31 @@ msgstr "ساخته‌شده" msgid "Thumbnail" msgstr "اندازه کوچک" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "تاریخ زمان" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "توضیحات" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "بازگشایی فایلهای فشرده" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "آپلود فایل فشرده شامل فایل اصلی سند." -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "پرونده مرحله ای" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "پرونده" @@ -171,15 +171,17 @@ msgstr "پرسیدن از کاربر" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" -msgstr "وب فرم ا " +msgstr "" +"وب فرم " +"ا " -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "پرونده مرحله ای" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "پرونده تحت نظر" @@ -187,7 +189,7 @@ msgstr "پرونده تحت نظر" msgid "POP3 email" msgstr "ایمیل POP3" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "ایمیل IMAP" @@ -195,292 +197,293 @@ msgstr "ایمیل IMAP" msgid "Label" msgstr "برچسب" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "فعال شده" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "سورس" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "سورس محاوره ای" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "سورس های محاوره ای" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "محل قرارگیری برروی سیستم فایل سمت سرور" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "محل پرونده" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "مقداری که به مبدل جهت عرض ارسال خواهد شد." -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "عرض پیش بینی" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "مقداری که به مبدل جهت ارتفاع ارسال خواهد شد." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "ارتفاع پیش بینی" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "گسترش و یا آرشیوهای غیر فشرده" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "فشرده نشده" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "حدف فایل پس از آپلود موفق آن." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "حذف پس ار آپ لود" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "قادر به گرفتن لیست فایلهای مرحله ای نیست. %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "خطای حذف فایل مرحله ای : %s" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "پرونده های مرحله ای" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "فرمهای وب" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "خارج از پردازش" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "مدت زمان بین بررسی جهت سند جدید." -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "فاصله" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "این نوع را به اسناد آپلود شده از این آدرس تخصیص دهید." -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "نوع سند" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "غییر فشرده سازی آرشیوهای فشرده شده: بلی خیر" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "فاصله سورس" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "فاصله سورسها" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "هاست" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "SSL" -#: models.py:485 +#: models.py:494 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:486 +#: models.py:495 msgid "Port" msgstr "Port" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "نام کاربری" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "کلمه عبور" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "الضاقیات-%i" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "ایمیل کردن سورس" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "ایمیل کردن سورسها" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "اتمام وقت" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "POP ایمیل" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "صندوق پستی" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "پرونده تحت نظر" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "ورودیهای لاگ" @@ -509,7 +512,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -522,7 +524,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -530,9 +531,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -540,104 +540,103 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "فایلهای درون راه مرحله ای" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "سند جدیدی که در صف آپلود است بزودی قابل دسترس خواهد بود." -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "آپلود کردن فایل محلی از اصل:%s" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "نسخه سند جدید که جهت آپلود وارد صف شد بزودی قابل دسترس خواهد بود." -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "آپلود نسخه ای جدید از اصل : %s" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "ایجاد سورس جدید از نوع %s." -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "ویرایش اصل : %s" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "نوع" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "مرحله بعدی" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -726,9 +725,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 8372656b6a..b8de1a8b8b 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: # Bruno CAPELETO , 2016 @@ -12,22 +12,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "Sources" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "Créer un document source" @@ -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 "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:69 msgid "Created" @@ -46,31 +49,33 @@ msgstr "Créé" msgid "Thumbnail" msgstr "Vignette" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "Date et heure" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "Message" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Commentaire" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Décompresser les fichiers" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Importer le contenu d'un ensemble de fichiers compressés comme fichiers individuels" +msgstr "" +"Importer le contenu d'un ensemble de fichiers compressés comme fichiers " +"individuels" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "fichier en cours de modification" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Fichier" @@ -174,15 +179,15 @@ msgstr "Demander à l'utilisateur" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "Formulaire web" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "Répertoire dit d'index, modifications en cours" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "Surveiller le répertoire" @@ -190,7 +195,7 @@ msgstr "Surveiller le répertoire" msgid "POP3 email" msgstr "email POP3" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "email IMAP" @@ -198,292 +203,305 @@ msgstr "email IMAP" msgid "Label" msgstr "Libellé" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "Activé" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "Source" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "Source interactive" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "Sources interactives " -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "chemin de répertoire système sur le serveur." -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "Chemin du dossier" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Valeur de largeur à passer au convertisseur en arrière plan" -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "Largeur de la prévisualisation" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Valeur de hauteur à passer au convertisseur en arrière plan." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "Hauteur de prévisualisation" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Indique s'il faut ou non décompresser les fichiers d'archive." -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "Décompresser" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "supprimer le fichier après importation avec succès." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "Supprimer après télé-versement" -#: models.py:337 +#: models.py:346 #, 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:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "Impossible de supprimer le fichier en cours de modification: %s" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "Répertoires dit d'index, modifications en cours" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "Formulaire Web" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "Process externe" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "Intervalle en secondes entre la vérification de nouveaux documents." -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "Intervalle" -#: models.py:412 +#: models.py:421 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:414 +#: models.py:423 msgid "Document type" msgstr "Type de document" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "Choisir de décompresser ou pas les archives compressées." -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "intervalle pour la source" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "intervalle pour les sources" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "Hote" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "SSL" -#: models.py:485 +#: models.py:494 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:486 +#: models.py:495 msgid "Port" msgstr "Port" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "Identifiant" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Mot de passe" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "Métadonnées de la pièce jointe" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Sélectionner un type de métadonnée correct pour le type de document sélectionné, dans lequel enregistrer le sujet de l'email" +msgstr "" +"Sélectionner un type de métadonnée correct pour le type de document " +"sélectionné, dans lequel enregistrer le sujet de l'email" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "Type de métadonnée du sujet" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Sélectionner un type de métadonnée correct pour le type de document sélectionné, dans lequel enregistrer la valeur du champs \"de\"" +msgstr "" +"Sélectionner un type de métadonnée correct pour le type de document " +"sélectionné, dans lequel enregistrer la valeur du champs \"de\"" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "Type de métadonnée du champs \"de\"" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "Sauvegarder le corps de l'email en tant que document texte." -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "Sauvegarder le corps de l'email" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Le type de métadonnée du sujet \"%(metadata_type)s\" n'est pas correct pour le document de type: %(document_type)s" +msgstr "" +"Le type de métadonnée du sujet \"%(metadata_type)s\" n'est pas correct pour " +"le document de type: %(document_type)s" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Le type de métadonnée du champs \"de\" \"%(metadata_type)s\" n'est pas correct pour le document de type: %(document_type)s" +msgstr "" +"Le type de métadonnée du champs \"de\" \"%(metadata_type)s\" n'est pas " +"correct pour le document de type: %(document_type)s" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "Pièce jointe-%i" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "source du courriel" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "Sources du courriel" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "Délai d'attente dépassé" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "Compte POP" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "Boîte IMAP où chercher les messages" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "Boîte aux lettres" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "surveiller les répertoires" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "Entrée du journal" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "Entrées du journal" @@ -512,7 +530,6 @@ msgid "Delete staging files" msgstr "Supprimer les fichiers en attente" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -525,7 +542,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -533,9 +549,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Erreur lors du traitement de la source: %s" @@ -543,104 +558,107 @@ msgstr "Erreur lors du traitement de la source: %s" msgid "Clear" msgstr "Effacer" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "Entrée du journal pour la source: %s" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "Propriété du document" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "Fichiers dans l'index, en cours de modification" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 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:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "importer un document local à partir de la source: %s" -#: views.py:329 +#: views.py:338 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "L'ajout d'une nouvelle version pour le document \"%s\" est bloqué." -#: 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:390 +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:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "Importer une nouvelle version à partir de la source: %s" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Créer une nouvelle source de type:%s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Supprimer la source: %s?" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "Modifier la source: %s" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "Type" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "Etape 1 sur 3: Sélectionner le type du document" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "Etape 2 sur 3: Entrer les metadonnées" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "Etape 3 sur 3: Sélectionner les tags" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Prochaine étape" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "Assistant d'envoi de document" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -729,9 +747,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/hu/LC_MESSAGES/django.po b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po index 04f028c4ed..57ff2ce2d5 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,22 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -43,31 +43,31 @@ msgstr "" msgid "Thumbnail" msgstr "" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Megjegyzés" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Tömörített fájlok kibontása" -#: forms.py:46 +#: forms.py:47 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:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Átmeneti fájl" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "" @@ -171,15 +171,15 @@ msgstr "Kérdezd meg a felhasználót" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -187,7 +187,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -195,292 +195,291 @@ msgstr "" msgid "Label" msgstr "" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "" -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Dokumentum típus" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -509,7 +508,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -522,7 +520,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -530,9 +527,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -540,104 +536,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Következő lépés" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -726,9 +719,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 f9514f2767..de636f7fe9 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,22 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -43,31 +43,33 @@ msgstr "" msgid "Thumbnail" msgstr "" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "tanggal waktu" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Komentar" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Kembangkan berkas-berkas terkompresi" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-dokumen individual" +msgstr "" +"Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-" +"dokumen individual" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "File" @@ -171,15 +173,15 @@ msgstr "Tanya pengguna" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -187,7 +189,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -195,292 +197,291 @@ msgstr "" msgid "Label" msgstr "" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Apakah mengembangkan atau tidak mengkompresi arsip-arsip." -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Hapus berkas setelah berhasil di unggah." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Jenis dokumen" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Password" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -509,7 +510,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -522,7 +522,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -530,9 +529,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -540,104 +538,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Membuat sumber baru dengan jenis: %s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Langkah selanjutnya" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -726,9 +721,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 248000181d..9a1cc403f1 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,22 +11,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "Sorgenti" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "Crea una sorgente documento" @@ -35,7 +35,9 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Sorgenti documento è il mezzo con cui i nuovi documenti alimentano Mayan EDMS, crea almeno una modulo web per poter caricare documenti da un browser." +msgstr "" +"Sorgenti documento è il mezzo con cui i nuovi documenti alimentano Mayan " +"EDMS, crea almeno una modulo web per poter caricare documenti da un browser." #: apps.py:69 msgid "Created" @@ -45,31 +47,31 @@ msgstr "Creato" msgid "Thumbnail" msgstr "Miniatura" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "Data e ora" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "Messaggio" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Commento" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Espandi" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "Pubblicare un file compresso contenente singoli documenti" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Mostra file" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "File" @@ -173,15 +175,15 @@ msgstr "Chiedi all'utente" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "Form web" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "Cartella di stage" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "Cartella monitorata" @@ -189,7 +191,7 @@ msgstr "Cartella monitorata" msgid "POP3 email" msgstr "Email POP3" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "Email IMAP" @@ -197,292 +199,306 @@ msgstr "Email IMAP" msgid "Label" msgstr "Etichetta" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "Abilitato" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "Sorgente" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "Sorgente interattiva" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "Sorgenti interattive" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "Path sul filesystem del server" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "Percorso cartella" -#: models.py:295 +#: models.py:304 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:296 +#: models.py:305 msgid "Preview width" msgstr "Larghezza anteprima" -#: models.py:300 +#: models.py:309 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:301 +#: models.py:310 msgid "Preview height" msgstr "Altezza anteprima" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Se espandere o meno degli archivi compressi." -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "Decomprimi" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Cancella il file dopo essere stato caricato" -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "Cancella dopo aver caricato" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "Impossibile ottenere lista dei file di gestione temporanea: %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "Errore cancellando il file di stage; %s" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "Cartelle di stage" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "Form web" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "Fuori dal processo" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "Intervallo in secondi tra le ricerche dei nuovi documenti." -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "Intervallo" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "Assegna un tipo documento ai documenti caricati da questa sorgente." -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Tipo documento " -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "Determina se espandere o no gli archivi compressi." -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "Intervallo sorgente" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "Intervallo sorgenti" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "Host" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "SSL" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Le scelte tipiche sono 110 per POP3, 995 per POP3 su SSL, 143 per IMAP, 993 per IMAP su SSL." +msgstr "" +"Le scelte tipiche sono 110 per POP3, 995 per POP3 su SSL, 143 per IMAP, 993 " +"per IMAP su SSL." -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "Porta" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "Nome utente" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Password" -#: models.py:493 +#: models.py:502 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "Nome degli allegati che possono contenere i nomi dei tipi metadati e le coppie di valori che saranno assegnate al resto degli allegati caricati. Nota: Questo allegato sarà il primo degli allegati." +msgstr "" +"Nome degli allegati che possono contenere i nomi dei tipi metadati e le " +"coppie di valori che saranno assegnate al resto degli allegati caricati. " +"Nota: Questo allegato sarà il primo degli allegati." -#: models.py:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "Nome allegato metadati" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Selezionare il tipo metadato valido per il documento selezionato dove impostare l'oggetto della mail." +msgstr "" +"Selezionare il tipo metadato valido per il documento selezionato dove " +"impostare l'oggetto della mail." -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "Tipo metadato oggetto" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Selezionare il tipo metadato valido per il documento selezionato dove impostare il mittente della mail." +msgstr "" +"Selezionare il tipo metadato valido per il documento selezionato dove " +"impostare il mittente della mail." -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "Tipo metadato mittente" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "Salva il contenuto della mail in un documento di testo" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "Salva il contenuto della mail" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Il tipo metadato \"oggetto\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" +msgstr "" +"Il tipo metadato \"oggetto\" \"%(metadata_type)s\" non è valido per il tipo " +"documento: %(document_type)s" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Il tipo metadato \"mittente\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" +msgstr "" +"Il tipo metadato \"mittente\" \"%(metadata_type)s\" non è valido per il tipo " +"documento: %(document_type)s" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "allegato-%i" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "Email sorgente" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "Email sorgenti" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "Timeout" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "Email POP" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "Casella di posta IMAP dove controllare i messaggi." -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "Casella" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "Cartelle monitorate" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "Elementi log" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "Elementi log" @@ -511,7 +527,6 @@ msgid "Delete staging files" msgstr "Cancella i file temporanei" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -524,7 +539,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -532,9 +546,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Errore processando la sorgente: %s" @@ -542,104 +555,106 @@ msgstr "Errore processando la sorgente: %s" msgid "Clear" msgstr "Pulisci" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "Log per la sorgente: %s" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Nessuna fonte interattiva dei documenti è stata definita o non ne sono state attivate." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Nessuna fonte interattiva dei documenti è stata definita o non ne sono state " +"attivate." -#: views.py:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "Proprietà documento" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "File nel percorso di stage" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." -msgstr "Il nuovo documento pronto in coda per il carico e sarà disponibile a breve." +msgstr "" +"Il nuovo documento pronto in coda per il carico e sarà disponibile a breve." -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "Carica un documento locale dalla sorgente: %s" -#: views.py:329 +#: views.py:338 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Il documento \"%s\" è bloccato per il caricamento di nuove versioni." -#: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." -msgstr "La nuova versione del documento è in coda per il caricamento e sarà disponibile a breve." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" +"La nuova versione del documento è in coda per il caricamento e sarà " +"disponibile a breve." -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "Carica la nuova versione dalla sorgente: %s" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Controllo trigger per il sorgente \"%s\"?" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "Controllo del sorgente in coda." -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Crea nuovo tipo di sorgente:%s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Cancellare la sorgente: %s?" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "Modifica sorgente: %s" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "Tipo" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "Passo 1 di 3: Seleziona il tipo documento" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "Passo 2 di 3: Inserisci i metadati del documento" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "Passo 3 di 3: Seleziona i tag" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Prossimo passo " -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "Procedura guidata carico documenti" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "Tag che saranno allegati." @@ -728,9 +743,11 @@ msgstr "Tag che saranno allegati." #~ 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 cf0a055d3d..5c2fb429a7 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: # Evelijn Saaltink , 2016 @@ -10,22 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "Bronnen" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "Maak een documentbron aan" @@ -44,31 +44,32 @@ msgstr "Aangemaakt" msgid "Thumbnail" msgstr "Thumbnail" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "Datum en tijd" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "Bericht" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Commentaar" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Uitpakken gecomprimeerde bestanden" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Upload een gecomprimeerd archief van bestanden als individuele documenten" +msgstr "" +"Upload een gecomprimeerd archief van bestanden als individuele documenten" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Tijdelijk bestand" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Bestand" @@ -172,15 +173,15 @@ msgstr "Vraag gebruiker" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "Webformulier" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -188,7 +189,7 @@ msgstr "" msgid "POP3 email" msgstr "POP3 e-mail" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "IMAP e-mail" @@ -196,292 +197,294 @@ msgstr "IMAP e-mail" msgid "Label" msgstr "Label" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "Ingeschakeld" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "BronB" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "Interactieve bro" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "Interactieve bronnen" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "pad naar filesysteem server" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "Mappad" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Breedte waarde die moet worden doorgegeven aan de converter backend." -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Hoogte waarde die moet worden doorgegeven aan de converter backend." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Keuze om te expanderen of uitpakken van archief. (TODO: review this)" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "Uitpakken" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Verwijder het bestand nadat de 'upload' succesvol is voltooid." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, 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:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 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:414 +#: models.py:423 msgid "Document type" msgstr "Documentsoort" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "Al of niet uitpakken van gecomprimeerde archieven." -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "SSL" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Wachtwoord" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "attachment-%i" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "Timeout" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "POP e-mail" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "Loginvoer" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "Loginvoer" @@ -510,7 +513,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -523,7 +525,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -531,9 +532,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -541,104 +541,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Aanmaken van nieuw documentbron van type: %s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "Type" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Volgende stap" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -727,9 +724,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 4605673422..ea06be5cd2 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 @@ -11,22 +11,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -45,31 +47,31 @@ msgstr "Utworzony" msgid "Thumbnail" msgstr "Miniaturka" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "Data godzina" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Komentarz" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Plik" @@ -173,15 +175,15 @@ msgstr "Pytaj użytkownika" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -189,7 +191,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -197,292 +199,291 @@ msgstr "" msgid "Label" msgstr "Etykieta" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "Włączone" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "" -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Typ dokumentów" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Hasło" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "Wpisy rejestru logów" @@ -511,7 +512,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -524,7 +524,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -532,9 +531,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -542,104 +540,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "Właściwości dokumentu" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Utwórz nowe typ źródło:%s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "Typ" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "Krok 1 z 3: Wybierz typ dokumentu" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "Krok 2 z 3: Wprowadź metadane dokumentu" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "Krok 3 z 3: Wybierz tagi" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Następny krok" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "Kreator przesyłania dokumentu" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -728,9 +723,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 9ff23374f4..7a7dcdccbf 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,22 +11,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -45,31 +45,33 @@ msgstr "" msgid "Thumbnail" msgstr "" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Comentário" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Expandir ficheiros comprimidos" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Enviar os ficheiros contidos num ficheiro comprimido como documentos individuais" +msgstr "" +"Enviar os ficheiros contidos num ficheiro comprimido como documentos " +"individuais" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Ficheiro de preparação" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Ficheiro" @@ -173,15 +175,15 @@ msgstr "Perguntar ao utilizador" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -189,7 +191,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -197,292 +199,291 @@ msgstr "" msgid "Label" msgstr "Nome" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "Caminho do sistema de ficheiros do lado do servidor" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Valor da largura para ser passado para o backend conversor." -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Valor da altura a ser passado ao conversor." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Se os ficheiros comprimidos devem ser descomprimidos ou não." -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Excluir o ficheiro depois de ter sido enviado com sucesso." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "Incapaz de obter a lista dos ficheiros em preparação: %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Tipo de documento" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Senha" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -511,7 +512,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -524,7 +524,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -532,9 +531,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -542,104 +540,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Criar nova fonte do tipo: %s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Próximo passo" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -728,9 +723,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 3db7e8e6fa..9bd9ac8f43 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: # Aline Freitas , 2016 @@ -12,22 +12,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "Fontes" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "Criar uma nova fonte 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 "Fontes de documentos são a forma como os novos documentos são alimentados ao Mayan EDMS, crie pelo menos uma fonte de formulário da web para poder carregar documentos a partir de um navegador." +msgstr "" +"Fontes de documentos são a forma como os novos documentos são alimentados ao " +"Mayan EDMS, crie pelo menos uma fonte de formulário da web para poder " +"carregar documentos a partir de um navegador." #: apps.py:69 msgid "Created" @@ -46,31 +49,32 @@ msgstr "Criando" msgid "Thumbnail" msgstr "miniatura" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "hora, data" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "Mensagem" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Comentário" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Expandir arquivos compactados" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Upload de um arquivo compactado contendo arquivos como documentos individuais" +msgstr "" +"Upload de um arquivo compactado contendo arquivos como documentos individuais" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Preparação de arquivo" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Arquivo" @@ -174,15 +178,15 @@ msgstr "Pergunte ao usuário" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "formulário web" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "Pasta teste" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "Pasta Temporária" @@ -190,7 +194,7 @@ msgstr "Pasta Temporária" msgid "POP3 email" msgstr "E-mail POP3" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "E-mail IMAP" @@ -198,292 +202,305 @@ msgstr "E-mail IMAP" msgid "Label" msgstr "Label" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "habilitado" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "fonte" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "Fonte interativa" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "Fontes interativa" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "Caminho do sistema do servidor" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "Caminho da Pasta" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Valor da largura a ser passado para o backend conversor." -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "Largura de visualização" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Valor de altura para ser passado para o backend conversor." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "Altura de pré-visualização" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Se expandir ou não arquivos compactados." -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "descompactar" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Excluir o arquivo depois de ter sido carregado com sucesso." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "excluir depois do Upload" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "Unable get list of staging files: %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "Error removendo arquivo de teste; %s" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "Pastas de teste" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "Formulários web" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "Saída do processo" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "Intervalo em segundos entre verificações para novos documentos." -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "intervalo" -#: models.py:412 +#: models.py:421 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:414 +#: models.py:423 msgid "Document type" msgstr "Tipos de Documentos" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "A possibilidade de expandir ou não, arquivos comprimido." -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "Fonte de intervalo" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "Fontes de intervalo" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "Host" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "SSL" -#: models.py:485 +#: models.py:494 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:486 +#: models.py:495 msgid "Port" msgstr "Porta" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "Usuário" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Senha" -#: models.py:493 +#: models.py:502 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "Nome do anexo que contém os nomes de tipo de metadados e os pares de valores a serem atribuídos ao restante dos anexos transferidos. Nota: Este anexo tem de ser o primeiro anexo." +msgstr "" +"Nome do anexo que contém os nomes de tipo de metadados e os pares de valores " +"a serem atribuídos ao restante dos anexos transferidos. Nota: Este anexo tem " +"de ser o primeiro anexo." -#: models.py:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "Nome do metadado anexado" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "Selecione um tipo de metadados válido para o tipo de documento selecionado para armazenar o assunto do e-mail." +msgstr "" +"Selecione um tipo de metadados válido para o tipo de documento selecionado " +"para armazenar o assunto do e-mail." -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "Tipo de metadado do assunto" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Selecione um tipo de metadados válido para o tipo de documento selecionado para armazenar o valor \"de\" do e-mail." +msgstr "" +"Selecione um tipo de metadados válido para o tipo de documento selecionado " +"para armazenar o valor \"de\" do e-mail." -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "Tipo de documento do remetente" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "Armazenar o corpo do e-mail como um documento de texto." -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "Armazenar o corpo do e-mail" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Tipo de metadado do assunto \"%(metadata_type)s\" não é válido para o documento do tipo: %(document_type)s" +msgstr "" +"Tipo de metadado do assunto \"%(metadata_type)s\" não é válido para o " +"documento do tipo: %(document_type)s" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Tipo de metadados do campo \"de\" \"%(metadata_type)s\" não é válido para o tipo de documento: %(document_type)s" +msgstr "" +"Tipo de metadados do campo \"de\" \"%(metadata_type)s\" não é válido para o " +"tipo de documento: %(document_type)s" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "anexo-%i" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "E-mail Fonte" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "E-mail Fontes" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "Timeout" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "E-mail POP3" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "Pasta de email IMAP de onde checar por mensagens." -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "Caixa de correio" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "Pastas Temporárias" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "Entrada de registro" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "As entradas de log" @@ -512,7 +529,6 @@ msgid "Delete staging files" msgstr "Apagar arquivos temporários" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -525,7 +541,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -533,9 +548,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Erro processando fonte: %s" @@ -543,104 +557,105 @@ msgstr "Erro processando fonte: %s" msgid "Clear" msgstr "Limpar" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "Registrar entradas para fonte: %s" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "Propriedades do documento" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "Os arquivos no caminho de preparo" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 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:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "Carregar um documento no local de origem:%s " -#: views.py:329 +#: views.py:338 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." msgstr "Documento \"%s\" está bloqueado para carregar novas versões." -#: 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:390 +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:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "Carregar uma nova versão da Origem: %s" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "Verificar a origem \"%s\"?" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "Cheque de origem enfileirado." -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Criar nova fonte do tipo: %s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Apagar a fonte: %s?" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "Editar fonte: %s" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "Tipo" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "Passo 1 de 3: Selecione o tipo de documento" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "Passo 2 de 3: Insira metadados do documento" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "Passo 3 de 3: Selecione etiquetas" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Próximo passo" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "Assistente de upload de documentos" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "Etiquetas a serem anexadas." @@ -729,9 +744,11 @@ msgstr "Etiquetas a serem anexadas." #~ 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 e6733847de..c9601767fd 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -44,31 +45,33 @@ msgstr "" msgid "Thumbnail" msgstr "Iconiță" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "Data și ora" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Comentariu" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Dezarhivare fișiere comprimate" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Încărcați fișiere de fișier comprimat care sunt incluse ca documente individuale" +msgstr "" +"Încărcați fișiere de fișier comprimat care sunt incluse ca documente " +"individuale" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Structura fisier" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Fișier" @@ -172,15 +175,15 @@ msgstr "Întreabă utilizatorul" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -188,7 +191,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -196,292 +199,291 @@ msgstr "" msgid "Label" msgstr "Etichetă" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "Cale de fișiere server." -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Valoarea lățime trecuta convertorului." -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Valoare de înălțime trecuta convertorului." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Dacă se extinde sau nu se arhivează." -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 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:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "Imposibil obține lista de fișiere de așteptare:% s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Tip document" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -510,7 +512,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -523,7 +524,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -531,9 +531,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -541,104 +540,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Creați o nouă sursă de tipul:% s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "Tip" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Următorul pas" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -727,9 +723,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 f19b942ac7..a70a5441d7 100644 --- a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # lilo.panic, 2016 @@ -9,22 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "Источники" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "Создать источник документов" @@ -33,7 +35,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Источники документов - это способы получения Mayan EDMS новых документов. Как минимум, чтобы можно было загружать документы из браузера, создайте веб-форму." +msgstr "" +"Источники документов - это способы получения Mayan EDMS новых документов. " +"Как минимум, чтобы можно было загружать документы из браузера, создайте веб-" +"форму." #: apps.py:69 msgid "Created" @@ -43,31 +48,31 @@ msgstr "Создано" msgid "Thumbnail" msgstr "Миниатюра" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "Дата и время" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "Сообщение" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Комментарий" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Извлекать из архивов?" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "Загрузить файлы, содержащиеся в архиве в качестве отдельных документов" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "Промежуточный файл" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "Файл" @@ -171,15 +176,15 @@ msgstr "Спросить пользователя" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "Веб-форма" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "Промежуточная папка" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "Наблюдаемая папка" @@ -187,7 +192,7 @@ msgstr "Наблюдаемая папка" msgid "POP3 email" msgstr "почтовый ящик POP3" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "почтовый ящик IMAP" @@ -195,292 +200,292 @@ msgstr "почтовый ящик IMAP" msgid "Label" msgstr "Надпись" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "Доступно" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "Источник" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "Интерактивный источник" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "Интерактивные источники" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "Путь на сервере" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "Путь к папке" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "Ширина после обработки." -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "Ширина предпросмотра" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "Высота после обработки." -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "Высота предпросмотра" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "Независимо от того распакованы или нет архивы." -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "Распаковать" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "Удалить файл после загрузки." -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "Удалить после загрузки" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "Не удалось получить список промежуточных файлов: %s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "Ошибка удаления промежуточного файла; %s" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "Промежуточные папки" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "Веб-формы" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "Временной интервал проверки на наличие новых документов." -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "Интервал" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." -msgstr "Назначить тип документов для документов, загружаемых из этого источника." +msgstr "" +"Назначить тип документов для документов, загружаемых из этого источника." -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Тип документа" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "Следует ли извлекать данные из архива." -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "Хост" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "SSL" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "Порт" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "Имя пользователя" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "Пароль" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "вложение-%i" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "Таймаут" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "POP email" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP ящик в котором проверять сообщения." -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "Запись журнала" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "Записи журнала" @@ -509,7 +514,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -522,7 +526,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -530,9 +533,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Ошибка обработки источника: %s" @@ -540,104 +542,103 @@ msgstr "Ошибка обработки источника: %s" msgid "Clear" msgstr "Очистить" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "Записи журнала для источника: %s" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "Свойства документа" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "Загрузка новой версии из источника %s" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "Создать новый источник типа: %s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "Тип" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "Шаг 1 из 3: Выбор типа документа" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "Шаг 2 из 3: Заполните метаданные документа" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "Шаг 3 из 3%: выберите метки" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Далее" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "Мастер загрузки документов" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -726,9 +727,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 d14d0e67e3..fc88b2b05c 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -42,31 +43,31 @@ msgstr "" msgid "Thumbnail" msgstr "" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Komentar" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "" @@ -170,15 +171,15 @@ msgstr "" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -186,7 +187,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -194,292 +195,291 @@ msgstr "" msgid "Label" msgstr "Oznaka" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "" -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Tip dokumenta" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -508,7 +508,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -521,7 +520,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -529,9 +527,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -539,104 +536,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Naslednji korak" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -725,9 +719,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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..86f9da4aba --- /dev/null +++ b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,632 @@ +# 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: 2017-07-09 02:28-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:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 +msgid "Sources" +msgstr "" + +#: apps.py:57 +msgid "Create a document source" +msgstr "" + +#: apps.py:59 +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:69 +msgid "Created" +msgstr "" + +#: apps.py:76 +msgid "Thumbnail" +msgstr "" + +#: apps.py:84 models.py:773 +msgid "Date time" +msgstr "" + +#: apps.py:89 models.py:776 +msgid "Message" +msgstr "" + +#: forms.py:30 +msgid "Comment" +msgstr "" + +#: forms.py:45 +msgid "Expand compressed files" +msgstr "" + +#: forms.py:47 +msgid "Upload a compressed file's contained files as individual documents" +msgstr "" + +#: forms.py:68 views.py:442 +msgid "Staging file" +msgstr "" + +#: forms.py:72 forms.py:77 +msgid "File" +msgstr "" + +#: handlers.py:16 +msgid "Default" +msgstr "" + +#: links.py:30 +msgid "New document" +msgstr "" + +#: links.py:39 +msgid "Add new IMAP email" +msgstr "" + +#: links.py:44 +msgid "Add new POP3 email" +msgstr "" + +#: links.py:49 +msgid "Add new staging folder" +msgstr "" + +#: links.py:54 +msgid "Add new watch folder" +msgstr "" + +#: links.py:59 +msgid "Add new webform source" +msgstr "" + +#: links.py:64 +msgid "Add new SANE scanner" +msgstr "" + +#: links.py:69 links.py:83 +msgid "Delete" +msgstr "" + +#: links.py:73 +msgid "Edit" +msgstr "" + +#: links.py:77 +msgid "Document sources" +msgstr "" + +#: links.py:89 +msgid "Upload new version" +msgstr "" + +#: links.py:92 +msgid "Logs" +msgstr "" + +#: links.py:96 +msgid "Check now" +msgstr "" + +#: literals.py:9 +msgid "Flatbed" +msgstr "" + +#: literals.py:10 +msgid "Document feeder" +msgstr "" + +#: literals.py:17 +msgid "Simplex" +msgstr "" + +#: literals.py:18 +msgid "Duplex" +msgstr "" + +#: literals.py:26 +msgid "Lineart" +msgstr "" + +#: literals.py:27 +msgid "Monochrome" +msgstr "" + +#: literals.py:28 +msgid "Color" +msgstr "" + +#: literals.py:36 literals.py:41 +msgid "Always" +msgstr "" + +#: literals.py:37 literals.py:42 +msgid "Never" +msgstr "" + +#: literals.py:43 +msgid "Ask user" +msgstr "" + +#: literals.py:54 +msgid "Scanner" +msgstr "" + +#: literals.py:55 models.py:400 +msgid "Web form" +msgstr "" + +#: literals.py:56 models.py:371 +msgid "Staging folder" +msgstr "" + +#: literals.py:57 models.py:764 +msgid "Watch folder" +msgstr "" + +#: literals.py:58 +msgid "POP3 email" +msgstr "" + +#: literals.py:59 models.py:727 models.py:728 +msgid "IMAP email" +msgstr "" + +#: models.py:62 +msgid "Label" +msgstr "" + +#: models.py:63 views.py:547 +msgid "Enabled" +msgstr "" + +#: models.py:167 models.py:770 +msgid "Source" +msgstr "" + +#: models.py:175 +msgid "Interactive source" +msgstr "" + +#: models.py:176 +msgid "Interactive sources" +msgstr "" + +#: models.py:186 +msgid "Device name as returned by the SANE backend." +msgstr "" + +#: models.py:187 +msgid "Device name" +msgstr "" + +#: models.py:192 +msgid "" +"Selects the scan mode (e.g., lineart, monochrome, or color). If this option " +"is not supported by your scanner, leave it blank." +msgstr "" + +#: models.py:194 +msgid "Mode" +msgstr "" + +#: models.py:198 +msgid "" +"Sets the resolution of the scanned image in DPI (dots per inch). Typical " +"value is 200. If this option is not supported by your scanner, leave it " +"blank." +msgstr "" + +#: models.py:201 +msgid "Resolution" +msgstr "" + +#: models.py:206 +msgid "" +"Selects the scan source (such as a document-feeder). If this option is not " +"supported by your scanner, leave it blank." +msgstr "" + +#: models.py:209 +msgid "Paper source" +msgstr "" + +#: models.py:214 +msgid "" +"Selects the document feeder mode (simplex/duplex). If this option is not " +"supported by your scanner, leave it blank." +msgstr "" + +#: models.py:216 +msgid "ADF mode" +msgstr "" + +#: models.py:220 +msgid "SANE Scanner" +msgstr "" + +#: models.py:221 +msgid "SANE Scanners" +msgstr "" + +#: models.py:268 +#, python-format +msgid "Error while scanning; %s" +msgstr "" + +#: models.py:300 models.py:745 +msgid "Server side filesystem path." +msgstr "" + +#: models.py:301 models.py:746 +msgid "Folder path" +msgstr "" + +#: models.py:304 +msgid "Width value to be passed to the converter backend." +msgstr "" + +#: models.py:305 +msgid "Preview width" +msgstr "" + +#: models.py:309 +msgid "Height value to be passed to the converter backend." +msgstr "" + +#: models.py:310 +msgid "Preview height" +msgstr "" + +#: models.py:314 models.py:391 +msgid "Whether to expand or not compressed archives." +msgstr "" + +#: models.py:315 models.py:392 models.py:428 +msgid "Uncompress" +msgstr "" + +#: models.py:320 +msgid "Delete the file after is has been successfully uploaded." +msgstr "" + +#: models.py:322 +msgid "Delete after upload" +msgstr "" + +#: models.py:346 +#, python-format +msgid "Unable get list of staging files: %s" +msgstr "" + +#: models.py:367 +#, python-format +msgid "Error deleting staging file; %s" +msgstr "" + +#: models.py:372 +msgid "Staging folders" +msgstr "" + +#: models.py:401 +msgid "Web forms" +msgstr "" + +#: models.py:408 models.py:409 +msgid "Out of process" +msgstr "" + +#: models.py:415 +msgid "Interval in seconds between checks for new documents." +msgstr "" + +#: models.py:416 +msgid "Interval" +msgstr "" + +#: models.py:421 +msgid "Assign a document type to documents uploaded from this source." +msgstr "" + +#: models.py:423 +msgid "Document type" +msgstr "" + +#: models.py:427 +msgid "Whether to expand or not, compressed archives." +msgstr "" + +#: models.py:477 +msgid "Interval source" +msgstr "" + +#: models.py:478 +msgid "Interval sources" +msgstr "" + +#: models.py:491 +msgid "Host" +msgstr "" + +#: models.py:492 +msgid "SSL" +msgstr "" + +#: models.py:494 +msgid "" +"Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " +"for IMAP over SSL." +msgstr "" + +#: models.py:495 +msgid "Port" +msgstr "" + +#: models.py:497 +msgid "Username" +msgstr "" + +#: models.py:498 +msgid "Password" +msgstr "" + +#: models.py:502 +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:506 +msgid "Metadata attachment name" +msgstr "" + +#: models.py:510 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:513 +msgid "Subject metadata type" +msgstr "" + +#: models.py:517 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:520 +msgid "From metadata type" +msgstr "" + +#: models.py:524 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:525 +msgid "Store email body" +msgstr "" + +#: models.py:534 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:548 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:598 +#, python-format +msgid "attachment-%i" +msgstr "" + +#: models.py:637 +msgid "Email source" +msgstr "" + +#: models.py:638 +msgid "Email sources" +msgstr "" + +#: models.py:645 +msgid "Timeout" +msgstr "" + +#: models.py:682 models.py:683 +msgid "POP email" +msgstr "" + +#: models.py:691 +msgid "IMAP Mailbox from which to check for messages." +msgstr "" + +#: models.py:692 +msgid "Mailbox" +msgstr "" + +#: models.py:765 +msgid "Watch folders" +msgstr "" + +#: models.py:782 +msgid "Log entry" +msgstr "" + +#: models.py:783 +msgid "Log entries" +msgstr "" + +#: permissions.py:7 +msgid "Sources setup" +msgstr "" + +#: permissions.py:9 +msgid "Create new document sources" +msgstr "" + +#: permissions.py:12 +msgid "Delete document sources" +msgstr "" + +#: permissions.py:15 +msgid "Edit document sources" +msgstr "" + +#: permissions.py:18 +msgid "View existing document sources" +msgstr "" + +#: permissions.py:21 +msgid "Delete staging files" +msgstr "" + +#: queues.py:11 +msgid "Sources periodic" +msgstr "" + +#: queues.py:16 +msgid "Check interval source" +msgstr "" + +#: queues.py:21 +msgid "Handle upload" +msgstr "" + +#: queues.py:25 +msgid "Upload document" +msgstr "" + +#: settings.py:12 +msgid "File path to the scanimage program used to control image scanners." +msgstr "" + +#: tasks.py:32 +#, python-format +msgid "Error processing source: %s" +msgstr "" + +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:60 +#, python-format +msgid "Log entries for source: %s" +msgstr "" + +#: views.py:108 wizards.py:53 +msgid "" +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" + +#: views.py:134 views.py:152 views.py:162 +msgid "Document properties" +msgstr "" + +#: views.py:142 +msgid "Files in staging path" +msgstr "" + +#: views.py:153 +msgid "Scan" +msgstr "" + +#: views.py:260 +msgid "New document queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:309 +#, python-format +msgid "Upload a local document from source: %s" +msgstr "" + +#: views.py:338 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." +msgstr "" + +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:429 +#, python-format +msgid "Upload a new version from source: %s" +msgstr "" + +#: views.py:469 +#, python-format +msgid "Trigger check for source \"%s\"?" +msgstr "" + +#: views.py:482 +msgid "Source check queued." +msgstr "" + +#: views.py:496 +#, python-format +msgid "Create new source of type: %s" +msgstr "" + +#: views.py:516 +#, python-format +msgid "Delete the source: %s?" +msgstr "" + +#: views.py:535 +#, python-format +msgid "Edit source: %s" +msgstr "" + +#: views.py:543 +msgid "Type" +msgstr "" + +#: wizards.py:42 +msgid "Step 1 of 3: Select document type" +msgstr "" + +#: wizards.py:43 +msgid "Step 2 of 3: Enter document metadata" +msgstr "" + +#: wizards.py:44 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:70 +msgid "Next step" +msgstr "" + +#: wizards.py:72 +msgid "Document upload wizard" +msgstr "" + +#: wizards.py:99 +msgid "Tags to be attached." +msgstr "" diff --git a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po index 35fa0e8ded..a6a6c099e1 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,22 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -43,31 +43,31 @@ msgstr "" msgid "Thumbnail" msgstr "" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "Chú thích" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "Giải nén" -#: forms.py:46 +#: forms.py:47 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:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "File" @@ -171,15 +171,15 @@ msgstr "Hỏi người dùng" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -187,7 +187,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -195,292 +195,291 @@ msgstr "" msgid "Label" msgstr "" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "đường dẫn hệ thống phía Server" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "" -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "Kiểu tài liệu" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -509,7 +508,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -522,7 +520,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -530,9 +527,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -540,104 +536,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "Bước tiếp theo" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -726,9 +719,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 8e2d2b162f..06edf8effc 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,22 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:40 links.py:35 models.py:159 queues.py:8 settings.py:7 views.py:545 +#: apps.py:40 links.py:35 models.py:168 queues.py:8 settings.py:7 views.py:554 msgid "Sources" msgstr "" #: apps.py:57 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -44,31 +44,31 @@ msgstr "" msgid "Thumbnail" msgstr "" -#: apps.py:84 models.py:764 +#: apps.py:84 models.py:773 msgid "Date time" msgstr "" -#: apps.py:89 models.py:767 +#: apps.py:89 models.py:776 msgid "Message" msgstr "" -#: forms.py:29 +#: forms.py:30 msgid "Comment" msgstr "评论" -#: forms.py:44 +#: forms.py:45 msgid "Expand compressed files" msgstr "展开压缩文件" -#: forms.py:46 +#: forms.py:47 msgid "Upload a compressed file's contained files as individual documents" msgstr "上传一个压缩文件的包含文件作为单个文档" -#: forms.py:67 views.py:433 +#: forms.py:68 views.py:442 msgid "Staging file" msgstr "临时文件" -#: forms.py:71 forms.py:76 +#: forms.py:72 forms.py:77 msgid "File" msgstr "文件" @@ -172,15 +172,15 @@ msgstr "询问用户" msgid "Scanner" msgstr "" -#: literals.py:55 models.py:391 +#: literals.py:55 models.py:400 msgid "Web form" msgstr "" -#: literals.py:56 models.py:362 +#: literals.py:56 models.py:371 msgid "Staging folder" msgstr "" -#: literals.py:57 models.py:755 +#: literals.py:57 models.py:764 msgid "Watch folder" msgstr "" @@ -188,7 +188,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:59 models.py:718 models.py:719 +#: literals.py:59 models.py:727 models.py:728 msgid "IMAP email" msgstr "" @@ -196,292 +196,291 @@ msgstr "" msgid "Label" msgstr "" -#: models.py:63 views.py:538 +#: models.py:63 views.py:547 msgid "Enabled" msgstr "" -#: models.py:158 models.py:761 +#: models.py:167 models.py:770 msgid "Source" msgstr "" -#: models.py:166 +#: models.py:175 msgid "Interactive source" msgstr "" -#: models.py:167 +#: models.py:176 msgid "Interactive sources" msgstr "" -#: models.py:177 +#: models.py:186 msgid "Device name as returned by the SANE backend." msgstr "" -#: models.py:178 +#: models.py:187 msgid "Device name" msgstr "" -#: models.py:183 +#: models.py:192 msgid "" "Selects the scan mode (e.g., lineart, monochrome, or color). If this option " "is not supported by your scanner, leave it blank." msgstr "" -#: models.py:185 +#: models.py:194 msgid "Mode" msgstr "" -#: models.py:189 +#: models.py:198 msgid "" "Sets the resolution of the scanned image in DPI (dots per inch). Typical " "value is 200. If this option is not supported by your scanner, leave it " "blank." msgstr "" -#: models.py:192 +#: models.py:201 msgid "Resolution" msgstr "" -#: models.py:197 +#: models.py:206 msgid "" "Selects the scan source (such as a document-feeder). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:200 +#: models.py:209 msgid "Paper source" msgstr "" -#: models.py:205 +#: models.py:214 msgid "" "Selects the document feeder mode (simplex/duplex). If this option is not " "supported by your scanner, leave it blank." msgstr "" -#: models.py:207 +#: models.py:216 msgid "ADF mode" msgstr "" -#: models.py:211 +#: models.py:220 msgid "SANE Scanner" msgstr "" -#: models.py:212 +#: models.py:221 msgid "SANE Scanners" msgstr "" -#: models.py:259 +#: models.py:268 #, python-format msgid "Error while scanning; %s" msgstr "" -#: models.py:291 models.py:736 +#: models.py:300 models.py:745 msgid "Server side filesystem path." msgstr "服务器端文件路径" -#: models.py:292 models.py:737 +#: models.py:301 models.py:746 msgid "Folder path" msgstr "" -#: models.py:295 +#: models.py:304 msgid "Width value to be passed to the converter backend." msgstr "宽度的值用于后台转换。" -#: models.py:296 +#: models.py:305 msgid "Preview width" msgstr "" -#: models.py:300 +#: models.py:309 msgid "Height value to be passed to the converter backend." msgstr "高度的值用于后台转换" -#: models.py:301 +#: models.py:310 msgid "Preview height" msgstr "" -#: models.py:305 models.py:382 +#: models.py:314 models.py:391 msgid "Whether to expand or not compressed archives." msgstr "是否要展开或者解压缩归档文件" -#: models.py:306 models.py:383 models.py:419 +#: models.py:315 models.py:392 models.py:428 msgid "Uncompress" msgstr "" -#: models.py:311 +#: models.py:320 msgid "Delete the file after is has been successfully uploaded." msgstr "在上传成功后,删除此文件。" -#: models.py:313 +#: models.py:322 msgid "Delete after upload" msgstr "" -#: models.py:337 +#: models.py:346 #, python-format msgid "Unable get list of staging files: %s" msgstr "未能获取暂存文件列表:%s" -#: models.py:358 +#: models.py:367 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:363 +#: models.py:372 msgid "Staging folders" msgstr "" -#: models.py:392 +#: models.py:401 msgid "Web forms" msgstr "" -#: models.py:399 models.py:400 +#: models.py:408 models.py:409 msgid "Out of process" msgstr "" -#: models.py:406 +#: models.py:415 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:407 +#: models.py:416 msgid "Interval" msgstr "" -#: models.py:412 +#: models.py:421 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:414 +#: models.py:423 msgid "Document type" msgstr "文档类型" -#: models.py:418 +#: models.py:427 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:468 +#: models.py:477 msgid "Interval source" msgstr "" -#: models.py:469 +#: models.py:478 msgid "Interval sources" msgstr "" -#: models.py:482 +#: models.py:491 msgid "Host" msgstr "" -#: models.py:483 +#: models.py:492 msgid "SSL" msgstr "" -#: models.py:485 +#: models.py:494 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:486 +#: models.py:495 msgid "Port" msgstr "" -#: models.py:488 +#: models.py:497 msgid "Username" msgstr "" -#: models.py:489 +#: models.py:498 msgid "Password" msgstr "密码" -#: models.py:493 +#: models.py:502 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:497 +#: models.py:506 msgid "Metadata attachment name" msgstr "" -#: models.py:501 +#: models.py:510 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models.py:504 -#| msgid "Current metadata" +#: models.py:513 msgid "Subject metadata type" msgstr "" -#: models.py:508 +#: models.py:517 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models.py:511 +#: models.py:520 msgid "From metadata type" msgstr "" -#: models.py:515 +#: models.py:524 msgid "Store the body of the email as a text document." msgstr "" -#: models.py:516 +#: models.py:525 msgid "Store email body" msgstr "" -#: models.py:525 +#: models.py:534 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:539 +#: models.py:548 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models.py:589 +#: models.py:598 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:628 +#: models.py:637 msgid "Email source" msgstr "" -#: models.py:629 +#: models.py:638 msgid "Email sources" msgstr "" -#: models.py:636 +#: models.py:645 msgid "Timeout" msgstr "" -#: models.py:673 models.py:674 +#: models.py:682 models.py:683 msgid "POP email" msgstr "" -#: models.py:682 +#: models.py:691 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:683 +#: models.py:692 msgid "Mailbox" msgstr "" -#: models.py:756 +#: models.py:765 msgid "Watch folders" msgstr "" -#: models.py:773 +#: models.py:782 msgid "Log entry" msgstr "" -#: models.py:774 +#: models.py:783 msgid "Log entries" msgstr "" @@ -510,7 +509,6 @@ msgid "Delete staging files" msgstr "" #: queues.py:11 -#| msgid "Sources setup" msgid "Sources periodic" msgstr "" @@ -523,7 +521,6 @@ msgid "Handle upload" msgstr "" #: queues.py:25 -#| msgid "Upload sources" msgid "Upload document" msgstr "" @@ -531,9 +528,8 @@ msgstr "" msgid "File path to the scanimage program used to control image scanners." msgstr "" -#: tasks.py:31 +#: tasks.py:32 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -541,104 +537,101 @@ msgstr "" msgid "Clear" msgstr "" -#: views.py:59 +#: views.py:60 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:107 wizards.py:52 +#: views.py:108 wizards.py:53 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:133 views.py:151 views.py:161 -#| msgid "Document sources" +#: views.py:134 views.py:152 views.py:162 msgid "Document properties" msgstr "" -#: views.py:141 +#: views.py:142 msgid "Files in staging path" msgstr "" -#: views.py:152 +#: views.py:153 msgid "Scan" msgstr "" -#: views.py:251 +#: views.py:260 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:300 +#: views.py:309 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:329 +#: views.py:338 #, 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." +#: views.py:390 +msgid "New document version queued for uploaded and will be available shortly." msgstr "" -#: views.py:420 +#: views.py:429 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:460 +#: views.py:469 #, python-format msgid "Trigger check for source \"%s\"?" msgstr "" -#: views.py:473 +#: views.py:482 msgid "Source check queued." msgstr "" -#: views.py:487 +#: views.py:496 #, python-format msgid "Create new source of type: %s" msgstr "新建数据源类型:%s" -#: views.py:507 +#: views.py:516 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:526 +#: views.py:535 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:534 +#: views.py:543 msgid "Type" msgstr "" -#: wizards.py:41 +#: wizards.py:42 msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:42 +#: wizards.py:43 msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:43 +#: wizards.py:44 msgid "Step 3 of 3: Select tags" msgstr "" -#: wizards.py:69 +#: wizards.py:70 msgid "Next step" msgstr "下一步" -#: wizards.py:71 +#: wizards.py:72 msgid "Document upload wizard" msgstr "" -#: wizards.py:98 +#: wizards.py:99 msgid "Tags to be attached." msgstr "" @@ -727,9 +720,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 6cb06944bd..e4fead1350 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 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 f8d669e995..879d2d0445 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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 links.py:28 permissions.py:7 queues.py:8 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 8e71a9f5a8..6f2fbf4c8c 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 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 528cc4bf93..9657ea8d64 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:25 links.py:28 permissions.py:7 queues.py:8 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 264aa59c25..4d6a3b0e98 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 diff --git a/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po index 252b2dc5f9..b51639c64b 100644 --- a/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/en/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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 diff --git a/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po index ac05eed1e4..eda02e15cd 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05: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 links.py:28 permissions.py:7 queues.py:8 diff --git a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po index 634130e5bd..42fd4936b7 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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 links.py:28 permissions.py:7 queues.py:8 diff --git a/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po index d5d73dadea..09c1d2fa81 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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 links.py:28 permissions.py:7 queues.py:8 diff --git a/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po index 0ee1cd21f2..3223e3d436 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 diff --git a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po index 41dfb14fa8..63239bcd40 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 diff --git a/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po index 4b7b73c84c..acee135a29 100644 --- a/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 # Marco Camplese , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py: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 7187d5ad16..64edcb932a 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: # Evelijn Saaltink , 2016 # Lucas Weel , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 diff --git a/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po index e43b7d939a..4795a2541a 100644 --- a/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 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 b6c38384aa..76488d9abf 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 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 871b1be364..8d8e90343a 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: # Aline Freitas , 2016 # Rogerio Falcone , 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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 links.py:28 permissions.py:7 queues.py:8 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 478b3d60b9..c1bc734ec2 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 # Stefaniu Criste , 2016 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 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 04669d2cc2..b2bd56ffc8 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: # lilo.panic, 2016 # Sergey Glita , 2013 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 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 5c86669303..a8a41b9ac0 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..f05a4b36f7 --- /dev/null +++ b/mayan/apps/statistics/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +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. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-09 02:28-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:25 links.py:28 permissions.py:7 queues.py:8 +msgid "Statistics" +msgstr "" + +#. Translators: Schedule here is a verb, the 'schedule' at which the +#. statistic will be updated +#: apps.py:34 +msgid "Schedule" +msgstr "" + +#: links.py:11 +msgid "Queue" +msgstr "" + +#: links.py:15 +msgid "View" +msgstr "" + +#: links.py:19 +msgid "Namespace details" +msgstr "" + +#: links.py:23 +msgid "Namespace list" +msgstr "" + +#. 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 "" + +#: models.py:16 +msgid "Date time" +msgstr "" + +#: models.py:18 +msgid "Data" +msgstr "" + +#: models.py:31 +msgid "Statistics result" +msgstr "" + +#: models.py:32 +msgid "Statistics results" +msgstr "" + +#: permissions.py:10 +msgid "View statistics" +msgstr "" + +#: queues.py:13 +msgid "Execute statistic" +msgstr "" + +#: templates/statistics/backends/chartjs/line.html:19 +msgid "No data available yet" +msgstr "" + +#: views.py:17 +msgid "Statistics namespaces" +msgstr "" + +#: views.py:33 +#, python-format +msgid "Namespace details for: %s" +msgstr "" + +#: views.py:53 +#, python-format +msgid "Results for: %s" +msgstr "" + +#: views.py:60 views.py:85 +#, python-format +msgid "Statistic \"%s\" not found." +msgstr "" + +#: views.py:77 +#, python-format +msgid "Queue statistic \"%s\" to be updated?" +msgstr "" 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 29f0d27879..2e3e3b92f4 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 links.py:28 permissions.py:7 queues.py:8 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 3c9c37f097..96b0e038c3 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-23 05:44+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:25 links.py:28 permissions.py:7 queues.py:8 diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po index fa83151759..9b8f875df8 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 f95388c097..73b3a955bf 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 472fab0e36..a769f0f6f4 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 9ca0098db4..55a27a64e7 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 0155dc7b06..9786bd82fc 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 d53b7d6a66..3b0f88a3de 100644 --- a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/en/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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po index e2c42f9e35..b3dae45a6b 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 75af5cb95d..7f6656791e 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 b50947b0ec..5db19ce641 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 65c1922caf..96d818860c 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 45d192ee77..0386bd0981 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 4fc1427574..6ffbf36a5a 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 c4fe92de19..d9792f7ed7 100644 --- a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-10-28 09:41+0000\n" "Last-Translator: Evelijn Saaltink \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py: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 4afa81438b..f1dd9bf340 100644 --- a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Daniel Winiarski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-08-04 09:32+0000\n" "Last-Translator: Daniel Winiarski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:9 settings.py: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 2edad385e3..a3776b4e77 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 58d3c1744d..810a001af9 100644 --- a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-11-04 19:03+0000\n" "Last-Translator: Aline Freitas \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py: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 6b8e8d945b..5480e1c392 100644 --- a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Stefaniu Criste , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-04-17 09:42+0000\n" "Last-Translator: Stefaniu Criste \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 6c97cc0c7c..94cdf1ecaa 100644 --- a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2016-07-14 01:15+0000\n" "Last-Translator: lilo.panic\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py: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 c8ce778db2..5b075161ab 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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/tr_TR/LC_MESSAGES/django.po b/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..a764f696f5 --- /dev/null +++ b/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,22 @@ +# 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: 2017-07-09 02:28-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:9 settings.py:10 +msgid "Storage" +msgstr "" 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 881676f5aa..145b4bbfa2 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 b7491d17e1..efcadf7530 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-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 a9dcedb9d7..f91d274f7b 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+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:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 #: links.py:40 menus.py:8 models.py:34 permissions.py:7 views.py:181 @@ -135,7 +137,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -147,7 +148,6 @@ msgstr[5] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -195,7 +195,6 @@ msgstr[5] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -239,7 +238,6 @@ msgid "Remove" msgstr "إزالة" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -251,7 +249,6 @@ msgstr[5] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -261,14 +258,14 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" msgstr "" #: views.py:300 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." +msgstr "" +"الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." #~ msgid "Must provide at least one document." #~ msgstr "Must provide at least one document." diff --git a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po index 129c42371b..8f4cf99697 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -135,7 +136,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -143,7 +143,6 @@ msgstr[1] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -187,7 +186,6 @@ msgstr[1] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -231,7 +229,6 @@ msgid "Remove" msgstr "Премахнете" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -239,7 +236,6 @@ msgstr[1] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -249,7 +245,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 b9dc9cc1ed..9cba00cc54 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 #: links.py:40 menus.py:8 models.py:34 permissions.py:7 views.py:181 @@ -135,7 +137,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -144,7 +145,6 @@ msgstr[2] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -189,7 +189,6 @@ msgstr[2] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -233,7 +232,6 @@ msgid "Remove" msgstr "Ukloniti" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -242,7 +240,6 @@ msgstr[2] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -252,7 +249,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 9236ff270f..91869fd59b 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+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:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -135,7 +136,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -143,7 +143,6 @@ msgstr[1] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -187,7 +186,6 @@ msgstr[1] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -231,7 +229,6 @@ msgid "Remove" msgstr "" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -239,7 +236,6 @@ msgstr[1] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -249,7 +245,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 baeaab5a98..54cff45967 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-2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+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:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -109,7 +110,9 @@ msgstr "Tags von Dokumenten entfernen" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Komma getrennte Liste der Primary Keys der Dokumente denen dieser Tag zugeordnet werden soll" +msgstr "" +"Komma getrennte Liste der Primary Keys der Dokumente denen dieser Tag " +"zugeordnet werden soll" #: serializers.py:85 msgid "" @@ -136,7 +139,6 @@ msgid "Attach" msgstr "Hinzufügen" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -144,7 +146,6 @@ msgstr[1] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "Tags Dokument zuweisen: %s" @@ -188,7 +189,6 @@ msgstr[1] "Die ausgwählten Tags löschen?" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "Tag löschen: %s" @@ -232,7 +232,6 @@ msgid "Remove" msgstr "Entfernen" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -240,7 +239,6 @@ msgstr[1] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "Tags entfernen für Dokument: %s" @@ -250,7 +248,6 @@ msgstr "Zu entfernende Tags." #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" msgstr "Dokument \"%(document)s\" wurde nicht als \"%(tag)s getaggt" diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po index 2c132a7d5c..7aea1ff088 100644 --- a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -107,13 +108,17 @@ msgstr "Remove tags from documents" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Comma separated list of document primary keys to which this tag will be attached." +msgstr "" +"Comma separated list of document primary keys to which this tag will be " +"attached." #: serializers.py:85 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "API URL pointing to a tag in relation to the document attached to it. This URL is different than the canonical tag URL." +msgstr "" +"API URL pointing to a tag in relation to the document attached to it. This " +"URL is different than the canonical tag URL." #: serializers.py:105 msgid "Primary key of the tag to be added." @@ -134,7 +139,6 @@ msgid "Attach" msgstr "Attach" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "Attach tags to document" @@ -142,7 +146,6 @@ msgstr[1] "Attach tags to documents" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "Attach tags to document: %s" @@ -186,7 +189,6 @@ msgstr[1] "Delete the selected tags?" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "Delete tag: %s" @@ -230,7 +232,6 @@ msgid "Remove" msgstr "Remove" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "Remove tags from document" @@ -238,7 +239,6 @@ msgstr[1] "Remove tags from documents" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "Remove tags from document: %s" @@ -248,7 +248,6 @@ msgstr "Tags to be removed." #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" msgstr "Document \"%(document)s\" wasn't tagged as \"%(tag)s" diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index 227e96044d..ac7c64af40 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:38+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -110,13 +111,17 @@ msgstr "Quitar etiquetas de los documentos" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Lista separada por comas de los ID primarios de documentos a los que se adjuntará esta etiqueta." +msgstr "" +"Lista separada por comas de los ID primarios de documentos a los que se " +"adjuntará esta etiqueta." #: serializers.py:85 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "URL de la API que apunta a una etiqueta en relación con el documento adjunto a ella. Esta URL es diferente de la URL canónica de la etiqueta." +msgstr "" +"URL de la API que apunta a una etiqueta en relación con el documento " +"adjunto a ella. Esta URL es diferente de la URL canónica de la etiqueta." #: serializers.py:105 msgid "Primary key of the tag to be added." @@ -137,7 +142,6 @@ msgid "Attach" msgstr "Anejar" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "Anejar etiquetas al documento" @@ -145,7 +149,6 @@ msgstr[1] "Anejar etiquetas a documentos" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "Anejar etiquetas al documento: %s" @@ -189,7 +192,6 @@ msgstr[1] "¿Eliminar las etiquetas seleccionadas?" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "Borrar etiqueta: %s" @@ -221,19 +223,20 @@ msgstr "Etiquetas del documento: %s" #: views.py:235 #, python-format msgid "Tag remove request performed on %(count)d document" -msgstr "Solicitud de eliminación de etiquetas realizada en %(count)d documento " +msgstr "" +"Solicitud de eliminación de etiquetas realizada en %(count)d documento " #: views.py:237 #, python-format msgid "Tag remove request performed on %(count)d documents" -msgstr "Solicitud de eliminación de etiquetas realizada en %(count)d documentos" +msgstr "" +"Solicitud de eliminación de etiquetas realizada en %(count)d documentos" #: views.py:244 msgid "Remove" msgstr "Eliminar" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "Remover etiquetas de documento" @@ -241,7 +244,6 @@ msgstr[1] "Remover etiquetas de documentos" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "Remover etiquetas de documento: %s" @@ -251,14 +253,14 @@ msgstr "Etiquetas a ser removidas." #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" msgstr "Documento \"%(document)s\" no esta etiquetado con \"%(tag)s" #: views.py:300 #, 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 "Must provide at least one document." #~ msgstr "Must provide at least one document." diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po index dcbc7b42f7..81c3879d6f 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+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:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -135,14 +136,12 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -185,7 +184,6 @@ msgstr[0] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -229,14 +227,12 @@ msgid "Remove" msgstr "حذف" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -246,7 +242,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 c966fe6105..91381ea6ba 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 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+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:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -138,7 +139,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -146,7 +146,6 @@ msgstr[1] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -162,7 +161,9 @@ msgstr "Le document \"%(document)s\" est déjà étiqueté comme \"%(tag)s\"" #: views.py:99 #, 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:108 msgid "Create tag" @@ -190,7 +191,6 @@ msgstr[1] "Supprimer les étiquettes sélectionnées?" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -234,7 +234,6 @@ msgid "Remove" msgstr "Supprimer" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -242,7 +241,6 @@ msgstr[1] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -252,14 +250,15 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" msgstr "" #: views.py:300 #, 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 "Must provide at least one document." #~ msgstr "Must provide at least one document." diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index 64cdaa65ab..e56ab68448 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -134,7 +135,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -142,7 +142,6 @@ msgstr[1] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -186,7 +185,6 @@ msgstr[1] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -230,7 +228,6 @@ msgid "Remove" msgstr "" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -238,7 +235,6 @@ msgstr[1] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -248,7 +244,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 d56bb4b58f..88558f7526 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+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:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -134,14 +135,12 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -184,7 +183,6 @@ msgstr[0] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -228,14 +226,12 @@ msgid "Remove" msgstr "hapus" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -245,7 +241,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 55ee6c5007..0d2cf0bca3 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 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-30 08:20+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -138,7 +139,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -146,7 +146,6 @@ msgstr[1] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -162,7 +161,9 @@ msgstr "Il documento \"%(document)s\" è stato già etichettato come \"%(tag)s\" #: views.py:99 #, 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:108 msgid "Create tag" @@ -190,7 +191,6 @@ msgstr[1] "Cancellare i tag selezionati?" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "Cancella il tag: %s" @@ -234,7 +234,6 @@ msgid "Remove" msgstr "Rimuovi" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -242,7 +241,6 @@ msgstr[1] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -252,14 +250,14 @@ msgstr "Tag da rimuovere" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" msgstr "" #: views.py:300 #, 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 "Must provide at least one document." #~ msgstr "Must provide at least one document." 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 7ba98c9a72..1e834c2889 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: # Evelijn Saaltink , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -135,7 +136,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -143,7 +143,6 @@ msgstr[1] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -187,7 +186,6 @@ msgstr[1] "Geselecteerde labels verwijderen?" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -199,7 +197,8 @@ msgstr "Label \"%s\" verwijderd." #: views.py:156 #, 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:171 #, python-format @@ -231,7 +230,6 @@ msgid "Remove" msgstr "Verwijder" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -239,7 +237,6 @@ msgstr[1] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -249,7 +246,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 9500a1554e..f2fdcff315 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,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-06-02 17:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 #: links.py:40 menus.py:8 models.py:34 permissions.py:7 views.py:181 @@ -137,7 +140,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -147,7 +149,6 @@ msgstr[3] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -193,7 +194,6 @@ msgstr[3] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -237,7 +237,6 @@ msgid "Remove" msgstr "Usuń" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -247,7 +246,6 @@ msgstr[3] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -257,7 +255,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 2ed40f0a7c..4d8fb8791e 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -137,7 +138,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -145,7 +145,6 @@ msgstr[1] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -189,7 +188,6 @@ msgstr[1] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -233,7 +231,6 @@ msgid "Remove" msgstr "Remover" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -241,7 +238,6 @@ msgstr[1] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -251,7 +247,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 003b66cd9a..f6de0dae77 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: # Aline Freitas , 2016 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+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:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -111,13 +112,18 @@ msgstr "Remover etiquetas de documentos" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Lista separada por vírgulas das chaves primárias do documento para as quais essa etiqueta será anexada." +msgstr "" +"Lista separada por vírgulas das chaves primárias do documento para as quais " +"essa etiqueta será anexada." #: serializers.py:85 msgid "" "API URL pointing to a tag in relation to the document attached to it. This " "URL is different than the canonical tag URL." -msgstr "API URL que aponta para uma tag em relação ao documento anexado a ela. Esse URL é diferente do URL da etiqueta que está de acordo com as normas estabelecidas." +msgstr "" +"API URL que aponta para uma tag em relação ao documento anexado a ela. Esse " +"URL é diferente do URL da etiqueta que está de acordo com as normas " +"estabelecidas." #: serializers.py:105 msgid "Primary key of the tag to be added." @@ -138,7 +144,6 @@ msgid "Attach" msgstr "Anexar" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "Anexar etiquetas para documentos" @@ -146,7 +151,6 @@ msgstr[1] "Anexar etiquetas para documentos" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "Anexar etiquetas ao documento: %s" @@ -162,7 +166,8 @@ msgstr "Documento \"%(document)s\" já está marcado como \"%(tag)s\"" #: views.py:99 #, 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:108 msgid "Create tag" @@ -190,7 +195,6 @@ msgstr[1] "Apagar as etiquetas selecionadas?" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "Excluir etiqueta: %s" @@ -234,7 +238,6 @@ msgid "Remove" msgstr "Remover" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "Remover etiquetas de documentos" @@ -242,7 +245,6 @@ msgstr[1] "Remover etiquetas de documentos" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "Remover etiquetas de documentos: %s" @@ -252,14 +254,14 @@ msgstr "Etiquetas a serem removidas." #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" msgstr "Documento \"%(document)s\" não estava etiquetado como \"%(tag)s" #: views.py:300 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Etiqueta \"%(tag)s\" removida com sucesso do documento \"%(document)s\"." +msgstr "" +"Etiqueta \"%(tag)s\" removida com sucesso do documento \"%(document)s\"." #~ msgid "Must provide at least one document." #~ msgstr "Must provide at least one document." 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 d102ccb24c..941047085b 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 @@ -11,15 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+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:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 #: links.py:40 menus.py:8 models.py:34 permissions.py:7 views.py:181 @@ -137,7 +139,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -146,7 +147,6 @@ msgstr[2] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -162,7 +162,8 @@ msgstr "Documentul \"%(document)s\" este deja etichetat cu \"%(tag)s\"" #: views.py:99 #, 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:108 msgid "Create tag" @@ -191,7 +192,6 @@ msgstr[2] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -235,7 +235,6 @@ msgid "Remove" msgstr "Şterge" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -244,7 +243,6 @@ msgstr[2] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -254,14 +252,15 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" msgstr "" #: views.py:300 #, 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 "Must provide at least one document." #~ msgstr "Must provide at least one document." diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po index 8865a2f31a..eb308d4a13 100644 --- a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # lilo.panic, 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 #: links.py:40 menus.py:8 models.py:34 permissions.py:7 views.py:181 @@ -135,7 +138,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -145,7 +147,6 @@ msgstr[3] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -191,7 +192,6 @@ msgstr[3] "Удалить выбранные метки?" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -235,7 +235,6 @@ msgid "Remove" msgstr "Удалить" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -245,7 +244,6 @@ msgstr[3] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -255,7 +253,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 f9efc2c124..8d3d3f59b8 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 #: links.py:40 menus.py:8 models.py:34 permissions.py:7 views.py:181 @@ -135,7 +137,6 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" @@ -145,7 +146,6 @@ msgstr[3] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -191,7 +191,6 @@ msgstr[3] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -235,7 +234,6 @@ msgid "Remove" msgstr "" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" @@ -245,7 +243,6 @@ msgstr[3] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -255,7 +252,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" msgstr "" diff --git a/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..493b2dc1ab --- /dev/null +++ b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,252 @@ +# 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: 2017-07-09 02:28-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=INTEGER; plural=EXPRESSION;\n" + +#: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 +#: links.py:40 menus.py:8 models.py:34 permissions.py:7 views.py:181 +msgid "Tags" +msgstr "" + +#: apps.py:74 apps.py:94 +msgid "Preview" +msgstr "" + +#: apps.py:98 models.py:22 +msgid "Documents" +msgstr "" + +#: links.py:14 +msgid "Remove tag" +msgstr "" + +#: links.py:17 links.py:24 +msgid "Attach tags" +msgstr "" + +#: links.py:20 +msgid "Remove tags" +msgstr "" + +#: links.py:29 +msgid "Create new tag" +msgstr "" + +#: links.py:32 links.py:45 views.py:130 +msgid "Delete" +msgstr "" + +#: links.py:36 +msgid "Edit" +msgstr "" + +#: links.py:43 +msgid "All" +msgstr "" + +#: models.py:18 search.py:16 +msgid "Label" +msgstr "" + +#: models.py:20 search.py:20 +msgid "Color" +msgstr "" + +#: models.py:33 +msgid "Tag" +msgstr "" + +#: models.py:47 +msgid "Document tag" +msgstr "" + +#: models.py:48 +msgid "Document tags" +msgstr "" + +#: permissions.py:10 +msgid "Create new tags" +msgstr "" + +#: permissions.py:13 +msgid "Delete tags" +msgstr "" + +#: permissions.py:16 +msgid "View tags" +msgstr "" + +#: permissions.py:19 +msgid "Edit tags" +msgstr "" + +#: permissions.py:22 +msgid "Attach tags to documents" +msgstr "" + +#: permissions.py:25 +msgid "Remove tags from documents" +msgstr "" + +#: serializers.py:38 +msgid "" +"Comma separated list of document primary keys to which this tag will be " +"attached." +msgstr "" + +#: serializers.py:85 +msgid "" +"API URL pointing to a tag in relation to the document attached to it. This " +"URL is different than the canonical tag URL." +msgstr "" + +#: serializers.py:105 +msgid "Primary key of the tag to be added." +msgstr "" + +#: views.py:33 +#, python-format +msgid "Tag attach request performed on %(count)d document" +msgstr "" + +#: views.py:35 +#, python-format +msgid "Tag attach request performed on %(count)d documents" +msgstr "" + +#: views.py:42 +msgid "Attach" +msgstr "" + +#: views.py:44 +msgid "Attach tags to document" +msgid_plural "Attach tags to documents" +msgstr[0] "" +msgstr[1] "" + +#: views.py:54 +#, python-format +msgid "Attach tags to document: %s" +msgstr "" + +#: views.py:63 +msgid "Tags to be attached." +msgstr "" + +#: views.py:88 +#, python-format +msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" +msgstr "" + +#: views.py:99 +#, python-format +msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." +msgstr "" + +#: views.py:108 +msgid "Create tag" +msgstr "" + +#: views.py:119 +#, python-format +msgid "Tag delete request performed on %(count)d tag" +msgstr "" + +#: views.py:121 +#, python-format +msgid "Tag delete request performed on %(count)d tags" +msgstr "" + +#: views.py:128 +msgid "Will be removed from all documents." +msgstr "" + +#: views.py:132 +msgid "Delete the selected tag?" +msgid_plural "Delete the selected tags?" +msgstr[0] "" +msgstr[1] "" + +#: views.py:142 +#, python-format +msgid "Delete tag: %s" +msgstr "" + +#: views.py:152 +#, python-format +msgid "Tag \"%s\" deleted successfully." +msgstr "" + +#: views.py:156 +#, python-format +msgid "Error deleting tag \"%(tag)s\": %(error)s" +msgstr "" + +#: views.py:171 +#, python-format +msgid "Edit tag: %s" +msgstr "" + +#: views.py:201 +#, python-format +msgid "Documents with the tag: %s" +msgstr "" + +#: views.py:224 +#, python-format +msgid "Tags for document: %s" +msgstr "" + +#: views.py:235 +#, python-format +msgid "Tag remove request performed on %(count)d document" +msgstr "" + +#: views.py:237 +#, python-format +msgid "Tag remove request performed on %(count)d documents" +msgstr "" + +#: views.py:244 +msgid "Remove" +msgstr "" + +#: views.py:246 +msgid "Remove tags from document" +msgid_plural "Remove tags from documents" +msgstr[0] "" +msgstr[1] "" + +#: views.py:256 +#, python-format +msgid "Remove tags from document: %s" +msgstr "" + +#: views.py:265 +msgid "Tags to be removed." +msgstr "" + +#: views.py:290 +#, python-format +msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" +msgstr "" + +#: views.py:300 +#, python-format +msgid "Tag \"%(tag)s\" removed successfully from 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 d001b6168e..963f578a72 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -135,14 +136,12 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -185,7 +184,6 @@ msgstr[0] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -229,14 +227,12 @@ msgid "Remove" msgstr "Xóa" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -246,7 +242,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)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 9126b7c07f..c0cb860fa7 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: 2017-05-28 19:33+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:35 apps.py:79 apps.py:86 apps.py:105 apps.py:107 forms.py:31 @@ -136,14 +137,12 @@ msgid "Attach" msgstr "" #: views.py:44 -#| msgid "Attach tags to documents" msgid "Attach tags to document" msgid_plural "Attach tags to documents" msgstr[0] "" #: views.py:54 #, python-format -#| msgid "Attach tag to document: %s." msgid "Attach tags to document: %s" msgstr "" @@ -186,7 +185,6 @@ msgstr[0] "" #: views.py:142 #, python-format -#| msgid "Delete tags" msgid "Delete tag: %s" msgstr "" @@ -230,14 +228,12 @@ msgid "Remove" msgstr "移除" #: views.py:246 -#| msgid "Remove tags from documents" msgid "Remove tags from document" msgid_plural "Remove tags from documents" msgstr[0] "" #: views.py:256 #, python-format -#| msgid "Remove tag from document: %s." msgid "Remove tags from document: %s" msgstr "" @@ -247,7 +243,6 @@ msgstr "" #: views.py:290 #, python-format -#| msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" msgstr "" diff --git a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po index b2c4e6a62b..cecbfbcdde 100644 --- a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -67,8 +67,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -87,10 +87,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po index 52e9fac9af..49dafc2140 100644 --- a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,8 +66,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -86,10 +86,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po index fede6c9cae..3094caa78b 100644 --- a/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,8 +65,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -85,10 +85,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/da/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/da/LC_MESSAGES/django.po index 52e9fac9af..49dafc2140 100644 --- a/mayan/apps/task_manager/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/da/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,8 +66,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -86,10 +86,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po index fede6c9cae..3094caa78b 100644 --- a/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,8 +65,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -85,10 +85,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po index fede6c9cae..3094caa78b 100644 --- a/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,8 +65,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -85,10 +85,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po index 52e9fac9af..73011c1bfa 100644 --- a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,8 +66,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -86,10 +86,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po index c9ef205745..31164f7ade 100644 --- a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,8 +66,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -86,10 +86,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po index 5a75a3a4ce..a74b7ffef6 100644 --- a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,8 +66,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -86,10 +86,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po index 52e9fac9af..73011c1bfa 100644 --- a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,8 +66,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -86,10 +86,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po index c9ef205745..31164f7ade 100644 --- a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,8 +66,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -86,10 +86,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po index 52e9fac9af..73011c1bfa 100644 --- a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,8 +66,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -86,10 +86,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po index fede6c9cae..99e9b7a223 100644 --- a/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,8 +65,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -85,10 +85,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po index 245d1724e8..341ff25cfe 100644 --- a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -67,8 +67,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -87,10 +87,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po index 52e9fac9af..73011c1bfa 100644 --- a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,8 +66,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -86,10 +86,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po index 5a75a3a4ce..a74b7ffef6 100644 --- a/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,8 +66,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -86,10 +86,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po index fede6c9cae..99e9b7a223 100644 --- a/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,8 +65,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -85,10 +85,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po index 2d72ae93f2..9db38d71f3 100644 --- a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -68,8 +68,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -88,10 +88,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po index fede6c9cae..99e9b7a223 100644 --- a/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,8 +65,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -85,10 +85,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..99e9b7a223 --- /dev/null +++ b/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +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. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-09 02:29-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:23 links.py:11 permissions.py:7 +msgid "Task manager" +msgstr "" + +#: apps.py:29 +msgid "Label" +msgstr "" + +#: apps.py:32 +msgid "Name" +msgstr "" + +#: apps.py:35 +msgid "Default queue?" +msgstr "" + +#: apps.py:41 +msgid "Is transient?" +msgstr "" + +#: apps.py:47 +msgid "Type" +msgstr "" + +#: apps.py:50 +msgid "Start time" +msgstr "" + +#: apps.py:53 +msgid "Host" +msgstr "" + +#: apps.py:57 +msgid "Acknowledged" +msgstr "" + +#: apps.py:63 +msgid "Arguments" +msgstr "" + +#: apps.py:67 +msgid "Keyword arguments" +msgstr "" + +#: apps.py:71 +msgid "Worker process ID" +msgstr "" + +#: links.py:15 views.py:15 +msgid "Background task queues" +msgstr "" + +#: links.py:19 +msgid "Active tasks" +msgstr "" + +#: links.py:23 +msgid "Reserved tasks" +msgstr "" + +#: links.py:27 +msgid "Scheduled tasks" +msgstr "" + +#: permissions.py:10 +msgid "View tasks" +msgstr "" + +#: views.py:30 +#, python-format +msgid "Active tasks in queue: %s" +msgstr "" + +#: views.py:45 +#, python-format +msgid "Unable to retrieve task list; %s" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Scheduled tasks in queue: %s" +msgstr "" + +#: views.py:67 +#, python-format +msgid "Reserved tasks in queue: %s" +msgstr "" diff --git a/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po index fede6c9cae..99e9b7a223 100644 --- a/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,8 +65,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -85,10 +85,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %s" diff --git a/mayan/apps/task_manager/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/zh_CN/LC_MESSAGES/django.po index fede6c9cae..99e9b7a223 100644 --- a/mayan/apps/task_manager/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/zh_CN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-30 18:02-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,8 +65,8 @@ msgstr "" msgid "Worker process ID" msgstr "" -#: links.py:15 -msgid "Backgroun task queues" +#: links.py:15 views.py:15 +msgid "Background task queues" msgstr "" #: links.py:19 @@ -85,10 +85,6 @@ msgstr "" msgid "View tasks" msgstr "" -#: views.py:15 -msgid "Background task queues" -msgstr "" - #: views.py:30 #, python-format msgid "Active tasks in queue: %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 386183bdf3..f615753b05 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 msgid "User management" @@ -134,7 +136,6 @@ msgstr "" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -167,7 +168,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -179,7 +179,6 @@ msgstr[5] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -187,7 +186,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:176 #, python-format @@ -243,7 +244,6 @@ msgstr[5] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -251,7 +251,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:304 #, 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 a7252af9c2..344ea9dedd 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 @@ -134,7 +135,6 @@ msgstr "" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -167,7 +167,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -175,7 +174,6 @@ msgstr[1] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -183,7 +181,9 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Изтриване на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." +msgstr "" +"Изтриване на потребители от супер потребител и служител не е разрешено. " +"Използвайте администраторския модул за тези случаи." #: views.py:176 #, python-format @@ -235,7 +235,6 @@ msgstr[1] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -243,7 +242,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Промяна на парола на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." +msgstr "" +"Промяна на парола на потребители от супер потребител и служител не е " +"разрешено. Използвайте администраторския модул за тези случаи." #: views.py:304 #, 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 27f1aa772c..e29341c10f 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 msgid "User management" @@ -134,7 +136,6 @@ msgstr "" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -167,7 +168,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -176,7 +176,6 @@ msgstr[2] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -184,7 +183,9 @@ msgstr "" 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:176 #, python-format @@ -237,7 +238,6 @@ msgstr[2] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -245,7 +245,9 @@ msgstr "" 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 #, 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 ad0da4234b..95fa83dad9 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 @@ -134,7 +135,6 @@ msgstr "" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -167,7 +167,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -175,7 +174,6 @@ msgstr[1] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -183,7 +181,9 @@ msgstr "" 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:176 #, python-format @@ -235,7 +235,6 @@ msgstr[1] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -243,7 +242,9 @@ msgstr "" 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 #, 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 81c60edec3..5bf8e36902 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-2016 @@ -14,14 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-26 16:01+0000\n" "Last-Translator: Jesaja Everling \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 permissions.py:7 @@ -139,7 +140,6 @@ msgstr "Gruppe %s bearbeiten" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Gruppe %s löschen?" @@ -172,7 +172,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -180,7 +179,6 @@ msgstr[1] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "Benutzer löschen: %s" @@ -188,7 +186,9 @@ msgstr "Benutzer löschen: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." +msgstr "" +"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " +"Administratoren-Oberfläche dafür." #: views.py:176 #, python-format @@ -240,7 +240,6 @@ msgstr[1] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "Passwort ändern für Benutzer: %s" @@ -248,7 +247,9 @@ msgstr "Passwort ändern für Benutzer: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "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 #, python-format @@ -258,7 +259,9 @@ msgstr "Passwort erfolgreich zurückgesetzt für Benutzer %s" #: views.py:310 #, 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" #~ msgid "Must provide at least one user." #~ msgstr "Must provide at least one user." 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 25e3bd4398..0c26a54914 100644 --- a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/language/en/)\n" +"Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 permissions.py:7 @@ -133,7 +134,6 @@ msgstr "Edit group: %s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Delete the group: %s?" @@ -166,7 +166,6 @@ msgid "User delete request performed on %(count)d users" msgstr "User delete request performed on %(count)d users" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "Delete user" @@ -174,7 +173,6 @@ msgstr[1] "Delete users" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "Delete user: %s" @@ -182,7 +180,9 @@ msgstr "Delete user: %s" 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:176 #, python-format @@ -234,7 +234,6 @@ msgstr[1] "Change users passwords" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "Change password for user: %s" @@ -242,7 +241,9 @@ msgstr "Change password for user: %s" 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 #, python-format 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 617e22af85..4e02d4dceb 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 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-05-28 19: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:42 permissions.py:7 @@ -125,7 +126,9 @@ msgstr "Ver usuarios existentes" #: serializers.py:29 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Lista separada por comas de llaves primarias de grupos a ser asignados a este usuario." +msgstr "" +"Lista separada por comas de llaves primarias de grupos a ser asignados a " +"este usuario." #: serializers.py:51 msgid "List of group primary keys to which to add the user." @@ -138,7 +141,6 @@ msgstr "Editar grupo: %s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "¿Borrar el grupo: %s?" @@ -171,7 +173,6 @@ msgid "User delete request performed on %(count)d users" msgstr "Solicitud de eliminación de usuario realizada a %(count)d usuarios" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "Borrar usuario" @@ -179,7 +180,6 @@ msgstr[1] "Borrar usuarios" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "Borrar usuario: %s" @@ -187,7 +187,9 @@ msgstr "Borrar usuario: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "No se permite eliminar el super usuario y usuario de personal. Use la interfaz de administración para estos casos." +msgstr "" +"No se permite eliminar el super usuario y usuario de personal. Use la " +"interfaz de administración para estos casos." #: views.py:176 #, python-format @@ -239,7 +241,6 @@ msgstr[1] "Cambiar contraseñas de usuarios" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "Cambiar contraseñas para el usuario: %s" @@ -247,7 +248,9 @@ msgstr "Cambiar contraseñas para el usuario: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "No se permite cambiar la contraseña del super usuario y del usuario de personal. Use la interfaz de administración para estos casos." +msgstr "" +"No se permite cambiar la contraseña del super usuario y del usuario de " +"personal. Use la interfaz de administración para estos casos." #: views.py:304 #, python-format @@ -257,7 +260,8 @@ msgstr "Contraseña restablecida para el usuario: %s." #: views.py:310 #, 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 " #~ msgid "Must provide at least one user." #~ msgstr "Must provide at least one user." 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 f00479f5f2..f85a6717a7 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-05-04 07:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:42 permissions.py:7 @@ -134,7 +135,6 @@ msgstr "ویرایش گروه : %s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -167,14 +167,12 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -233,7 +231,6 @@ msgstr[0] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %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 2522e8de20..c780c6078c 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 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 @@ -138,7 +139,6 @@ msgstr "Modification du groupe : %s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Supprimer le groupe : %s ?" @@ -171,7 +171,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -179,7 +178,6 @@ msgstr[1] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -187,7 +185,9 @@ msgstr "" 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:176 #, python-format @@ -197,7 +197,8 @@ msgstr "Utilisateur \"%s\" supprimé avec succès." #: views.py:182 #, 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:198 #, python-format @@ -239,7 +240,6 @@ msgstr[1] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -247,7 +247,10 @@ msgstr "" 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:304 #, python-format @@ -257,7 +260,9 @@ msgstr "Mot de passe ré-initialisé avec succès pour l'utilisateur : %s." #: views.py:310 #, 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" #~ msgid "Must provide at least one user." #~ msgstr "Must provide at least one user." 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 c7f6f8dd6c..1f10bffd9d 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 @@ -133,7 +134,6 @@ msgstr "" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -166,7 +166,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -174,7 +173,6 @@ msgstr[1] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -234,7 +232,6 @@ msgstr[1] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %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 b97ae32e70..288393840f 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 @@ -133,7 +134,6 @@ msgstr "" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -166,14 +166,12 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -232,7 +230,6 @@ msgstr[0] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %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 ed082d28ab..a46b19f59a 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: # Marco Camplese , 2016-2017 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-05-30 08:19+0000\n" "Last-Translator: Marco Camplese \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:42 permissions.py:7 @@ -136,7 +137,6 @@ msgstr "Modifica gruppo: %s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Cancellare il gruppo: %s?" @@ -169,7 +169,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "Cancella utente" @@ -177,7 +176,6 @@ msgstr[1] "Cancella utenti" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "Cancella utente: %s" @@ -185,7 +183,9 @@ msgstr "Cancella utente: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Al super utente e utente non è consentito la cancellazione del personale, utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "" +"Al super utente e utente non è consentito la cancellazione del personale, " +"utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:176 #, python-format @@ -237,7 +237,6 @@ msgstr[1] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -245,7 +244,9 @@ msgstr "" 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 #, python-format @@ -255,7 +256,9 @@ msgstr "Password reimpostata per l'utente: %s." #: views.py:310 #, 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" #~ msgid "Must provide at least one user." #~ msgstr "Must provide at least one user." 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 86c416c7ef..3178022608 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: # Evelijn Saaltink , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 @@ -135,7 +136,6 @@ msgstr "Bewerk groep: %s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Verwijder de groep: %s?" @@ -168,7 +168,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -176,7 +175,6 @@ msgstr[1] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -184,7 +182,9 @@ msgstr "" 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:176 #, python-format @@ -236,7 +236,6 @@ msgstr[1] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -244,7 +243,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." +msgstr "" +"Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, " +"gebruik de admin gebruiker voor deze zaken." #: views.py:304 #, python-format @@ -254,7 +255,9 @@ msgstr "Succesvol wachtwoord aangepast voor gebruiker: %s" #: views.py:310 #, 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" #~ msgid "Must provide at least one user." #~ msgstr "Must provide at least one user." 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 bb29b82662..92b670bda3 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 @@ -12,15 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-06-23 14:20+0000\n" "Last-Translator: Wojtek Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: apps.py:42 permissions.py:7 msgid "User management" @@ -137,7 +140,6 @@ msgstr "Edycja grupy: %s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Usunąć grupę: %s?" @@ -170,7 +172,6 @@ msgid "User delete request performed on %(count)d users" msgstr "Żądanie usunięcia użytkowników zrealizowano na %(count)d użytkownikach" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "Usuń użytkownika" @@ -180,7 +181,6 @@ msgstr[3] "Usuń użytkowników" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -188,7 +188,9 @@ msgstr "" 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:176 #, python-format @@ -242,7 +244,6 @@ msgstr[3] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -250,7 +251,9 @@ msgstr "" 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 #, 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 37ed65afcc..c87e5e6645 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 @@ -137,7 +138,6 @@ msgstr "Editar grupo: %s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Eliminar o grupo: %s?" @@ -170,7 +170,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -178,7 +177,6 @@ msgstr[1] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -186,7 +184,9 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Não é permitida a eliminação de administradores ou membros da equipa, utilize a interface de administrador para estes casos." +msgstr "" +"Não é permitida a eliminação de administradores ou membros da equipa, " +"utilize a interface de administrador para estes casos." #: views.py:176 #, python-format @@ -238,7 +238,6 @@ msgstr[1] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -246,7 +245,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Não é permitido redefinir a senha de administradores ou de membros da equipa, utilize a interface de administrador para estes casos." +msgstr "" +"Não é permitido redefinir a senha de administradores ou de membros da " +"equipa, utilize a interface de administrador para estes casos." #: views.py:304 #, 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 86c6407eba..4fd911b900 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: # Aline Freitas , 2016 @@ -14,14 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-05-04 20:00+0000\n" "Last-Translator: Jadson Ribeiro \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 permissions.py:7 @@ -126,7 +127,9 @@ msgstr "Ver os usuários existentes" #: serializers.py:29 msgid "Comma separated list of group primary keys to assign this user to." -msgstr "Lista separada por vírgulas de chaves primárias de grupo para atribuir esse usuário." +msgstr "" +"Lista separada por vírgulas de chaves primárias de grupo para atribuir esse " +"usuário." #: serializers.py:51 msgid "List of group primary keys to which to add the user." @@ -139,7 +142,6 @@ msgstr "Editar grupo:%s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Apagar o grupo: %s?" @@ -172,7 +174,6 @@ msgid "User delete request performed on %(count)d users" msgstr "Solicitação de exclusão do usuário executada em %(count)d usuários" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "Excluir usuários" @@ -180,7 +181,6 @@ msgstr[1] "Excluir usuários" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "Excluir usuário: %s" @@ -188,7 +188,9 @@ msgstr "Excluir usuário: %s" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Excluir super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." +msgstr "" +"Excluir super usuário e usuário pessoal não é permitido, use a interface de " +"administração para esses casos." #: views.py:176 #, python-format @@ -240,7 +242,6 @@ msgstr[1] "Alterar senhas de usuários" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "Alterar senha para o usuário: %s" @@ -248,7 +249,9 @@ msgstr "Alterar senha para o usuário: %s" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Redefinir senha de super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." +msgstr "" +"Redefinir senha de super usuário e usuário pessoal não é permitido, use a " +"interface de administração para esses casos." #: views.py:304 #, 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 17e7bd4ee1..05eccd4980 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 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+0000\n" "Last-Translator: Stefaniu Criste \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 permissions.py:7 msgid "User management" @@ -135,7 +137,6 @@ msgstr "Modificați grupul: %s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Ștergeți grupul: %s?" @@ -168,7 +169,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -177,7 +177,6 @@ msgstr[2] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -185,7 +184,9 @@ msgstr "" 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:176 #, python-format @@ -238,7 +239,6 @@ msgstr[2] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -246,7 +246,9 @@ msgstr "" 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 #, 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 8fa08d1fbb..4462aec376 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: # lilo.panic, 2016 @@ -9,15 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 msgid "User management" @@ -134,7 +137,6 @@ msgstr "Редактировать группу: %s" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Удалить группу: %s?" @@ -167,7 +169,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -177,7 +178,6 @@ msgstr[3] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -185,7 +185,9 @@ msgstr "" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Удаление суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." +msgstr "" +"Удаление суперпользователя и персонала не допускается, используйте " +"интерфейс администратора для этих случаев." #: views.py:176 #, python-format @@ -239,7 +241,6 @@ msgstr[3] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -247,7 +248,9 @@ msgstr "" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Сброс паролей суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." +msgstr "" +"Сброс паролей суперпользователя и персонала не допускается, используйте " +"интерфейс администратора для этих случаев." #: views.py:304 #, 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 9b40bf8dee..14863b13df 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 msgid "User management" @@ -133,7 +135,6 @@ msgstr "" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -166,7 +167,6 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" @@ -176,7 +176,6 @@ msgstr[3] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -238,7 +237,6 @@ msgstr[3] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" diff --git a/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..4578ca5b7b --- /dev/null +++ b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po @@ -0,0 +1,251 @@ +# 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: 2017-07-09 02:29-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=INTEGER; plural=EXPRESSION;\n" + +#: apps.py:42 permissions.py:7 +msgid "User management" +msgstr "" + +#: apps.py:58 +msgid "All the groups." +msgstr "" + +#: apps.py:62 +msgid "All the users." +msgstr "" + +#: apps.py:67 links.py:30 +msgid "Members" +msgstr "" + +#: apps.py:71 +msgid "Full name" +msgstr "" + +#: apps.py:74 +msgid "Email" +msgstr "" + +#: apps.py:77 +msgid "Active" +msgstr "" + +#: apps.py:83 +msgid "Has usable password?" +msgstr "" + +#: forms.py:18 +msgid "New password" +msgstr "" + +#: forms.py:21 +msgid "Confirm password" +msgstr "" + +#: links.py:14 views.py:27 +msgid "Create new group" +msgstr "" + +#: links.py:18 links.py:42 links.py:58 +msgid "Delete" +msgstr "" + +#: links.py:22 links.py:46 +msgid "Edit" +msgstr "" + +#: links.py:26 links.py:34 links.py:50 views.py:50 +msgid "Groups" +msgstr "" + +#: links.py:38 views.py:116 +msgid "Create new user" +msgstr "" + +#: links.py:54 links.py:70 views.py:240 +msgid "Users" +msgstr "" + +#: links.py:62 links.py:66 +msgid "Set password" +msgstr "" + +#: permissions.py:10 +msgid "Create new groups" +msgstr "" + +#: permissions.py:13 +msgid "Delete existing groups" +msgstr "" + +#: permissions.py:16 +msgid "Edit existing groups" +msgstr "" + +#: permissions.py:19 +msgid "View existing groups" +msgstr "" + +#: permissions.py:22 +msgid "Create new users" +msgstr "" + +#: permissions.py:25 +msgid "Delete existing users" +msgstr "" + +#: permissions.py:28 +msgid "Edit existing users" +msgstr "" + +#: permissions.py:31 +msgid "View existing users" +msgstr "" + +#: serializers.py:29 +msgid "Comma separated list of group primary keys to assign this user to." +msgstr "" + +#: serializers.py:51 +msgid "List of group primary keys to which to add the user." +msgstr "" + +#: views.py:43 +#, python-format +msgid "Edit group: %s" +msgstr "" + +#: views.py:64 +#, python-format +msgid "Delete the group: %s?" +msgstr "" + +#: views.py:70 +msgid "Available users" +msgstr "" + +#: views.py:71 +msgid "Members of groups" +msgstr "" + +#: views.py:92 +#, python-format +msgid "Members of group: %s" +msgstr "" + +#: views.py:126 +#, python-format +msgid "User \"%s\" created successfully." +msgstr "" + +#: views.py:135 +#, python-format +msgid "User delete request performed on %(count)d user" +msgstr "" + +#: views.py:137 +#, python-format +msgid "User delete request performed on %(count)d users" +msgstr "" + +#: views.py:146 +msgid "Delete user" +msgid_plural "Delete users" +msgstr[0] "" +msgstr[1] "" + +#: views.py:156 +#, python-format +msgid "Delete user: %s" +msgstr "" + +#: views.py:168 +msgid "" +"Super user and staff user deleting is not allowed, use the admin interface " +"for these cases." +msgstr "" + +#: views.py:176 +#, python-format +msgid "User \"%s\" deleted successfully." +msgstr "" + +#: views.py:182 +#, python-format +msgid "Error deleting user \"%(user)s\": %(error)s" +msgstr "" + +#: views.py:198 +#, python-format +msgid "Edit user: %s" +msgstr "" + +#: views.py:204 +msgid "Available groups" +msgstr "" + +#: views.py:205 +msgid "Groups joined" +msgstr "" + +#: views.py:214 +#, python-format +msgid "Groups of user: %s" +msgstr "" + +#: views.py:252 +#, python-format +msgid "Password change request performed on %(count)d user" +msgstr "" + +#: views.py:254 +#, python-format +msgid "Password change request performed on %(count)d users" +msgstr "" + +#: views.py:262 +msgid "Submit" +msgstr "" + +#: views.py:264 +msgid "Change user password" +msgid_plural "Change users passwords" +msgstr[0] "" +msgstr[1] "" + +#: views.py:274 +#, python-format +msgid "Change password for user: %s" +msgstr "" + +#: views.py:294 +msgid "" +"Super user and staff user password reseting is not allowed, use the admin " +"interface for these cases." +msgstr "" + +#: views.py:304 +#, python-format +msgid "Successfull password reset for user: %s." +msgstr "" + +#: views.py:310 +#, python-format +msgid "Error reseting password for user \"%(user)s\": %(error)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 ecf232fdeb..2dcb3b274a 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 @@ -134,7 +135,6 @@ msgstr "" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -167,14 +167,12 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -182,7 +180,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:176 #, python-format @@ -233,7 +233,6 @@ msgstr[0] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" @@ -241,7 +240,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:304 #, 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 fd5d560843..314aa0b6ba 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: 2017-06-23 01:40-0400\n" +"POT-Creation-Date: 2017-07-09 02:29-0400\n" "PO-Revision-Date: 2017-04-21 16:27+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 permissions.py:7 @@ -134,7 +135,6 @@ msgstr "" #: views.py:64 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -167,14 +167,12 @@ msgid "User delete request performed on %(count)d users" msgstr "" #: views.py:146 -#| msgid "Delete existing users" msgid "Delete user" msgid_plural "Delete users" msgstr[0] "" #: views.py:156 #, python-format -#| msgid "Delete existing users" msgid "Delete user: %s" msgstr "" @@ -233,7 +231,6 @@ msgstr[0] "" #: views.py:274 #, python-format -#| msgid "Reseting password for user: %s" msgid "Change password for user: %s" msgstr "" From bbb5c393a6b568e8c91b658ce52a10617189c5a3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 9 Jul 2017 02:47:21 -0400 Subject: [PATCH 022/112] Fix typo. Signed-off-by: Roberto Rosario --- mayan/apps/authentication/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/authentication/settings.py b/mayan/apps/authentication/settings.py index 991f163f8a..8482a6ff43 100644 --- a/mayan/apps/authentication/settings.py +++ b/mayan/apps/authentication/settings.py @@ -17,7 +17,7 @@ setting_login_method = namespace.add_setting( setting_maximum_session_length = namespace.add_setting( global_name='AUTHENTICATION_MAXIMUM_SESSION_LENGTH', default=DEFAULT_MAXIMUM_SESSION_LENGTH, help_text=_( - 'Maximum type an user clicking the "Remember me" checkbox will ' + 'Maximum time an user clicking the "Remember me" checkbox will ' 'remain logged in. Value is time in seconds.' ) ) From b9994dbf408cf1298ce2671f23f03d14a5af7b1c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 12 Jul 2017 00:55:09 -0400 Subject: [PATCH 023/112] Fix HTML mark up in window title. GitLab issue #397. Signed-off-by: Roberto Rosario --- HISTORY.rst | 4 ++++ .../templates/appearance/calculate_form_title.html | 10 ++++++++-- .../appearance/templates/appearance/generic_form.html | 2 +- .../appearance/templates/appearance/generic_list.html | 2 +- .../appearance/generic_multi_subtemplates.html | 2 +- .../appearance/generic_multiform_subtemplate.html | 1 - .../templates/appearance/generic_wizard.html | 2 +- .../templates/document_indexing/node_details.html | 2 +- 8 files changed, 17 insertions(+), 8 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 849f2c0811..2fd3e277d6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,7 @@ +2.5.3 (2017-07-XX) +================== +- Fix HTML mark up in window title. GitLab issue #397. + 2.5.2 (2017-07-08) ================== - Improve new document creation signal handling. diff --git a/mayan/apps/appearance/templates/appearance/calculate_form_title.html b/mayan/apps/appearance/templates/appearance/calculate_form_title.html index 8af5e01bb6..907b90511e 100644 --- a/mayan/apps/appearance/templates/appearance/calculate_form_title.html +++ b/mayan/apps/appearance/templates/appearance/calculate_form_title.html @@ -5,7 +5,10 @@ {% smart_setting 'APPEARANCE_MAXIMUM_TITLE_LENGTH' as maximum_title_length %} {# Avoid horizontal scroll on small displays #} - +{% if not html_title %} + +{% endif %} + {% if title %} {{ title|truncatechars:maximum_title_length }} {% else %} @@ -19,4 +22,7 @@ {% endif %} {% endif %} {% endif %} - + +{% if not html_title %} + +{% endif %} diff --git a/mayan/apps/appearance/templates/appearance/generic_form.html b/mayan/apps/appearance/templates/appearance/generic_form.html index 5603365792..6f486381fd 100644 --- a/mayan/apps/appearance/templates/appearance/generic_form.html +++ b/mayan/apps/appearance/templates/appearance/generic_form.html @@ -2,7 +2,7 @@ {% load common_tags %} -{% block title %}{% include 'appearance/calculate_form_title.html' %}{% endblock %} +{% block title %}{% include 'appearance/calculate_form_title.html' with html_title=True %}{% endblock %} {% block content %}

{% include 'appearance/calculate_form_title.html' %}

diff --git a/mayan/apps/appearance/templates/appearance/generic_list.html b/mayan/apps/appearance/templates/appearance/generic_list.html index 521e455e26..285f62c18c 100644 --- a/mayan/apps/appearance/templates/appearance/generic_list.html +++ b/mayan/apps/appearance/templates/appearance/generic_list.html @@ -4,7 +4,7 @@ {% load navigation_tags %} -{% block title %}{% include 'appearance/calculate_form_title.html' %}{% endblock %} +{% block title %}{% include 'appearance/calculate_form_title.html' with html_title=True %}{% endblock %} {% block content %} {% if title %} diff --git a/mayan/apps/appearance/templates/appearance/generic_multi_subtemplates.html b/mayan/apps/appearance/templates/appearance/generic_multi_subtemplates.html index 0af36c26bb..bbc3a53c1e 100644 --- a/mayan/apps/appearance/templates/appearance/generic_multi_subtemplates.html +++ b/mayan/apps/appearance/templates/appearance/generic_multi_subtemplates.html @@ -2,7 +2,7 @@ {% load common_tags %} -{% block title %}{% include 'appearance/calculate_form_title.html' %}{% endblock %} +{% block title %}{% include 'appearance/calculate_form_title.html' with html_title=True %}{% endblock %} {% block content %} {% if main_title %} diff --git a/mayan/apps/appearance/templates/appearance/generic_multiform_subtemplate.html b/mayan/apps/appearance/templates/appearance/generic_multiform_subtemplate.html index 851c43dcb4..c1c145db14 100644 --- a/mayan/apps/appearance/templates/appearance/generic_multiform_subtemplate.html +++ b/mayan/apps/appearance/templates/appearance/generic_multiform_subtemplate.html @@ -1,6 +1,5 @@ {% load i18n %} {% load static %} -

{% include 'appearance/calculate_form_title.html' %}

diff --git a/mayan/apps/appearance/templates/appearance/generic_wizard.html b/mayan/apps/appearance/templates/appearance/generic_wizard.html index b3fe60da99..dce48af1c8 100644 --- a/mayan/apps/appearance/templates/appearance/generic_wizard.html +++ b/mayan/apps/appearance/templates/appearance/generic_wizard.html @@ -2,7 +2,7 @@ {% load i18n %} -{% block title %}{% include 'appearance/calculate_form_title.html' %}{% endblock %} +{% block title %}{% include 'appearance/calculate_form_title.html' with html_title=True %}{% endblock %} {% block content %}

{% include 'appearance/calculate_form_title.html' %}

diff --git a/mayan/apps/document_indexing/templates/document_indexing/node_details.html b/mayan/apps/document_indexing/templates/document_indexing/node_details.html index 9fa2ffee6c..b20d8fc17f 100644 --- a/mayan/apps/document_indexing/templates/document_indexing/node_details.html +++ b/mayan/apps/document_indexing/templates/document_indexing/node_details.html @@ -4,7 +4,7 @@ {% load navigation_tags %} -{% block title %}{% include 'appearance/calculate_form_title.html' %}{% endblock %} +{% block title %}{% include 'appearance/calculate_form_title.html' with html_title=True %}{% endblock %} {% block content %} {% if title %} From cc33e1d259cfbf4b91b1a3921334c5456245547e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 12 Jul 2017 02:50:29 -0400 Subject: [PATCH 024/112] Add support for emailing documents to a recipient list. GitLab #396 Signed-off-by: Roberto Rosario --- HISTORY.rst | 5 +- mayan/apps/mailer/literals.py | 2 + mayan/apps/mailer/models.py | 52 ++++++++---------- mayan/apps/mailer/tasks.py | 34 +++++------- mayan/apps/mailer/tests/literals.py | 6 +++ mayan/apps/mailer/tests/mailers.py | 3 ++ mayan/apps/mailer/tests/test_models.py | 75 ++++++++++++++++++++++++++ mayan/apps/mailer/utils.py | 21 ++++++++ 8 files changed, 145 insertions(+), 53 deletions(-) create mode 100644 mayan/apps/mailer/tests/test_models.py create mode 100644 mayan/apps/mailer/utils.py diff --git a/HISTORY.rst b/HISTORY.rst index 2fd3e277d6..8a3feebb87 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,8 @@ 2.5.3 (2017-07-XX) ================== -- Fix HTML mark up in window title. GitLab issue #397. - +- Fix HTML mark up in window title. GitLab #397. +- Add support for emailing documents to a recipient list. GitLab #396 + 2.5.2 (2017-07-08) ================== - Improve new document creation signal handling. diff --git a/mayan/apps/mailer/literals.py b/mayan/apps/mailer/literals.py index d7940ba4ad..b22405cee3 100644 --- a/mayan/apps/mailer/literals.py +++ b/mayan/apps/mailer/literals.py @@ -14,3 +14,5 @@ DEFAULT_LINK_BODY_TEMPLATE = _( '{{ link }}\n\n--------\n ' 'This email has been sent from %(project_title)s (%(project_website)s)' ) + +EMAIL_SEPARATORS = (',', ';') diff --git a/mayan/apps/mailer/models.py b/mayan/apps/mailer/models.py index 9e7972d08d..960b1d5dbc 100644 --- a/mayan/apps/mailer/models.py +++ b/mayan/apps/mailer/models.py @@ -8,6 +8,8 @@ from django.db import models from django.utils.module_loading import import_string from django.utils.translation import ugettext_lazy as _ +from .utils import split_recipient_list + logger = logging.getLogger(__name__) @@ -80,36 +82,28 @@ class UserMailer(models.Model): self.backend_data = json.dumps(data) self.save() - def send(self, **kwargs): - """ - https://docs.djangoproject.com/en/1.11/topics/email - #django.core.mail.EmailMessage - subject: The subject line of the email. - body: The body text. This should be a plain text message. - from_email: The sender's address. Both fred@example.com and Fred - forms are legal. If omitted, - the DEFAULT_FROM_EMAIL setting is used. - to: A list or tuple of recipient addresses. - bcc: A list or tuple of addresses used in the "Bcc" header when - sending the email. - connection: An email backend instance. Use this parameter if you want - to use the same connection for multiple messages. If omitted, a new - connection is created when send() is called. - attachments: A list of attachments to put on the message. These can be - either email.MIMEBase.MIMEBase instances, or (filename, content, - mimetype) triples. - headers: A dictionary of extra headers to put on the message. The - keys are the header name, values are the header values. It's up to - the caller to ensure header names and values are in the correct - format for an email message. The corresponding attribute is - extra_headers. - cc: A list or tuple of recipient addresses used in the "Cc" - header when sending the email. - reply_to: A list or tuple of recipient addresses used in the - "Reply-To" header when sending the email. - """ + def send(self, subject='', body='', to=None, document=None, as_attachment=False): + recipient_list = split_recipient_list(recipients=[to]) + with self.get_connection() as connection: - mail.EmailMessage(connection=connection, **kwargs).send() + email_message = mail.EmailMultiAlternatives( + subject=subject, body=body, to=recipient_list, + connection=connection + ) + + if as_attachment: + with document.open() as descriptor: + email_message.attach( + filename=document.label, content=descriptor.read(), + mimetype=document.file_mimetype + ) + + try: + email_message.send() + except Exception as exception: + self.error_log.create(message=exception) + else: + self.error_log.all().delete() def test(self, to): self.send(to=to, subject=_('Test email from Mayan EDMS')) diff --git a/mayan/apps/mailer/tasks.py b/mayan/apps/mailer/tasks.py index 11dce91471..733e7edca1 100644 --- a/mayan/apps/mailer/tasks.py +++ b/mayan/apps/mailer/tasks.py @@ -1,37 +1,27 @@ from __future__ import unicode_literals from django.apps import apps -from django.core.mail import EmailMultiAlternatives -from documents.models import Document from mayan.celery import app @app.task(ignore_result=True) -def task_send_document(subject_text, body_text_content, sender, recipient, document_id, user_mailer_id, as_attachment=False): +def task_send_document(subject_text, body_text_content, sender, recipient, user_mailer_id, as_attachment=False, document_id=None): + Document = apps.get_model( + app_label='documents', model_name='Document' + ) UserMailer = apps.get_model( app_label='mailer', model_name='UserMailer' ) + if document_id: + document = Document.objects.get(pk=document_id) + else: + document = None + user_mailer = UserMailer.objects.get(pk=user_mailer_id) - connection = user_mailer.get_connection() - - email_msg = EmailMultiAlternatives( - subject_text, body_text_content, sender, [recipient], - connection=connection, + user_mailer.send( + subject=subject_text, body=body_text_content, to=recipient, + document=document, as_attachment=as_attachment ) - - if as_attachment: - document = Document.objects.get(pk=document_id) - with document.open() as descriptor: - email_msg.attach( - document.label, descriptor.read(), document.file_mimetype - ) - - try: - email_msg.send() - except Exception as exception: - user_mailer.error_log.create(message=exception) - else: - user_mailer.error_log.all().delete() diff --git a/mayan/apps/mailer/tests/literals.py b/mayan/apps/mailer/tests/literals.py index e93ab2f97c..9c1f0dd8c9 100644 --- a/mayan/apps/mailer/tests/literals.py +++ b/mayan/apps/mailer/tests/literals.py @@ -1,5 +1,11 @@ from __future__ import unicode_literals TEST_EMAIL_ADDRESS = 'test@example.com' +TEST_RECIPIENTS_MULTIPLE_COMMA = 'test@example.com,test2@example.com' +TEST_RECIPIENTS_MULTIPLE_SEMICOLON = 'test@example.com;test2@example.com' +TEST_RECIPIENTS_MULTIPLE_MIXED = 'test@example.com,test2@example.com;test2@example.com' +TEST_RECIPIENTS_MULTIPLE_MIXED_LIST = ( + 'test@example.com', 'test2@example.com', 'test2@example.com', +) TEST_USER_MAILER_LABEL = 'test user mailer label' TEST_USER_MAILER_BACKEND_PATH = 'mailer.tests.mailers.TestBackend' diff --git a/mayan/apps/mailer/tests/mailers.py b/mayan/apps/mailer/tests/mailers.py index b56b3540ae..e01746309f 100644 --- a/mayan/apps/mailer/tests/mailers.py +++ b/mayan/apps/mailer/tests/mailers.py @@ -4,5 +4,8 @@ from ..classes import MailerBackend class TestBackend(MailerBackend): + """ + User mailer backend to use with tests + """ class_path = 'django.core.mail.backends.locmem.EmailBackend' label = 'Django local memory backend' diff --git a/mayan/apps/mailer/tests/test_models.py b/mayan/apps/mailer/tests/test_models.py new file mode 100644 index 0000000000..a8eac0089e --- /dev/null +++ b/mayan/apps/mailer/tests/test_models.py @@ -0,0 +1,75 @@ +from __future__ import absolute_import, unicode_literals + +from django.core import mail + +from documents.tests.test_models import GenericDocumentTestCase + +from ..models import UserMailer + +from .literals import ( + TEST_EMAIL_ADDRESS, TEST_RECIPIENTS_MULTIPLE_COMMA, + TEST_RECIPIENTS_MULTIPLE_SEMICOLON, TEST_RECIPIENTS_MULTIPLE_MIXED, + TEST_RECIPIENTS_MULTIPLE_MIXED_LIST, TEST_USER_MAILER_LABEL, + TEST_USER_MAILER_BACKEND_PATH +) + + +class ModelTestCase(GenericDocumentTestCase): + def _create_user_mailer(self): + self.user_mailer = UserMailer.objects.create( + default=True, + enabled=True, + label=TEST_USER_MAILER_LABEL, + backend_path=TEST_USER_MAILER_BACKEND_PATH, + backend_data='{}' + ) + + def test_send_simple(self): + self._create_user_mailer() + self.user_mailer.send(to=TEST_EMAIL_ADDRESS) + + self.assertEqual(len(mail.outbox), 1) + self.assertEqual(mail.outbox[0].to, [TEST_EMAIL_ADDRESS]) + + def test_send_attachment(self): + self._create_user_mailer() + self.user_mailer.send( + to=TEST_EMAIL_ADDRESS, document=self.document, as_attachment=True + ) + + self.assertEqual(len(mail.outbox), 1) + self.assertEqual(mail.outbox[0].to, [TEST_EMAIL_ADDRESS]) + with self.document.open() as file_object: + self.assertEqual( + mail.outbox[0].attachments[0], ( + self.document.label, file_object.read(), + self.document.file_mimetype + ) + ) + + def test_send_multiple_recipients_comma(self): + self._create_user_mailer() + self.user_mailer.send(to=TEST_RECIPIENTS_MULTIPLE_COMMA) + + self.assertEqual(len(mail.outbox), 1) + self.assertEqual( + mail.outbox[0].to, TEST_RECIPIENTS_MULTIPLE_COMMA.split(',') + ) + + def test_send_multiple_recipients_semicolon(self): + self._create_user_mailer() + self.user_mailer.send(to=TEST_RECIPIENTS_MULTIPLE_SEMICOLON) + + self.assertEqual(len(mail.outbox), 1) + self.assertEqual( + mail.outbox[0].to, TEST_RECIPIENTS_MULTIPLE_SEMICOLON.split(';') + ) + + def test_send_multiple_recipient_mixed(self): + self._create_user_mailer() + self.user_mailer.send(to=TEST_RECIPIENTS_MULTIPLE_MIXED) + + self.assertEqual(len(mail.outbox), 1) + self.assertEqual( + list(mail.outbox[0].to), list(TEST_RECIPIENTS_MULTIPLE_MIXED_LIST) + ) diff --git a/mayan/apps/mailer/utils.py b/mayan/apps/mailer/utils.py new file mode 100644 index 0000000000..d0226762af --- /dev/null +++ b/mayan/apps/mailer/utils.py @@ -0,0 +1,21 @@ +from __future__ import unicode_literals + +from .literals import EMAIL_SEPARATORS + + +def split_recipient_list(recipients, separator_list=None, separator_index=0): + separator_list = separator_list or EMAIL_SEPARATORS + + try: + separator = separator_list[separator_index] + except IndexError: + return recipients + else: + result = [] + for recipient in recipients: + result.extend(recipient.split(separator)) + + return split_recipient_list( + recipients=result, separator_list=separator_list, + separator_index=separator_index + 1 + ) From e66e954b93e800fa68ce340adf209caf26443af1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 4 May 2017 00:40:02 -0400 Subject: [PATCH 025/112] Incorporate @Macrobb metadata widget and content visual changes. GitLab issue #378 Signed-off-by: Roberto Rosario --- HISTORY.rst | 5 +++-- .../appearance/static/appearance/css/base.css | 17 +++++++++++++++++ .../appearance/templates/appearance/base.html | 4 ++-- mayan/apps/metadata/widgets.py | 12 ++++++------ 4 files changed, 28 insertions(+), 10 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8a3feebb87..f338b11ba1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,9 @@ 2.5.3 (2017-07-XX) ================== - Fix HTML mark up in window title. GitLab #397. -- Add support for emailing documents to a recipient list. GitLab #396 - +- Add support for emailing documents to a recipient list. GitLab #396. +- Backport metadata widget changes from @Macrobb. GitLab #378. + 2.5.2 (2017-07-08) ================== - Improve new document creation signal handling. diff --git a/mayan/apps/appearance/static/appearance/css/base.css b/mayan/apps/appearance/static/appearance/css/base.css index 858341bad3..eb94b6c3f8 100644 --- a/mayan/apps/appearance/static/appearance/css/base.css +++ b/mayan/apps/appearance/static/appearance/css/base.css @@ -172,10 +172,12 @@ a i { margin-right: 2px; } +/* Notifications */ #toast-container > div { opacity: 1; } +/* User menu */ .link-text-span { padding-left: 10px; padding-right: 20px; @@ -232,3 +234,18 @@ a i { display:block !important; } } + +/* Metadata */ +.metadata-display { + display: inline-block; + min-width: 200px; + padding-right: 10px; + width: 49%; +} + +/* Content */ +@media (min-width:1200px) { + .container-fluid { + width: 95%; + } +} diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index fa2c844964..06b1b9e218 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -50,7 +50,7 @@ {% block content_plain %}{% endblock %} {% else %} -
+
{% block messages %}{% endblock %} diff --git a/mayan/apps/metadata/widgets.py b/mayan/apps/metadata/widgets.py index 8307a66d5c..a70540577f 100644 --- a/mayan/apps/metadata/widgets.py +++ b/mayan/apps/metadata/widgets.py @@ -1,14 +1,14 @@ from __future__ import unicode_literals +from django.utils.html import format_html_join def get_metadata_string(document): """ Return a formated representation of a document's metadata values """ - return ', '.join( - [ - '%s - %s' % ( - document_metadata.metadata_type, document_metadata.value - ) for document_metadata in document.metadata.all() - ] + return format_html_join( + '\n', '', + ((document_metadata.metadata_type,document_metadata.metadata_type_id,document_metadata.id,document_metadata.value) + for document_metadata in document.metadata.all() + ) ) From c088826789174db7e8f39ecaedfe904c2e8dec51 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 12 Jul 2017 04:02:19 -0400 Subject: [PATCH 026/112] Make users and groups searchable via the API. Signed-off-by: Roberto Rosario --- HISTORY.rst | 3 +- mayan/apps/user_management/apps.py | 1 + mayan/apps/user_management/search.py | 43 ++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 mayan/apps/user_management/search.py diff --git a/HISTORY.rst b/HISTORY.rst index f338b11ba1..e87bbdd84a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,8 @@ ================== - Fix HTML mark up in window title. GitLab #397. - Add support for emailing documents to a recipient list. GitLab #396. -- Backport metadata widget changes from @Macrobb. GitLab #378. +- Backport metadata widget changes from @Macrobb. GitLab #377. +- Make users and group searchable. 2.5.2 (2017-07-08) ================== diff --git a/mayan/apps/user_management/apps.py b/mayan/apps/user_management/apps.py index ddc721a655..a58a8bc22a 100644 --- a/mayan/apps/user_management/apps.py +++ b/mayan/apps/user_management/apps.py @@ -19,6 +19,7 @@ from .links import ( link_user_multiple_delete, link_user_multiple_set_password, link_user_set_password, link_user_setup ) +from .search import * # NOQA def get_groups(): diff --git a/mayan/apps/user_management/search.py b/mayan/apps/user_management/search.py new file mode 100644 index 0000000000..af11a2fb90 --- /dev/null +++ b/mayan/apps/user_management/search.py @@ -0,0 +1,43 @@ +from __future__ import absolute_import, unicode_literals + +from django.conf import settings +from django.utils.translation import ugettext_lazy as _ + +from dynamic_search.classes import SearchModel + +from .permissions import permission_group_view, permission_user_view + +print settings.AUTH_USER_MODEL +user_app, user_model = settings.AUTH_USER_MODEL.split('.') + +user_search = SearchModel( + app_label=user_app, model_name=user_model, + permission=permission_user_view, + serializer_string='user_management.serializers.UserSerializer' +) + +user_search.add_model_field( + field='first_name', label=_('First name') +) +user_search.add_model_field( + field='email', label=_('Email') +) +user_search.add_model_field( + field='groups__name', label=_('Groups') +) +user_search.add_model_field( + field='last_name', label=_('Last name') +) +user_search.add_model_field( + field='username', label=_('username') +) + +group_search = SearchModel( + app_label='auth', model_name='Group', + permission=permission_group_view, + serializer_string='user_management.serializers.GroupSerializer' +) + +group_search.add_model_field( + field='name', label=_('Name') +) From 77b92b59c78040988e92a8ea2a5f39e1f41ff98d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 13 Jul 2017 02:50:17 -0400 Subject: [PATCH 027/112] Only ignore the top level /build/ directory. Include the missin Toastr build files. Signed-off-by: Roberto Rosario --- .gitignore | 2 +- .../toastr-master-998959b0/build/toastr.css | 228 ++++++++++++++++++ .../build/toastr.js.map | 1 + .../build/toastr.min.css | 1 + .../build/toastr.min.js | 2 + 5 files changed, 233 insertions(+), 1 deletion(-) create mode 100644 mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.css create mode 100644 mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.js.map create mode 100644 mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.min.css create mode 100644 mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.min.js diff --git a/.gitignore b/.gitignore index d786d1c049..96bc99ece0 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,7 @@ .tox/ .vagrant _build/ -build/ +/build/ coverage.xml document_storage/ gpg_home/ diff --git a/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.css b/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.css new file mode 100644 index 0000000000..76f7f572e6 --- /dev/null +++ b/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.css @@ -0,0 +1,228 @@ +.toast-title { + font-weight: bold; +} +.toast-message { + -ms-word-wrap: break-word; + word-wrap: break-word; +} +.toast-message a, +.toast-message label { + color: #FFFFFF; +} +.toast-message a:hover { + color: #CCCCCC; + text-decoration: none; +} +.toast-close-button { + position: relative; + right: -0.3em; + top: -0.3em; + float: right; + font-size: 20px; + font-weight: bold; + color: #FFFFFF; + -webkit-text-shadow: 0 1px 0 #ffffff; + text-shadow: 0 1px 0 #ffffff; + opacity: 0.8; + -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + filter: alpha(opacity=80); + line-height: 1; +} +.toast-close-button:hover, +.toast-close-button:focus { + color: #000000; + text-decoration: none; + cursor: pointer; + opacity: 0.4; + -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40); + filter: alpha(opacity=40); +} +.rtl .toast-close-button { + left: -0.3em; + float: left; + right: 0.3em; +} +/*Additional properties for button version + iOS requires the button element instead of an anchor tag. + If you want the anchor version, it requires `href="#"`.*/ +button.toast-close-button { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} +.toast-top-center { + top: 0; + right: 0; + width: 100%; +} +.toast-bottom-center { + bottom: 0; + right: 0; + width: 100%; +} +.toast-top-full-width { + top: 0; + right: 0; + width: 100%; +} +.toast-bottom-full-width { + bottom: 0; + right: 0; + width: 100%; +} +.toast-top-left { + top: 12px; + left: 12px; +} +.toast-top-right { + top: 12px; + right: 12px; +} +.toast-bottom-right { + right: 12px; + bottom: 12px; +} +.toast-bottom-left { + bottom: 12px; + left: 12px; +} +#toast-container { + position: fixed; + z-index: 999999; + pointer-events: none; + /*overrides*/ +} +#toast-container * { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} +#toast-container > div { + position: relative; + pointer-events: auto; + overflow: hidden; + margin: 0 0 6px; + padding: 15px 15px 15px 50px; + width: 300px; + -moz-border-radius: 3px 3px 3px 3px; + -webkit-border-radius: 3px 3px 3px 3px; + border-radius: 3px 3px 3px 3px; + background-position: 15px center; + background-repeat: no-repeat; + -moz-box-shadow: 0 0 12px #999999; + -webkit-box-shadow: 0 0 12px #999999; + box-shadow: 0 0 12px #999999; + color: #FFFFFF; + opacity: 0.8; + -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + filter: alpha(opacity=80); +} +#toast-container > div.rtl { + direction: rtl; + padding: 15px 50px 15px 15px; + background-position: right 15px center; +} +#toast-container > div:hover { + -moz-box-shadow: 0 0 12px #000000; + -webkit-box-shadow: 0 0 12px #000000; + box-shadow: 0 0 12px #000000; + opacity: 1; + -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + filter: alpha(opacity=100); + cursor: pointer; +} +#toast-container > .toast-info { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important; +} +#toast-container > .toast-error { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important; +} +#toast-container > .toast-success { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important; +} +#toast-container > .toast-warning { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important; +} +#toast-container.toast-top-center > div, +#toast-container.toast-bottom-center > div { + width: 300px; + margin-left: auto; + margin-right: auto; +} +#toast-container.toast-top-full-width > div, +#toast-container.toast-bottom-full-width > div { + width: 96%; + margin-left: auto; + margin-right: auto; +} +.toast { + background-color: #030303; +} +.toast-success { + background-color: #51A351; +} +.toast-error { + background-color: #BD362F; +} +.toast-info { + background-color: #2F96B4; +} +.toast-warning { + background-color: #F89406; +} +.toast-progress { + position: absolute; + left: 0; + bottom: 0; + height: 4px; + background-color: #000000; + opacity: 0.4; + -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40); + filter: alpha(opacity=40); +} +/*Responsive Design*/ +@media all and (max-width: 240px) { + #toast-container > div { + padding: 8px 8px 8px 50px; + width: 11em; + } + #toast-container > div.rtl { + padding: 8px 50px 8px 8px; + } + #toast-container .toast-close-button { + right: -0.2em; + top: -0.2em; + } + #toast-container .rtl .toast-close-button { + left: -0.2em; + right: 0.2em; + } +} +@media all and (min-width: 241px) and (max-width: 480px) { + #toast-container > div { + padding: 8px 8px 8px 50px; + width: 18em; + } + #toast-container > div.rtl { + padding: 8px 50px 8px 8px; + } + #toast-container .toast-close-button { + right: -0.2em; + top: -0.2em; + } + #toast-container .rtl .toast-close-button { + left: -0.2em; + right: 0.2em; + } +} +@media all and (min-width: 481px) and (max-width: 768px) { + #toast-container > div { + padding: 15px 15px 15px 50px; + width: 25em; + } + #toast-container > div.rtl { + padding: 15px 50px 15px 15px; + } +} diff --git a/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.js.map b/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.js.map new file mode 100644 index 0000000000..07b5237f9f --- /dev/null +++ b/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["toastr.js"],"names":["define","$","error","message","title","optionsOverride","notify","type","toastType","iconClass","getOptions","iconClasses","getContainer","options","create","$container","containerId","length","createContainer","info","subscribe","callback","listener","success","warning","clear","$toastElement","clearOptions","clearToast","clearContainer","remove","removeToast","children","toastsToClear","i","force","hideMethod","duration","hideDuration","easing","hideEasing","complete","attr","addClass","positionClass","appendTo","target","getDefaults","tapToDismiss","toastClass","debug","showMethod","showDuration","showEasing","onShown","undefined","onHidden","closeMethod","closeDuration","closeEasing","closeOnHover","extendedTimeOut","timeOut","titleClass","messageClass","escapeHtml","closeHtml","closeClass","newestOnTop","preventDuplicates","progressBar","progressClass","rtl","publish","args","map","source","replace","personalizeToast","setIcon","setTitle","setMessage","setCloseButton","setProgressBar","setRTL","setSequence","setAria","ariaValue","handleEvents","hover","stickAround","delayedHideToast","onclick","click","hideToast","closeButton","$closeElement","event","stopPropagation","cancelBubble","onCloseClick","displayToast","hide","intervalId","setTimeout","maxHideTime","parseFloat","hideEta","Date","getTime","setInterval","updateProgress","prepend","append","suffix","$titleElement","$messageElement","$progressElement","shouldExit","previousToast","override","method","clearTimeout","response","state","endTime","stop","percentage","width","extend","toastId","startTime","console","log","toastr","is","version","amd","deps","factory","module","exports","require","window","jQuery"],"mappings":"CAaC,SAAUA,GACPA,GAAQ,UAAW,SAAUC,GACzB,MAAO,YA8BH,QAASC,GAAMC,EAASC,EAAOC,GAC3B,MAAOC,IACHC,KAAMC,EAAUN,MAChBO,UAAWC,IAAaC,YAAYT,MACpCC,QAASA,EACTE,gBAAiBA,EACjBD,MAAOA,IAIf,QAASQ,GAAaC,EAASC,GAG3B,MAFKD,KAAWA,EAAUH,KAC1BK,EAAad,EAAE,IAAMY,EAAQG,aACzBD,EAAWE,OACJF,GAEPD,IACAC,EAAaG,EAAgBL,IAE1BE,GAGX,QAASI,GAAKhB,EAASC,EAAOC,GAC1B,MAAOC,IACHC,KAAMC,EAAUW,KAChBV,UAAWC,IAAaC,YAAYQ,KACpChB,QAASA,EACTE,gBAAiBA,EACjBD,MAAOA,IAIf,QAASgB,GAAUC,GACfC,EAAWD,EAGf,QAASE,GAAQpB,EAASC,EAAOC,GAC7B,MAAOC,IACHC,KAAMC,EAAUe,QAChBd,UAAWC,IAAaC,YAAYY,QACpCpB,QAASA,EACTE,gBAAiBA,EACjBD,MAAOA,IAIf,QAASoB,GAAQrB,EAASC,EAAOC,GAC7B,MAAOC,IACHC,KAAMC,EAAUgB,QAChBf,UAAWC,IAAaC,YAAYa,QACpCrB,QAASA,EACTE,gBAAiBA,EACjBD,MAAOA,IAIf,QAASqB,GAAMC,EAAeC,GAC1B,GAAId,GAAUH,GACTK,IAAcH,EAAaC,GAC3Be,EAAWF,EAAeb,EAASc,IACpCE,EAAehB,GAIvB,QAASiB,GAAOJ,GACZ,GAAIb,GAAUH,GAEd,OADKK,IAAcH,EAAaC,GAC5Ba,GAAuD,IAAtCzB,EAAE,SAAUyB,GAAeT,WAC5Cc,GAAYL,QAGZX,EAAWiB,WAAWf,QACtBF,EAAWe,UAMnB,QAASD,GAAgBhB,GAErB,IAAK,GADDoB,GAAgBlB,EAAWiB,WACtBE,EAAID,EAAchB,OAAS,EAAGiB,GAAK,EAAGA,IAC3CN,EAAW3B,EAAEgC,EAAcC,IAAKrB,GAIxC,QAASe,GAAYF,EAAeb,EAASc,GACzC,GAAIQ,MAAQR,IAAgBA,EAAaQ,QAAQR,EAAaQ,KAC9D,UAAIT,IAAkBS,GAA+C,IAAtClC,EAAE,SAAUyB,GAAeT,UACtDS,EAAcb,EAAQuB,aAClBC,SAAUxB,EAAQyB,aAClBC,OAAQ1B,EAAQ2B,WAChBC,SAAU,WAAcV,EAAYL,OAEjC,GAKf,QAASR,GAAgBL,GAMrB,MALAE,GAAad,EAAE,UACVyC,KAAK,KAAM7B,EAAQG,aACnB2B,SAAS9B,EAAQ+B,eAEtB7B,EAAW8B,SAAS5C,EAAEY,EAAQiC,SACvB/B,EAGX,QAASgC,KACL,OACIC,cAAc,EACdC,WAAY,QACZjC,YAAa,kBACbkC,OAAO,EAEPC,WAAY,SACZC,aAAc,IACdC,WAAY,QACZC,QAASC,OACTnB,WAAY,UACZE,aAAc,IACdE,WAAY,QACZgB,SAAUD,OACVE,aAAa,EACbC,eAAe,EACfC,aAAa,EACbC,cAAc,EAEdC,gBAAiB,IACjBlD,aACIT,MAAO,cACPiB,KAAM,aACNI,QAAS,gBACTC,QAAS,iBAEbf,UAAW,aACXmC,cAAe,kBACfkB,QAAS,IACTC,WAAY,cACZC,aAAc,gBACdC,YAAY,EACZnB,OAAQ,OACRoB,UAAW,yCACXC,WAAY,qBACZC,aAAa,EACbC,mBAAmB,EACnBC,aAAa,EACbC,cAAe,iBACfC,KAAK,GAIb,QAASC,GAAQC,GACRpD,GACLA,EAASoD,GAGb,QAASpE,GAAOqE,GAgDZ,QAASV,GAAWW,GAKhB,MAJc,OAAVA,IACAA,EAAS,IAGNA,EACFC,QAAQ,KAAM,SACdA,QAAQ,KAAM,UACdA,QAAQ,KAAM,SACdA,QAAQ,KAAM,QACdA,QAAQ,KAAM,QAGvB,QAASC,KACLC,IACAC,IACAC,IACAC,IACAC,IACAC,IACAC,IACAC,IAGJ,QAASA,KACL,GAAIC,GAAY,EAChB,QAAQZ,EAAIlE,WACR,IAAK,gBACL,IAAK,aACD8E,EAAa,QACb,MACJ,SACIA,EAAY,YAEpB7D,EAAcgB,KAAK,YAAa6C,GAGpC,QAASC,KACD3E,EAAQ+C,cACRlC,EAAc+D,MAAMC,EAAaC,IAGhC9E,EAAQ+E,SAAW/E,EAAQmC,cAC5BtB,EAAcmE,MAAMC,GAGpBjF,EAAQkF,aAAeC,GACvBA,EAAcH,MAAM,SAAUI,GACtBA,EAAMC,gBACND,EAAMC,kBACwB3C,SAAvB0C,EAAME,cAA8BF,EAAME,gBAAiB,IAClEF,EAAME,cAAe,GAGrBtF,EAAQuF,cACRvF,EAAQuF,aAAaH,GAGzBH,GAAU,KAIdjF,EAAQ+E,SACRlE,EAAcmE,MAAM,SAAUI,GAC1BpF,EAAQ+E,QAAQK,GAChBH,MAKZ,QAASO,KACL3E,EAAc4E,OAEd5E,EAAcb,EAAQsC,aACjBd,SAAUxB,EAAQuC,aAAcb,OAAQ1B,EAAQwC,WAAYZ,SAAU5B,EAAQyC,UAG/EzC,EAAQiD,QAAU,IAClByC,EAAaC,WAAWV,EAAWjF,EAAQiD,SAC3CQ,EAAYmC,YAAcC,WAAW7F,EAAQiD,SAC7CQ,EAAYqC,SAAU,GAAIC,OAAOC,UAAYvC,EAAYmC,YACrD5F,EAAQyD,cACRA,EAAYiC,WAAaO,YAAYC,EAAgB,MAKjE,QAAShC,KACDJ,EAAIlE,WACJiB,EAAciB,SAAS9B,EAAQoC,YAAYN,SAASlC,GAI5D,QAAS4E,KACDxE,EAAQuD,YACRrD,EAAWiG,QAAQtF,GAEnBX,EAAWkG,OAAOvF,GAI1B,QAASsD,KACL,GAAIL,EAAIvE,MAAO,CACX,GAAI8G,GAASvC,EAAIvE,KACbS,GAAQoD,aACRiD,EAASjD,EAAWU,EAAIvE,QAE5B+G,EAAcF,OAAOC,GAAQvE,SAAS9B,EAAQkD,YAC9CrC,EAAcuF,OAAOE,IAI7B,QAASlC,KACL,GAAIN,EAAIxE,QAAS,CACb,GAAI+G,GAASvC,EAAIxE,OACbU,GAAQoD,aACRiD,EAASjD,EAAWU,EAAIxE,UAE5BiH,EAAgBH,OAAOC,GAAQvE,SAAS9B,EAAQmD,cAChDtC,EAAcuF,OAAOG,IAI7B,QAASlC,KACDrE,EAAQkF,cACRC,EAAcrD,SAAS9B,EAAQsD,YAAYzB,KAAK,OAAQ,UACxDhB,EAAcsF,QAAQhB,IAI9B,QAASb,KACDtE,EAAQyD,cACR+C,EAAiB1E,SAAS9B,EAAQ0D,eAClC7C,EAAcsF,QAAQK,IAI9B,QAASjC,KACDvE,EAAQ2D,KACR9C,EAAciB,SAAS,OAI/B,QAAS2E,GAAWzG,EAAS8D,GACzB,GAAI9D,EAAQwD,kBAAmB,CAC3B,GAAIM,EAAIxE,UAAYoH,EAChB,OAAO,CAEPA,GAAgB5C,EAAIxE,QAG5B,OAAO,EAGX,QAAS2F,GAAU0B,GACf,GAAIC,GAASD,GAAY3G,EAAQ4C,eAAgB,EAAQ5C,EAAQ4C,YAAc5C,EAAQuB,WACnFC,EAAWmF,GAAY3G,EAAQ6C,iBAAkB,EACjD7C,EAAQ6C,cAAgB7C,EAAQyB,aAChCC,EAASiF,GAAY3G,EAAQ8C,eAAgB,EAAQ9C,EAAQ8C,YAAc9C,EAAQ2B,UACvF,KAAIvC,EAAE,SAAUyB,GAAeT,QAAWuG,EAI1C,MADAE,cAAapD,EAAYiC,YAClB7E,EAAc+F,IACjBpF,SAAUA,EACVE,OAAQA,EACRE,SAAU,WACNV,EAAYL,GACZgG,aAAanB,GACT1F,EAAQ2C,UAA+B,WAAnBmE,EAASC,OAC7B/G,EAAQ2C,WAEZmE,EAASC,MAAQ,SACjBD,EAASE,QAAU,GAAIjB,MACvBnC,EAAQkD,MAKpB,QAAShC,MACD9E,EAAQiD,QAAU,GAAKjD,EAAQgD,gBAAkB,KACjD0C,EAAaC,WAAWV,EAAWjF,EAAQgD,iBAC3CS,EAAYmC,YAAcC,WAAW7F,EAAQgD,iBAC7CS,EAAYqC,SAAU,GAAIC,OAAOC,UAAYvC,EAAYmC,aAIjE,QAASf,KACLgC,aAAanB,GACbjC,EAAYqC,QAAU,EACtBjF,EAAcoG,MAAK,GAAM,GAAMjH,EAAQsC,aAClCd,SAAUxB,EAAQuC,aAAcb,OAAQ1B,EAAQwC,aAIzD,QAAS0D,KACL,GAAIgB,IAAezD,EAAYqC,SAAW,GAAIC,OAAOC,WAAcvC,EAAYmC,YAAe,GAC9FY,GAAiBW,MAAMD,EAAa,KApPxC,GAAIlH,GAAUH,IACVD,EAAYkE,EAAIlE,WAAaI,EAAQJ,SAOzC,IALqC,mBAAzBkE,GAAmB,kBAC3B9D,EAAUZ,EAAEgI,OAAOpH,EAAS8D,EAAItE,iBAChCI,EAAYkE,EAAItE,gBAAgBI,WAAaA,IAG7C6G,EAAWzG,EAAS8D,GAAxB,CAEAuD,IAEAnH,EAAaH,EAAaC,GAAS,EAEnC,IAAI0F,GAAa,KACb7E,EAAgBzB,EAAE,UAClBkH,EAAgBlH,EAAE,UAClBmH,EAAkBnH,EAAE,UACpBoH,EAAmBpH,EAAE,UACrB+F,EAAgB/F,EAAEY,EAAQqD,WAC1BI,GACAiC,WAAY,KACZI,QAAS,KACTF,YAAa,MAEbkB,GACAO,QAASA,EACTN,MAAO,UACPO,UAAW,GAAIvB,MACf/F,QAASA,EACT8D,IAAKA,EAeT,OAZAG,KAEAuB,IAEAb,IAEAf,EAAQkD,GAEJ9G,EAAQqC,OAASkF,SACjBA,QAAQC,IAAIV,GAGTjG,GA2MX,QAAShB,KACL,MAAOT,GAAEgI,UAAWlF,IAAeuF,EAAOzH,SAG9C,QAASkB,GAAYL,GACZX,IAAcA,EAAaH,KAC5Bc,EAAc6G,GAAG,cAGrB7G,EAAcI,SACdJ,EAAgB,KACqB,IAAjCX,EAAWiB,WAAWf,SACtBF,EAAWe,SACXyF,EAAgBhE,SA/bxB,GAAIxC,GACAO,EAsBAiG,EArBAW,EAAU,EACV1H,GACAN,MAAO,QACPiB,KAAM,OACNI,QAAS,UACTC,QAAS,WAGT8G,GACA7G,MAAOA,EACPK,OAAQA,EACR5B,MAAOA,EACPU,aAAcA,EACdO,KAAMA,EACNN,WACAO,UAAWA,EACXG,QAASA,EACTiH,QAAS,QACThH,QAASA,EAKb,OAAO8G,SA4aC,kBAAXtI,SAAyBA,OAAOyI,IAAMzI,OAAS,SAAU0I,EAAMC,GAC9C,mBAAXC,SAA0BA,OAAOC,QACxCD,OAAOC,QAAUF,EAAQG,QAAQ,WAEjCC,OAAOT,OAASK,EAAQI,OAAOC","file":"toastr.js","sourcesContent":["/*\n * Toastr\n * Copyright 2012-2015\n * Authors: John Papa, Hans Fjällemark, and Tim Ferrell.\n * All Rights Reserved.\n * Use, reproduction, distribution, and modification of this code is subject to the terms and\n * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php\n *\n * ARIA Support: Greta Krafsig\n *\n * Project: https://github.com/CodeSeven/toastr\n */\n/* global define */\n(function (define) {\n define(['jquery'], function ($) {\n return (function () {\n var $container;\n var listener;\n var toastId = 0;\n var toastType = {\n error: 'error',\n info: 'info',\n success: 'success',\n warning: 'warning'\n };\n\n var toastr = {\n clear: clear,\n remove: remove,\n error: error,\n getContainer: getContainer,\n info: info,\n options: {},\n subscribe: subscribe,\n success: success,\n version: '2.1.3',\n warning: warning\n };\n\n var previousToast;\n\n return toastr;\n\n ////////////////\n\n function error(message, title, optionsOverride) {\n return notify({\n type: toastType.error,\n iconClass: getOptions().iconClasses.error,\n message: message,\n optionsOverride: optionsOverride,\n title: title\n });\n }\n\n function getContainer(options, create) {\n if (!options) { options = getOptions(); }\n $container = $('#' + options.containerId);\n if ($container.length) {\n return $container;\n }\n if (create) {\n $container = createContainer(options);\n }\n return $container;\n }\n\n function info(message, title, optionsOverride) {\n return notify({\n type: toastType.info,\n iconClass: getOptions().iconClasses.info,\n message: message,\n optionsOverride: optionsOverride,\n title: title\n });\n }\n\n function subscribe(callback) {\n listener = callback;\n }\n\n function success(message, title, optionsOverride) {\n return notify({\n type: toastType.success,\n iconClass: getOptions().iconClasses.success,\n message: message,\n optionsOverride: optionsOverride,\n title: title\n });\n }\n\n function warning(message, title, optionsOverride) {\n return notify({\n type: toastType.warning,\n iconClass: getOptions().iconClasses.warning,\n message: message,\n optionsOverride: optionsOverride,\n title: title\n });\n }\n\n function clear($toastElement, clearOptions) {\n var options = getOptions();\n if (!$container) { getContainer(options); }\n if (!clearToast($toastElement, options, clearOptions)) {\n clearContainer(options);\n }\n }\n\n function remove($toastElement) {\n var options = getOptions();\n if (!$container) { getContainer(options); }\n if ($toastElement && $(':focus', $toastElement).length === 0) {\n removeToast($toastElement);\n return;\n }\n if ($container.children().length) {\n $container.remove();\n }\n }\n\n // internal functions\n\n function clearContainer (options) {\n var toastsToClear = $container.children();\n for (var i = toastsToClear.length - 1; i >= 0; i--) {\n clearToast($(toastsToClear[i]), options);\n }\n }\n\n function clearToast ($toastElement, options, clearOptions) {\n var force = clearOptions && clearOptions.force ? clearOptions.force : false;\n if ($toastElement && (force || $(':focus', $toastElement).length === 0)) {\n $toastElement[options.hideMethod]({\n duration: options.hideDuration,\n easing: options.hideEasing,\n complete: function () { removeToast($toastElement); }\n });\n return true;\n }\n return false;\n }\n\n function createContainer(options) {\n $container = $('
')\n .attr('id', options.containerId)\n .addClass(options.positionClass);\n\n $container.appendTo($(options.target));\n return $container;\n }\n\n function getDefaults() {\n return {\n tapToDismiss: true,\n toastClass: 'toast',\n containerId: 'toast-container',\n debug: false,\n\n showMethod: 'fadeIn', //fadeIn, slideDown, and show are built into jQuery\n showDuration: 300,\n showEasing: 'swing', //swing and linear are built into jQuery\n onShown: undefined,\n hideMethod: 'fadeOut',\n hideDuration: 1000,\n hideEasing: 'swing',\n onHidden: undefined,\n closeMethod: false,\n closeDuration: false,\n closeEasing: false,\n closeOnHover: true,\n\n extendedTimeOut: 1000,\n iconClasses: {\n error: 'toast-error',\n info: 'toast-info',\n success: 'toast-success',\n warning: 'toast-warning'\n },\n iconClass: 'toast-info',\n positionClass: 'toast-top-right',\n timeOut: 5000, // Set timeOut and extendedTimeOut to 0 to make it sticky\n titleClass: 'toast-title',\n messageClass: 'toast-message',\n escapeHtml: false,\n target: 'body',\n closeHtml: '',\n closeClass: 'toast-close-button',\n newestOnTop: true,\n preventDuplicates: false,\n progressBar: false,\n progressClass: 'toast-progress',\n rtl: false\n };\n }\n\n function publish(args) {\n if (!listener) { return; }\n listener(args);\n }\n\n function notify(map) {\n var options = getOptions();\n var iconClass = map.iconClass || options.iconClass;\n\n if (typeof (map.optionsOverride) !== 'undefined') {\n options = $.extend(options, map.optionsOverride);\n iconClass = map.optionsOverride.iconClass || iconClass;\n }\n\n if (shouldExit(options, map)) { return; }\n\n toastId++;\n\n $container = getContainer(options, true);\n\n var intervalId = null;\n var $toastElement = $('
');\n var $titleElement = $('
');\n var $messageElement = $('
');\n var $progressElement = $('
');\n var $closeElement = $(options.closeHtml);\n var progressBar = {\n intervalId: null,\n hideEta: null,\n maxHideTime: null\n };\n var response = {\n toastId: toastId,\n state: 'visible',\n startTime: new Date(),\n options: options,\n map: map\n };\n\n personalizeToast();\n\n displayToast();\n\n handleEvents();\n\n publish(response);\n\n if (options.debug && console) {\n console.log(response);\n }\n\n return $toastElement;\n\n function escapeHtml(source) {\n if (source == null) {\n source = '';\n }\n\n return source\n .replace(/&/g, '&')\n .replace(/\"/g, '"')\n .replace(/'/g, ''')\n .replace(//g, '>');\n }\n\n function personalizeToast() {\n setIcon();\n setTitle();\n setMessage();\n setCloseButton();\n setProgressBar();\n setRTL();\n setSequence();\n setAria();\n }\n\n function setAria() {\n var ariaValue = '';\n switch (map.iconClass) {\n case 'toast-success':\n case 'toast-info':\n ariaValue = 'polite';\n break;\n default:\n ariaValue = 'assertive';\n }\n $toastElement.attr('aria-live', ariaValue);\n }\n\n function handleEvents() {\n if (options.closeOnHover) {\n $toastElement.hover(stickAround, delayedHideToast);\n }\n\n if (!options.onclick && options.tapToDismiss) {\n $toastElement.click(hideToast);\n }\n\n if (options.closeButton && $closeElement) {\n $closeElement.click(function (event) {\n if (event.stopPropagation) {\n event.stopPropagation();\n } else if (event.cancelBubble !== undefined && event.cancelBubble !== true) {\n event.cancelBubble = true;\n }\n\n if (options.onCloseClick) {\n options.onCloseClick(event);\n }\n\n hideToast(true);\n });\n }\n\n if (options.onclick) {\n $toastElement.click(function (event) {\n options.onclick(event);\n hideToast();\n });\n }\n }\n\n function displayToast() {\n $toastElement.hide();\n\n $toastElement[options.showMethod](\n {duration: options.showDuration, easing: options.showEasing, complete: options.onShown}\n );\n\n if (options.timeOut > 0) {\n intervalId = setTimeout(hideToast, options.timeOut);\n progressBar.maxHideTime = parseFloat(options.timeOut);\n progressBar.hideEta = new Date().getTime() + progressBar.maxHideTime;\n if (options.progressBar) {\n progressBar.intervalId = setInterval(updateProgress, 10);\n }\n }\n }\n\n function setIcon() {\n if (map.iconClass) {\n $toastElement.addClass(options.toastClass).addClass(iconClass);\n }\n }\n\n function setSequence() {\n if (options.newestOnTop) {\n $container.prepend($toastElement);\n } else {\n $container.append($toastElement);\n }\n }\n\n function setTitle() {\n if (map.title) {\n var suffix = map.title;\n if (options.escapeHtml) {\n suffix = escapeHtml(map.title);\n }\n $titleElement.append(suffix).addClass(options.titleClass);\n $toastElement.append($titleElement);\n }\n }\n\n function setMessage() {\n if (map.message) {\n var suffix = map.message;\n if (options.escapeHtml) {\n suffix = escapeHtml(map.message);\n }\n $messageElement.append(suffix).addClass(options.messageClass);\n $toastElement.append($messageElement);\n }\n }\n\n function setCloseButton() {\n if (options.closeButton) {\n $closeElement.addClass(options.closeClass).attr('role', 'button');\n $toastElement.prepend($closeElement);\n }\n }\n\n function setProgressBar() {\n if (options.progressBar) {\n $progressElement.addClass(options.progressClass);\n $toastElement.prepend($progressElement);\n }\n }\n\n function setRTL() {\n if (options.rtl) {\n $toastElement.addClass('rtl');\n }\n }\n\n function shouldExit(options, map) {\n if (options.preventDuplicates) {\n if (map.message === previousToast) {\n return true;\n } else {\n previousToast = map.message;\n }\n }\n return false;\n }\n\n function hideToast(override) {\n var method = override && options.closeMethod !== false ? options.closeMethod : options.hideMethod;\n var duration = override && options.closeDuration !== false ?\n options.closeDuration : options.hideDuration;\n var easing = override && options.closeEasing !== false ? options.closeEasing : options.hideEasing;\n if ($(':focus', $toastElement).length && !override) {\n return;\n }\n clearTimeout(progressBar.intervalId);\n return $toastElement[method]({\n duration: duration,\n easing: easing,\n complete: function () {\n removeToast($toastElement);\n clearTimeout(intervalId);\n if (options.onHidden && response.state !== 'hidden') {\n options.onHidden();\n }\n response.state = 'hidden';\n response.endTime = new Date();\n publish(response);\n }\n });\n }\n\n function delayedHideToast() {\n if (options.timeOut > 0 || options.extendedTimeOut > 0) {\n intervalId = setTimeout(hideToast, options.extendedTimeOut);\n progressBar.maxHideTime = parseFloat(options.extendedTimeOut);\n progressBar.hideEta = new Date().getTime() + progressBar.maxHideTime;\n }\n }\n\n function stickAround() {\n clearTimeout(intervalId);\n progressBar.hideEta = 0;\n $toastElement.stop(true, true)[options.showMethod](\n {duration: options.showDuration, easing: options.showEasing}\n );\n }\n\n function updateProgress() {\n var percentage = ((progressBar.hideEta - (new Date().getTime())) / progressBar.maxHideTime) * 100;\n $progressElement.width(percentage + '%');\n }\n }\n\n function getOptions() {\n return $.extend({}, getDefaults(), toastr.options);\n }\n\n function removeToast($toastElement) {\n if (!$container) { $container = getContainer(); }\n if ($toastElement.is(':visible')) {\n return;\n }\n $toastElement.remove();\n $toastElement = null;\n if ($container.children().length === 0) {\n $container.remove();\n previousToast = undefined;\n }\n }\n\n })();\n });\n}(typeof define === 'function' && define.amd ? define : function (deps, factory) {\n if (typeof module !== 'undefined' && module.exports) { //Node\n module.exports = factory(require('jquery'));\n } else {\n window.toastr = factory(window.jQuery);\n }\n}));\n"],"sourceRoot":"/source/"} \ No newline at end of file diff --git a/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.min.css b/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.min.css new file mode 100644 index 0000000000..064afd0718 --- /dev/null +++ b/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.min.css @@ -0,0 +1 @@ +.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#FFF}.toast-message a:hover{color:#CCC;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#FFF;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#FFF;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51A351}.toast-error{background-color:#BD362F}.toast-info{background-color:#2F96B4}.toast-warning{background-color:#F89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}} \ No newline at end of file diff --git a/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.min.js b/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.min.js new file mode 100644 index 0000000000..7c0c07c2a6 --- /dev/null +++ b/mayan/apps/appearance/static/appearance/packages/toastr-master-998959b0/build/toastr.min.js @@ -0,0 +1,2 @@ +!function(e){e(["jquery"],function(e){return function(){function t(e,t,n){return g({type:O.error,iconClass:m().iconClasses.error,message:e,optionsOverride:n,title:t})}function n(t,n){return t||(t=m()),v=e("#"+t.containerId),v.length?v:(n&&(v=d(t)),v)}function o(e,t,n){return g({type:O.info,iconClass:m().iconClasses.info,message:e,optionsOverride:n,title:t})}function s(e){C=e}function i(e,t,n){return g({type:O.success,iconClass:m().iconClasses.success,message:e,optionsOverride:n,title:t})}function a(e,t,n){return g({type:O.warning,iconClass:m().iconClasses.warning,message:e,optionsOverride:n,title:t})}function r(e,t){var o=m();v||n(o),u(e,o,t)||l(o)}function c(t){var o=m();return v||n(o),t&&0===e(":focus",t).length?void h(t):void(v.children().length&&v.remove())}function l(t){for(var n=v.children(),o=n.length-1;o>=0;o--)u(e(n[o]),t)}function u(t,n,o){var s=!(!o||!o.force)&&o.force;return!(!t||!s&&0!==e(":focus",t).length)&&(t[n.hideMethod]({duration:n.hideDuration,easing:n.hideEasing,complete:function(){h(t)}}),!0)}function d(t){return v=e("
").attr("id",t.containerId).addClass(t.positionClass),v.appendTo(e(t.target)),v}function p(){return{tapToDismiss:!0,toastClass:"toast",containerId:"toast-container",debug:!1,showMethod:"fadeIn",showDuration:300,showEasing:"swing",onShown:void 0,hideMethod:"fadeOut",hideDuration:1e3,hideEasing:"swing",onHidden:void 0,closeMethod:!1,closeDuration:!1,closeEasing:!1,closeOnHover:!0,extendedTimeOut:1e3,iconClasses:{error:"toast-error",info:"toast-info",success:"toast-success",warning:"toast-warning"},iconClass:"toast-info",positionClass:"toast-top-right",timeOut:5e3,titleClass:"toast-title",messageClass:"toast-message",escapeHtml:!1,target:"body",closeHtml:'',closeClass:"toast-close-button",newestOnTop:!0,preventDuplicates:!1,progressBar:!1,progressClass:"toast-progress",rtl:!1}}function f(e){C&&C(e)}function g(t){function o(e){return null==e&&(e=""),e.replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function s(){c(),u(),d(),p(),g(),C(),l(),i()}function i(){var e="";switch(t.iconClass){case"toast-success":case"toast-info":e="polite";break;default:e="assertive"}I.attr("aria-live",e)}function a(){E.closeOnHover&&I.hover(H,D),!E.onclick&&E.tapToDismiss&&I.click(b),E.closeButton&&j&&j.click(function(e){e.stopPropagation?e.stopPropagation():void 0!==e.cancelBubble&&e.cancelBubble!==!0&&(e.cancelBubble=!0),E.onCloseClick&&E.onCloseClick(e),b(!0)}),E.onclick&&I.click(function(e){E.onclick(e),b()})}function r(){I.hide(),I[E.showMethod]({duration:E.showDuration,easing:E.showEasing,complete:E.onShown}),E.timeOut>0&&(k=setTimeout(b,E.timeOut),F.maxHideTime=parseFloat(E.timeOut),F.hideEta=(new Date).getTime()+F.maxHideTime,E.progressBar&&(F.intervalId=setInterval(x,10)))}function c(){t.iconClass&&I.addClass(E.toastClass).addClass(y)}function l(){E.newestOnTop?v.prepend(I):v.append(I)}function u(){if(t.title){var e=t.title;E.escapeHtml&&(e=o(t.title)),M.append(e).addClass(E.titleClass),I.append(M)}}function d(){if(t.message){var e=t.message;E.escapeHtml&&(e=o(t.message)),B.append(e).addClass(E.messageClass),I.append(B)}}function p(){E.closeButton&&(j.addClass(E.closeClass).attr("role","button"),I.prepend(j))}function g(){E.progressBar&&(q.addClass(E.progressClass),I.prepend(q))}function C(){E.rtl&&I.addClass("rtl")}function O(e,t){if(e.preventDuplicates){if(t.message===w)return!0;w=t.message}return!1}function b(t){var n=t&&E.closeMethod!==!1?E.closeMethod:E.hideMethod,o=t&&E.closeDuration!==!1?E.closeDuration:E.hideDuration,s=t&&E.closeEasing!==!1?E.closeEasing:E.hideEasing;if(!e(":focus",I).length||t)return clearTimeout(F.intervalId),I[n]({duration:o,easing:s,complete:function(){h(I),clearTimeout(k),E.onHidden&&"hidden"!==P.state&&E.onHidden(),P.state="hidden",P.endTime=new Date,f(P)}})}function D(){(E.timeOut>0||E.extendedTimeOut>0)&&(k=setTimeout(b,E.extendedTimeOut),F.maxHideTime=parseFloat(E.extendedTimeOut),F.hideEta=(new Date).getTime()+F.maxHideTime)}function H(){clearTimeout(k),F.hideEta=0,I.stop(!0,!0)[E.showMethod]({duration:E.showDuration,easing:E.showEasing})}function x(){var e=(F.hideEta-(new Date).getTime())/F.maxHideTime*100;q.width(e+"%")}var E=m(),y=t.iconClass||E.iconClass;if("undefined"!=typeof t.optionsOverride&&(E=e.extend(E,t.optionsOverride),y=t.optionsOverride.iconClass||y),!O(E,t)){T++,v=n(E,!0);var k=null,I=e("
"),M=e("
"),B=e("
"),q=e("
"),j=e(E.closeHtml),F={intervalId:null,hideEta:null,maxHideTime:null},P={toastId:T,state:"visible",startTime:new Date,options:E,map:t};return s(),r(),a(),f(P),E.debug&&console&&console.log(P),I}}function m(){return e.extend({},p(),b.options)}function h(e){v||(v=n()),e.is(":visible")||(e.remove(),e=null,0===v.children().length&&(v.remove(),w=void 0))}var v,C,w,T=0,O={error:"error",info:"info",success:"success",warning:"warning"},b={clear:r,remove:c,error:t,getContainer:n,info:o,options:{},subscribe:s,success:i,version:"2.1.3",warning:a};return b}()})}("function"==typeof define&&define.amd?define:function(e,t){"undefined"!=typeof module&&module.exports?module.exports=t(require("jquery")):window.toastr=t(window.jQuery)}); +//# sourceMappingURL=toastr.js.map From 8c4db068afe0ceb319079655ebf46a928be2621f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 13 Jul 2017 02:51:48 -0400 Subject: [PATCH 028/112] Remove debug statement. Signed-off-by: Roberto Rosario --- mayan/apps/user_management/search.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mayan/apps/user_management/search.py b/mayan/apps/user_management/search.py index af11a2fb90..736ddbbd00 100644 --- a/mayan/apps/user_management/search.py +++ b/mayan/apps/user_management/search.py @@ -7,7 +7,6 @@ from dynamic_search.classes import SearchModel from .permissions import permission_group_view, permission_user_view -print settings.AUTH_USER_MODEL user_app, user_model = settings.AUTH_USER_MODEL.split('.') user_search = SearchModel( From 2817ec17be04dd8b3edc58049a581a346da1618e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 13 Jul 2017 03:30:51 -0400 Subject: [PATCH 029/112] Add support for logging errors during in production mode. Add COMMON_PRODUCTION_ERROR_LOG_PATH to control path of log file. Defaults to mayan/error.log. Add support logging request exceptions. Signed-off-by: Roberto Rosario --- .gitignore | 1 + HISTORY.rst | 4 ++++ mayan/apps/common/apps.py | 13 ++++++++++--- mayan/apps/common/middleware/error_logging.py | 13 +++++++++++++ mayan/apps/common/settings.py | 9 +++++++++ mayan/apps/common/views.py | 1 + mayan/settings/base.py | 1 + 7 files changed, 39 insertions(+), 3 deletions(-) create mode 100644 mayan/apps/common/middleware/error_logging.py diff --git a/.gitignore b/.gitignore index 96bc99ece0..3405a7a43e 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ htmlcov/ mayan/media/ mayan/media/document_cache/ mayan/settings/local.py +mayan/error.log settings_local.py static_collected/ /celerybeat-schedule diff --git a/HISTORY.rst b/HISTORY.rst index e87bbdd84a..fac2320fb6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,10 @@ - Add support for emailing documents to a recipient list. GitLab #396. - Backport metadata widget changes from @Macrobb. GitLab #377. - Make users and group searchable. +- Add support for logging errors during in production mode. + Add COMMON_PRODUCTION_ERROR_LOG_PATH to control path of log file. + Defaults to mayan/error.log. +- Add support logging request exceptions. 2.5.2 (2017-07-08) ================== diff --git a/mayan/apps/common/apps.py b/mayan/apps/common/apps.py index 298c6707fe..dd612b8625 100644 --- a/mayan/apps/common/apps.py +++ b/mayan/apps/common/apps.py @@ -2,6 +2,7 @@ from __future__ import absolute_import, unicode_literals from datetime import timedelta import logging +import os from kombu import Exchange, Queue @@ -30,7 +31,7 @@ from .literals import DELETE_STALE_UPLOADS_INTERVAL from .menus import menu_about, menu_main, menu_tools, menu_user from .licenses import * # NOQA from .queues import * # NOQA - Force queues registration -from .settings import setting_auto_logging +from .settings import setting_auto_logging, setting_production_error_log_path from .tasks import task_delete_stale_uploads # NOQA - Force task registration logger = logging.getLogger(__name__) @@ -154,13 +155,15 @@ class CommonApp(MayanAppConfig): if setting_auto_logging.value: if settings.DEBUG: level = 'DEBUG' + handlers = ['console'] else: level = 'ERROR' + handlers = ['console', 'logfile'] loggers = {} for project_app in apps.apps.get_app_configs(): loggers[project_app.name] = { - 'handlers': ['console'], + 'handlers': handlers, 'propagate': True, 'level': level, } @@ -179,7 +182,11 @@ class CommonApp(MayanAppConfig): 'level': 'DEBUG', 'class': 'logging.StreamHandler', 'formatter': 'intermediate' - } + }, + 'logfile': { + 'class': 'logging.handlers.WatchedFileHandler', + 'filename': setting_production_error_log_path.value, + }, }, 'loggers': loggers } diff --git a/mayan/apps/common/middleware/error_logging.py b/mayan/apps/common/middleware/error_logging.py new file mode 100644 index 0000000000..39058af612 --- /dev/null +++ b/mayan/apps/common/middleware/error_logging.py @@ -0,0 +1,13 @@ +from __future__ import unicode_literals + +import logging + +logger = logging.getLogger(__name__) + + +class ErrorLoggingMiddleware(object): + def process_exception(self, request, exception): + logger.exception( + 'Exception caught by request middleware; %s, %s', request, + exception + ) diff --git a/mayan/apps/common/settings.py b/mayan/apps/common/settings.py index 8edf6c8512..893f3219fe 100644 --- a/mayan/apps/common/settings.py +++ b/mayan/apps/common/settings.py @@ -1,7 +1,9 @@ from __future__ import unicode_literals +import os import tempfile +from django.conf import settings from django.utils.translation import ugettext_lazy as _ from smart_settings import Namespace @@ -40,3 +42,10 @@ setting_temporary_directory = namespace.add_setting( ), is_path=True ) +setting_production_error_log_path = namespace.add_setting( + global_name='COMMON_PRODUCTION_ERROR_LOG_PATH', + default=os.path.join(settings.BASE_DIR, 'error.log'), help_text=_( + 'Path to the logfile that will track errors during production.' + ), + is_path=True +) diff --git a/mayan/apps/common/views.py b/mayan/apps/common/views.py index a05d2a2dba..b59a1a611f 100644 --- a/mayan/apps/common/views.py +++ b/mayan/apps/common/views.py @@ -37,6 +37,7 @@ class CheckVersionView(SimpleView): template_name = 'appearance/generic_template.html' def get_extra_context(self): + raise Exception('asd') try: check_version() except NotLatestVersion as exception: diff --git a/mayan/settings/base.py b/mayan/settings/base.py index d13585e8ae..9ffd843215 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -108,6 +108,7 @@ INSTALLED_APPS = ( ) MIDDLEWARE_CLASSES = ( + 'common.middleware.error_logging.ErrorLoggingMiddleware', 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'corsheaders.middleware.CorsMiddleware', From c3d4884d34a7b3cbee231678856d1e2f73a278e4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 13 Jul 2017 03:32:19 -0400 Subject: [PATCH 030/112] Remove debug statement. Signed-off-by: Roberto Rosario --- mayan/apps/common/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mayan/apps/common/views.py b/mayan/apps/common/views.py index b59a1a611f..a05d2a2dba 100644 --- a/mayan/apps/common/views.py +++ b/mayan/apps/common/views.py @@ -37,7 +37,6 @@ class CheckVersionView(SimpleView): template_name = 'appearance/generic_template.html' def get_extra_context(self): - raise Exception('asd') try: check_version() except NotLatestVersion as exception: From ff59f34b7fbe741acace7588539d09ec9e5e8bdf Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 13 Jul 2017 17:20:02 -0400 Subject: [PATCH 031/112] Add document list item view. Signed-off-by: Roberto Rosario --- HISTORY.rst | 1 + .../appearance/static/appearance/css/base.css | 34 ++- .../appearance/static/appearance/js/base.js | 2 + .../appearance/templates/appearance/base.html | 1 + .../templates/appearance/generic_list.html | 8 +- .../generic_list_items_subtemplate.html | 212 ++++++++++++++++++ .../templates/cabinets/cabinet_details.html | 10 +- mayan/apps/cabinets/views.py | 1 + mayan/apps/checkouts/views.py | 54 ++--- .../document_indexing/node_details.html | 10 +- mayan/apps/document_indexing/views.py | 33 +-- mayan/apps/document_states/views.py | 42 ++-- mayan/apps/documents/settings.py | 2 +- .../documents/views/document_type_views.py | 13 +- mayan/apps/documents/views/document_views.py | 91 +++++--- mayan/apps/documents/widgets.py | 6 +- mayan/apps/linking/views.py | 13 +- mayan/apps/tags/views.py | 13 +- 18 files changed, 420 insertions(+), 126 deletions(-) create mode 100644 mayan/apps/appearance/templates/appearance/generic_list_items_subtemplate.html diff --git a/HISTORY.rst b/HISTORY.rst index fac2320fb6..2c240ce5e5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -8,6 +8,7 @@ Add COMMON_PRODUCTION_ERROR_LOG_PATH to control path of log file. Defaults to mayan/error.log. - Add support logging request exceptions. +- Add document list item view. 2.5.2 (2017-07-08) ================== diff --git a/mayan/apps/appearance/static/appearance/css/base.css b/mayan/apps/appearance/static/appearance/css/base.css index eb94b6c3f8..2e6aa4e596 100644 --- a/mayan/apps/appearance/static/appearance/css/base.css +++ b/mayan/apps/appearance/static/appearance/css/base.css @@ -235,12 +235,22 @@ a i { } } -/* Metadata */ -.metadata-display { - display: inline-block; - min-width: 200px; - padding-right: 10px; - width: 49%; +/* List item view */ + +.panel-item { + box-shadow: 2px 2px 18px rgba(0, 0, 0, .2); +} + +.panel-item > .panel-heading { + padding: 1px 10px; +} + +.panel-item > .panel-body { + padding: 10px; +} + +.list-extra-column-label { + font-weight: bold; } /* Content */ @@ -249,3 +259,15 @@ a i { width: 95%; } } + +/* Document widget */ +.spinner-container { + margin: auto; + width: 100%; + border: 1px solid lightgray; +} + +.spinner-container > .spinner-icon { + margin-left: 4px; + margin-top: 3px; +} diff --git a/mayan/apps/appearance/static/appearance/js/base.js b/mayan/apps/appearance/static/appearance/js/base.js index 83ac822c96..1adda6e22b 100644 --- a/mayan/apps/appearance/static/appearance/js/base.js +++ b/mayan/apps/appearance/static/appearance/js/base.js @@ -197,6 +197,8 @@ MayanImage.prototype.load = function () { }); this.element.attr('src', this.element.attr('data-url')); + $.fn.matchHeight._update(); + $.fn.matchHeight._maintainScroll = true; }; jQuery(document).ready(function() { diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index 06b1b9e218..58f3a5fa53 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -168,6 +168,7 @@ + {% endcompress %} diff --git a/mayan/apps/appearance/templates/appearance/generic_list.html b/mayan/apps/appearance/templates/appearance/generic_list.html index 285f62c18c..3ad3138c75 100644 --- a/mayan/apps/appearance/templates/appearance/generic_list.html +++ b/mayan/apps/appearance/templates/appearance/generic_list.html @@ -12,6 +12,10 @@
{% endif %} - {% include 'appearance/generic_list_subtemplate.html' %} -{% endblock %} + {% if list_as_items %} + {% include 'appearance/generic_list_items_subtemplate.html' %} + {% else %} + {% include 'appearance/generic_list_subtemplate.html' %} + {% endif %} +{% endblock content %} diff --git a/mayan/apps/appearance/templates/appearance/generic_list_items_subtemplate.html b/mayan/apps/appearance/templates/appearance/generic_list_items_subtemplate.html new file mode 100644 index 0000000000..41a5f0fee1 --- /dev/null +++ b/mayan/apps/appearance/templates/appearance/generic_list_items_subtemplate.html @@ -0,0 +1,212 @@ +{% load i18n %} +{% load static %} + +{% load common_tags %} +{% load navigation_tags %} + + + +
+
+

+ {% if page_obj %} + {% if page_obj.paginator.num_pages != 1 %} + {% blocktrans with page_obj.start_index as start and page_obj.end_index as end and page_obj.paginator.object_list|length as total and page_obj.number as page_number and page_obj.paginator.num_pages as total_pages %}Total ({{ start }} - {{ end }} out of {{ total }}) (Page {{ page_number }} of {{ total_pages }}){% endblocktrans %} + {% else %} + {% blocktrans with page_obj.paginator.object_list|length as total %}Total: {{ total }}{% endblocktrans %} + {% endif %} + {% else %} + {% blocktrans with object_list|length as total %}Total: {{ total }}{% endblocktrans %} + {% endif %} +

+
+ +
+ +
+ {% if object_list %} + {% if not hide_multi_item_actions %} + {% get_multi_item_links_form object_list %} + {% endif %} + {% if multi_item_actions %} +
+ {{ multi_item_form }} +   +
+ {% endif %} + {% endif %} + +
+ {% if scrollable_content %} +
+ {% endif %} + + + +
+ {% for object in object_list %} +
+
+
+ + +
+
+ +
+
+ + + + +
+
+ + {% if not hide_columns %} + {% for column in object|get_source_columns %} +
{% source_column_resolve column=column %}{{ column_result }}
+ {% endfor %} + {% endif %} + + {% for column in extra_columns %} +
{{ column.name }}: {{ object|object_property:column.attribute }}
+ {% endfor %} + + {% if not hide_links %} +

+ {% get_menu_links 'object menu' source=object as resolved_links %} + {% for object_navigation_links in resolved_links %} + {% with 'true' as horizontal %} + {% include 'navigation/generic_navigation.html' %} + {% endwith %} + {% endfor %} +

+ {% endif %} + + +
+
+
+ {% empty %} +

{% trans 'No results' %}

+ + {% endfor %} +
+ +{% comment %} +
+ + + {% if not hide_header %} + + {% if multi_item_actions %} + + {% endif %} + + {% if not hide_object %} + + {% endif %} + + {% if not hide_columns %} + {% for column in object_list|get_source_columns %} + + {% endfor %} + {% endif %} + + {% for column in extra_columns %} + + {% endfor %} + + {% if not hide_links %} + + {% endif %} + + {% endif %} + {% for object in object_list %} + + + {% if multi_item_actions %} + + {% endif %} + {% if not hide_object %} + {% if main_object %} + {% with object|object_property:main_object as object %} + + {% endwith %} + {% else %} + + {% endif %} + {% endif %} + {% if not hide_columns %} + {% for column in object|get_source_columns %} + + {% endfor %} + {% endif %} + {% for column in extra_columns %} + + {% endfor %} + {% if not hide_links %} + + {% endif %} + + {% empty %} + + {% endfor %} + +
{% trans 'Identifier' %}{{ column.label }}{{ column.name }} 
+ {% if multi_select_item_properties %} + + {% else %} + + {% endif %} + {% if not hide_link %}{{ object }}{% else %}{{ object }}{% endif %}{% if not hide_link %}{{ object }}{% else %}{{ object }}{% endif %}{% source_column_resolve column=column %}{{ column_result }}{{ object|object_property:column.attribute }} + {% get_menu_links 'object menu' source=object as resolved_links %} + {% for object_navigation_links in resolved_links %} + {% with 'true' as horizontal %} + {% include 'navigation/generic_navigation.html' %} + {% endwith %} + {% endfor %} +
{% trans 'No results' %}
+
+{% endcomment %} + {% if scrollable_content %} +
+ {% endif %} +
+ {% include 'pagination/pagination.html' %} +
+
+
diff --git a/mayan/apps/cabinets/templates/cabinets/cabinet_details.html b/mayan/apps/cabinets/templates/cabinets/cabinet_details.html index 65098d5b34..3fc1a242f2 100644 --- a/mayan/apps/cabinets/templates/cabinets/cabinet_details.html +++ b/mayan/apps/cabinets/templates/cabinets/cabinet_details.html @@ -17,14 +17,18 @@
{% endif %}
-
+

{% trans 'Navigation:' %}

-
+
{% with document_list as object_list %} - {% include 'appearance/generic_list_subtemplate.html' %} + {% if list_as_items %} + {% include 'appearance/generic_list_items_subtemplate.html' %} + {% else %} + {% include 'appearance/generic_list_subtemplate.html' %} + {% endif %} {% endwith %}
diff --git a/mayan/apps/cabinets/views.py b/mayan/apps/cabinets/views.py index 012b28c3a4..d51b3d95ca 100644 --- a/mayan/apps/cabinets/views.py +++ b/mayan/apps/cabinets/views.py @@ -107,6 +107,7 @@ class CabinetDetailView(TemplateView): ), 'document_list': self.get_document_queryset(), 'hide_links': True, + 'list_as_items': True, 'object': cabinet, 'title': _('Details of cabinet: %s') % cabinet.get_full_path(), } diff --git a/mayan/apps/checkouts/views.py b/mayan/apps/checkouts/views.py index 71a4ed1e8b..1e512650c2 100644 --- a/mayan/apps/checkouts/views.py +++ b/mayan/apps/checkouts/views.py @@ -71,34 +71,38 @@ class CheckoutDocumentView(SingleObjectCreateView): class CheckoutListView(DocumentListView): - extra_context = { - 'title': _('Documents checked out'), - 'hide_links': True, - 'extra_columns': ( - { - 'name': _('User'), - 'attribute': encapsulate( - lambda document: document.checkout_info().user.get_full_name() or document.checkout_info().user - ) - }, - { - 'name': _('Checkout time and date'), - 'attribute': encapsulate( - lambda document: document.checkout_info().checkout_datetime - ) - }, - { - 'name': _('Checkout expiration'), - 'attribute': encapsulate( - lambda document: document.checkout_info().expiration_datetime - ) - }, - ), - } - def get_document_queryset(self): return DocumentCheckout.objects.checked_out_documents() + def get_extra_context(self): + context = super(CheckoutListView, self).get_extra_context() + context.update( + { + 'title': _('Documents checked out'), + 'extra_columns': ( + { + 'name': _('User'), + 'attribute': encapsulate( + lambda document: document.checkout_info().user.get_full_name() or document.checkout_info().user + ) + }, + { + 'name': _('Checkout time and date'), + 'attribute': encapsulate( + lambda document: document.checkout_info().checkout_datetime + ) + }, + { + 'name': _('Checkout expiration'), + 'attribute': encapsulate( + lambda document: document.checkout_info().expiration_datetime + ) + }, + ), + } + ) + return context + class CheckoutDetailView(SingleObjectDetailView): form_class = DocumentCheckoutDefailForm diff --git a/mayan/apps/document_indexing/templates/document_indexing/node_details.html b/mayan/apps/document_indexing/templates/document_indexing/node_details.html index b20d8fc17f..aff1e25cff 100644 --- a/mayan/apps/document_indexing/templates/document_indexing/node_details.html +++ b/mayan/apps/document_indexing/templates/document_indexing/node_details.html @@ -13,12 +13,16 @@ {% endif %}
-
+
{{ navigation }}
-
- {% include 'appearance/generic_list_subtemplate.html' %} +
+ {% if list_as_items %} + {% include 'appearance/generic_list_items_subtemplate.html' %} + {% else %} + {% include 'appearance/generic_list_subtemplate.html' %} + {% endif %}
diff --git a/mayan/apps/document_indexing/views.py b/mayan/apps/document_indexing/views.py index 87dbcd84b5..3a5ca04e7f 100644 --- a/mayan/apps/document_indexing/views.py +++ b/mayan/apps/document_indexing/views.py @@ -261,21 +261,28 @@ class IndexInstanceNodeView(DocumentListView): return self.index_instance_node.documents.all() def get_extra_context(self): - context = { - 'hide_links': True, - 'object': self.index_instance_node, - 'navigation': mark_safe( - _('Navigation: %s') % node_tree( - node=self.index_instance_node, user=self.request.user - ) - ), - 'title': _( - 'Contents for index: %s' - ) % self.index_instance_node.get_full_path(), - } + context = super(IndexInstanceNodeView, self).get_extra_context() + context.update( + { + 'object': self.index_instance_node, + 'navigation': mark_safe( + _('Navigation: %s') % node_tree( + node=self.index_instance_node, user=self.request.user + ) + ), + 'title': _( + 'Contents for index: %s' + ) % self.index_instance_node.get_full_path(), + } + ) if self.index_instance_node and not self.index_instance_node.index_template_node.link_documents: - context.update({'hide_object': True}) + context.update( + { + 'hide_object': True, + 'list_as_items': False, + } + ) return context diff --git a/mayan/apps/document_states/views.py b/mayan/apps/document_states/views.py index fd0ed0898e..4cbc79af5e 100644 --- a/mayan/apps/document_states/views.py +++ b/mayan/apps/document_states/views.py @@ -433,11 +433,14 @@ class WorkflowDocumentListView(DocumentListView): return Document.objects.filter(workflows__workflow=self.workflow) def get_extra_context(self): - return { - 'hide_links': True, - 'object': self.workflow, - 'title': _('Documents with the workflow: %s') % self.workflow - } + context = super(WorkflowDocumentListView, self).get_extra_context() + context.update( + { + 'object': self.workflow, + 'title': _('Documents with the workflow: %s') % self.workflow + } + ) + return context class WorkflowStateDocumentListView(DocumentListView): @@ -446,19 +449,22 @@ class WorkflowStateDocumentListView(DocumentListView): def get_extra_context(self): workflow_state = self.get_workflow_state() - return { - 'hide_links': True, - 'object': workflow_state, - 'navigation_object_list': ('object', 'workflow'), - 'workflow': WorkflowRuntimeProxy.objects.get( - pk=workflow_state.workflow.pk - ), - 'title': _( - 'Documents in the workflow "%s", state "%s"' - ) % ( - workflow_state.workflow, workflow_state - ) - } + context = super(WorkflowStateDocumentListView, self).get_extra_context() + context.update( + { + 'object': workflow_state, + 'navigation_object_list': ('object', 'workflow'), + 'workflow': WorkflowRuntimeProxy.objects.get( + pk=workflow_state.workflow.pk + ), + 'title': _( + 'Documents in the workflow "%s", state "%s"' + ) % ( + workflow_state.workflow, workflow_state + ) + } + ) + return context def get_workflow_state(self): workflow_state = get_object_or_404( diff --git a/mayan/apps/documents/settings.py b/mayan/apps/documents/settings.py index b298254dbf..88ad8d8cd7 100644 --- a/mayan/apps/documents/settings.py +++ b/mayan/apps/documents/settings.py @@ -21,7 +21,7 @@ setting_print_size = namespace.add_setting( global_name='DOCUMENTS_PRINT_SIZE', default='3600' ) setting_thumbnail_size = namespace.add_setting( - global_name='DOCUMENTS_THUMBNAIL_SIZE', default='50x50' + global_name='DOCUMENTS_THUMBNAIL_SIZE', default='300' ) setting_recent_count = namespace.add_setting( global_name='DOCUMENTS_RECENT_COUNT', default=40, diff --git a/mayan/apps/documents/views/document_type_views.py b/mayan/apps/documents/views/document_type_views.py index c9658ec06f..de853710df 100644 --- a/mayan/apps/documents/views/document_type_views.py +++ b/mayan/apps/documents/views/document_type_views.py @@ -32,11 +32,14 @@ class DocumentTypeDocumentListView(DocumentListView): return self.get_document_type().documents.all() def get_extra_context(self): - return { - 'hide_links': True, - 'object': self.get_document_type(), - 'title': _('Documents of type: %s') % self.get_document_type() - } + context = super(DocumentTypeDocumentListView, self).get_extra_context() + context.update( + { + 'object': self.get_document_type(), + 'title': _('Documents of type: %s') % self.get_document_type() + } + ) + return context class DocumentTypeListView(SingleObjectListView): diff --git a/mayan/apps/documents/views/document_views.py b/mayan/apps/documents/views/document_views.py index b7cd65315d..4734944d75 100644 --- a/mayan/apps/documents/views/document_views.py +++ b/mayan/apps/documents/views/document_views.py @@ -50,16 +50,18 @@ logger = logging.getLogger(__name__) class DocumentListView(SingleObjectListView): - extra_context = { - 'hide_links': True, - 'title': _('All documents'), - } - object_permission = permission_document_view def get_document_queryset(self): return Document.objects.defer('description', 'uuid', 'date_added', 'language', 'in_trash', 'deleted_date_time').all() + def get_extra_context(self): + return { + 'hide_links': True, + 'list_as_items': True, + 'title': _('All documents'), + } + def get_queryset(self): self.queryset = self.get_document_queryset().filter(is_stub=False) return super(DocumentListView, self).get_queryset() @@ -68,17 +70,21 @@ class DocumentListView(SingleObjectListView): class DeletedDocumentListView(DocumentListView): object_permission = None - extra_context = { - 'hide_link': True, - 'title': _('Documents in trash'), - } - def get_document_queryset(self): return AccessControlList.objects.filter_by_access( permission_document_view, self.request.user, queryset=DeletedDocument.trash.all() ) + def get_extra_context(self): + context = super(DeletedDocumentListView, self).get_extra_context() + context.update( + { + 'title': _('Documents in trash'), + } + ) + return context + class DeletedDocumentDeleteView(ConfirmView): extra_context = { @@ -186,6 +192,16 @@ class DocumentDuplicatesListView(DocumentListView): def get_document(self): return get_object_or_404(Document, pk=self.kwargs['pk']) + def get_extra_context(self): + context = super(DocumentDuplicatesListView, self).get_extra_context() + context.update( + { + 'object': self.get_document(), + 'title': _('Duplicates for document: %s') % self.get_document(), + } + ) + return context + def get_queryset(self): try: return DuplicatedDocument.objects.get( @@ -194,13 +210,6 @@ class DocumentDuplicatesListView(DocumentListView): except DuplicatedDocument.DoesNotExist: return Document.objects.none() - def get_extra_context(self): - return { - 'hide_links': True, - 'object': self.get_document(), - 'title': _('Duplicates for document: %s') % self.get_document(), - } - class DocumentEditView(SingleObjectEditView): form_class = DocumentForm @@ -374,14 +383,18 @@ class EmptyTrashCanView(ConfirmView): class RecentDocumentListView(DocumentListView): - extra_context = { - 'hide_links': True, - 'title': _('Recent documents'), - } - def get_document_queryset(self): return RecentDocument.objects.get_for_user(self.request.user) + def get_extra_context(self): + context = super(RecentDocumentListView, self).get_extra_context() + context.update( + { + 'title': _('Recent documents'), + } + ) + return context + class DocumentDownloadFormView(FormView): form_class = DocumentDownloadForm @@ -762,24 +775,28 @@ class DocumentPrint(FormView): class DuplicatedDocumentListView(DocumentListView): - extra_context = { - 'extra_columns': ( - { - 'name': _('Duplicates'), - 'attribute': encapsulate( - lambda document: DuplicatedDocument.objects.get( - document=document - ).documents.count() - ) - }, - ), - 'hide_links': True, - 'title': _('Duplicated documents') - } - def get_document_queryset(self): return Document.objects.filter( pk__in=DuplicatedDocument.objects.values_list( 'document_id', flat=True ) ) + + def get_extra_context(self): + context = super(DuplicatedDocumentListView, self).get_extra_context() + context.update( + { + 'extra_columns': ( + { + 'name': _('Duplicates'), + 'attribute': encapsulate( + lambda document: DuplicatedDocument.objects.get( + document=document + ).documents.count() + ) + }, + ), + 'title': _('Duplicated documents') + } + ) + return context diff --git a/mayan/apps/documents/widgets.py b/mayan/apps/documents/widgets.py index f4382dd695..d23de77c09 100644 --- a/mayan/apps/documents/widgets.py +++ b/mayan/apps/documents/widgets.py @@ -225,13 +225,13 @@ class InstanceImageWidget(object): ) result.append( - '
' - '' + '
' + '' '' '' '' '
' - ' '.format( width=self.width or '32', height=self.height or '32', diff --git a/mayan/apps/linking/views.py b/mayan/apps/linking/views.py index 2f82f757b9..c2201be3c4 100644 --- a/mayan/apps/linking/views.py +++ b/mayan/apps/linking/views.py @@ -75,11 +75,14 @@ class ResolvedSmartLinkView(DocumentListView): 'smart_link': self.smart_link.label, } - return { - 'hide_links': True, - 'object': self.document, - 'title': title, - } + context = super(ResolvedSmartLinkView, self).get_extra_context() + context.update( + { + 'object': self.document, + 'title': title, + } + ) + return context class SetupSmartLinkDocumentTypesView(AssignRemoveView): diff --git a/mayan/apps/tags/views.py b/mayan/apps/tags/views.py index 133a6caf68..a31e80437a 100644 --- a/mayan/apps/tags/views.py +++ b/mayan/apps/tags/views.py @@ -197,11 +197,14 @@ class TagTaggedItemListView(DocumentListView): return self.get_tag().documents.all() def get_extra_context(self): - return { - 'title': _('Documents with the tag: %s') % self.get_tag(), - 'hide_links': True, - 'object': self.get_tag(), - } + context = super(TagTaggedItemListView, self).get_extra_context() + context.update( + { + 'object': self.get_tag(), + 'title': _('Documents with the tag: %s') % self.get_tag(), + } + ) + return context class DocumentTagListView(TagListView): From ba6387021e08e992ed45ea658224fc89c4743995 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 13 Jul 2017 17:53:33 -0400 Subject: [PATCH 032/112] Fix document print view, page URL resolve. Signed-off-by: Roberto Rosario --- .../templates/documents/document_print.html | 2 +- mayan/apps/documents/tests/test_views.py | 35 +++++++++++++++---- mayan/apps/documents/views/document_views.py | 4 +-- 3 files changed, 31 insertions(+), 10 deletions(-) diff --git a/mayan/apps/documents/templates/documents/document_print.html b/mayan/apps/documents/templates/documents/document_print.html index 696abb1d21..53ebb7facf 100644 --- a/mayan/apps/documents/templates/documents/document_print.html +++ b/mayan/apps/documents/templates/documents/document_print.html @@ -4,6 +4,6 @@ {% block content_plain %} {% for page in pages %} - + {% endfor %} {% endblock %} diff --git a/mayan/apps/documents/tests/test_views.py b/mayan/apps/documents/tests/test_views.py index e9029fab1e..169f8b8833 100644 --- a/mayan/apps/documents/tests/test_views.py +++ b/mayan/apps/documents/tests/test_views.py @@ -10,16 +10,19 @@ from common.tests.test_views import GenericViewTestCase from converter.models import Transformation from converter.permissions import permission_transformation_delete -from ..literals import DEFAULT_DELETE_PERIOD, DEFAULT_DELETE_TIME_UNIT +from ..literals import ( + DEFAULT_DELETE_PERIOD, DEFAULT_DELETE_TIME_UNIT, PAGE_RANGE_ALL +) from ..models import DeletedDocument, Document, DocumentType 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_print, + 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 ( @@ -486,6 +489,24 @@ class DocumentsViewsTestCase(GenericDocumentViewTestCase): response, force_text(self.document.pages.first()), status_code=200 ) + def _request_print_view(self): + return self.post( + 'documents:document_print', args=( + self.document.pk, + ), data={ + 'page_group': PAGE_RANGE_ALL + }, follow=True + ) + + def test_document_print_view_no_permissions(self): + response = self._request_print_view() + self.assertEqual(response.status_code, 403) + + def test_document_print_view_with_permissions(self): + self.grant(permission=permission_document_print) + response = self._request_print_view() + self.assertEqual(response.status_code, 200) + class DocumentPageViewTestCase(GenericDocumentViewTestCase): def setUp(self): diff --git a/mayan/apps/documents/views/document_views.py b/mayan/apps/documents/views/document_views.py index 4734944d75..fd284baa49 100644 --- a/mayan/apps/documents/views/document_views.py +++ b/mayan/apps/documents/views/document_views.py @@ -769,9 +769,9 @@ class DocumentPrint(FormView): def get_template_names(self): if self.request.method == 'POST': - return ['documents/document_print.html'] + return ('documents/document_print.html',) else: - return [self.template_name] + return (self.template_name,) class DuplicatedDocumentListView(DocumentListView): From 5f9a0522360aab783615a6008e03e5323ca50052 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 13 Jul 2017 18:21:02 -0400 Subject: [PATCH 033/112] Improve wizard upload view test. Signed-off-by: Roberto Rosario --- mayan/apps/documents/tests/literals.py | 4 ++-- mayan/apps/sources/tests/test_views.py | 30 +++++++++++++------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/mayan/apps/documents/tests/literals.py b/mayan/apps/documents/tests/literals.py index 36f860848f..16a877af0e 100644 --- a/mayan/apps/documents/tests/literals.py +++ b/mayan/apps/documents/tests/literals.py @@ -15,8 +15,8 @@ __all__ = ( 'TEST_NON_ASCII_COMPRESSED_DOCUMENT_FILENAME', 'TEST_NON_ASCII_COMPRESSED_DOCUMENT_PATH', 'TEST_NON_ASCII_DOCUMENT_FILENAME', 'TEST_NON_ASCII_DOCUMENT_PATH', - 'TEST_SMALL_DOCUMENT_FILENAME', 'TEST_SMALL_DOCUMENT_PATH', - 'TEST_DOCUMENT_VERSION_COMMENT_EDITED', + 'TEST_SMALL_DOCUMENT_CHECKSUM', 'TEST_SMALL_DOCUMENT_FILENAME', + 'TEST_SMALL_DOCUMENT_PATH', 'TEST_DOCUMENT_VERSION_COMMENT_EDITED', ) # Filenames diff --git a/mayan/apps/sources/tests/test_views.py b/mayan/apps/sources/tests/test_views.py index ed2e5c2590..41d5131a16 100644 --- a/mayan/apps/sources/tests/test_views.py +++ b/mayan/apps/sources/tests/test_views.py @@ -12,8 +12,8 @@ from common.utils import fs_cleanup, mkdtemp from documents.models import Document, DocumentType from documents.permissions import permission_document_create from documents.tests import ( - TEST_DOCUMENT_PATH, TEST_SMALL_DOCUMENT_PATH, TEST_DOCUMENT_DESCRIPTION, - TEST_DOCUMENT_TYPE + TEST_DOCUMENT_DESCRIPTION, TEST_DOCUMENT_PATH, TEST_DOCUMENT_TYPE, + TEST_SMALL_DOCUMENT_CHECKSUM, TEST_SMALL_DOCUMENT_PATH ) from documents.tests.test_views import GenericDocumentViewTestCase @@ -40,17 +40,20 @@ class DocumentUploadTestCase(GenericDocumentViewTestCase): self.document.delete() - def test_upload_wizard_without_permission(self): - self.login_user() - - with open(TEST_DOCUMENT_PATH) as file_object: - response = self.post( + def _request_upload_wizard(self): + with open(TEST_SMALL_DOCUMENT_PATH) as file_object: + return self.post( 'sources:upload_interactive', args=(self.source.pk,), data={ 'source-file': file_object, 'document_type_id': self.document_type.pk, - } + }, follow=True ) + def test_upload_wizard_without_permission(self): + self.login_user() + + response = self._request_upload_wizard() + self.assertEqual(response.status_code, 403) self.assertEqual(Document.objects.count(), 0) @@ -59,16 +62,13 @@ class DocumentUploadTestCase(GenericDocumentViewTestCase): self.grant(permission_document_create) - with open(TEST_DOCUMENT_PATH) as file_object: - response = self.post( - 'sources:upload_interactive', args=(self.source.pk,), data={ - 'source-file': file_object, - 'document_type_id': self.document_type.pk, - }, follow=True - ) + response = self._request_upload_wizard() self.assertTrue(b'queued' in response.content) self.assertEqual(Document.objects.count(), 1) + self.assertEqual( + Document.objects.first().checksum, TEST_SMALL_DOCUMENT_CHECKSUM + ) def test_upload_wizard_with_document_type_access(self): """ From a026fc9ae6f44dc9db28c9c985e46debdb24f396 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 13 Jul 2017 18:21:36 -0400 Subject: [PATCH 034/112] Ignore permission denied and not found errors in the middleware logger. Signed-off-by: Roberto Rosario --- mayan/apps/common/middleware/error_logging.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/mayan/apps/common/middleware/error_logging.py b/mayan/apps/common/middleware/error_logging.py index 39058af612..a90490cb5c 100644 --- a/mayan/apps/common/middleware/error_logging.py +++ b/mayan/apps/common/middleware/error_logging.py @@ -2,12 +2,17 @@ from __future__ import unicode_literals import logging +from django.core.exceptions import PermissionDenied +from django.http import Http404 + logger = logging.getLogger(__name__) class ErrorLoggingMiddleware(object): def process_exception(self, request, exception): - logger.exception( - 'Exception caught by request middleware; %s, %s', request, - exception - ) + if not isinstance(exception, (PermissionDenied, Http404)): + # Don't log non critical exceptions + logger.exception( + 'Exception caught by request middleware; %s, %s', request, + exception + ) From 32056761c8e8e9eabf22049edf2e1bba5bc7de05 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 13 Jul 2017 21:27:10 -0400 Subject: [PATCH 035/112] Sort settings by namespace label and by global name second. Signed-off-by: Roberto Rosario --- HISTORY.rst | 1 + mayan/apps/smart_settings/classes.py | 12 ++++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 2c240ce5e5..8643eb5a80 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -9,6 +9,7 @@ Defaults to mayan/error.log. - Add support logging request exceptions. - Add document list item view. +- Sort setting by namespace label and by global name second. 2.5.2 (2017-07-08) ================== diff --git a/mayan/apps/smart_settings/classes.py b/mayan/apps/smart_settings/classes.py index b7f89c26c8..28cc3e668b 100644 --- a/mayan/apps/smart_settings/classes.py +++ b/mayan/apps/smart_settings/classes.py @@ -32,7 +32,7 @@ class Namespace(object): @classmethod def get_all(cls): - return cls._registry.values() + return sorted(cls._registry.values(), key=lambda x: x.label) @classmethod def get(cls, name): @@ -54,15 +54,19 @@ class Namespace(object): self.name = name self.label = label self.__class__._registry[name] = self - self.settings = [] + self._settings = [] def add_setting(self, **kwargs): return Setting(namespace=self, **kwargs) def invalidate_cache(self): - for setting in self.settings: + for setting in self._settings: setting.invalidate_cache() + @property + def settings(self): + return sorted(self._settings, key=lambda x: x.global_name) + @python_2_unicode_compatible class Setting(object): @@ -88,7 +92,7 @@ class Setting(object): self.default = default self.help_text = help_text self.loaded = False - namespace.settings.append(self) + namespace._settings.append(self) self.__class__._registry[global_name] = self def __str__(self): From eff548d2e8928cd5e506a523feedca4899ac3a69 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 13 Jul 2017 21:34:43 -0400 Subject: [PATCH 036/112] Sort indexes by label. Signed-off-by: Roberto Rosario --- HISTORY.rst | 1 + mayan/apps/document_indexing/models.py | 25 +++++++++++++------------ 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8643eb5a80..7d2f8bd330 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -10,6 +10,7 @@ - Add support logging request exceptions. - Add document list item view. - Sort setting by namespace label and by global name second. +- Sort indexes by label. 2.5.2 (2017-07-08) ================== diff --git a/mayan/apps/document_indexing/models.py b/mayan/apps/document_indexing/models.py index a785669604..27106b3557 100644 --- a/mayan/apps/document_indexing/models.py +++ b/mayan/apps/document_indexing/models.py @@ -51,6 +51,11 @@ class Index(models.Model): objects = IndexManager() + class Meta: + ordering = ('label',) + verbose_name = _('Index') + verbose_name_plural = _('Indexes') + def __str__(self): return self.label @@ -113,10 +118,6 @@ class Index(models.Model): # associated with this index. self.index_document(document=document) - class Meta: - verbose_name = _('Index') - verbose_name_plural = _('Indexes') - class IndexInstance(Index): def get_instance_node_count(self): @@ -173,6 +174,10 @@ class IndexTemplateNode(MPTTModel): verbose_name=_('Link documents') ) + class Meta: + verbose_name = _('Index node template') + verbose_name_plural = _('Indexes node template') + def __str__(self): if self.is_root_node(): return ugettext('Root') @@ -264,10 +269,6 @@ class IndexTemplateNode(MPTTModel): if acquire_lock: lock.release() - class Meta: - verbose_name = _('Index node template') - verbose_name_plural = _('Indexes node template') - @python_2_unicode_compatible class IndexInstanceNode(MPTTModel): @@ -286,6 +287,10 @@ class IndexInstanceNode(MPTTModel): objects = IndexInstanceNodeManager() + class Meta: + verbose_name = _('Index node instance') + verbose_name_plural = _('Indexes node instances') + def __str__(self): return self.value @@ -366,10 +371,6 @@ class IndexInstanceNode(MPTTModel): if acquire_lock: lock.release() - class Meta: - verbose_name = _('Index node instance') - verbose_name_plural = _('Indexes node instances') - class DocumentIndexInstanceNode(IndexInstanceNode): objects = DocumentIndexInstanceNodeManager() From aa3acdb99c8fc325287096d7c8ad296317363222 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 14 Jul 2017 03:28:12 -0400 Subject: [PATCH 037/112] Add cabinet list view tests. Signed-off-by: Roberto Rosario --- mayan/apps/cabinets/tests/test_views.py | 30 +++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/mayan/apps/cabinets/tests/test_views.py b/mayan/apps/cabinets/tests/test_views.py index afc396908e..8fde2589a3 100644 --- a/mayan/apps/cabinets/tests/test_views.py +++ b/mayan/apps/cabinets/tests/test_views.py @@ -17,7 +17,7 @@ class CabinetViewTestCase(GenericDocumentViewTestCase): super(CabinetViewTestCase, self).setUp() self.login_user() - def _create_cabinet(self, label): + def _request_create_cabinet(self, label): return self.post( 'cabinets:cabinet_create', data={ 'label': TEST_CABINET_LABEL @@ -25,7 +25,7 @@ class CabinetViewTestCase(GenericDocumentViewTestCase): ) def test_cabinet_create_view_no_permission(self): - response = self._create_cabinet(label=TEST_CABINET_LABEL) + response = self._request_create_cabinet(label=TEST_CABINET_LABEL) self.assertEquals(response.status_code, 403) self.assertEqual(Cabinet.objects.count(), 0) @@ -33,7 +33,7 @@ class CabinetViewTestCase(GenericDocumentViewTestCase): def test_cabinet_create_view_with_permission(self): self.grant(permission=permission_cabinet_create) - response = self._create_cabinet(label=TEST_CABINET_LABEL) + response = self._request_create_cabinet(label=TEST_CABINET_LABEL) self.assertEqual(response.status_code, 302) self.assertEqual(Cabinet.objects.count(), 1) @@ -42,7 +42,7 @@ class CabinetViewTestCase(GenericDocumentViewTestCase): def test_cabinet_create_duplicate_view_with_permission(self): cabinet = Cabinet.objects.create(label=TEST_CABINET_LABEL) self.grant(permission=permission_cabinet_create) - response = self._create_cabinet(label=TEST_CABINET_LABEL) + response = self._request_create_cabinet(label=TEST_CABINET_LABEL) # HTTP 200 with error message self.assertEqual(response.status_code, 200) @@ -205,3 +205,25 @@ class CabinetViewTestCase(GenericDocumentViewTestCase): self.assertEqual(response.status_code, 302) cabinet.refresh_from_db() self.assertEqual(cabinet.documents.count(), 0) + + def _create_cabinet(self): + self.cabinet = Cabinet.objects.create(label=TEST_CABINET_LABEL) + + def _request_cabinet_list(self): + return self.get('cabinets:cabinet_list') + + def test_cabinet_list_view_no_permission(self): + self._create_cabinet() + response = self._request_cabinet_list() + self.assertNotContains( + response, text=self.cabinet.label, status_code=200 + ) + + def test_cabinet_list_view_with_permission(self): + self._create_cabinet() + self.grant(permission=permission_cabinet_view) + response = self._request_cabinet_list() + + self.assertContains( + response, text=self.cabinet.label, status_code=200 + ) From 076c7804e73bb3712291c50977660204d7b275e0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 14 Jul 2017 03:51:49 -0400 Subject: [PATCH 038/112] Don't display tags in the cabinets detail view. GitLab #397. Signed-off-by: Roberto Rosario --- mayan/apps/cabinets/templates/cabinets/cabinet_details.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/cabinets/templates/cabinets/cabinet_details.html b/mayan/apps/cabinets/templates/cabinets/cabinet_details.html index 3fc1a242f2..13885bd24d 100644 --- a/mayan/apps/cabinets/templates/cabinets/cabinet_details.html +++ b/mayan/apps/cabinets/templates/cabinets/cabinet_details.html @@ -5,7 +5,7 @@ {% load navigation_tags %} -{% block title %}{% include 'appearance/calculate_form_title.html' %}{% endblock %} +{% block title %}{% include 'appearance/calculate_form_title.html' with html_title=True %}{% endblock %} {% block stylesheets %} From e04e3040bb22e8cd925a9ed5186760ef4164a102 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 14 Jul 2017 05:13:32 -0400 Subject: [PATCH 039/112] Allow model ACL inheritance related to be a callable. If it is a callable iterative queryset filter will be performed. Signed-off-by: Roberto Rosario --- mayan/apps/acls/managers.py | 53 +++++++++++++++++++++++++------------ 1 file changed, 36 insertions(+), 17 deletions(-) diff --git a/mayan/apps/acls/managers.py b/mayan/apps/acls/managers.py index bfe0c5dd0c..91bc944fea 100644 --- a/mayan/apps/acls/managers.py +++ b/mayan/apps/acls/managers.py @@ -37,7 +37,7 @@ class AccessControlListManager(models.Manager): except KeyError: return StoredPermission.objects.none() else: - parent_object = getattr(instance, parent_accessor) + parent_object = return_attrib(instance, parent_accessor) content_type = ContentType.objects.get_for_model(parent_object) try: return self.get( @@ -139,22 +139,41 @@ class AccessControlListManager(models.Manager): instance = queryset.first() if instance: parent_object = getattr(instance, parent_accessor) - parent_content_type = ContentType.objects.get_for_model( - parent_object - ) - parent_queryset = self.filter( - content_type=parent_content_type, role__in=user_roles, - permissions=permission.stored_permission - ) - parent_acl_query = Q( - **{ - '{}__pk__in'.format( - parent_accessor - ): parent_queryset.values_list( - 'object_id', flat=True - ) - } - ) + + try: + # Try to see if parent_object is a function + parent_object() + except TypeError: + # Is not a function, try it as a field + parent_content_type = ContentType.objects.get_for_model( + parent_object + ) + parent_queryset = self.filter( + content_type=parent_content_type, role__in=user_roles, + permissions=permission.stored_permission + ) + parent_acl_query = Q( + **{ + '{}__pk__in'.format( + parent_accessor + ): parent_queryset.values_list( + 'object_id', flat=True + ) + } + ) + else: + # Is a function. Can't perform Q object filtering. + # Perform iterative filtering. + result = [] + for entry in queryset: + try: + self.check_access(permissions=permission, user=user, obj=entry) + except PermissionDenied: + pass + else: + result.append(entry.pk) + + return queryset.filter(pk__in=result) else: parent_acl_query = Q() From 79ecc3b43287209ff07f14257bf432a19cdd9a07 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 14 Jul 2017 05:16:14 -0400 Subject: [PATCH 040/112] Enable cabinet ACL inheritance from it's root. Signed-off-by: Roberto Rosario --- mayan/apps/cabinets/apps.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mayan/apps/cabinets/apps.py b/mayan/apps/cabinets/apps.py index 5178a92298..c078a4a86e 100644 --- a/mayan/apps/cabinets/apps.py +++ b/mayan/apps/cabinets/apps.py @@ -61,9 +61,13 @@ class CabinetsApp(MayanAppConfig): model=Cabinet, permissions=( permission_acl_edit, permission_acl_view, permission_cabinet_delete, permission_cabinet_edit, - permission_cabinet_view + permission_cabinet_view, permission_cabinet_add_document, + permission_cabinet_remove_document ) ) + ModelPermission.register_inheritance( + model=Cabinet, related='get_root', + ) document_page_search.add_model_field( field='document_version__document__cabinets__label', From 0faa2117ec1c0b7383a91c18952884a293b4726e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 14 Jul 2017 05:17:29 -0400 Subject: [PATCH 041/112] Perform check for cabinet add and remove permission to documents too. Signed-off-by: Roberto Rosario --- mayan/apps/cabinets/views.py | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/mayan/apps/cabinets/views.py b/mayan/apps/cabinets/views.py index d51b3d95ca..3d71d9e90b 100644 --- a/mayan/apps/cabinets/views.py +++ b/mayan/apps/cabinets/views.py @@ -145,7 +145,6 @@ class CabinetEditView(SingleObjectEditView): class CabinetListView(SingleObjectListView): - model = Cabinet object_permission = permission_cabinet_view def get_extra_context(self): @@ -185,6 +184,7 @@ class DocumentCabinetListView(CabinetListView): class DocumentAddToCabinetView(MultipleObjectFormActionView): form_class = CabinetListForm model = Document + object_permission = permission_cabinet_add_document success_message = _( 'Add to cabinet request performed on %(count)d document' ) @@ -198,10 +198,12 @@ class DocumentAddToCabinetView(MultipleObjectFormActionView): result = { 'submit_label': _('Add'), 'title': ungettext( - 'Add document to cabinets', - 'Add documents to cabinets', - queryset.count() - ) + singular='Add %(count)d document to cabinets', + plural='Add %(count)d documents to cabinets', + number=queryset.count() + ) % { + 'count': queryset.count(), + } } if queryset.count() == 1: @@ -269,6 +271,7 @@ class DocumentAddToCabinetView(MultipleObjectFormActionView): class DocumentRemoveFromCabinetView(MultipleObjectFormActionView): form_class = CabinetListForm model = Document + object_permission = permission_cabinet_remove_document success_message = _( 'Remove from cabinet request performed on %(count)d document' ) @@ -282,10 +285,12 @@ class DocumentRemoveFromCabinetView(MultipleObjectFormActionView): result = { 'submit_label': _('Remove'), 'title': ungettext( - 'Remove document from cabinets', - 'Remove documents from cabinets', - queryset.count() - ) + singular='Remove %(count)d document from cabinets', + plural='Remove %(count)d documents from cabinets', + number=queryset.count() + ) % { + 'count': queryset.count(), + } } if queryset.count() == 1: @@ -293,7 +298,7 @@ class DocumentRemoveFromCabinetView(MultipleObjectFormActionView): { 'object': queryset.first(), 'title': _( - 'Remove document "%s" to cabinets' + 'Remove document "%s" from cabinets' ) % queryset.first() } ) From fb520d6f92c4537b4f449d04d3071cc7fc2d084b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 14 Jul 2017 05:19:50 -0400 Subject: [PATCH 042/112] Add view mixin to make sure a subclass can't override its parent's get_queryset method. Signed-off-by: Roberto Rosario --- mayan/apps/common/generics.py | 9 ++++---- mayan/apps/common/mixins.py | 24 ++++++++++++++++++-- mayan/apps/documents/views/document_views.py | 3 +-- mayan/apps/linking/views.py | 3 +-- mayan/apps/tags/views.py | 3 +-- 5 files changed, 29 insertions(+), 13 deletions(-) diff --git a/mayan/apps/common/generics.py b/mayan/apps/common/generics.py index b4dd86c7a0..c8142852cb 100644 --- a/mayan/apps/common/generics.py +++ b/mayan/apps/common/generics.py @@ -25,7 +25,7 @@ from .mixins import ( DeleteExtraDataMixin, DynamicFormViewMixin, ExtraContextMixin, FormExtraKwargsMixin, MultipleObjectMixin, ObjectActionMixin, ObjectListPermissionFilterMixin, ObjectNameMixin, - ObjectPermissionCheckMixin, RedirectionMixin, + ObjectPermissionCheckMixin, PreserveGetQuerysetMixin, RedirectionMixin, ViewPermissionCheckMixin ) @@ -282,12 +282,11 @@ class MultiFormView(DjangoFormView): return self.forms_invalid(forms) -class MultipleObjectFormActionView(ObjectActionMixin, MultipleObjectMixin, FormExtraKwargsMixin, ViewPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, DjangoFormView): +class MultipleObjectFormActionView(PreserveGetQuerysetMixin, ObjectActionMixin, MultipleObjectMixin, FormExtraKwargsMixin, ViewPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, DjangoFormView): """ This view will present a form and upon receiving a POST request will perform an action on an object or queryset """ - template_name = 'appearance/generic_form.html' def form_valid(self, form): @@ -295,7 +294,7 @@ class MultipleObjectFormActionView(ObjectActionMixin, MultipleObjectMixin, FormE return super(MultipleObjectFormActionView, self).form_valid(form=form) -class MultipleObjectConfirmActionView(ObjectActionMixin, MultipleObjectMixin, ViewPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, TemplateView): +class MultipleObjectConfirmActionView(ObjectActionMixin, MultipleObjectMixin, ObjectListPermissionFilterMixin, ViewPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, TemplateView): template_name = 'appearance/generic_confirm.html' def post(self, request, *args, **kwargs): @@ -459,7 +458,7 @@ class SingleObjectDynamicFormEditView(DynamicFormViewMixin, SingleObjectEditView pass -class SingleObjectListView(PaginationMixin, ViewPermissionCheckMixin, ObjectListPermissionFilterMixin, ExtraContextMixin, RedirectionMixin, ListView): +class SingleObjectListView(PreserveGetQuerysetMixin, PaginationMixin, ViewPermissionCheckMixin, ObjectListPermissionFilterMixin, ExtraContextMixin, RedirectionMixin, ListView): template_name = 'appearance/generic_list.html' def get_paginate_by(self, queryset): diff --git a/mayan/apps/common/mixins.py b/mayan/apps/common/mixins.py index 712b22c343..6a302880d4 100644 --- a/mayan/apps/common/mixins.py +++ b/mayan/apps/common/mixins.py @@ -18,8 +18,8 @@ __all__ = ( 'DeleteExtraDataMixin', 'DynamicFormViewMixin', 'ExtraContextMixin', 'FormExtraKwargsMixin', 'MultipleObjectMixin', 'ObjectActionMixin', 'ObjectListPermissionFilterMixin', 'ObjectNameMixin', - 'ObjectPermissionCheckMixin', 'RedirectionMixin', - 'ViewPermissionCheckMixin' + 'ObjectPermissionCheckMixin', 'PreserveGetQuerysetMixin', + 'RedirectionMixin', 'ViewPermissionCheckMixin' ) @@ -266,6 +266,26 @@ class ObjectPermissionCheckMixin(object): ).dispatch(request, *args, **kwargs) +class PreserveGetQuerysetMixin(object): + """ + Allows class based views to define a get_queryset method that doesn't + overrided the parent classe's get_queryset method + """ + def __init__(self, *args, **kwargs): + result = super(PreserveGetQuerysetMixin, self).__init__(*args, **kwargs) + if not hasattr(self.__class__, 'original_get_queryset'): + if not self.__class__.mro()[0].get_queryset == PreserveGetQuerysetMixin.get_queryset: + setattr(self.__class__, 'original_get_queryset', self.__class__.mro()[0].get_queryset) + self.__class__.mro()[0].get_queryset = PreserveGetQuerysetMixin.get_queryset + return result + + def get_queryset(self, *args, **kwargs): + if hasattr(self.__class__, 'original_get_queryset'): + self.queryset = self.__class__.original_get_queryset(self, *args, **kwargs) + + return super(PreserveGetQuerysetMixin, self).get_queryset(*args, **kwargs) + + class RedirectionMixin(object): post_action_redirect = None action_cancel_redirect = None diff --git a/mayan/apps/documents/views/document_views.py b/mayan/apps/documents/views/document_views.py index fd284baa49..73a05b6391 100644 --- a/mayan/apps/documents/views/document_views.py +++ b/mayan/apps/documents/views/document_views.py @@ -63,8 +63,7 @@ class DocumentListView(SingleObjectListView): } def get_queryset(self): - self.queryset = self.get_document_queryset().filter(is_stub=False) - return super(DocumentListView, self).get_queryset() + return self.get_document_queryset().filter(is_stub=False) class DeletedDocumentListView(DocumentListView): diff --git a/mayan/apps/linking/views.py b/mayan/apps/linking/views.py index c2201be3c4..776a84d1a1 100644 --- a/mayan/apps/linking/views.py +++ b/mayan/apps/linking/views.py @@ -133,8 +133,7 @@ class SmartLinkListView(SingleObjectListView): } def get_queryset(self): - self.queryset = self.get_smart_link_queryset() - return super(SmartLinkListView, self).get_queryset() + return self.get_smart_link_queryset() def get_smart_link_queryset(self): return SmartLink.objects.all() diff --git a/mayan/apps/tags/views.py b/mayan/apps/tags/views.py index a31e80437a..9c378ad38a 100644 --- a/mayan/apps/tags/views.py +++ b/mayan/apps/tags/views.py @@ -182,8 +182,7 @@ class TagListView(SingleObjectListView): } def get_queryset(self): - self.queryset = self.get_tag_queryset() - return super(TagListView, self).get_queryset() + return self.get_tag_queryset() def get_tag_queryset(self): return Tag.objects.all() From bdc69b9860aa094322644010e6b930abe252efd2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 14 Jul 2017 05:23:00 -0400 Subject: [PATCH 043/112] Update changelog. Bump version to 2.6 beta1. Signed-off-by: Roberto Rosario --- HISTORY.rst | 6 ++++-- mayan/__init__.py | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 7d2f8bd330..c429ea317f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,5 @@ -2.5.3 (2017-07-XX) -================== +2.6 (2017-07-XX) +================ - Fix HTML mark up in window title. GitLab #397. - Add support for emailing documents to a recipient list. GitLab #396. - Backport metadata widget changes from @Macrobb. GitLab #377. @@ -11,6 +11,8 @@ - Add document list item view. - Sort setting by namespace label and by global name second. - Sort indexes by label. +- Fix cabinets permission and access control checking. +- The permission to add or remove documents to cabinets now applies to documents too. 2.5.2 (2017-07-08) ================== diff --git a/mayan/__init__.py b/mayan/__init__.py index bdd20405f4..fa9fa8e0b1 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '2.5.2' -__build__ = 0x020502 +__version__ = '2.6beta1' +__build__ = 0x020600 __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' __description__ = 'Free Open Source Electronic Document Management System' From a2a089299f5719739fb5aee6a70e76b48100a6dd Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 14 Jul 2017 05:30:43 -0400 Subject: [PATCH 044/112] Equalize dashboard widgets height. Signed-off-by: Roberto Rosario --- HISTORY.rst | 1 + .../appearance/templates/appearance/dashboard_widget.html | 2 +- mayan/apps/appearance/templates/appearance/home.html | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index c429ea317f..1363449538 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -13,6 +13,7 @@ - Sort indexes by label. - Fix cabinets permission and access control checking. - The permission to add or remove documents to cabinets now applies to documents too. +- Equalize dashboard widgets heights. 2.5.2 (2017-07-08) ================== diff --git a/mayan/apps/appearance/templates/appearance/dashboard_widget.html b/mayan/apps/appearance/templates/appearance/dashboard_widget.html index 0ea04e7f5d..29c521f514 100644 --- a/mayan/apps/appearance/templates/appearance/dashboard_widget.html +++ b/mayan/apps/appearance/templates/appearance/dashboard_widget.html @@ -1,6 +1,6 @@ {% load i18n %} -
+
diff --git a/mayan/apps/appearance/templates/appearance/home.html b/mayan/apps/appearance/templates/appearance/home.html index f51286aa98..6960378faf 100644 --- a/mayan/apps/appearance/templates/appearance/home.html +++ b/mayan/apps/appearance/templates/appearance/home.html @@ -8,6 +8,14 @@ {% block title %}{% trans 'Dashboard' %}{% endblock %} +{% block javascript %} + +{% endblock javascript %} + {% block content %}

{% trans 'Dashboard' %} From 3f348c626053ebc4b1e172561d4630d69afd1fb6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 14 Jul 2017 05:31:08 -0400 Subject: [PATCH 045/112] Don't load matchHeight libary now that it is loaded in base.html. Signed-off-by: Roberto Rosario --- .../appearance/templates/appearance/generic_list_horizontal.html | 1 - 1 file changed, 1 deletion(-) diff --git a/mayan/apps/appearance/templates/appearance/generic_list_horizontal.html b/mayan/apps/appearance/templates/appearance/generic_list_horizontal.html index 3f04c576a0..332bd4ba98 100644 --- a/mayan/apps/appearance/templates/appearance/generic_list_horizontal.html +++ b/mayan/apps/appearance/templates/appearance/generic_list_horizontal.html @@ -27,7 +27,6 @@ {% block javascript %} -