Merge remote-tracking branch 'origin/versions/micro' into merges/micro_to_minor

Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
Roberto Rosario
2019-10-28 00:06:27 -04:00
1068 changed files with 6407 additions and 5860 deletions

View File

@@ -93,12 +93,24 @@
Robert Schöftner (@robert.schoeftner). Robert Schöftner (@robert.schoeftner).
- Support simple search disable via the new - Support simple search disable via the new
SEARCH_DISABLE_SIMPLE_SEARCH setting. SEARCH_DISABLE_SIMPLE_SEARCH setting.
- Move all generic API classes definitions to the - Move all generic API classes definitions to the
rest_api.generics module. rest_api.generics module.
- Update API status code on insufficient access for the apps: - Update API status code on insufficient access for the apps:
indexes, parsing, documents, metadata, ocr, permission, indexes, parsing, documents, metadata, ocr, permission,
user management. user management.
3.2.9 (2019-XX-XX)
==================
- Move IMAPMockServer to its own module.
- Display feedback message when testing a mailing profile.
- Add tests to the platform app.
- Fix platformtemplate command --context option help message.
- Language translations update.
- Add target to run all translations targets.
- Backport color log formatter from branch version/next.
- Don't raise error checking AnonymousUser for permissions.
Instead return always False.
3.2.8 (2019-10-01) 3.2.8 (2019-10-01)
================== ==================
- Fix error when accessing some API entry points without - Fix error when accessing some API entry points without

View File

@@ -125,6 +125,9 @@ translations-push: ## Upload all translation files to Transifex.
translations-pull: ## Download all translation files from Transifex. translations-pull: ## Download all translation files from Transifex.
tx pull -f tx pull -f
translations-all: ## Execute all translations targets.
translations-all: translations-make translations-push translations-pull translations-compile
# Releases # Releases
increase-version: ## Increase the version number of the entire project's files. increase-version: ## Increase the version number of the entire project's files.

105
docs/releases/3.2.9.rst Normal file
View File

@@ -0,0 +1,105 @@
Version 3.2.9
=============
Released: October XX, 2019
Changes
-------
Removals
--------
- None
Upgrading from a previous version
---------------------------------
If installed via Python's PIP
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Remove deprecated requirements::
sudo -u mayan curl https://gitlab.com/mayan-edms/mayan-edms/raw/master/removals.txt -o /tmp/removals.txt && sudo -u mayan /opt/mayan-edms/bin/pip uninstall -y -r /tmp/removals.txt
Type in the console::
sudo -u mayan /opt/mayan-edms/bin/pip install mayan-edms==3.2.9
the requirements will also be updated automatically.
Using Git
^^^^^^^^^
If you installed Mayan EDMS by cloning the Git repository issue the commands::
$ git reset --hard HEAD
$ git pull
otherwise download the compressed archived and uncompress it overriding the
existing installation.
Remove deprecated requirements::
$ pip uninstall -y -r removals.txt
Next upgrade/add the new requirements::
$ pip install --upgrade -r requirements.txt
Common steps
^^^^^^^^^^^^
Perform these steps after updating the code from either step above.
Make a backup of your supervisord file::
sudo cp /etc/supervisor/conf.d/mayan.conf /etc/supervisor/conf.d/mayan.conf.bck
Update the supervisord configuration file. Replace the environment
variables values show here with your respective settings. This step will refresh
the supervisord configuration file with the new queues and the latest
recommended layout::
sudo MAYAN_DATABASE_ENGINE=django.db.backends.postgresql MAYAN_DATABASE_NAME=mayan \
MAYAN_DATABASE_PASSWORD=mayanuserpass MAYAN_DATABASE_USER=mayan \
MAYAN_DATABASE_HOST=127.0.0.1 MAYAN_MEDIA_ROOT=/opt/mayan-edms/media \
/opt/mayan-edms/bin/mayan-edms.py platformtemplate supervisord > /etc/supervisor/conf.d/mayan.conf
Edit the supervisord configuration file and update any setting the template
generator missed::
sudo vi /etc/supervisor/conf.d/mayan.conf
Migrate existing database schema with::
sudo -u mayan MAYAN_DATABASE_ENGINE=django.db.backends.postgresql MAYAN_DATABASE_NAME=mayan \
MAYAN_DATABASE_PASSWORD=mayanuserpass MAYAN_DATABASE_USER=mayan \
MAYAN_DATABASE_HOST=127.0.0.1 MAYAN_MEDIA_ROOT=/opt/mayan-edms/media \
/opt/mayan-edms/bin/mayan-edms.py performupgrade
Add new static media::
sudo -u mayan MAYAN_MEDIA_ROOT=/opt/mayan-edms/media \
/opt/mayan-edms/bin/mayan-edms.py preparestatic --noinput
The upgrade procedure is now complete.
Backward incompatible changes
-----------------------------
- None
Bugs fixed or issues closed
---------------------------
- :gitlab-issue:`666` Chinese document such as .doc can't display well.
- :forum-topic:`1347` Workflow state action: perform a POST request
.. _PyPI: https://pypi.python.org/pypi/mayan-edms/

View File

@@ -21,6 +21,7 @@ versions of the documentation contain the release notes for any later releases.
:maxdepth: 1 :maxdepth: 1
3.3 3.3
3.2.9
3.2.8 3.2.8
3.2.7 3.2.7
3.2.6 3.2.6

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Lyudmil Antonov <lantonov.here@gmail.com>, 2019
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-10-16 08:27+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Lyudmil Antonov <lantonov.here@gmail.com>\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"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -27,23 +28,23 @@ msgstr "Контролни списъци за достъп"
#: events.py:12 #: events.py:12
msgid "ACL created" msgid "ACL created"
msgstr "" msgstr "Новосъздадени ACL"
#: events.py:15 #: events.py:15
msgid "ACL edited" msgid "ACL edited"
msgstr "" msgstr "Редактирани ACL"
#: forms.py:15 models.py:49 #: forms.py:15 models.py:49
msgid "Role" msgid "Role"
msgstr "" msgstr "Роля"
#: links.py:34 #: links.py:34
msgid "New ACL" msgid "New ACL"
msgstr "" msgstr "Нов ACL"
#: links.py:39 #: links.py:39
msgid "Delete" msgid "Delete"
msgstr "" msgstr "Изтрийте"
#: links.py:49 models.py:45 workflow_actions.py:49 workflow_actions.py:164 #: links.py:49 models.py:45 workflow_actions.py:49 workflow_actions.py:164
msgid "Permissions" msgid "Permissions"
@@ -52,12 +53,12 @@ msgstr "Разрешения"
#: managers.py:216 #: managers.py:216
#, python-format #, python-format
msgid "Object \"%s\" is not a model and cannot be checked for access." msgid "Object \"%s\" is not a model and cannot be checked for access."
msgstr "" msgstr "Обект \"%s\" не е модел и не може да бъде проверен за достъп"
#: managers.py:236 #: managers.py:236
#, python-format #, python-format
msgid "Insufficient access for: %s" msgid "Insufficient access for: %s"
msgstr "" msgstr "Недостатъчен достъп за: %s"
#: models.py:57 #: models.py:57
msgid "Access entry" msgid "Access entry"
@@ -70,7 +71,7 @@ msgstr "достъп вписвания"
#: models.py:62 #: models.py:62
#, python-format #, python-format
msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgid "Role \"%(role)s\" permission's for \"%(object)s\""
msgstr "" msgstr "Роля \"%(role)s\" разрешение за \"%(object)s\""
#: permissions.py:10 #: permissions.py:10
msgid "Edit ACLs" msgid "Edit ACLs"
@@ -83,70 +84,70 @@ msgstr "Преглед на контролни списъци за достъп"
#: serializers.py:26 serializers.py:136 #: serializers.py:26 serializers.py:136
msgid "" msgid ""
"API URL pointing to the list of permissions for this access control list." "API URL pointing to the list of permissions for this access control list."
msgstr "" msgstr "API URL посочва списък с разрешения за контролни списъци за достъп"
#: serializers.py:59 #: serializers.py:59
msgid "" msgid ""
"API URL pointing to a permission in relation to the access control list to " "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." "which it is attached. This URL is different than the canonical workflow URL."
msgstr "" msgstr "API URL посочва разрешение във връзка с контролен списък на достъп към който е прикачено. Този URL е различен от основния URL на работния поток."
#: serializers.py:91 #: serializers.py:91
msgid "Primary key of the new permission to grant to the access control list." msgid "Primary key of the new permission to grant to the access control list."
msgstr "" msgstr "Основен ключ на новото разрешение за включване в контролния списък на достъп"
#: serializers.py:115 serializers.py:191 #: serializers.py:115 serializers.py:191
#, python-format #, python-format
msgid "No such permission: %s" msgid "No such permission: %s"
msgstr "" msgstr "Няма такова разрешение: %s"
#: serializers.py:130 #: serializers.py:130
msgid "" msgid ""
"Comma separated list of permission primary keys to grant to this access " "Comma separated list of permission primary keys to grant to this access "
"control list." "control list."
msgstr "" msgstr "Разделен със запетаи списък на основни ключове за разрешение в контролен списък на разрешения"
#: serializers.py:142 #: serializers.py:142
msgid "Primary keys of the role to which this access control list binds to." msgid "Primary keys of the role to which this access control list binds to."
msgstr "" msgstr "Основни ключове на ролята, към която е свързан този контролен списък на достъп"
#: views.py:62 #: views.py:62
#, python-format #, python-format
msgid "New access control lists for: %s" msgid "New access control lists for: %s"
msgstr "" msgstr "Нови контролни списъци на достъп за: %s"
#: views.py:100 #: views.py:100
#, python-format #, python-format
msgid "Delete ACL: %s" msgid "Delete ACL: %s"
msgstr "" msgstr "Изтрийте ACL: %s"
#: views.py:147 #: views.py:147
msgid "There are no ACLs for this object" msgid "There are no ACLs for this object"
msgstr "" msgstr "Няма контролни списъци за достъп за този обект"
#: views.py:150 #: views.py:150
msgid "" msgid ""
"ACL stands for Access Control List and is a precise method to control user " "ACL stands for Access Control List and is a precise method to control user "
"access to objects in the system." "access to objects in the system."
msgstr "" msgstr "ACL е съкращение на Контролен Списък на Достъп и е точен метод за контролиране достъпа на потребителите към обектите в системата."
#: views.py:154 #: views.py:154
#, python-format #, python-format
msgid "Access control lists for: %s" msgid "Access control lists for: %s"
msgstr "" msgstr "Контролни списъци на достъп за: %s"
#: views.py:170 #: views.py:170
msgid "Granted permissions" msgid "Granted permissions"
msgstr "" msgstr "Дадени разрешения"
#: views.py:171 #: views.py:171
msgid "Available permissions" msgid "Available permissions"
msgstr "" msgstr "Налични разрешения"
#: views.py:215 #: views.py:215
#, python-format #, python-format
msgid "Role \"%(role)s\" permission's for \"%(object)s\"." msgid "Role \"%(role)s\" permission's for \"%(object)s\"."
msgstr "" msgstr "Роля \"%(role)s\" разрешение за \"%(object)s\""
#: views.py:224 #: views.py:224
msgid "" msgid ""
@@ -154,24 +155,24 @@ msgid ""
"to the role and can't be removed from this view. Inherited permissions need " "to the role and can't be removed from this view. Inherited permissions need "
"to be removed from the parent object's ACL or from them role via the Setup " "to be removed from the parent object's ACL or from them role via the Setup "
"menu." "menu."
msgstr "" msgstr "Отменени разрешения се наследяват от родителския обект или се дават направо на потребител с определена роля и не могат да бъдат премахнати от този изглед. Наследените разрешения трябва да бъдат премахнати от ACL на родителския обект или от определената роля чрез меню Настройки."
#: workflow_actions.py:26 #: workflow_actions.py:26
msgid "Object type" msgid "Object type"
msgstr "" msgstr "Тип обект"
#: workflow_actions.py:29 #: workflow_actions.py:29
msgid "Type of the object for which the access will be modified." msgid "Type of the object for which the access will be modified."
msgstr "" msgstr "Тип на обекта за който достъпа ще бъде променен"
#: workflow_actions.py:35 #: workflow_actions.py:35
msgid "Object ID" msgid "Object ID"
msgstr "" msgstr "ID на обекта"
#: workflow_actions.py:38 #: workflow_actions.py:38
msgid "" msgid ""
"Numeric identifier of the object for which the access will be modified." "Numeric identifier of the object for which the access will be modified."
msgstr "" msgstr "Числов показател на обекта, достъпа на който ще бъде променен."
#: workflow_actions.py:43 workflow_actions.py:158 #: workflow_actions.py:43 workflow_actions.py:158
msgid "Roles" msgid "Roles"
@@ -179,25 +180,25 @@ msgstr "Роли"
#: workflow_actions.py:45 workflow_actions.py:160 #: workflow_actions.py:45 workflow_actions.py:160
msgid "Roles whose access will be modified." msgid "Roles whose access will be modified."
msgstr "" msgstr "Роли, за които достъпа ще бъде променен."
#: workflow_actions.py:52 workflow_actions.py:167 #: workflow_actions.py:52 workflow_actions.py:167
msgid "" msgid ""
"Permissions to grant/revoke to/from the role for the object selected above." "Permissions to grant/revoke to/from the role for the object selected above."
msgstr "" msgstr "Разрешение за даване/отнемане на/от ролята за обекта избран по-горе."
#: workflow_actions.py:60 #: workflow_actions.py:60
msgid "Grant access" msgid "Grant access"
msgstr "" msgstr "Даване на достъп"
#: workflow_actions.py:143 #: workflow_actions.py:143
msgid "Revoke access" msgid "Revoke access"
msgstr "" msgstr "Отнемане на достъп"
#: workflow_actions.py:175 #: workflow_actions.py:175
msgid "Grant document access" msgid "Grant document access"
msgstr "" msgstr "Даване достъп към документа"
#: workflow_actions.py:214 #: workflow_actions.py:214
msgid "Revoke document access" msgid "Revoke document access"
msgstr "" msgstr "Отнемане достъп към документа"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -4,13 +4,14 @@
# #
# Translators: # Translators:
# Jiri Fait <fait@orkasolutions.cz>, 2019 # Jiri Fait <fait@orkasolutions.cz>, 2019
# Michal Švábík <snadno@lehce.cz>, 2019
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-10-15 16:09+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Michal Švábík <snadno@lehce.cz>\n"
"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,27 +21,27 @@ msgstr ""
#: apps.py:24 links.py:44 #: apps.py:24 links.py:44
msgid "ACLs" msgid "ACLs"
msgstr "" msgstr "ACLs"
#: events.py:8 permissions.py:7 #: events.py:8 permissions.py:7
msgid "Access control lists" msgid "Access control lists"
msgstr "" msgstr "Seznam pro řízení přístupu"
#: events.py:12 #: events.py:12
msgid "ACL created" msgid "ACL created"
msgstr "" msgstr "ACL vytvořen"
#: events.py:15 #: events.py:15
msgid "ACL edited" msgid "ACL edited"
msgstr "" msgstr "ACL upraven"
#: forms.py:15 models.py:49 #: forms.py:15 models.py:49
msgid "Role" msgid "Role"
msgstr "" msgstr "Role"
#: links.py:34 #: links.py:34
msgid "New ACL" msgid "New ACL"
msgstr "" msgstr "Nový ACL"
#: links.py:39 #: links.py:39
msgid "Delete" msgid "Delete"
@@ -53,101 +54,101 @@ msgstr "Práva"
#: managers.py:216 #: managers.py:216
#, python-format #, python-format
msgid "Object \"%s\" is not a model and cannot be checked for access." msgid "Object \"%s\" is not a model and cannot be checked for access."
msgstr "" msgstr "Objekt &quot;%s&quot; není modelem a nelze jej zkontrolovat pro přístup."
#: managers.py:236 #: managers.py:236
#, python-format #, python-format
msgid "Insufficient access for: %s" msgid "Insufficient access for: %s"
msgstr "" msgstr "Nedostatečný přístup pro: %s"
#: models.py:57 #: models.py:57
msgid "Access entry" msgid "Access entry"
msgstr "" msgstr "Přístup k záznamu"
#: models.py:58 #: models.py:58
msgid "Access entries" msgid "Access entries"
msgstr "" msgstr "Přístup k položkám"
#: models.py:62 #: models.py:62
#, python-format #, python-format
msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgid "Role \"%(role)s\" permission's for \"%(object)s\""
msgstr "" msgstr "Role „%(role)s“ má oprávnění „%(object)s“"
#: permissions.py:10 #: permissions.py:10
msgid "Edit ACLs" msgid "Edit ACLs"
msgstr "" msgstr "Upravit seznamy ACL"
#: permissions.py:13 #: permissions.py:13
msgid "View ACLs" msgid "View ACLs"
msgstr "" msgstr "Zobrazit seznamy ACL"
#: serializers.py:26 serializers.py:136 #: serializers.py:26 serializers.py:136
msgid "" msgid ""
"API URL pointing to the list of permissions for this access control list." "API URL pointing to the list of permissions for this access control list."
msgstr "" msgstr "URL API ukazující na seznam oprávnění pro tento seznam řízení přístupu."
#: serializers.py:59 #: serializers.py:59
msgid "" msgid ""
"API URL pointing to a permission in relation to the access control list to " "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." "which it is attached. This URL is different than the canonical workflow URL."
msgstr "" msgstr "URL API ukazující na oprávnění ve vztahu k seznamu řízení přístupu, ke kterému je připojeno. Tato adresa URL se liší od kanonické adresy URL pracovního postupu / workflow."
#: serializers.py:91 #: serializers.py:91
msgid "Primary key of the new permission to grant to the access control list." msgid "Primary key of the new permission to grant to the access control list."
msgstr "" msgstr "Primární klíč nového oprávnění udělit seznamu řízení přístupu."
#: serializers.py:115 serializers.py:191 #: serializers.py:115 serializers.py:191
#, python-format #, python-format
msgid "No such permission: %s" msgid "No such permission: %s"
msgstr "" msgstr "Bez povolení: %s"
#: serializers.py:130 #: serializers.py:130
msgid "" msgid ""
"Comma separated list of permission primary keys to grant to this access " "Comma separated list of permission primary keys to grant to this access "
"control list." "control list."
msgstr "" msgstr "Čárkami oddělený seznam oprávnění primárních klíčů pro udělení tomuto seznamu řízení přístupu."
#: serializers.py:142 #: serializers.py:142
msgid "Primary keys of the role to which this access control list binds to." msgid "Primary keys of the role to which this access control list binds to."
msgstr "" msgstr "Primární klíče role, ke které se tento seznam řízení přístupu váže."
#: views.py:62 #: views.py:62
#, python-format #, python-format
msgid "New access control lists for: %s" msgid "New access control lists for: %s"
msgstr "" msgstr "Nové seznamy řízení přístupu pro: %s"
#: views.py:100 #: views.py:100
#, python-format #, python-format
msgid "Delete ACL: %s" msgid "Delete ACL: %s"
msgstr "" msgstr "Odstranit ACL: %s"
#: views.py:147 #: views.py:147
msgid "There are no ACLs for this object" msgid "There are no ACLs for this object"
msgstr "" msgstr "Pro tento objekt neexistují žádné ACL"
#: views.py:150 #: views.py:150
msgid "" msgid ""
"ACL stands for Access Control List and is a precise method to control user " "ACL stands for Access Control List and is a precise method to control user "
"access to objects in the system." "access to objects in the system."
msgstr "" msgstr "ACL je zkratka pro seznam řízení přístupu a je to přesná metoda řízení přístupu uživatelů k objektům v systému."
#: views.py:154 #: views.py:154
#, python-format #, python-format
msgid "Access control lists for: %s" msgid "Access control lists for: %s"
msgstr "" msgstr "Seznamy řízení přístupu pro: %s"
#: views.py:170 #: views.py:170
msgid "Granted permissions" msgid "Granted permissions"
msgstr "" msgstr "Udělení oprávnění"
#: views.py:171 #: views.py:171
msgid "Available permissions" msgid "Available permissions"
msgstr "" msgstr "Dostupná oprávnění"
#: views.py:215 #: views.py:215
#, python-format #, python-format
msgid "Role \"%(role)s\" permission's for \"%(object)s\"." msgid "Role \"%(role)s\" permission's for \"%(object)s\"."
msgstr "" msgstr "Role „%(role)s“ má oprávnění „%(object)s“."
#: views.py:224 #: views.py:224
msgid "" msgid ""
@@ -155,50 +156,50 @@ msgid ""
"to the role and can't be removed from this view. Inherited permissions need " "to the role and can't be removed from this view. Inherited permissions need "
"to be removed from the parent object's ACL or from them role via the Setup " "to be removed from the parent object's ACL or from them role via the Setup "
"menu." "menu."
msgstr "" msgstr "Zakázaná oprávnění jsou zděděna z nadřazeného objektu nebo přímo udělena roli a nelze je z tohoto pohledu odebrat. Zděděná oprávnění je třeba odebrat z ACL nadřazeného objektu nebo z jeho role prostřednictvím nabídky Nastavení."
#: workflow_actions.py:26 #: workflow_actions.py:26
msgid "Object type" msgid "Object type"
msgstr "" msgstr "Typ objektu"
#: workflow_actions.py:29 #: workflow_actions.py:29
msgid "Type of the object for which the access will be modified." msgid "Type of the object for which the access will be modified."
msgstr "" msgstr "Typ objektu, pro který bude přístup upraven."
#: workflow_actions.py:35 #: workflow_actions.py:35
msgid "Object ID" msgid "Object ID"
msgstr "" msgstr "ID objektu"
#: workflow_actions.py:38 #: workflow_actions.py:38
msgid "" msgid ""
"Numeric identifier of the object for which the access will be modified." "Numeric identifier of the object for which the access will be modified."
msgstr "" msgstr "Numerický identifikátor objektu, pro který bude přístup upraven."
#: workflow_actions.py:43 workflow_actions.py:158 #: workflow_actions.py:43 workflow_actions.py:158
msgid "Roles" msgid "Roles"
msgstr "" msgstr "Role"
#: workflow_actions.py:45 workflow_actions.py:160 #: workflow_actions.py:45 workflow_actions.py:160
msgid "Roles whose access will be modified." msgid "Roles whose access will be modified."
msgstr "" msgstr "Role, jejichž přístup bude upraven."
#: workflow_actions.py:52 workflow_actions.py:167 #: workflow_actions.py:52 workflow_actions.py:167
msgid "" msgid ""
"Permissions to grant/revoke to/from the role for the object selected above." "Permissions to grant/revoke to/from the role for the object selected above."
msgstr "" msgstr "Oprávnění udělit / zrušit / z role pro objekt vybraný výše."
#: workflow_actions.py:60 #: workflow_actions.py:60
msgid "Grant access" msgid "Grant access"
msgstr "" msgstr "Přístup povolen"
#: workflow_actions.py:143 #: workflow_actions.py:143
msgid "Revoke access" msgid "Revoke access"
msgstr "" msgstr "Odebrat přístup"
#: workflow_actions.py:175 #: workflow_actions.py:175
msgid "Grant document access" msgid "Grant document access"
msgstr "" msgstr "Udělte přístup k dokumentům"
#: workflow_actions.py:214 #: workflow_actions.py:214
msgid "Revoke document access" msgid "Revoke document access"
msgstr "" msgstr "Zrušit přístup k dokumentům"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:51+0000\n" "PO-Revision-Date: 2019-06-15 07:51+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-08-28 11:33+0000\n" "PO-Revision-Date: 2019-08-28 11:33+0000\n"
"Last-Translator: Daniele Bortoluzzi <daniele@elkos.it>\n" "Last-Translator: Daniele Bortoluzzi <daniele@elkos.it>\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-28 11:16+0000\n" "PO-Revision-Date: 2019-06-28 11:16+0000\n"
"Last-Translator: Māris Teivāns <maris.teivans@gmail.com>\n" "Last-Translator: Māris Teivāns <maris.teivans@gmail.com>\n"
"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n"

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-23 09:33+0000\n" "PO-Revision-Date: 2019-09-23 09:33+0000\n"
"Last-Translator: Tomasz Szymanowicz <alakdae@gmail.com>\n" "Last-Translator: Tomasz Szymanowicz <alakdae@gmail.com>\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"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -6,13 +6,14 @@
# Aline Freitas <aline@alinefreitas.com.br>, 2016 # Aline Freitas <aline@alinefreitas.com.br>, 2016
# Jadson Ribeiro <jadsonbr@outlook.com.br>, 2017 # Jadson Ribeiro <jadsonbr@outlook.com.br>, 2017
# José Samuel Facundo da Silva <samuel.facundo@ufca.edu.br>, 2018 # José Samuel Facundo da Silva <samuel.facundo@ufca.edu.br>, 2018
# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatic4@gmail.com>, 2019
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-10-27 00:19+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatic4@gmail.com>\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"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -30,11 +31,11 @@ msgstr "Listas de controle de acesso"
#: events.py:12 #: events.py:12
msgid "ACL created" msgid "ACL created"
msgstr "" msgstr "ACL criada"
#: events.py:15 #: events.py:15
msgid "ACL edited" msgid "ACL edited"
msgstr "" msgstr "ACL editada"
#: forms.py:15 models.py:49 #: forms.py:15 models.py:49
msgid "Role" msgid "Role"
@@ -55,7 +56,7 @@ msgstr "Permissões"
#: managers.py:216 #: managers.py:216
#, python-format #, python-format
msgid "Object \"%s\" is not a model and cannot be checked for access." msgid "Object \"%s\" is not a model and cannot be checked for access."
msgstr "" msgstr "O objeto \"1%s\" não é um modelo e não pode ser verificado quanto ao acesso."
#: managers.py:236 #: managers.py:236
#, python-format #, python-format
@@ -149,7 +150,7 @@ msgstr "Permissões disponíveis"
#: views.py:215 #: views.py:215
#, python-format #, python-format
msgid "Role \"%(role)s\" permission's for \"%(object)s\"." msgid "Role \"%(role)s\" permission's for \"%(object)s\"."
msgstr "" msgstr "A função \"%(role)s\" é de permissão para \"%(object)s\"."
#: views.py:224 #: views.py:224
msgid "" msgid ""
@@ -157,7 +158,7 @@ msgid ""
"to the role and can't be removed from this view. Inherited permissions need " "to the role and can't be removed from this view. Inherited permissions need "
"to be removed from the parent object's ACL or from them role via the Setup " "to be removed from the parent object's ACL or from them role via the Setup "
"menu." "menu."
msgstr "" msgstr "Permissões desabilitadas são herdadas de um objeto pai ou concedidas diretamente à função e não podem ser removidas dessa exibição. As permissões herdadas precisam ser removidas da ACL do objeto pai ou delas através do menu Configuração."
#: workflow_actions.py:26 #: workflow_actions.py:26
msgid "Object type" msgid "Object type"
@@ -199,8 +200,8 @@ msgstr "Revogar acesso"
#: workflow_actions.py:175 #: workflow_actions.py:175
msgid "Grant document access" msgid "Grant document access"
msgstr "" msgstr "Conceder acesso ao documento"
#: workflow_actions.py:214 #: workflow_actions.py:214
msgid "Revoke document access" msgid "Revoke document access"
msgstr "" msgstr "Revogar acesso ao documento"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-18 15:35+0000\n" "PO-Revision-Date: 2019-06-18 15:35+0000\n"
"Last-Translator: Harald Ersch\n" "Last-Translator: Harald Ersch\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Lyudmil Antonov <lantonov.here@gmail.com>, 2019
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-10-16 09:27+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Lyudmil Antonov <lantonov.here@gmail.com>\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"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,67 +20,67 @@ msgstr ""
#: apps.py:12 settings.py:9 #: apps.py:12 settings.py:9
msgid "Appearance" msgid "Appearance"
msgstr "" msgstr "Изглед"
#: dependencies.py:10 #: dependencies.py:10
msgid "Lato font" msgid "Lato font"
msgstr "" msgstr "Шрифт Lato"
#: dependencies.py:14 #: dependencies.py:14
msgid "Bootstrap" msgid "Bootstrap"
msgstr "" msgstr "Bootstrap"
#: dependencies.py:18 #: dependencies.py:18
msgid "Bootswatch" msgid "Bootswatch"
msgstr "" msgstr "Bootswatch"
#: dependencies.py:32 #: dependencies.py:32
msgid "Fancybox" msgid "Fancybox"
msgstr "" msgstr "Fancybox"
#: dependencies.py:36 #: dependencies.py:36
msgid "FontAwesome" msgid "FontAwesome"
msgstr "" msgstr "FontAwesome"
#: dependencies.py:40 #: dependencies.py:40
msgid "jQuery" msgid "jQuery"
msgstr "" msgstr "jQuery"
#: dependencies.py:43 #: dependencies.py:43
msgid "JQuery Form" msgid "JQuery Form"
msgstr "" msgstr "jQuery формуляр"
#: dependencies.py:47 #: dependencies.py:47
msgid "jQuery Lazy Load" msgid "jQuery Lazy Load"
msgstr "" msgstr "jQuery мързеливо зареждане"
#: dependencies.py:51 #: dependencies.py:51
msgid "JQuery Match Height" msgid "JQuery Match Height"
msgstr "" msgstr "jQuery съответствие на височина"
#: dependencies.py:55 #: dependencies.py:55
msgid "Select 2" msgid "Select 2"
msgstr "" msgstr "Избиране 2"
#: dependencies.py:59 #: dependencies.py:59
msgid "Toastr" msgid "Toastr"
msgstr "" msgstr "Toastr"
#: dependencies.py:62 #: dependencies.py:62
msgid "URI.js" msgid "URI.js"
msgstr "" msgstr "URI.js"
#: settings.py:14 #: settings.py:14
msgid "Maximum number of characters that will be displayed as the view title." msgid "Maximum number of characters that will be displayed as the view title."
msgstr "" msgstr "Максимален брой на знаците, които ще се изобразят в заглавката на изгледа."
#: templates/403.html:5 templates/403.html:9 #: templates/403.html:5 templates/403.html:9
msgid "Insufficient permissions" msgid "Insufficient permissions"
msgstr "" msgstr "Недостатъчни разрешения"
#: templates/403.html:11 #: templates/403.html:11
msgid "You don't have enough permissions for this operation." msgid "You don't have enough permissions for this operation."
msgstr "" msgstr "Нямате достатъчни разрешения за тази операция."
#: templates/404.html:5 templates/404.html:9 #: templates/404.html:5 templates/404.html:9
msgid "Page not found" msgid "Page not found"
@@ -87,21 +88,21 @@ msgstr "Страницата не е намерена"
#: templates/404.html:11 #: templates/404.html:11
msgid "Sorry, but the requested page could not be found." msgid "Sorry, but the requested page could not be found."
msgstr "" msgstr "Съжалявам, но заявената страница не може да бъде намерена."
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52 #: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
msgid "Server error" msgid "Server error"
msgstr "" msgstr "Грешка в сървъра"
#: templates/500.html:11 #: templates/500.html:11
msgid "" msgid ""
"There's been an error. It's been reported to the site administrators via " "There's been an error. It's been reported to the site administrators via "
"e-mail and should be fixed shortly. Thanks for your patience." "e-mail and should be fixed shortly. Thanks for your patience."
msgstr "" msgstr "Има грешка. Тя е съобщена на администраторите на сайта чрез електронно съобщение и ще бъде отстранена скоро. Благодарим за търпението."
#: templates/appearance/about.html:10 #: templates/appearance/about.html:10
msgid "About" msgid "About"
msgstr "" msgstr "Относно"
#: templates/appearance/about.html:77 #: templates/appearance/about.html:77
#, python-format #, python-format
@@ -109,7 +110,7 @@ msgid ""
"\n" "\n"
" %(setting_project_title)s is based on %(project_title)s\n" " %(setting_project_title)s is based on %(project_title)s\n"
" " " "
msgstr "" msgstr "\n %(setting_project_title)s се основава на%(project_title)s\n "
#: templates/appearance/about.html:82 #: templates/appearance/about.html:82
msgid "Version" msgid "Version"
@@ -118,11 +119,11 @@ msgstr "Версия"
#: templates/appearance/about.html:84 #: templates/appearance/about.html:84
#, python-format #, python-format
msgid "Build number: %(build_number)s" msgid "Build number: %(build_number)s"
msgstr "" msgstr "Номер на конструкцията: %(build_number)s"
#: templates/appearance/about.html:97 #: templates/appearance/about.html:97
msgid "Released under the license:" msgid "Released under the license:"
msgstr "" msgstr "Издаден под лиценз:"
#: templates/appearance/about.html:103 #: templates/appearance/about.html:103
#, python-format #, python-format
@@ -130,7 +131,7 @@ msgid ""
"\n" "\n"
" %(project_title)s is a free and open-source software brought to you with <i class=\"fa fa-heart text-danger\" style=\"transform: rotate(10deg);\"></i> by Roberto Rosario and contributors.\n" " %(project_title)s is a free and open-source software brought to you with <i class=\"fa fa-heart text-danger\" style=\"transform: rotate(10deg);\"></i> by Roberto Rosario and contributors.\n"
" " " "
msgstr "" msgstr "\n %(project_title)s е безплатен софтуер с отворен код предоставен Ви <i class=\"fa fa-heart text-danger\" style=\"transform: rotate(10deg);\"></i> от Роберто Росарио и сътрудници.\n "
#: templates/appearance/about.html:109 #: templates/appearance/about.html:109
#, python-format #, python-format
@@ -138,7 +139,7 @@ msgid ""
"\n" "\n"
" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n"
" " " "
msgstr "" msgstr "\n Необходими са големи усилия за да се направи %(project_title)s с толкова много функции както е сега. Необходима ни е цялата помощ, която можем да получим!\n "
#: templates/appearance/about.html:115 #: templates/appearance/about.html:115
#, python-format #, python-format
@@ -146,7 +147,7 @@ msgid ""
"\n" "\n"
" If you use %(project_title)s please <a class=\"new_window\" href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3PXN336XFXQNN\">consider making a donation %(icon_social_paypal)s</a>\n" " If you use %(project_title)s please <a class=\"new_window\" href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3PXN336XFXQNN\">consider making a donation %(icon_social_paypal)s</a>\n"
" " " "
msgstr "" msgstr "\n Ако използвате %(project_title)s молим <a class=\"new_window\" href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3PXN336XFXQNN\"> помислете си дали да направите дарение %(icon_social_paypal)s</a>\n "
#: templates/appearance/about.html:121 #: templates/appearance/about.html:121
#, python-format #, python-format
@@ -154,14 +155,14 @@ msgid ""
"\n" "\n"
" You can also <a class=\"new_window\" href=\"https://www.paypal.com/paypalme2/RobertoRosario\">donate directly to the creator and lead developer. %(icon_social_paypal)s</a>\n" " You can also <a class=\"new_window\" href=\"https://www.paypal.com/paypalme2/RobertoRosario\">donate directly to the creator and lead developer. %(icon_social_paypal)s</a>\n"
" " " "
msgstr "" msgstr "\n Може също <a class=\"new_window\" href=\"https://www.paypal.com/paypalme2/RobertoRosario\">да направите дарение направо на създателя и главен разработчик. %(icon_social_paypal)s</a>\n "
#: templates/appearance/about.html:127 #: templates/appearance/about.html:127
msgid "" msgid ""
"\n" "\n"
" Besides donations you can also support the project by <a class=\"new_window\" href=\"https://sellfy.com/p/um2fkx/\">purchasing a copy of the book \"Exploring Mayan EDMS\" by Roberto Rosario</a>. <br>The book is available on pre-release format at a discounted price for a limited time.\n" " Besides donations you can also support the project by <a class=\"new_window\" href=\"https://sellfy.com/p/um2fkx/\">purchasing a copy of the book \"Exploring Mayan EDMS\" by Roberto Rosario</a>. <br>The book is available on pre-release format at a discounted price for a limited time.\n"
" " " "
msgstr "" msgstr "\n Освен дарения може също така да подкрепите проекта чрез <a class=\"new_window\" href=\"https://sellfy.com/p/um2fkx/\">покупка на екземпляр на книгата \"Изследване на Mayan EDMS\" от Роберто Росарио</a>. <br>Книгата е налична в предпечатен формат на намалена цена за ограничен период.\n "
#: templates/appearance/about.html:133 #: templates/appearance/about.html:133
#, python-format #, python-format
@@ -169,7 +170,7 @@ msgid ""
"\n" "\n"
" The complete list of changes is available via the <a class=\"new_window\" href=\"https://docs.mayan-edms.com/releases/index.html\">Release notes %(icon_documentation)s</a> or the short version <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms/blob/master/HISTORY.rst\">Changelog %(icon_documentation)s</a>.\n" " The complete list of changes is available via the <a class=\"new_window\" href=\"https://docs.mayan-edms.com/releases/index.html\">Release notes %(icon_documentation)s</a> or the short version <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms/blob/master/HISTORY.rst\">Changelog %(icon_documentation)s</a>.\n"
" " " "
msgstr "" msgstr "\n Пълният списък на промените е наличен чрез <a class=\"new_window\" href=\"https://docs.mayan-edms.com/releases/index.html\">Бележки към версията %(icon_documentation)s</a> или кратката версия <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms/blob/master/HISTORY.rst\">Дневник на промените%(icon_documentation)s</a>.\n "
#: templates/appearance/about.html:139 #: templates/appearance/about.html:139
#, python-format #, python-format
@@ -177,7 +178,7 @@ msgid ""
"\n" "\n"
" For questions check the <a class=\"new_window\" href=\"https://docs.mayan-edms.com\">Documentation %(icon_documentation)s</a> or the <a class=\"new_window\" href=\"https://wiki.mayan-edms.com\">Wiki %(icon_wiki)s</a>.\n" " For questions check the <a class=\"new_window\" href=\"https://docs.mayan-edms.com\">Documentation %(icon_documentation)s</a> or the <a class=\"new_window\" href=\"https://wiki.mayan-edms.com\">Wiki %(icon_wiki)s</a>.\n"
" " " "
msgstr "" msgstr "\n За въпроси проверете <a class=\"new_window\" href=\"https://docs.mayan-edms.com\">Документация %(icon_documentation)s</a> или <a class=\"new_window\" href=\"https://wiki.mayan-edms.com\">Уики %(icon_wiki)s</a>.\n "
#: templates/appearance/about.html:145 #: templates/appearance/about.html:145
#, python-format #, python-format
@@ -185,7 +186,7 @@ msgid ""
"\n" "\n"
" If you found a bug or have a feature idea, visit the <a class=\"new_window\" href=\"https://forum.mayan-edms.com\">Forum %(icon_forum)s</a> or open a ticket in the <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms\">Source code repository %(icon_source_code)s</a>.\n" " If you found a bug or have a feature idea, visit the <a class=\"new_window\" href=\"https://forum.mayan-edms.com\">Forum %(icon_forum)s</a> or open a ticket in the <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms\">Source code repository %(icon_source_code)s</a>.\n"
" " " "
msgstr "" msgstr "\n Ако намерите бъг или имате идея за прибавка, посетете <a class=\"new_window\" href=\"https://forum.mayan-edms.com\">Форум %(icon_forum)s</a> или направете заявка в <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms\">Хранилище на изходен код %(icon_source_code)s</a>.\n "
#: templates/appearance/about.html:150 #: templates/appearance/about.html:150
#, python-format #, python-format
@@ -194,17 +195,17 @@ msgid ""
" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" " Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n"
" Follow us on <a class=\"new_window\" href=\"https://twitter.com/mayanedms\">Twitter %(icon_social_twitter)s</a>, <a class=\"new_window\" href=\"https://www.facebook.com/MayanEDMS/\">Facebook %(icon_social_facebook)s</a>, or <a class=\"new_window\" href=\"https://www.instagram.com/mayan_edms/\">Instagram %(icon_social_instagram)s</a>\n" " Follow us on <a class=\"new_window\" href=\"https://twitter.com/mayanedms\">Twitter %(icon_social_twitter)s</a>, <a class=\"new_window\" href=\"https://www.facebook.com/MayanEDMS/\">Facebook %(icon_social_facebook)s</a>, or <a class=\"new_window\" href=\"https://www.instagram.com/mayan_edms/\">Instagram %(icon_social_instagram)s</a>\n"
" " " "
msgstr "" msgstr "\n Разкажете за проекта. Кажете на Вашите приятели и колеги за това какъв прекрасен е %(project_title)s!\n Следете ни на <a class=\"new_window\" href=\"https://twitter.com/mayanedms\">Twitter %(icon_social_twitter)s</a>, <a class=\"new_window\" href=\"https://www.facebook.com/MayanEDMS/\">Facebook %(icon_social_facebook)s</a>, или <a class=\"new_window\" href=\"https://www.instagram.com/mayan_edms/\">Instagram %(icon_social_instagram)s</a>\n "
#: templates/appearance/base.html:36 templates/appearance/base.html:46 #: templates/appearance/base.html:36 templates/appearance/base.html:46
msgid "Warning" msgid "Warning"
msgstr "" msgstr "Предупреждение"
#: templates/appearance/base.html:46 #: templates/appearance/base.html:46
msgid "" msgid ""
"Settings updated, restart your installation for changes to take proper " "Settings updated, restart your installation for changes to take proper "
"effect." "effect."
msgstr "" msgstr "Настройките са актуализирани, стартирайте отново Вашата инсталация за да подействат."
#: templates/appearance/base.html:60 #: templates/appearance/base.html:60
#: templates/appearance/generic_list_items_subtemplate.html:104 #: templates/appearance/generic_list_items_subtemplate.html:104
@@ -214,11 +215,11 @@ msgstr "Действия"
#: templates/appearance/base.html:62 #: templates/appearance/base.html:62
#: templates/appearance/generic_list_items_subtemplate.html:106 #: templates/appearance/generic_list_items_subtemplate.html:106
msgid "Toggle Dropdown" msgid "Toggle Dropdown"
msgstr "" msgstr "Превключване на плаващо меню"
#: templates/appearance/generic_confirm.html:14 #: templates/appearance/generic_confirm.html:14
msgid "Are you sure?" msgid "Are you sure?"
msgstr "" msgstr "Сигурен ли сте?"
#: templates/appearance/generic_confirm.html:34 #: templates/appearance/generic_confirm.html:34
msgid "Yes" msgid "Yes"
@@ -233,7 +234,7 @@ msgstr "Не"
#: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_form_subtemplate.html:51
#: templates/appearance/generic_multiform_subtemplate.html:37 #: templates/appearance/generic_multiform_subtemplate.html:37
msgid "required" msgid "required"
msgstr "" msgstr "задължително"
#: templates/appearance/generic_form_subtemplate.html:86 #: templates/appearance/generic_form_subtemplate.html:86
#: templates/appearance/generic_form_subtemplate.html:99 #: templates/appearance/generic_form_subtemplate.html:99
@@ -258,7 +259,7 @@ msgstr "Отказ"
msgid "" msgid ""
"Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of "
"%(total_pages)s)" "%(total_pages)s)"
msgstr "" msgstr "Общо (%(start)s - %(end)s от %(total)s) (Страница %(page_number)s от %(total_pages)s)"
#: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:19
#: templates/appearance/generic_list_items_subtemplate.html:22 #: templates/appearance/generic_list_items_subtemplate.html:22
@@ -266,7 +267,7 @@ msgstr ""
#: templates/appearance/generic_list_subtemplate.html:22 #: templates/appearance/generic_list_subtemplate.html:22
#, python-format #, python-format
msgid "Total: %(total)s" msgid "Total: %(total)s"
msgstr "" msgstr "Общо: %(total)s"
#: templates/appearance/generic_list_subtemplate.html:55 #: templates/appearance/generic_list_subtemplate.html:55
msgid "Identifier" msgid "Identifier"
@@ -274,35 +275,35 @@ msgstr "Идентификатор"
#: templates/appearance/home.html:10 #: templates/appearance/home.html:10
msgid "Dashboard" msgid "Dashboard"
msgstr "" msgstr "Контролно табло"
#: templates/appearance/home.html:26 #: templates/appearance/home.html:26
msgid "Getting started" msgid "Getting started"
msgstr "" msgstr "Начален етап"
#: templates/appearance/home.html:29 #: templates/appearance/home.html:29
msgid "Before you can fully use Mayan EDMS you need the following:" msgid "Before you can fully use Mayan EDMS you need the following:"
msgstr "" msgstr "Преди да можете да ползвате напълно Mayan EDMS необходимо е следното:"
#: templates/appearance/main_menu.html:10 #: templates/appearance/main_menu.html:10
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "" msgstr "Превключване на навигацията"
#: templates/appearance/no_results.html:18 #: templates/appearance/no_results.html:18
msgid "No results" msgid "No results"
msgstr "" msgstr "Няма резултати"
#: templates/appearance/root.html:57 #: templates/appearance/root.html:57
msgid "Close" msgid "Close"
msgstr "" msgstr "Затваряне"
#: templates/appearance/root.html:65 #: templates/appearance/root.html:65
msgid "Server communication error" msgid "Server communication error"
msgstr "" msgstr "Грешка при свързването със сървъра"
#: templates/appearance/root.html:67 #: templates/appearance/root.html:67
msgid "Check you network connection and try again in a few moments." msgid "Check you network connection and try again in a few moments."
msgstr "" msgstr "Проверете връзката с мрежата и опитайте отново след няколко секунди."
#: templatetags/appearance_tags.py:17 #: templatetags/appearance_tags.py:17
msgid "None" msgid "None"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Michal Švábík <snadno@lehce.cz>, 2019
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-10-15 16:19+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Michal Švábík <snadno@lehce.cz>\n"
"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,89 +20,89 @@ msgstr ""
#: apps.py:12 settings.py:9 #: apps.py:12 settings.py:9
msgid "Appearance" msgid "Appearance"
msgstr "" msgstr "Vzhled"
#: dependencies.py:10 #: dependencies.py:10
msgid "Lato font" msgid "Lato font"
msgstr "" msgstr "Lato písmo"
#: dependencies.py:14 #: dependencies.py:14
msgid "Bootstrap" msgid "Bootstrap"
msgstr "" msgstr "Bootstrap"
#: dependencies.py:18 #: dependencies.py:18
msgid "Bootswatch" msgid "Bootswatch"
msgstr "" msgstr "Bootswatch"
#: dependencies.py:32 #: dependencies.py:32
msgid "Fancybox" msgid "Fancybox"
msgstr "" msgstr "Fancybox"
#: dependencies.py:36 #: dependencies.py:36
msgid "FontAwesome" msgid "FontAwesome"
msgstr "" msgstr "FontAwesome"
#: dependencies.py:40 #: dependencies.py:40
msgid "jQuery" msgid "jQuery"
msgstr "" msgstr "jQuery"
#: dependencies.py:43 #: dependencies.py:43
msgid "JQuery Form" msgid "JQuery Form"
msgstr "" msgstr "Formulář JQuery"
#: dependencies.py:47 #: dependencies.py:47
msgid "jQuery Lazy Load" msgid "jQuery Lazy Load"
msgstr "" msgstr "jQuery spožděné načítání"
#: dependencies.py:51 #: dependencies.py:51
msgid "JQuery Match Height" msgid "JQuery Match Height"
msgstr "" msgstr "JQuery Match Height"
#: dependencies.py:55 #: dependencies.py:55
msgid "Select 2" msgid "Select 2"
msgstr "" msgstr "Select 2"
#: dependencies.py:59 #: dependencies.py:59
msgid "Toastr" msgid "Toastr"
msgstr "" msgstr "Toastr"
#: dependencies.py:62 #: dependencies.py:62
msgid "URI.js" msgid "URI.js"
msgstr "" msgstr "URI.js"
#: settings.py:14 #: settings.py:14
msgid "Maximum number of characters that will be displayed as the view title." msgid "Maximum number of characters that will be displayed as the view title."
msgstr "" msgstr "Maximální počet znaků, které se zobrazí jako název pohledu."
#: templates/403.html:5 templates/403.html:9 #: templates/403.html:5 templates/403.html:9
msgid "Insufficient permissions" msgid "Insufficient permissions"
msgstr "" msgstr "Nedostatečná oprávnění"
#: templates/403.html:11 #: templates/403.html:11
msgid "You don't have enough permissions for this operation." msgid "You don't have enough permissions for this operation."
msgstr "" msgstr "Pro tuto operaci nemáte dostatečná oprávnění."
#: templates/404.html:5 templates/404.html:9 #: templates/404.html:5 templates/404.html:9
msgid "Page not found" msgid "Page not found"
msgstr "" msgstr "Stránka nenalezena"
#: templates/404.html:11 #: templates/404.html:11
msgid "Sorry, but the requested page could not be found." msgid "Sorry, but the requested page could not be found."
msgstr "" msgstr "Litujeme, ale požadovanou stránku nelze najít."
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52 #: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
msgid "Server error" msgid "Server error"
msgstr "" msgstr "Chyba serveru"
#: templates/500.html:11 #: templates/500.html:11
msgid "" msgid ""
"There's been an error. It's been reported to the site administrators via " "There's been an error. It's been reported to the site administrators via "
"e-mail and should be fixed shortly. Thanks for your patience." "e-mail and should be fixed shortly. Thanks for your patience."
msgstr "" msgstr "Došlo k chybě. Bylo to hlášeno správcům webu prostřednictvím e-mailu a mělo by být brzy opraveno. Děkuji za Vaši trpělivost."
#: templates/appearance/about.html:10 #: templates/appearance/about.html:10
msgid "About" msgid "About"
msgstr "" msgstr "O"
#: templates/appearance/about.html:77 #: templates/appearance/about.html:77
#, python-format #, python-format
@@ -109,20 +110,20 @@ msgid ""
"\n" "\n"
" %(setting_project_title)s is based on %(project_title)s\n" " %(setting_project_title)s is based on %(project_title)s\n"
" " " "
msgstr "" msgstr "\n%(setting_project_title)s je založen na %(project_title)s"
#: templates/appearance/about.html:82 #: templates/appearance/about.html:82
msgid "Version" msgid "Version"
msgstr "" msgstr "Verze"
#: templates/appearance/about.html:84 #: templates/appearance/about.html:84
#, python-format #, python-format
msgid "Build number: %(build_number)s" msgid "Build number: %(build_number)s"
msgstr "" msgstr "Číslo sestavy: %(build_number)s"
#: templates/appearance/about.html:97 #: templates/appearance/about.html:97
msgid "Released under the license:" msgid "Released under the license:"
msgstr "" msgstr "Vydáno na základě licence:"
#: templates/appearance/about.html:103 #: templates/appearance/about.html:103
#, python-format #, python-format
@@ -130,7 +131,7 @@ msgid ""
"\n" "\n"
" %(project_title)s is a free and open-source software brought to you with <i class=\"fa fa-heart text-danger\" style=\"transform: rotate(10deg);\"></i> by Roberto Rosario and contributors.\n" " %(project_title)s is a free and open-source software brought to you with <i class=\"fa fa-heart text-danger\" style=\"transform: rotate(10deg);\"></i> by Roberto Rosario and contributors.\n"
" " " "
msgstr "" msgstr "\n%(project_title)s je bezplatný a open-source software, který vám přináší <i class=\"fa fa-heart text-danger\" style=\"transform: rotate(10deg);\"></i> Roberto Rosario a přispěvatelé."
#: templates/appearance/about.html:109 #: templates/appearance/about.html:109
#, python-format #, python-format
@@ -138,7 +139,7 @@ msgid ""
"\n" "\n"
" It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n" " It takes great effort to make %(project_title)s as feature-rich as it is. We need all the help we can get!\n"
" " " "
msgstr "" msgstr "\nVynakládá velké úsilí, aby byl %(project_title)s stejně bohatý na funkce. Potřebujeme veškerou pomoc, kterou můžeme získat!"
#: templates/appearance/about.html:115 #: templates/appearance/about.html:115
#, python-format #, python-format
@@ -146,7 +147,7 @@ msgid ""
"\n" "\n"
" If you use %(project_title)s please <a class=\"new_window\" href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3PXN336XFXQNN\">consider making a donation %(icon_social_paypal)s</a>\n" " If you use %(project_title)s please <a class=\"new_window\" href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3PXN336XFXQNN\">consider making a donation %(icon_social_paypal)s</a>\n"
" " " "
msgstr "" msgstr "\nPokud používáte %(project_title)s, <a class=\"new_window\" href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3PXN336XFXQNN\">zvažte</a> prosím <a class=\"new_window\" href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3PXN336XFXQNN\">darování %(icon_social_paypal)s</a>"
#: templates/appearance/about.html:121 #: templates/appearance/about.html:121
#, python-format #, python-format
@@ -154,14 +155,14 @@ msgid ""
"\n" "\n"
" You can also <a class=\"new_window\" href=\"https://www.paypal.com/paypalme2/RobertoRosario\">donate directly to the creator and lead developer. %(icon_social_paypal)s</a>\n" " You can also <a class=\"new_window\" href=\"https://www.paypal.com/paypalme2/RobertoRosario\">donate directly to the creator and lead developer. %(icon_social_paypal)s</a>\n"
" " " "
msgstr "" msgstr "\nMůžete také <a class=\"new_window\" href=\"https://www.paypal.com/paypalme2/RobertoRosario\">přispět přímo tvůrci a hlavnímu vývojáři. %(icon_social_paypal)s</a>"
#: templates/appearance/about.html:127 #: templates/appearance/about.html:127
msgid "" msgid ""
"\n" "\n"
" Besides donations you can also support the project by <a class=\"new_window\" href=\"https://sellfy.com/p/um2fkx/\">purchasing a copy of the book \"Exploring Mayan EDMS\" by Roberto Rosario</a>. <br>The book is available on pre-release format at a discounted price for a limited time.\n" " Besides donations you can also support the project by <a class=\"new_window\" href=\"https://sellfy.com/p/um2fkx/\">purchasing a copy of the book \"Exploring Mayan EDMS\" by Roberto Rosario</a>. <br>The book is available on pre-release format at a discounted price for a limited time.\n"
" " " "
msgstr "" msgstr "\nKromě darů můžete také podpořit projekt <a class=\"new_window\" href=\"https://sellfy.com/p/um2fkx/\">zakoupením kopie knihy „Exploring Mayan EDMS“ od Roberta Rosaria</a> . <br> Kniha je k dispozici ve formátu před vydáním za sníženou cenu po omezenou dobu."
#: templates/appearance/about.html:133 #: templates/appearance/about.html:133
#, python-format #, python-format
@@ -169,7 +170,7 @@ msgid ""
"\n" "\n"
" The complete list of changes is available via the <a class=\"new_window\" href=\"https://docs.mayan-edms.com/releases/index.html\">Release notes %(icon_documentation)s</a> or the short version <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms/blob/master/HISTORY.rst\">Changelog %(icon_documentation)s</a>.\n" " The complete list of changes is available via the <a class=\"new_window\" href=\"https://docs.mayan-edms.com/releases/index.html\">Release notes %(icon_documentation)s</a> or the short version <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms/blob/master/HISTORY.rst\">Changelog %(icon_documentation)s</a>.\n"
" " " "
msgstr "" msgstr "\nÚplný seznam změn je k dispozici v <a class=\"new_window\" href=\"https://docs.mayan-edms.com/releases/index.html\">poznámkách</a> k <a class=\"new_window\" href=\"https://docs.mayan-edms.com/releases/index.html\">vydání %(icon_documentation)s</a> nebo v krátké verzi <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms/blob/master/HISTORY.rst\">Changelog %(icon_documentation)s</a> ."
#: templates/appearance/about.html:139 #: templates/appearance/about.html:139
#, python-format #, python-format
@@ -177,7 +178,7 @@ msgid ""
"\n" "\n"
" For questions check the <a class=\"new_window\" href=\"https://docs.mayan-edms.com\">Documentation %(icon_documentation)s</a> or the <a class=\"new_window\" href=\"https://wiki.mayan-edms.com\">Wiki %(icon_wiki)s</a>.\n" " For questions check the <a class=\"new_window\" href=\"https://docs.mayan-edms.com\">Documentation %(icon_documentation)s</a> or the <a class=\"new_window\" href=\"https://wiki.mayan-edms.com\">Wiki %(icon_wiki)s</a>.\n"
" " " "
msgstr "" msgstr "\nV případě dotazů zkontrolujte <a class=\"new_window\" href=\"https://docs.mayan-edms.com\">dokumentaci %(icon_documentation)s</a> nebo <a class=\"new_window\" href=\"https://wiki.mayan-edms.com\">Wiki %(icon_wiki)s</a> ."
#: templates/appearance/about.html:145 #: templates/appearance/about.html:145
#, python-format #, python-format
@@ -185,7 +186,7 @@ msgid ""
"\n" "\n"
" If you found a bug or have a feature idea, visit the <a class=\"new_window\" href=\"https://forum.mayan-edms.com\">Forum %(icon_forum)s</a> or open a ticket in the <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms\">Source code repository %(icon_source_code)s</a>.\n" " If you found a bug or have a feature idea, visit the <a class=\"new_window\" href=\"https://forum.mayan-edms.com\">Forum %(icon_forum)s</a> or open a ticket in the <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms\">Source code repository %(icon_source_code)s</a>.\n"
" " " "
msgstr "" msgstr "\nPokud jste našli chybu nebo máte nějaký nápad, navštivte <a class=\"new_window\" href=\"https://forum.mayan-edms.com\">fórum %(icon_forum)s</a> nebo otevřete lístek v <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms\">úložišti zdrojových kódů %(icon_source_code)s</a> ."
#: templates/appearance/about.html:150 #: templates/appearance/about.html:150
#, python-format #, python-format
@@ -194,63 +195,63 @@ msgid ""
" Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n" " Spread the word. Talk to your friends and colleagues about how awesome %(project_title)s is!\n"
" Follow us on <a class=\"new_window\" href=\"https://twitter.com/mayanedms\">Twitter %(icon_social_twitter)s</a>, <a class=\"new_window\" href=\"https://www.facebook.com/MayanEDMS/\">Facebook %(icon_social_facebook)s</a>, or <a class=\"new_window\" href=\"https://www.instagram.com/mayan_edms/\">Instagram %(icon_social_instagram)s</a>\n" " Follow us on <a class=\"new_window\" href=\"https://twitter.com/mayanedms\">Twitter %(icon_social_twitter)s</a>, <a class=\"new_window\" href=\"https://www.facebook.com/MayanEDMS/\">Facebook %(icon_social_facebook)s</a>, or <a class=\"new_window\" href=\"https://www.instagram.com/mayan_edms/\">Instagram %(icon_social_instagram)s</a>\n"
" " " "
msgstr "" msgstr "\nŠiřme slovo. Promluvte si se svými přáteli a kolegy o tom, jak úžasný je %(project_title)s! Sledujte nás na <a class=\"new_window\" href=\"https://twitter.com/mayanedms\">Twitteru %(icon_social_twitter)s</a> , <a class=\"new_window\" href=\"https://www.facebook.com/MayanEDMS/\">Facebook %(icon_social_facebook)s</a> nebo <a class=\"new_window\" href=\"https://www.instagram.com/mayan_edms/\">Instagram %(icon_social_instagram)s</a>"
#: templates/appearance/base.html:36 templates/appearance/base.html:46 #: templates/appearance/base.html:36 templates/appearance/base.html:46
msgid "Warning" msgid "Warning"
msgstr "" msgstr "Varování"
#: templates/appearance/base.html:46 #: templates/appearance/base.html:46
msgid "" msgid ""
"Settings updated, restart your installation for changes to take proper " "Settings updated, restart your installation for changes to take proper "
"effect." "effect."
msgstr "" msgstr "Nastavení byla aktualizována, restartujte vaši instalaci, aby se změny projevily správně."
#: templates/appearance/base.html:60 #: templates/appearance/base.html:60
#: templates/appearance/generic_list_items_subtemplate.html:104 #: templates/appearance/generic_list_items_subtemplate.html:104
msgid "Actions" msgid "Actions"
msgstr "" msgstr "Akce"
#: templates/appearance/base.html:62 #: templates/appearance/base.html:62
#: templates/appearance/generic_list_items_subtemplate.html:106 #: templates/appearance/generic_list_items_subtemplate.html:106
msgid "Toggle Dropdown" msgid "Toggle Dropdown"
msgstr "" msgstr "Přepnout rozevírací seznam"
#: templates/appearance/generic_confirm.html:14 #: templates/appearance/generic_confirm.html:14
msgid "Are you sure?" msgid "Are you sure?"
msgstr "" msgstr "Jsi si jistí?"
#: templates/appearance/generic_confirm.html:34 #: templates/appearance/generic_confirm.html:34
msgid "Yes" msgid "Yes"
msgstr "" msgstr "Ano"
#: templates/appearance/generic_confirm.html:38 #: templates/appearance/generic_confirm.html:38
msgid "No" msgid "No"
msgstr "" msgstr "Ne"
#: templates/appearance/generic_form_instance.html:51 #: templates/appearance/generic_form_instance.html:51
#: templates/appearance/generic_form_instance.html:57 #: templates/appearance/generic_form_instance.html:57
#: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_form_subtemplate.html:51
#: templates/appearance/generic_multiform_subtemplate.html:37 #: templates/appearance/generic_multiform_subtemplate.html:37
msgid "required" msgid "required"
msgstr "" msgstr "Požadované"
#: templates/appearance/generic_form_subtemplate.html:86 #: templates/appearance/generic_form_subtemplate.html:86
#: templates/appearance/generic_form_subtemplate.html:99 #: templates/appearance/generic_form_subtemplate.html:99
#: templates/appearance/generic_multiform_subtemplate.html:59 #: templates/appearance/generic_multiform_subtemplate.html:59
msgid "Save" msgid "Save"
msgstr "" msgstr "Uložit"
#: templates/appearance/generic_form_subtemplate.html:86 #: templates/appearance/generic_form_subtemplate.html:86
#: templates/appearance/generic_form_subtemplate.html:99 #: templates/appearance/generic_form_subtemplate.html:99
#: templates/appearance/generic_multiform_subtemplate.html:59 #: templates/appearance/generic_multiform_subtemplate.html:59
msgid "Submit" msgid "Submit"
msgstr "" msgstr "Odeslat"
#: templates/appearance/generic_form_subtemplate.html:90 #: templates/appearance/generic_form_subtemplate.html:90
#: templates/appearance/generic_multiform_subtemplate.html:63 #: templates/appearance/generic_multiform_subtemplate.html:63
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr "Zrušit"
#: templates/appearance/generic_list_items_subtemplate.html:17 #: templates/appearance/generic_list_items_subtemplate.html:17
#: templates/appearance/generic_list_subtemplate.html:17 #: templates/appearance/generic_list_subtemplate.html:17
@@ -258,7 +259,7 @@ msgstr ""
msgid "" msgid ""
"Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of "
"%(total_pages)s)" "%(total_pages)s)"
msgstr "" msgstr "Celkem (%(start)s - %(end)s z %(total)s) (stránka %(page_number)s z %(total_pages)s)"
#: templates/appearance/generic_list_items_subtemplate.html:19 #: templates/appearance/generic_list_items_subtemplate.html:19
#: templates/appearance/generic_list_items_subtemplate.html:22 #: templates/appearance/generic_list_items_subtemplate.html:22
@@ -266,44 +267,44 @@ msgstr ""
#: templates/appearance/generic_list_subtemplate.html:22 #: templates/appearance/generic_list_subtemplate.html:22
#, python-format #, python-format
msgid "Total: %(total)s" msgid "Total: %(total)s"
msgstr "" msgstr "Celkem: %(total)s"
#: templates/appearance/generic_list_subtemplate.html:55 #: templates/appearance/generic_list_subtemplate.html:55
msgid "Identifier" msgid "Identifier"
msgstr "" msgstr "Identifikátor"
#: templates/appearance/home.html:10 #: templates/appearance/home.html:10
msgid "Dashboard" msgid "Dashboard"
msgstr "" msgstr "Řídící panel"
#: templates/appearance/home.html:26 #: templates/appearance/home.html:26
msgid "Getting started" msgid "Getting started"
msgstr "" msgstr "Začínáme"
#: templates/appearance/home.html:29 #: templates/appearance/home.html:29
msgid "Before you can fully use Mayan EDMS you need the following:" msgid "Before you can fully use Mayan EDMS you need the following:"
msgstr "" msgstr "Než začnete plně používat Mayan EDMS, potřebujete následující:"
#: templates/appearance/main_menu.html:10 #: templates/appearance/main_menu.html:10
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "" msgstr "Přepnout navigaci"
#: templates/appearance/no_results.html:18 #: templates/appearance/no_results.html:18
msgid "No results" msgid "No results"
msgstr "" msgstr "Žádné výsledky"
#: templates/appearance/root.html:57 #: templates/appearance/root.html:57
msgid "Close" msgid "Close"
msgstr "" msgstr "Zavřít"
#: templates/appearance/root.html:65 #: templates/appearance/root.html:65
msgid "Server communication error" msgid "Server communication error"
msgstr "" msgstr "Chyba komunikace se serverem"
#: templates/appearance/root.html:67 #: templates/appearance/root.html:67
msgid "Check you network connection and try again in a few moments." msgid "Check you network connection and try again in a few moments."
msgstr "" msgstr "Zkontrolujte připojení k síti a zkuste to znovu za chvíli."
#: templatetags/appearance_tags.py:17 #: templatetags/appearance_tags.py:17
msgid "None" msgid "None"
msgstr "" msgstr "žádný"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-24 21:04+0000\n" "PO-Revision-Date: 2019-09-24 21:04+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n"

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-23 09:49+0000\n" "PO-Revision-Date: 2019-09-23 09:49+0000\n"
"Last-Translator: Tomasz Szymanowicz <alakdae@gmail.com>\n" "Last-Translator: Tomasz Szymanowicz <alakdae@gmail.com>\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"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-21 05:30+0000\n" "PO-Revision-Date: 2019-09-21 05:30+0000\n"
"Last-Translator: Harald Ersch\n" "Last-Translator: Harald Ersch\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:06-0400\n" "POT-Creation-Date: 2019-10-27 14:55-0400\n"
"PO-Revision-Date: 2019-09-04 03:25+0000\n" "PO-Revision-Date: 2019-09-04 03:25+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Lyudmil Antonov <lantonov.here@gmail.com>, 2019
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-10-16 09:44+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Lyudmil Antonov <lantonov.here@gmail.com>\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"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,7 +20,7 @@ msgstr ""
#: apps.py:25 settings.py:9 #: apps.py:25 settings.py:9
msgid "Authentication" msgid "Authentication"
msgstr "" msgstr "Удостоверяване"
#: forms.py:17 #: forms.py:17
msgid "Email" msgid "Email"
@@ -27,21 +28,21 @@ msgstr "Електронна поща"
#: forms.py:20 #: forms.py:20
msgid "Password" msgid "Password"
msgstr "" msgstr "Парола"
#: forms.py:22 forms.py:73 #: forms.py:22 forms.py:73
msgid "Remember me" msgid "Remember me"
msgstr "" msgstr "Запомни ме"
#: forms.py:25 #: forms.py:25
msgid "" msgid ""
"Please enter a correct email and password. Note that the password field is " "Please enter a correct email and password. Note that the password field is "
"case-sensitive." "case-sensitive."
msgstr "" msgstr "Моля въведете правилна електронна поща и парола. Забележете, че полето за паролата е чувствително за главни/малки букви."
#: forms.py:27 #: forms.py:27
msgid "This account is inactive." msgid "This account is inactive."
msgstr "" msgstr "Този акаунт е неактивен."
#: links.py:22 #: links.py:22
msgid "Logout" msgid "Logout"
@@ -49,23 +50,23 @@ msgstr "Изход"
#: links.py:27 #: links.py:27
msgid "Change password" msgid "Change password"
msgstr "" msgstr "Промяна на парола"
#: links.py:32 links.py:39 #: links.py:32 links.py:39
msgid "Set password" msgid "Set password"
msgstr "" msgstr "Задаване на парола"
#: settings.py:13 #: settings.py:13
msgid "" msgid ""
"Controls the mechanism used to authenticated user. Options are: username, " "Controls the mechanism used to authenticated user. Options are: username, "
"email" "email"
msgstr "" msgstr "Управлява механизма, използван за удостоверяване на потребителя. Опциите са: потребителско име, имейл"
#: settings.py:20 #: settings.py:20
msgid "" msgid ""
"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" "Maximum time a user clicking the \"Remember me\" checkbox will remain logged"
" in. Value is time in seconds." " in. Value is time in seconds."
msgstr "" msgstr "Максимално време, за което потребителят натискащ квадратчето „Запомни ме“ ще остане включен. Стойността е време в секунди."
#: templates/authentication/login.html:11 #: templates/authentication/login.html:11
msgid "Login" msgid "Login"
@@ -74,11 +75,11 @@ msgstr "Влез"
#: templates/authentication/login.html:26 #: templates/authentication/login.html:26
#: templates/authentication/login.html:34 #: templates/authentication/login.html:34
msgid "Sign in" msgid "Sign in"
msgstr "" msgstr "Впиши се"
#: templates/authentication/login.html:39 #: templates/authentication/login.html:39
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "" msgstr "Забравена парола?"
#: templates/authentication/password_reset_complete.html:8 #: templates/authentication/password_reset_complete.html:8
#: templates/authentication/password_reset_confirm.html:8 #: templates/authentication/password_reset_confirm.html:8
@@ -87,15 +88,15 @@ msgstr ""
#: templates/authentication/password_reset_form.html:8 #: templates/authentication/password_reset_form.html:8
#: templates/authentication/password_reset_form.html:20 #: templates/authentication/password_reset_form.html:20
msgid "Password reset" msgid "Password reset"
msgstr "" msgstr "Нулиране на парола"
#: templates/authentication/password_reset_complete.html:15 #: templates/authentication/password_reset_complete.html:15
msgid "Password reset complete! Click the link below to login." msgid "Password reset complete! Click the link below to login."
msgstr "" msgstr "Нулирането на паролата завърши! Кликнете върху връзката по-долу, за да влезете."
#: templates/authentication/password_reset_complete.html:17 #: templates/authentication/password_reset_complete.html:17
msgid "Login page" msgid "Login page"
msgstr "" msgstr "Страница за вход"
#: templates/authentication/password_reset_confirm.html:29 #: templates/authentication/password_reset_confirm.html:29
#: templates/authentication/password_reset_form.html:29 views.py:154 #: templates/authentication/password_reset_form.html:29 views.py:154
@@ -104,7 +105,7 @@ msgstr "Подаване"
#: templates/authentication/password_reset_done.html:15 #: templates/authentication/password_reset_done.html:15
msgid "Password reset email sent!" msgid "Password reset email sent!"
msgstr "" msgstr "Изпратен имейл за нулиране на парола!"
#: views.py:74 #: views.py:74
msgid "Your password has been successfully changed." msgid "Your password has been successfully changed."
@@ -116,28 +117,28 @@ msgstr "Промяна паролата на текущия потребител
#: views.py:89 #: views.py:89
msgid "Changing the password is not allowed for this account." msgid "Changing the password is not allowed for this account."
msgstr "" msgstr "Промяната на паролата не е разрешена за този акаунт."
#: views.py:145 #: views.py:145
#, python-format #, python-format
msgid "Password change request performed on %(count)d user" msgid "Password change request performed on %(count)d user"
msgstr "" msgstr "Заявка за промяна на парола, изпълнена за%(count)d потребител"
#: views.py:147 #: views.py:147
#, python-format #, python-format
msgid "Password change request performed on %(count)d users" msgid "Password change request performed on %(count)d users"
msgstr "" msgstr "Заявка за промяна на парола, изпълнена за %(count)d потребител"
#: views.py:156 #: views.py:156
msgid "Change user password" msgid "Change user password"
msgid_plural "Change users passwords" msgid_plural "Change users passwords"
msgstr[0] "" msgstr[0] "Промяна на паролата на потребителя"
msgstr[1] "" msgstr[1] "Промяна на паролите на потребителите"
#: views.py:166 #: views.py:166
#, python-format #, python-format
msgid "Change password for user: %s" msgid "Change password for user: %s"
msgstr "" msgstr "Промяна на паролата за потребителя: %s"
#: views.py:186 #: views.py:186
msgid "" msgid ""
@@ -148,7 +149,7 @@ msgstr "Промяна на парола на потребители от суп
#: views.py:196 #: views.py:196
#, python-format #, python-format
msgid "Successful password reset for user: %s." msgid "Successful password reset for user: %s."
msgstr "" msgstr "Успешно нулиране на паролата за потребителя: %s."
#: views.py:202 #: views.py:202
#, python-format #, python-format

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Michal Švábík <snadno@lehce.cz>, 2019
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-10-15 16:23+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Michal Švábík <snadno@lehce.cz>\n"
"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,66 +20,66 @@ msgstr ""
#: apps.py:25 settings.py:9 #: apps.py:25 settings.py:9
msgid "Authentication" msgid "Authentication"
msgstr "" msgstr "Ověřování"
#: forms.py:17 #: forms.py:17
msgid "Email" msgid "Email"
msgstr "" msgstr "E-mail"
#: forms.py:20 #: forms.py:20
msgid "Password" msgid "Password"
msgstr "" msgstr "Heslo"
#: forms.py:22 forms.py:73 #: forms.py:22 forms.py:73
msgid "Remember me" msgid "Remember me"
msgstr "" msgstr "Zapamatuj si mě"
#: forms.py:25 #: forms.py:25
msgid "" msgid ""
"Please enter a correct email and password. Note that the password field is " "Please enter a correct email and password. Note that the password field is "
"case-sensitive." "case-sensitive."
msgstr "" msgstr "Zadejte správný e-mail a heslo. Upozorňujeme, že v poli hesla se rozlišují malá a velká písmena."
#: forms.py:27 #: forms.py:27
msgid "This account is inactive." msgid "This account is inactive."
msgstr "" msgstr "Tento účet je neaktivní."
#: links.py:22 #: links.py:22
msgid "Logout" msgid "Logout"
msgstr "" msgstr "Odhlásit se"
#: links.py:27 #: links.py:27
msgid "Change password" msgid "Change password"
msgstr "" msgstr "Změnit heslo"
#: links.py:32 links.py:39 #: links.py:32 links.py:39
msgid "Set password" msgid "Set password"
msgstr "" msgstr "Nastavit heslo"
#: settings.py:13 #: settings.py:13
msgid "" msgid ""
"Controls the mechanism used to authenticated user. Options are: username, " "Controls the mechanism used to authenticated user. Options are: username, "
"email" "email"
msgstr "" msgstr "Řídí mechanismus používaný k ověření uživatele. Možnosti jsou: uživatelské jméno, e-mail"
#: settings.py:20 #: settings.py:20
msgid "" msgid ""
"Maximum time a user clicking the \"Remember me\" checkbox will remain logged" "Maximum time a user clicking the \"Remember me\" checkbox will remain logged"
" in. Value is time in seconds." " in. Value is time in seconds."
msgstr "" msgstr "Maximální doba, po kterou uživatel klepnutím na políčko „Zapamatovat si mě“ zůstane přihlášený. Hodnota je čas v sekundách."
#: templates/authentication/login.html:11 #: templates/authentication/login.html:11
msgid "Login" msgid "Login"
msgstr "" msgstr "Přihlásit se"
#: templates/authentication/login.html:26 #: templates/authentication/login.html:26
#: templates/authentication/login.html:34 #: templates/authentication/login.html:34
msgid "Sign in" msgid "Sign in"
msgstr "" msgstr "Registrovat se"
#: templates/authentication/login.html:39 #: templates/authentication/login.html:39
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "" msgstr "Zapomněli jste heslo?"
#: templates/authentication/password_reset_complete.html:8 #: templates/authentication/password_reset_complete.html:8
#: templates/authentication/password_reset_confirm.html:8 #: templates/authentication/password_reset_confirm.html:8
@@ -87,72 +88,72 @@ msgstr ""
#: templates/authentication/password_reset_form.html:8 #: templates/authentication/password_reset_form.html:8
#: templates/authentication/password_reset_form.html:20 #: templates/authentication/password_reset_form.html:20
msgid "Password reset" msgid "Password reset"
msgstr "" msgstr "Resetovat heslo"
#: templates/authentication/password_reset_complete.html:15 #: templates/authentication/password_reset_complete.html:15
msgid "Password reset complete! Click the link below to login." msgid "Password reset complete! Click the link below to login."
msgstr "" msgstr "Obnovení hesla bylo dokončeno! Klepnutím na odkaz níže se přihlásíte."
#: templates/authentication/password_reset_complete.html:17 #: templates/authentication/password_reset_complete.html:17
msgid "Login page" msgid "Login page"
msgstr "" msgstr "Přihlašovací stránka"
#: templates/authentication/password_reset_confirm.html:29 #: templates/authentication/password_reset_confirm.html:29
#: templates/authentication/password_reset_form.html:29 views.py:154 #: templates/authentication/password_reset_form.html:29 views.py:154
msgid "Submit" msgid "Submit"
msgstr "" msgstr "Odeslat"
#: templates/authentication/password_reset_done.html:15 #: templates/authentication/password_reset_done.html:15
msgid "Password reset email sent!" msgid "Password reset email sent!"
msgstr "" msgstr "E-mail pro resetování hesla byl odeslán!"
#: views.py:74 #: views.py:74
msgid "Your password has been successfully changed." msgid "Your password has been successfully changed."
msgstr "" msgstr "Vaše heslo bylo úspěšně změněno."
#: views.py:81 #: views.py:81
msgid "Current user password change" msgid "Current user password change"
msgstr "" msgstr "Aktuální změna hesla uživatele"
#: views.py:89 #: views.py:89
msgid "Changing the password is not allowed for this account." msgid "Changing the password is not allowed for this account."
msgstr "" msgstr "Změna hesla není pro tento účet povolena."
#: views.py:145 #: views.py:145
#, python-format #, python-format
msgid "Password change request performed on %(count)d user" msgid "Password change request performed on %(count)d user"
msgstr "" msgstr "Žádost o změnu hesla byla provedena uživatelem %(count)d"
#: views.py:147 #: views.py:147
#, python-format #, python-format
msgid "Password change request performed on %(count)d users" msgid "Password change request performed on %(count)d users"
msgstr "" msgstr "Žádost o změnu hesla byla provedena u uživatelů %(count)d"
#: views.py:156 #: views.py:156
msgid "Change user password" msgid "Change user password"
msgid_plural "Change users passwords" msgid_plural "Change users passwords"
msgstr[0] "" msgstr[0] "Změnit heslo uživatele"
msgstr[1] "" msgstr[1] "Změnit hesla uživatelů"
msgstr[2] "" msgstr[2] "Změnit hesla uživatelů"
msgstr[3] "" msgstr[3] "Změnit hesla uživatelů"
#: views.py:166 #: views.py:166
#, python-format #, python-format
msgid "Change password for user: %s" msgid "Change password for user: %s"
msgstr "" msgstr "Změnit heslo pro uživatele: %s"
#: views.py:186 #: views.py:186
msgid "" msgid ""
"Super user and staff user password reseting is not allowed, use the admin " "Super user and staff user password reseting is not allowed, use the admin "
"interface for these cases." "interface for these cases."
msgstr "" msgstr "Vynulování uživatelského hesla super uživatele a zaměstnanců není povoleno, pro tyto případy použijte rozhraní správce."
#: views.py:196 #: views.py:196
#, python-format #, python-format
msgid "Successful password reset for user: %s." msgid "Successful password reset for user: %s."
msgstr "" msgstr "Úspěšné obnovení hesla pro uživatele: %s."
#: views.py:202 #: views.py:202
#, python-format #, python-format
msgid "Error reseting password for user \"%(user)s\": %(error)s" msgid "Error reseting password for user \"%(user)s\": %(error)s"
msgstr "" msgstr "Chyba při resetování hesla pro uživatele „%(user)s“: %(error)s"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n"

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:51+0000\n" "PO-Revision-Date: 2019-06-15 07:51+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-07-02 15:51+0000\n" "PO-Revision-Date: 2019-07-02 15:51+0000\n"
"Last-Translator: Frédéric Sheedy <sheedf@gmail.com>\n" "Last-Translator: Frédéric Sheedy <sheedf@gmail.com>\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-27 12:07+0000\n" "PO-Revision-Date: 2019-06-27 12:07+0000\n"
"Last-Translator: Māris Teivāns <maris.teivans@gmail.com>\n" "Last-Translator: Māris Teivāns <maris.teivans@gmail.com>\n"
"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-09-23 09:50+0000\n" "PO-Revision-Date: 2019-09-23 09:50+0000\n"
"Last-Translator: Tomasz Szymanowicz <alakdae@gmail.com>\n" "Last-Translator: Tomasz Szymanowicz <alakdae@gmail.com>\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-18 15:36+0000\n" "PO-Revision-Date: 2019-06-18 15:36+0000\n"
"Last-Translator: Harald Ersch\n" "Last-Translator: Harald Ersch\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\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"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Mayan EDMS\n" "Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-06-15 07:48+0000\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n"
"Last-Translator: Roberto Rosario\n" "Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Last-Translator: Mohammed ALDOUB <voulnet@gmail.com>, 2019\n" "Last-Translator: Mohammed ALDOUB <voulnet@gmail.com>, 2019\n"
"Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n"

View File

@@ -5,15 +5,16 @@
# #
# Translators: # Translators:
# Pavlin Koldamov <pkoldamov@gmail.com>, 2019 # Pavlin Koldamov <pkoldamov@gmail.com>, 2019
# Lyudmil Antonov <lantonov.here@gmail.com>, 2019
# #
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Last-Translator: Pavlin Koldamov <pkoldamov@gmail.com>, 2019\n" "Last-Translator: Lyudmil Antonov <lantonov.here@gmail.com>, 2019\n"
"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,43 +24,48 @@ msgstr ""
#: apps.py:16 settings.py:9 #: apps.py:16 settings.py:9
msgid "Auto administrator" msgid "Auto administrator"
msgstr "" msgstr "Автоматичен администратор"
#: auth/allauth.py:54 #: auth/allauth.py:54
msgid "" msgid ""
"Welcome Admin! You have been given superuser privileges. Use them with " "Welcome Admin! You have been given superuser privileges. Use them with "
"caution." "caution."
msgstr "" msgstr ""
"Добре дошли Админ! Получили сте привилегии за свръхпотребител. Използвайте "
"ги с повишено внимание."
#: models.py:15 #: models.py:15
msgid "Account" msgid "Account"
msgstr "" msgstr "Акаунт"
#: models.py:18 #: models.py:18
msgid "Password" msgid "Password"
msgstr "" msgstr "Парола"
#: models.py:21 #: models.py:21
msgid "Password hash" msgid "Password hash"
msgstr "" msgstr "Хеш на парола"
#: models.py:27 #: models.py:27
msgid "Autoadmin properties" msgid "Autoadmin properties"
msgstr "" msgstr "Свойства за автоматично администриране"
#: settings.py:14 #: settings.py:14
msgid "Sets the email of the automatically created super user account." msgid "Sets the email of the automatically created super user account."
msgstr "" msgstr "Задава имейла на автоматично създадения супер потребителски акаунт."
#: settings.py:20 #: settings.py:20
msgid "" msgid ""
"The password of the automatically created super user account. If it is equal" "The password of the automatically created super user account. If it is equal"
" to None, the password is randomly generated." " to None, the password is randomly generated."
msgstr "" msgstr ""
"Паролата на автоматично създадения супер потребителски акаунт. Ако е равна "
"на None, паролата се генерира на случаен принцип."
#: settings.py:27 #: settings.py:27
msgid "The username of the automatically created super user account." msgid "The username of the automatically created super user account."
msgstr "" msgstr ""
"Потребителското име на автоматично създадения супер потребителски акаунт."
#: templates/autoadmin/credentials.html:11 #: templates/autoadmin/credentials.html:11
msgid "First time login" msgid "First time login"
@@ -71,10 +77,12 @@ msgid ""
"You have just finished installing <strong>%(project_title)s</strong>, " "You have just finished installing <strong>%(project_title)s</strong>, "
"congratulations!" "congratulations!"
msgstr "" msgstr ""
"Току-що завършихте с инсталирането на <strong>%(project_title)s</strong> , "
"поздравления!"
#: templates/autoadmin/credentials.html:17 #: templates/autoadmin/credentials.html:17
msgid "Login using the following credentials:" msgid "Login using the following credentials:"
msgstr "Логване, използвайки следните параметри:" msgstr "Влезте, като използвате следните идентификационни данни:"
#: templates/autoadmin/credentials.html:18 #: templates/autoadmin/credentials.html:18
#, python-format #, python-format
@@ -84,7 +92,7 @@ msgstr "Потребителско име: <strong>%(account)s</strong>"
#: templates/autoadmin/credentials.html:19 #: templates/autoadmin/credentials.html:19
#, python-format #, python-format
msgid "Email: <strong>%(email)s</strong>" msgid "Email: <strong>%(email)s</strong>"
msgstr "" msgstr "Имейл: <strong>%(email)s</strong>"
#: templates/autoadmin/credentials.html:20 #: templates/autoadmin/credentials.html:20
#, python-format #, python-format

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Last-Translator: Atdhe Tabaku <Atdhe617@gmail.com>, 2019\n" "Last-Translator: Atdhe Tabaku <Atdhe617@gmail.com>, 2019\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n"

View File

@@ -3,13 +3,17 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# #
# Translators:
# Michal Švábík <snadno@lehce.cz>, 2019
#
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Last-Translator: Michal Švábík <snadno@lehce.cz>, 2019\n"
"Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,47 +23,50 @@ msgstr ""
#: apps.py:16 settings.py:9 #: apps.py:16 settings.py:9
msgid "Auto administrator" msgid "Auto administrator"
msgstr "" msgstr "Automatický správce"
#: auth/allauth.py:54 #: auth/allauth.py:54
msgid "" msgid ""
"Welcome Admin! You have been given superuser privileges. Use them with " "Welcome Admin! You have been given superuser privileges. Use them with "
"caution." "caution."
msgstr "" msgstr ""
"Vítejte Admin! Dostali jste oprávnění superuživatele. Používejte je opatrně."
#: models.py:15 #: models.py:15
msgid "Account" msgid "Account"
msgstr "" msgstr "Účet"
#: models.py:18 #: models.py:18
msgid "Password" msgid "Password"
msgstr "" msgstr "Heslo"
#: models.py:21 #: models.py:21
msgid "Password hash" msgid "Password hash"
msgstr "" msgstr "Hash hesla"
#: models.py:27 #: models.py:27
msgid "Autoadmin properties" msgid "Autoadmin properties"
msgstr "" msgstr "Vlastnosti automatického správce"
#: settings.py:14 #: settings.py:14
msgid "Sets the email of the automatically created super user account." msgid "Sets the email of the automatically created super user account."
msgstr "" msgstr "Nastaví e-mail automaticky vytvořeného superuživatelského účtu."
#: settings.py:20 #: settings.py:20
msgid "" msgid ""
"The password of the automatically created super user account. If it is equal" "The password of the automatically created super user account. If it is equal"
" to None, the password is randomly generated." " to None, the password is randomly generated."
msgstr "" msgstr ""
"Heslo automaticky vytvořeného superuživatelského účtu. Pokud je rovno Žádné,"
" heslo se vygeneruje náhodně."
#: settings.py:27 #: settings.py:27
msgid "The username of the automatically created super user account." msgid "The username of the automatically created super user account."
msgstr "" msgstr "Uživatelské jméno automaticky vytvořeného superuživatelského účtu."
#: templates/autoadmin/credentials.html:11 #: templates/autoadmin/credentials.html:11
msgid "First time login" msgid "First time login"
msgstr "" msgstr "První přihlášení"
#: templates/autoadmin/credentials.html:16 #: templates/autoadmin/credentials.html:16
#, python-format #, python-format
@@ -67,28 +74,32 @@ msgid ""
"You have just finished installing <strong>%(project_title)s</strong>, " "You have just finished installing <strong>%(project_title)s</strong>, "
"congratulations!" "congratulations!"
msgstr "" msgstr ""
"Právě jste dokončili instalaci <strong>%(project_title)s</strong> , "
"gratuluji!"
#: templates/autoadmin/credentials.html:17 #: templates/autoadmin/credentials.html:17
msgid "Login using the following credentials:" msgid "Login using the following credentials:"
msgstr "" msgstr "Přihlaste se pomocí následujících přihlašovacích údajů:"
#: templates/autoadmin/credentials.html:18 #: templates/autoadmin/credentials.html:18
#, python-format #, python-format
msgid "Username: <strong>%(account)s</strong>" msgid "Username: <strong>%(account)s</strong>"
msgstr "" msgstr "Uživatelské jméno: <strong>%(account)s</strong>"
#: templates/autoadmin/credentials.html:19 #: templates/autoadmin/credentials.html:19
#, python-format #, python-format
msgid "Email: <strong>%(email)s</strong>" msgid "Email: <strong>%(email)s</strong>"
msgstr "" msgstr "E-mail: <strong>%(email)s</strong>"
#: templates/autoadmin/credentials.html:20 #: templates/autoadmin/credentials.html:20
#, python-format #, python-format
msgid "Password: <strong>%(password)s</strong>" msgid "Password: <strong>%(password)s</strong>"
msgstr "" msgstr "Heslo: <strong>%(password)s</strong>"
#: templates/autoadmin/credentials.html:21 #: templates/autoadmin/credentials.html:21
msgid "" msgid ""
"Be sure to change the password to increase security and to disable this " "Be sure to change the password to increase security and to disable this "
"message." "message."
msgstr "" msgstr ""
"Nezapomeňte změnit heslo, abyste zvýšili zabezpečení a tuto zprávu "
"deaktivovali."

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Language-Team: Danish (https://www.transifex.com/rosarior/teams/13584/da/)\n" "Language-Team: Danish (https://www.transifex.com/rosarior/teams/13584/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Last-Translator: Rasmus Kierudsen <tebrasso@gmail.com>, 2019\n" "Last-Translator: Rasmus Kierudsen <tebrasso@gmail.com>, 2019\n"
"Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n"

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Last-Translator: Mathias Behrle <mathiasb@m9s.biz>, 2019\n" "Last-Translator: Mathias Behrle <mathiasb@m9s.biz>, 2019\n"
"Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Last-Translator: Hmayag Antonian <hmayag@freemail.gr>, 2019\n" "Last-Translator: Hmayag Antonian <hmayag@freemail.gr>, 2019\n"
"Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Last-Translator: Roberto Rosario, 2019\n" "Last-Translator: Roberto Rosario, 2019\n"
"Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n"

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Last-Translator: Mehdi Amani <MehdiAmani@toorintan.com>, 2019\n" "Last-Translator: Mehdi Amani <MehdiAmani@toorintan.com>, 2019\n"
"Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n"

View File

@@ -14,7 +14,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-24 23:07-0400\n" "POT-Creation-Date: 2019-10-27 14:56-0400\n"
"PO-Revision-Date: 2019-04-14 04:06+0000\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n"
"Last-Translator: Frédéric Sheedy <sheedf@gmail.com>, 2019\n" "Last-Translator: Frédéric Sheedy <sheedf@gmail.com>, 2019\n"
"Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n"

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