Merge remote-tracking branch 'origin/master' into merge_master

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2017-06-07 13:56:35 -04:00
1405 changed files with 15507 additions and 14544 deletions

View File

@@ -1,3 +1,5 @@
dist: trusty
sudo: required
language: python
python:
- 2.7
@@ -8,7 +10,7 @@ env:
- DB=sqlite
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-dev gcc tesseract-ocr tesseract-ocr-deu unpaper ghostscript libjpeg-dev libpng-dev poppler-utils libreoffice
- sudo apt-get install -qq python-dev python-pip gcc tesseract-ocr tesseract-ocr-deu ghostscript libjpeg-dev libpng-dev libtiff-dev poppler-utils libreoffice
install:
- "pip install -r requirements/testing.txt"
- if [[ $DB == mysql ]]; then pip install -q mysql-python; fi

View File

@@ -4,12 +4,21 @@
- Content windows appearance changes
- Add new document's version list view permission
2.2.1 (2017-05-25)
==================
2.3 (2017-05-XX)
================
- Allow for bigger indexing expression templates.
- Auto select checkbox when updating metadata values. GitLab issue #371.
- Added support for passing the options allow-other and allow-root to the
FUSE index mirror. GitLab issue #385
- Add support for check for the latest released version of Mayan from the
About menu.
- Support for rebuilding specific indexes. GitLab issue #372.
- Rewrite document indexing code to be faster and use less locking.
- Use a predefined file path for the file lock.
- Catch documents with not document version when displaying their thumbnails.
- Document page navigation fix when using Mayan as a sub URL app.
- Add support for indexing on workflow state changes.
- Add search model list API endpoint.
2.2 (2017-04-26)
================

View File

@@ -142,6 +142,14 @@ docker_services_frontend:
docker_services_worker:
./manage.py celery worker --settings=mayan.settings.testing.docker -B -l INFO -O fair
docker_service_mysql_on:
docker run -d --name mysql -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=True -e MYSQL_DATABASE=mayan_edms mysql
while ! nc -z 127.0.0.1 3306; do sleep 1; done
docker_service_mysql_off:
docker stop mysql
docker rm mysql
# Security
safety_check:

View File

@@ -18,6 +18,27 @@ Changes
will select the adjacent checkbox.
- Support for passing the FUSE option `allow-other` and `allow-root` was added
to the index mirroring management command.
- Added support for checking for the latest released version of Mayan from the
About menu.
- Added support for rebuilding specific indexes instead of only being able to
rebuild all index. GitLab issue #372.
- Rewrite document indexing code to be faster and use less locking. Thanks to
Macrobb Simpson (@Macrobb) for the initial implementation.
- Use a predefined file path for the file lock.
- Catch documents with not document version when displaying their thumbnails.
- Add custom script_prefix aware resolve function and use it for the
document page navigation views. Fixes an issue when Mayan is installed
as a sub URL app. Thanks to Gustavo Teixeira(@gsteixei) for the issue and
investigation.
- Support was added to update document indexes after workflow state changes.
- An helper was added to access a documents workflow by name. To this end
a new field was added to the Workflow class called `Internal name`.
This new field makes it much easier to get a document's workflow instance.
If for example a document has a workflow called `Publish` with the internal
name `publish_workflow`, it will be accessible in the indexing template as
{{ document.workflow.publish_workflow }}. The latest state of the workflow
can be accessed using {{ document.workflow.publish_workflow.get_current_state }}.
- Added a new API endpoint to display a list of all the available search models.
Removals
--------
@@ -73,6 +94,8 @@ Bugs fixed or issues closed
===========================
* `GitLab issue #371 <https://gitlab.com/mayan-edms/mayan-edms/issues/371>`_ Auto select checkbox when updating metadata
* `GitLab issue #372 <https://gitlab.com/mayan-edms/mayan-edms/issues/372>`_ (Feature request) Allow 'rebuild index' to rebuild only a selected index
* `GitLab issue #383 <https://gitlab.com/mayan-edms/mayan-edms/issues/383>`_ Page not found when deployed to sub-uri
* `GitLab issue #385 <https://gitlab.com/mayan-edms/mayan-edms/issues/385>`_ mountindex: how to specify FUSE mount option allow_other?
.. _PyPI: https://pypi.python.org/pypi/mayan-edms/

View File

@@ -22,7 +22,7 @@ versions of the documentation contain the release notes for any later releases.
.. toctree::
:maxdepth: 1
2.2.1
2.3
2.2
2.1.11
2.1.10

View File

@@ -1,8 +1,8 @@
from __future__ import unicode_literals
__title__ = 'Mayan EDMS'
__version__ = '2.2'
__build__ = 0x020200
__version__ = '2.3'
__build__ = 0x020300
__author__ = 'Roberto Rosario'
__author_email__ = 'roberto.rosario@mayan-edms.com'
__description__ = 'Free Open Source Electronic Document Management System'

View File

@@ -1,33 +1,34 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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"
msgstr "ACLs"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "الصلاحيات"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +37,6 @@ msgid "Delete"
msgstr ""
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +44,20 @@ msgstr ""
msgid "Insufficient access."
msgstr "Insufficient access."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr ""
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr ""
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "لا شيء"
@@ -91,7 +90,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +110,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,33 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
msgid "ACLs"
msgstr "ACLs"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Разрешения"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +36,6 @@ msgid "Delete"
msgstr ""
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +43,20 @@ msgstr ""
msgid "Insufficient access."
msgstr "Недостатъчен достъп."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "достъп вписване"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "достъп вписвания"
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Няма"
@@ -91,7 +89,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +109,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,33 +1,34 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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"
msgstr "ACLs"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Dozvole"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +37,6 @@ msgid "Delete"
msgstr ""
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +44,20 @@ msgstr ""
msgid "Insufficient access."
msgstr "Nedovoljne dozvole."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr ""
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr ""
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Nijedno"
@@ -91,7 +90,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +110,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,33 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
msgid "ACLs"
msgstr "ACLs"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr ""
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +36,6 @@ msgid "Delete"
msgstr ""
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +43,20 @@ msgstr ""
msgid "Insufficient access."
msgstr ""
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr ""
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr ""
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Ingen"
@@ -91,7 +89,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +109,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,7 +1,7 @@
# SOME 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 <berny@bernhard-marx.de>, 2015
@@ -11,26 +11,26 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-0400\n"
"PO-Revision-Date: 2017-04-24 23:10+0000\n"
"Last-Translator: Jesaja Everling <jeverling@gmail.com>\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
msgid "ACLs"
msgstr "Zugriffsberechtigungen"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Berechtigungen"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
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"
@@ -47,21 +46,21 @@ msgstr "Neue Berechtigung"
msgid "Insufficient access."
msgstr "Fehlende Berechtigung"
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "Berechtigungseintrag"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "Berechtigungseinträge"
#: models.py:49
#: 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:66
#: models.py:74
msgid "None"
msgstr "Keine"
@@ -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,7 +102,9 @@ 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."
@@ -115,7 +117,6 @@ msgstr "Neue Zugriffsberechtigung für %s"
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
msgstr "ACL \"%s\" löschen"
@@ -139,7 +140,8 @@ msgstr "Berechtigungen von Rolle \"%(role)s\" für \"%(object)s\""
#: views.py:226
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"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-0400\n"
"PO-Revision-Date: 2012-02-02 18:20+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
@@ -22,12 +22,12 @@ msgstr ""
msgid "ACLs"
msgstr "ACLs"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
#, fuzzy
msgid "Permissions"
msgstr "permissions"
#: apps.py:29 models.py:38
#: apps.py:29 models.py:46
#, fuzzy
#| msgid "Roles"
msgid "Role"
@@ -47,23 +47,23 @@ msgstr "View ACLs"
msgid "Insufficient access."
msgstr "Insufficient access."
#: models.py:44
#: models.py:52
#, fuzzy
msgid "Access entry"
msgstr "access entry"
#: models.py:45
#: models.py:53
#, fuzzy
msgid "Access entries"
msgstr "access entries"
#: models.py:49
#: models.py:57
#, fuzzy, python-format
#| msgid "Permission \"%(permission)s\" granted to %(actor)s for %(object)s."
msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\""
msgstr "Permission \"%(permission)s\" granted to %(actor)s for %(object)s."
#: models.py:66
#: models.py:74
msgid "None"
msgstr ""

View File

@@ -6,13 +6,13 @@
# Translators:
# jmcainzos <jmcainzos@vodafone.es>, 2015
# Roberto Rosario, 2015
# Roberto Rosario, 2015-2016
# Roberto Rosario, 2015-2017
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"PO-Revision-Date: 2017-04-23 03:03+0000\n"
"POT-Creation-Date: 2017-05-28 15:48-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"
"MIME-Version: 1.0\n"
@@ -25,11 +25,11 @@ msgstr ""
msgid "ACLs"
msgstr "LCAs"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Permisos"
#: apps.py:29 models.py:38
#: apps.py:29 models.py:46
#| msgid "Roles"
msgid "Role"
msgstr "Rol"
@@ -47,21 +47,21 @@ msgstr "Nueva LCA"
msgid "Insufficient access."
msgstr "Acceso insuficiente."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "Entrada de acceso"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "Entradas de acceso"
#: models.py:49
#: 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\""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Ninguno"
@@ -80,17 +80,17 @@ msgstr "Ver LCAs"
#: serializers.py:24 serializers.py:132
msgid ""
"API URL pointing to the list of permissions for this access control list."
msgstr ""
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 ""
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 ""
msgstr "Llave primaria del nuevo permiso para conceder a la lista de control de acceso."
#: serializers.py:111 serializers.py:187
#, python-format
@@ -102,11 +102,11 @@ msgstr "No existe el permiso: %s"
msgid ""
"Comma separated list of permission primary keys to grant to this access "
"control list."
msgstr ""
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 ""
msgstr "Las llaves primarias de los roles a los que se vincula esta lista de control de acceso."
#: views.py:73
#, python-format

View File

@@ -1,33 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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:15 links.py:35
msgid "ACLs"
msgstr "ACLs"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "مجوزها"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr "نقش"
@@ -36,7 +36,6 @@ msgid "Delete"
msgstr "حذف"
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +43,20 @@ msgstr ""
msgid "Insufficient access."
msgstr "دسترسی ناکافی"
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "ورودی دسترسی"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "ورودیهای دسترسی"
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "هیچکدام."
@@ -91,7 +89,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +109,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,7 +1,7 @@
# SOME 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 <christophe.chauvet@gmail.com>, 2016
@@ -10,26 +10,26 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
msgid "ACLs"
msgstr "Droits"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Permissions"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
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"
@@ -46,21 +45,21 @@ msgstr "Nouveau droit"
msgid "Insufficient access."
msgstr "droit d'accès insuffisant."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "Entrée d'accès"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "Entrées d'accès"
#: models.py:49
#: 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:66
#: models.py:74
msgid "None"
msgstr "Aucun"
@@ -93,7 +92,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -114,7 +112,6 @@ msgstr "Nouvelle liste de contrôle d'accès pour: %s"
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
msgstr "Supprimer le droit: %s"
@@ -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"

View File

@@ -1,33 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
msgid "ACLs"
msgstr "ACL-ek"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr ""
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +36,6 @@ msgid "Delete"
msgstr ""
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +43,20 @@ msgstr ""
msgid "Insufficient access."
msgstr ""
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr ""
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr ""
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Semmi"
@@ -91,7 +89,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +109,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,33 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
msgid "ACLs"
msgstr ""
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr ""
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +36,6 @@ msgid "Delete"
msgstr ""
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +43,20 @@ msgstr ""
msgid "Insufficient access."
msgstr ""
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr ""
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr ""
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr ""
@@ -91,7 +89,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +109,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,7 +1,7 @@
# SOME 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 <marco.camplese.mc@gmail.com>, 2016
@@ -9,26 +9,26 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-0400\n"
"PO-Revision-Date: 2017-04-21 16:25+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n"
"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/"
"language/it/)\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: apps.py:15 links.py:35
msgid "ACLs"
msgstr "ACLs"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Permessi"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr "Ruolo"
@@ -37,7 +37,6 @@ msgid "Delete"
msgstr "Cancella"
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr "Nuova ACL"
@@ -45,21 +44,20 @@ msgstr "Nuova ACL"
msgid "Insufficient access."
msgstr "Accesso insufficiente."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "Voce di accesso"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "Voci di accesso"
#: models.py:49
#: 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\""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Nessuna "
@@ -92,7 +90,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -113,7 +110,6 @@ msgstr "Nuova lista di controllo accesso per: %s"
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
msgstr "Cancella ACL: %s"
@@ -230,8 +226,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"

View File

@@ -1,7 +1,7 @@
# SOME 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 <evelijnsaaltink@gmail.com>, 2016
@@ -10,26 +10,26 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
msgid "ACLs"
msgstr "Authorisatielijsten"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Permissies"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr "Gebruikersrol"
@@ -38,7 +38,6 @@ msgid "Delete"
msgstr "Verwijder"
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr "Nieuwe authorisatielijst"
@@ -46,21 +45,22 @@ msgstr "Nieuwe authorisatielijst"
msgid "Insufficient access."
msgstr "Permissie is ontoereikend"
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "Authorisatie invoer"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "Authorisaties invoer"
#: models.py:49
#: 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:66
#: models.py:74
msgid "None"
msgstr "Geen"
@@ -93,7 +93,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -114,7 +113,6 @@ msgstr "Nieuwe authorisatielijsten voor: %s"
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
msgstr "Verwijder authorisatielijst: %s"
@@ -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"

View File

@@ -1,7 +1,7 @@
# SOME 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 <w.warczakowski@gmail.com>, 2016
@@ -9,26 +9,28 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-0400\n"
"PO-Revision-Date: 2017-04-21 16:25+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n"
"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/"
"pl/)\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#: apps.py:15 links.py:35
msgid "ACLs"
msgstr "Listy ACL"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Uprawnienia"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr "Rola"
@@ -37,7 +39,6 @@ msgid "Delete"
msgstr "Usuń"
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr "Nowa lista ACL"
@@ -45,21 +46,20 @@ msgstr "Nowa lista ACL"
msgid "Insufficient access."
msgstr "Niewystarczający dostęp."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "Zgłoszenie dostępu"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "Zgłoszenia dostępu"
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Brak"
@@ -92,7 +92,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -113,7 +112,6 @@ msgstr "Nowe listy ACL dla: %s"
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
msgstr "Usuń listę ACL: %s"
@@ -230,8 +228,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"

View File

@@ -1,33 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
msgid "ACLs"
msgstr "ACL's"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Permissões"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +36,6 @@ msgid "Delete"
msgstr "Eliminar"
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +43,20 @@ msgstr ""
msgid "Insufficient access."
msgstr "Acesso insuficiente."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr ""
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr ""
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Nenhum"
@@ -91,7 +89,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +109,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,7 +1,7 @@
# SOME 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 <aline@alinefreitas.com.br>, 2016
@@ -9,26 +9,26 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-0400\n"
"PO-Revision-Date: 2017-04-21 16:25+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-"
"edms/language/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: apps.py:15 links.py:35
msgid "ACLs"
msgstr "ACLs"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Permissões"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr "Regras"
@@ -37,7 +37,6 @@ msgid "Delete"
msgstr "Excluir"
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr "Nova ACL"
@@ -45,21 +44,21 @@ msgstr "Nova ACL"
msgid "Insufficient access."
msgstr "Acesso insuficiente."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "Acesso entrada"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "Entradas de acesso"
#: models.py:49
#: 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:66
#: models.py:74
msgid "None"
msgstr "Nenhum"
@@ -92,7 +91,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -113,7 +111,6 @@ msgstr "Nova lista de controle de acesso para: %s"
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
msgstr "Apagar ACL: %s"
@@ -230,8 +227,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"

View File

@@ -1,33 +1,34 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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"
msgstr "ACL-uri"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Permisiuni"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +37,6 @@ msgid "Delete"
msgstr "Șterge"
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +44,20 @@ msgstr ""
msgid "Insufficient access."
msgstr "Accesul insuficient."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr ""
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr ""
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Nici unul"
@@ -91,7 +90,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +110,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,7 +1,7 @@
# SOME 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,26 +9,28 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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"
msgstr "СУДы"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Разрешения"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr "Роль"
@@ -37,7 +39,6 @@ msgid "Delete"
msgstr "Удалить"
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr "Создать СУД"
@@ -45,21 +46,20 @@ msgstr "Создать СУД"
msgid "Insufficient access."
msgstr "Неполный доступ."
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "Элемент доступа"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "Элементы доступа"
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Пусто"
@@ -92,7 +92,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -113,7 +112,6 @@ msgstr "Новый СУД для: %s"
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
msgstr "Удалить СУД: %s"
@@ -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"

View File

@@ -1,33 +1,34 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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"
msgstr "Pravice"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "Pravice"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +37,6 @@ msgid "Delete"
msgstr ""
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +44,20 @@ msgstr ""
msgid "Insufficient access."
msgstr "Nezadosten dostop"
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "Vstopna točka"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "Vstopne točke"
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "Brez"
@@ -91,7 +90,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +110,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,33 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
msgid "ACLs"
msgstr "ACLs"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr ""
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +36,6 @@ msgid "Delete"
msgstr ""
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +43,20 @@ msgstr ""
msgid "Insufficient access."
msgstr ""
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr ""
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr ""
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "None"
@@ -91,7 +89,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +109,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -1,33 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
msgid "ACLs"
msgstr "访问控制列表"
#: apps.py:25 links.py:44 models.py:36
#: apps.py:25 links.py:44 models.py:44
msgid "Permissions"
msgstr "权限"
#: apps.py:29 models.py:38
#| msgid "Roles"
#: apps.py:29 models.py:46
msgid "Role"
msgstr ""
@@ -36,7 +36,6 @@ msgid "Delete"
msgstr ""
#: links.py:39
#| msgid "View ACLs"
msgid "New ACL"
msgstr ""
@@ -44,21 +43,20 @@ msgstr ""
msgid "Insufficient access."
msgstr "权限不足"
#: models.py:44
#: models.py:52
msgid "Access entry"
msgstr "访问入口"
#: models.py:45
#: models.py:53
msgid "Access entries"
msgstr "多个访问入口"
#: models.py:49
#: 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 ""
#: models.py:66
#: models.py:74
msgid "None"
msgstr "无"
@@ -91,7 +89,6 @@ msgstr ""
#: serializers.py:111 serializers.py:187
#, python-format
#| msgid "permission"
msgid "No such permission: %s"
msgstr ""
@@ -112,7 +109,6 @@ msgstr ""
#: views.py:100
#, python-format
#| msgid "Default ACLs"
msgid "Delete ACL: %s"
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"

View File

@@ -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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
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
@@ -74,39 +76,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "مجهول"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "الإجراءات"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""
@@ -235,7 +237,9 @@ msgstr "First time login"
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "You have just finished installing <strong>Mayan EDMS</strong>, congratulations!"
msgstr ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"
@@ -260,7 +264,9 @@ msgstr "Password: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under 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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
@@ -43,8 +44,8 @@ msgstr ""
#: templates/500.html:11
msgid ""
"There's been an error. It's been reported to the site administrators via "
"e-mail and should be fixed shortly. Thanks for your patience."
"There's been an error. It's been reported to the site administrators via e-"
"mail and should be fixed shortly. Thanks for your patience."
msgstr ""
#: templates/500.html:14
@@ -74,39 +75,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Анонимен"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Действия"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""
@@ -235,7 +236,8 @@ msgstr "Логване за първи път"
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "Вие приключихте инсталирането на <strong>Mayan EDMS</strong>, поздравления!"
msgstr ""
"Вие приключихте инсталирането на <strong>Mayan EDMS</strong>, поздравления!"
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"
@@ -260,7 +262,9 @@ msgstr "Парола: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
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
@@ -74,39 +76,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anonimni"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Akcije"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""
@@ -235,7 +237,8 @@ msgstr "Prijava - prvi put"
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "Upravo ste završili instalaciju <strong>Mayan EDMS</strong>, čestitamo!"
msgstr ""
"Upravo ste završili instalaciju <strong>Mayan EDMS</strong>, čestitamo!"
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"
@@ -260,7 +263,9 @@ msgstr "Pasvord: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under 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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:48-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
@@ -43,8 +44,8 @@ msgstr ""
#: templates/500.html:11
msgid ""
"There's been an error. It's been reported to the site administrators via "
"e-mail and should be fixed shortly. Thanks for your patience."
"There's been an error. It's been reported to the site administrators via e-"
"mail and should be fixed shortly. Thanks for your patience."
msgstr ""
#: templates/500.html:14
@@ -74,39 +75,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anonym"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Handlinger"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""

View File

@@ -1,7 +1,7 @@
# 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 <berny@bernhard-marx.de>, 2015
# Jesaja Everling <jeverling@gmail.com>, 2017
@@ -9,14 +9,15 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-0400\n"
"PO-Revision-Date: 2017-04-24 22:57+0000\n"
"Last-Translator: Jesaja Everling <jeverling@gmail.com>\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
@@ -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"
@@ -76,39 +81,39 @@ msgstr "Veröffentlicht unter der Apache 2.0 Lizenz"
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr "Copyright &copy; 2011-2015 Roberto Rosario."
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr "Navigation ein-/ausschalten"
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr "Profil"
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anonymer Benutzer"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr "Erfolg"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr "Information"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr "Warnung"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr "Fehler"
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Aktionen"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr "Ausklappmenü ein-/ausschalten"
@@ -185,7 +190,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
@@ -237,7 +244,9 @@ msgstr "Erstanmeldung"
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "Herzlichen Glückwunsch! Sie haben die Installation von <strong>Mayan EDMS</strong> erfolgreich abgeschlossen. "
msgstr ""
"Herzlichen Glückwunsch! Sie haben die Installation von <strong>Mayan EDMS</"
"strong> erfolgreich abgeschlossen. "
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"
@@ -262,7 +271,9 @@ msgstr "Passwort: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,39 +74,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr ""
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""

View File

@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"PO-Revision-Date: 2017-04-23 03:05+0000\n"
"POT-Creation-Date: 2017-05-28 15:49-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"
"MIME-Version: 1.0\n"
@@ -52,7 +52,7 @@ msgstr "Ha habido un error. Se ha informado a los administradores del sitio vía
msgid ""
"If you need assistance, you may reference this error via the following "
"identifier:"
msgstr ""
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"
@@ -75,39 +75,39 @@ msgstr "Liberado bajo la licencia Apache 2.0 License"
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr "Todos los derechos reservados &copy; 2011-2015 Roberto Rosario."
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr "Activar/Desactivar navegación"
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr "Perfil"
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anónimo"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr "Exitoso"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr "Información"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr "Advertencia"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr "Error"
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Acciones"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr "Alternar desplegable"

View File

@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under 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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
@@ -43,8 +44,8 @@ msgstr ""
#: templates/500.html:11
msgid ""
"There's been an error. It's been reported to the site administrators via "
"e-mail and should be fixed shortly. Thanks for your patience."
"There's been an error. It's been reported to the site administrators via e-"
"mail and should be fixed shortly. Thanks for your patience."
msgstr ""
#: templates/500.html:14
@@ -74,39 +75,39 @@ msgstr "تحت لیسانس Apache 2.0"
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr "کپی رایت و کپی"
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "ناشناس"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "عملیات"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""
@@ -235,7 +236,9 @@ msgstr "دفعه اول لاگین "
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "You have just finished installing <strong>Mayan EDMS</strong>, congratulations!"
msgstr ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"

View File

@@ -1,21 +1,22 @@
# 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 <DarkDare@users.noreply.github.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
@@ -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"
@@ -75,39 +81,39 @@ msgstr "Publié sous licence Apache 2.0"
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr "Copyright &copy; 2011-2015 Roberto Rosario."
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr "Activer la navigation"
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anonyme"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr "Succès de l'opération"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr "Information"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr "Alerte"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr "Erreur"
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Actions"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr "Activer la liste déroulante"
@@ -184,7 +190,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 +214,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"
@@ -236,11 +246,14 @@ msgstr "Première connexion"
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "Vous venez de finaliser l'installation de <strong>Mayan EDMS</strong>, félicitations!"
msgstr ""
"Vous venez de finaliser l'installation de <strong>Mayan EDMS</strong>, "
"félicitations!"
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"
msgstr "Connectez-vous en utilisant les informations d'identification suivantes :"
msgstr ""
"Connectez-vous en utilisant les informations d'identification suivantes :"
#: templates/appearance/login.html:26
#, python-format
@@ -261,7 +274,9 @@ msgstr "Mot de passe : <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under 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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
@@ -43,8 +44,8 @@ msgstr ""
#: templates/500.html:11
msgid ""
"There's been an error. It's been reported to the site administrators via "
"e-mail and should be fixed shortly. Thanks for your patience."
"There's been an error. It's been reported to the site administrators via e-"
"mail and should be fixed shortly. Thanks for your patience."
msgstr ""
#: templates/500.html:14
@@ -74,39 +75,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "névtelen felhasználó"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Műveletek"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""

View File

@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under 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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
@@ -43,8 +44,8 @@ msgstr ""
#: templates/500.html:11
msgid ""
"There's been an error. It's been reported to the site administrators via "
"e-mail and should be fixed shortly. Thanks for your patience."
"There's been an error. It's been reported to the site administrators via e-"
"mail and should be fixed shortly. Thanks for your patience."
msgstr ""
#: templates/500.html:14
@@ -74,39 +75,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr ""
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""

View File

@@ -1,21 +1,22 @@
# 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 <marco.camplese.mc@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-0400\n"
"PO-Revision-Date: 2017-04-21 16:25+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n"
"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/"
"language/it/)\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: apps.py:12
@@ -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"
@@ -75,39 +80,39 @@ msgstr "Rilasciato sotto la licenza Apache 2.0"
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr "Copyright &copy; 2011-2015 Roberto Rosario."
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr "Cambia navigazione"
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anonimo"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr "Riuscito"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr "Informazione"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr "Attenzione"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr "Errore"
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Azioni "
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr "Apri dropdown"
@@ -184,7 +189,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
@@ -261,7 +268,9 @@ msgstr "Password: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -1,7 +1,7 @@
# 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 <justin@albstmeijer.nl>, 2016
@@ -9,14 +9,15 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
@@ -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"
@@ -76,39 +82,39 @@ msgstr "Vrijgegeven onder de Apache 2.0 licentie"
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr "Copyright &copy; 2011-2015 Roberto Rosario."
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr "Toggle navigatie"
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anoniem"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr "Succes"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr "Informatie"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr "Waarschuwing"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr "Fout"
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Acties"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr "Toggle Dropdown"
@@ -185,7 +191,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 +215,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"
@@ -237,7 +247,8 @@ msgstr "Eerste aanmelding"
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "U heeft de installatie volbracht <strong>Mayan EDMS</strong>, gefeliciteerd!"
msgstr ""
"U heeft de installatie volbracht <strong>Mayan EDMS</strong>, gefeliciteerd!"
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"
@@ -262,7 +273,9 @@ msgstr "Wachtwoord: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -1,7 +1,7 @@
# 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 <w.warczakowski@gmail.com>, 2016
# Wojtek Warczakowski <w.warczakowski@gmail.com>, 2016
@@ -9,15 +9,18 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-0400\n"
"PO-Revision-Date: 2017-04-21 16:25+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n"
"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/"
"pl/)\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#: apps.py:12
msgid "Appearance"
@@ -45,15 +48,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"
@@ -76,39 +83,39 @@ msgstr "Wydano na licencji Apache 2.0 License"
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr "Prawa autorskie &copy; 2011-2015 Roberto Rosario."
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr "Rozwiń nawigację"
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anonimowy"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr "Sukces"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr "Informacja"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr "Ostrzeżenie"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr "Błąd"
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Akcje"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr "Rozwiń listę"
@@ -185,7 +192,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
@@ -262,7 +271,9 @@ msgstr "Hasło: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under 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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
@@ -43,8 +44,8 @@ msgstr ""
#: templates/500.html:11
msgid ""
"There's been an error. It's been reported to the site administrators via "
"e-mail and should be fixed shortly. Thanks for your patience."
"There's been an error. It's been reported to the site administrators via e-"
"mail and should be fixed shortly. Thanks for your patience."
msgstr ""
#: templates/500.html:14
@@ -74,39 +75,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anónimo"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Ações"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""
@@ -260,7 +261,9 @@ msgstr "Senha: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -1,21 +1,22 @@
# 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 <aline@alinefreitas.com.br>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-0400\n"
"PO-Revision-Date: 2017-04-21 16:25+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-"
"edms/language/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: apps.py:12
@@ -44,15 +45,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"
@@ -75,39 +80,39 @@ msgstr "Lançado sob a licença Apache 2.0"
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr "Todos os direitos reservados &copy; 2011-2015 Roberto Rosario."
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr "Ativar/desativar navegação"
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anônimo"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr "Sucesso"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr "Informação"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr "Advertência"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr "Erro"
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Ações"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr "Mostrar/esconder menu"
@@ -184,7 +189,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
@@ -236,7 +243,8 @@ msgstr "Primeiro início de sessão"
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "Você acaba de terminar de instalar <strong> Maia EDMS </ strong>, parabéns!"
msgstr ""
"Você acaba de terminar de instalar <strong> Maia EDMS </ strong>, parabéns!"
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"
@@ -261,7 +269,9 @@ msgstr "Senha: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -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 <gupi@hangar.ro>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
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
@@ -75,39 +77,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "anonim"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr "Succes"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr "Informație"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr "Alertă"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr "Eroare"
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Acţiuni"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""
@@ -206,7 +208,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"
@@ -236,7 +240,8 @@ msgstr "Prima autentificare"
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "Tocmai ați terminat de instalat <strong>Mayan EDMS,</strong> felicitări!"
msgstr ""
"Tocmai ați terminat de instalat <strong>Mayan EDMS,</strong> felicitări!"
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"
@@ -261,7 +266,9 @@ msgstr "Parola: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
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"
@@ -75,39 +82,39 @@ msgstr "Выпущено под лицензией Apache 2.0"
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr "&copy; 2011-2015 Roberto Rosario, все права защищены."
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr "Переключение навигации"
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Анонимно"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr "Успех"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr "Информация"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr "Предупреждение"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr "Ошибка"
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Действия"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr "Переключение выпадающего списка"
@@ -184,7 +191,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 +215,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"
@@ -236,7 +247,8 @@ msgstr "Первое время входа в систему"
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "Вы только что закончили установку <strong>Mayan EDMS</strong>, поздравляем!"
msgstr ""
"Вы только что закончили установку <strong>Mayan EDMS</strong>, поздравляем!"
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"
@@ -261,7 +273,9 @@ msgstr "Пароль: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
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
@@ -74,39 +76,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr ""
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""

View File

@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under 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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
@@ -43,8 +44,8 @@ msgstr ""
#: templates/500.html:11
msgid ""
"There's been an error. It's been reported to the site administrators via "
"e-mail and should be fixed shortly. Thanks for your patience."
"There's been an error. It's been reported to the site administrators via e-"
"mail and should be fixed shortly. Thanks for your patience."
msgstr ""
#: templates/500.html:14
@@ -74,39 +75,39 @@ msgstr ""
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "Anonymous"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "Các thao tác"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""
@@ -235,7 +236,9 @@ msgstr "Đăng nhập lần đầu"
msgid ""
"You have just finished installing <strong>Mayan EDMS</strong>, "
"congratulations!"
msgstr "Bạn đã cài đặt xong <strong>Hệ thống quản lý tài liệu điện tử Mayan EDMS</strong>. Xin chúc mừng bạn!"
msgstr ""
"Bạn đã cài đặt xong <strong>Hệ thống quản lý tài liệu điện tử Mayan EDMS</"
"strong>. Xin chúc mừng bạn!"
#: templates/appearance/login.html:25
msgid "Login using the following credentials:"
@@ -260,7 +263,9 @@ msgstr "Mật khẩu: <strong>%(password)s</strong>"
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
msgid "Sign in"

View File

@@ -1,20 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under 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-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-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
@@ -43,8 +44,8 @@ msgstr ""
#: templates/500.html:11
msgid ""
"There's been an error. It's been reported to the site administrators via "
"e-mail and should be fixed shortly. Thanks for your patience."
"There's been an error. It's been reported to the site administrators via e-"
"mail and should be fixed shortly. Thanks for your patience."
msgstr ""
#: templates/500.html:14
@@ -74,39 +75,39 @@ msgstr "基于Apache 2.0许可证"
msgid "Copyright &copy; 2011-2015 Roberto Rosario."
msgstr ""
#: templates/appearance/base.html:45
#: templates/appearance/base.html:56
msgid "Toggle navigation"
msgstr ""
#: templates/appearance/base.html:75
#: templates/appearance/base.html:86
msgid "Profile"
msgstr ""
#: templates/appearance/base.html:81
#: templates/appearance/base.html:92
msgid "Anonymous"
msgstr "匿名用户"
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Success"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Information"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Warning"
msgstr ""
#: templates/appearance/base.html:115
#: templates/appearance/base.html:126
msgid "Error"
msgstr ""
#: templates/appearance/base.html:144
#: templates/appearance/base.html:155
msgid "Actions"
msgstr "操作"
#: templates/appearance/base.html:146
#: templates/appearance/base.html:157
msgid "Toggle Dropdown"
msgstr ""

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-0400\n"
"PO-Revision-Date: 2015-08-20 19:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-0400\n"
"PO-Revision-Date: 2015-08-20 19:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-0400\n"
"PO-Revision-Date: 2015-08-20 19:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-0400\n"
"PO-Revision-Date: 2015-08-20 19:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:22-0400\n"
"POT-Creation-Date: 2017-05-28 15:49-0400\n"
"PO-Revision-Date: 2016-03-21 21:10+0000\n"
"Last-Translator: Mathias Behrle <mathiasb@m9s.biz>\n"
"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-"

Some files were not shown because too many files have changed in this diff Show More