Compare commits
41 Commits
releases/d
...
versions/m
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d5aab12b8d | ||
|
|
ebc0a5f449 | ||
|
|
415d3bcd2f | ||
|
|
b985f2ef05 | ||
|
|
15c953815e | ||
|
|
390e552c1f | ||
|
|
9041f00caa | ||
|
|
b0163319eb | ||
|
|
762cdc5b89 | ||
|
|
396cbb4b22 | ||
|
|
8b0cd93526 | ||
|
|
f97ccb693b | ||
|
|
c3b539ba19 | ||
|
|
80126f2326 | ||
|
|
00e3d40231 | ||
|
|
0953127420 | ||
|
|
02505ba855 | ||
|
|
6fe41660bd | ||
|
|
7695178992 | ||
|
|
b03758ed8b | ||
|
|
d7818b64b0 | ||
|
|
fb53726888 | ||
|
|
8da1a64410 | ||
|
|
62430bf341 | ||
|
|
792aa64829 | ||
|
|
e62e684107 | ||
|
|
a3d63dce80 | ||
|
|
8adb342e24 | ||
|
|
c9567d0c6d | ||
|
|
907e2213e9 | ||
|
|
dea3bbdf09 | ||
|
|
61c6562860 | ||
|
|
8322bd3a27 | ||
|
|
11898a36fe | ||
|
|
2d97024d93 | ||
|
|
d543a71909 | ||
|
|
c652a6c7f6 | ||
|
|
1bc3b58d4e | ||
|
|
4e6e4789e3 | ||
|
|
d1ba081fb7 | ||
|
|
03c63bcf80 |
975
HISTORY.rst
975
HISTORY.rst
File diff suppressed because it is too large
Load Diff
@@ -23,6 +23,8 @@ RUN set -x \
|
||||
apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
exiftool \
|
||||
fonts-arphic-uming \
|
||||
fonts-arphic-ukai \
|
||||
ghostscript \
|
||||
gpgv \
|
||||
gnupg1 \
|
||||
@@ -60,7 +62,6 @@ echo "save \"\"" >> /etc/redis/redis.conf \
|
||||
# Only provision 1 database
|
||||
&& echo "databases 1" >> /etc/redis/redis.conf
|
||||
|
||||
|
||||
####
|
||||
# BUILDER_IMAGE - This image buildS the Python package and is discarded afterwards
|
||||
####
|
||||
|
||||
@@ -40,7 +40,7 @@ update_uid_gid() {
|
||||
|
||||
if [ ${MAYAN_USER_UID} -ne ${DEFAULT_USER_UID} ] || [ ${MAYAN_USER_GID} -ne ${DEFAULT_USER_GID} ]; then
|
||||
echo "mayan: Updating file ownership. This might take a while if there are many documents."
|
||||
chown mayan:mayan ${MAYAN_INSTALL_DIR} ${MAYAN_STATIC_ROOT} ${MAYAN_MEDIA_ROOT}
|
||||
chown -R mayan:mayan ${MAYAN_INSTALL_DIR} ${MAYAN_STATIC_ROOT} ${MAYAN_MEDIA_ROOT}
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
3.2.7
|
||||
3.2.8
|
||||
|
||||
@@ -226,32 +226,46 @@ Git branch structure
|
||||
Mayan EDMS follows a simplified model layout based on Vincent Driessen's
|
||||
`Successful Git Branching Model`_ blog post.
|
||||
|
||||
``development``
|
||||
The "next release" branch, likely unstable, don't use in production.
|
||||
``/versions/micro``
|
||||
Working branch for the next bugfix release. Micro increment (third digit).
|
||||
Only bug fixes, minor features, back-ported urgent features. This
|
||||
branch is stable and safe for production.
|
||||
``/versions/minor``
|
||||
Working branch for the next minor release (second digit). New features,
|
||||
occasional breakage. Not for production but should run in test
|
||||
environment most of the time. This is the branch you will want to
|
||||
try out if you want to check out new features.
|
||||
``/versions/major``
|
||||
Working branch for the next major release (first digit). New features,
|
||||
incompatible changes to the user facing interfaces. Broken most of the
|
||||
time, not for production and should only be cloned by developers
|
||||
with experience with Mayan's development.
|
||||
``master``
|
||||
Current production release (|version|). Points to the latest version of
|
||||
the latest series. Production quality code.
|
||||
``feature/``
|
||||
Unfinished/unmerged feature. Likely unstable, don't use in production.
|
||||
|
||||
``features/``
|
||||
Working branches for unfinished and unmerged feature. Likely unstable,
|
||||
don't use in production. Once the feature is complete, it is merged
|
||||
into one of the versions branches and deleted.
|
||||
|
||||
Special branches:
|
||||
|
||||
``releases/all``
|
||||
Used by the continuous delivery system to trigger the build and release
|
||||
Pushing code to this branch will trigger the build and release
|
||||
a new Docker image, Documentation and Python package.
|
||||
``releases/docker``
|
||||
Used by the continuous delivery system to trigger the build and release
|
||||
Pushing code to this branch will trigger the build and release
|
||||
of a new Docker image to Docker Hub.
|
||||
``releases/documentation``
|
||||
Used by the continuous delivery system to trigger the build and release
|
||||
Pushing code to this branch will trigger the build and release
|
||||
of new documentation.
|
||||
``releases/python``
|
||||
Used by the continuous delivery system to trigger the build and release
|
||||
Pushing code to this branch will trigger the build and release
|
||||
of a new Python package to PyPI.
|
||||
``nightly``
|
||||
Used by the continuous delivery system to trigger the build and release
|
||||
Pushing code to this branch will trigger the build and release
|
||||
of a new Docker image based on development code to the GitLab image
|
||||
repository.
|
||||
repository only. The image will not be published to Docker Hub.
|
||||
|
||||
Each release is tagged separately using annotated Git tags.
|
||||
|
||||
@@ -519,7 +533,7 @@ Release using GitLab CI
|
||||
::
|
||||
|
||||
git checkout releases/all
|
||||
git merge versions/next
|
||||
git merge <corresponding branch>
|
||||
|
||||
#. Push code to trigger builds:
|
||||
::
|
||||
|
||||
@@ -233,6 +233,12 @@ and will exhaust the available Postgres connections available if a number
|
||||
other than 0 is used. Reference: https://serverfault.com/questions/635100/django-conn-max-age-persists-connections-but-doesnt-reuse-them-with-postgresq
|
||||
and https://github.com/benoitc/gunicorn/issues/996
|
||||
|
||||
``MAYAN_GUNICORN_TIMEOUT``
|
||||
|
||||
Optional. Changes the amount of time the frontend worker will wait for a
|
||||
request to finish before raising a timeout error. The default is 120
|
||||
seconds.
|
||||
|
||||
``MAYAN_GUNICORN_WORKERS``
|
||||
|
||||
Optional. This environment variable controls the number of frontend workers
|
||||
|
||||
161
docs/releases/3.2.8.rst
Normal file
161
docs/releases/3.2.8.rst
Normal file
@@ -0,0 +1,161 @@
|
||||
Version 3.2.8
|
||||
=============
|
||||
|
||||
Released: October 1, 2019
|
||||
|
||||
|
||||
Changes
|
||||
-------
|
||||
|
||||
|
||||
API
|
||||
^^^
|
||||
|
||||
Fix an error when accessing some API entry points without
|
||||
being authenticated. Accessing API endpoints without being authenticated
|
||||
will now always return empty results.
|
||||
|
||||
|
||||
Cabinets
|
||||
^^^^^^^^
|
||||
|
||||
Tweaked the jstree component's appearance to cope with long labels.
|
||||
Added a scrollbar, reduced the font size, switched to a sans serif font,
|
||||
and reduced padding. Thanks for forum user @briboe for the report.
|
||||
|
||||
Workflow actions to add and remove documents from cabinets was added.
|
||||
|
||||
|
||||
Dependencies
|
||||
^^^^^^^^^^^^
|
||||
|
||||
The Django version used was updated to version 1.11.24. The jQuery version
|
||||
used was updated to version 3.4.1. Both as fully backwards compatible with
|
||||
their previous versions.
|
||||
|
||||
|
||||
OCR
|
||||
^^^
|
||||
|
||||
Support was added to delete the content of document's OCR or parsed content.
|
||||
Events for both situations was added allowing content deletion to be used
|
||||
as workflow transition triggers.
|
||||
|
||||
|
||||
Docker
|
||||
^^^^^^
|
||||
|
||||
A missing recursive option was added to the Docker entrypoint
|
||||
command "chown" to change the ownership of files when specifying a custom
|
||||
UID or GID. Closes GitLab issue #668. Thanks to John Wice (@brilthor)
|
||||
for the report.
|
||||
|
||||
Two fonts were added to the Docker image to support rendering Chinese office
|
||||
documents. Closes GitLab issue #666. Thanks to javawcy (@javawcy) and forum
|
||||
user @leoliu for the report and help closing this issue.
|
||||
|
||||
|
||||
Usability
|
||||
^^^^^^^^^
|
||||
|
||||
Descriptions for screenreaders was added via image alt tag. The user interface
|
||||
will also now allow scaling.
|
||||
|
||||
|
||||
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.8
|
||||
|
||||
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.
|
||||
- :gitlab-issue:`668` Permission denied errors with custom uid persist (650 needs re-open)
|
||||
- :forum-topic:`1120` Cabinet Presentation
|
||||
- :forum-topic:`2202` Cannot display Chinese character and cannot identify Excel files
|
||||
|
||||
.. _PyPI: https://pypi.python.org/pypi/mayan-edms/
|
||||
@@ -20,6 +20,7 @@ versions of the documentation contain the release notes for any later releases.
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
3.2.8
|
||||
3.2.7
|
||||
3.2.6
|
||||
3.2.5
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__title__ = 'Mayan EDMS'
|
||||
__version__ = '3.2.7'
|
||||
__build__ = 0x030207
|
||||
__build_string__ = 'v3.2.7_Wed Aug 28 17:31:08 2019 -0400'
|
||||
__version__ = '3.2.8'
|
||||
__build__ = 0x030208
|
||||
__build_string__ = 'v3.2.8_Tue Oct 1 13:31:40 2019 -0400'
|
||||
__django_version__ = '1.11'
|
||||
__author__ = 'Roberto Rosario'
|
||||
__author_email__ = 'roberto.rosario@mayan-edms.com'
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n"
|
||||
|
||||
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:51+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n"
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n"
|
||||
|
||||
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n"
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-08-28 11:33+0000\n"
|
||||
"Last-Translator: Daniele Bortoluzzi <daniele@elkos.it>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-28 11:16+0000\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"
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n"
|
||||
|
||||
Binary file not shown.
@@ -5,15 +5,16 @@
|
||||
# Translators:
|
||||
# Daniel Winiarski <daniel.winiarski.dw@gmail.com>, 2017
|
||||
# Marcin Lozynski <mlozynski@wp.pl>, 2019
|
||||
# Tomasz Szymanowicz <alakdae@gmail.com>, 2019
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2016
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2017-2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"PO-Revision-Date: 2019-08-30 21:41+0000\n"
|
||||
"Last-Translator: Marcin Lozynski <mlozynski@wp.pl>\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-23 09:33+0000\n"
|
||||
"Last-Translator: Tomasz Szymanowicz <alakdae@gmail.com>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,7 +28,7 @@ msgstr "Listy ACL"
|
||||
|
||||
#: events.py:8 permissions.py:7
|
||||
msgid "Access control lists"
|
||||
msgstr "Listy ACL"
|
||||
msgstr "Listy kontroli dostępu"
|
||||
|
||||
#: events.py:12
|
||||
msgid "ACL created"
|
||||
@@ -56,7 +57,7 @@ msgstr "Uprawnienia"
|
||||
#: managers.py:216
|
||||
#, python-format
|
||||
msgid "Object \"%s\" is not a model and cannot be checked for access."
|
||||
msgstr ""
|
||||
msgstr "Obiekt \"%s\" nie jest modelem i nie może być sprawdzony pod kątem dostępu."
|
||||
|
||||
#: managers.py:236
|
||||
#, python-format
|
||||
@@ -158,7 +159,7 @@ msgid ""
|
||||
"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 "
|
||||
"menu."
|
||||
msgstr ""
|
||||
msgstr "Wyłączone prawa są dziedziczone z obiektu rodzica lub bezpośrednio nadane dla roli i nie mogą być usunięte w tym widoku. Dziedziczone prawa muszą być usunięte z listy ACL obiektu rodzica lub z roli w menu Ustawień."
|
||||
|
||||
#: workflow_actions.py:26
|
||||
msgid "Object type"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n"
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-18 15:35+0000\n"
|
||||
"Last-Translator: Harald Ersch\n"
|
||||
"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n"
|
||||
|
||||
@@ -239,6 +239,9 @@ class AccessControlListManager(models.Manager):
|
||||
)
|
||||
|
||||
def restrict_queryset(self, permission, queryset, user):
|
||||
if not user.is_authenticated():
|
||||
return queryset.none()
|
||||
|
||||
# Check directly granted permission via a role
|
||||
try:
|
||||
Permission.check_user_permissions(
|
||||
|
||||
@@ -2,7 +2,7 @@ from __future__ import unicode_literals
|
||||
|
||||
from django.contrib.contenttypes.models import ContentType
|
||||
|
||||
from mayan.apps.document_states.tests.test_actions import ActionTestCase
|
||||
from mayan.apps.document_states.tests.test_workflow_actions import ActionTestCase
|
||||
from mayan.apps.documents.permissions import permission_document_view
|
||||
|
||||
from ..workflow_actions import (
|
||||
@@ -37,7 +37,7 @@ JavaScriptDependency(
|
||||
name='@fortawesome/fontawesome-free', version_string='=5.6.3'
|
||||
)
|
||||
JavaScriptDependency(
|
||||
label=_('jQuery'), module=__name__, name='jquery', version_string='=3.3.1'
|
||||
label=_('jQuery'), module=__name__, name='jquery', version_string='=3.4.1'
|
||||
)
|
||||
JavaScriptDependency(
|
||||
label=_('JQuery Form'), module=__name__, name='jquery-form',
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n"
|
||||
@@ -89,7 +89,7 @@ msgstr "لم يتم العثور على الصفحة"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "عفواً، لا يمكن العثور على الصفحة المطلوبة."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr ""
|
||||
|
||||
@@ -292,15 +292,15 @@ msgstr ""
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n"
|
||||
@@ -89,7 +89,7 @@ msgstr "Страницата не е намерена"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr ""
|
||||
|
||||
@@ -292,15 +292,15 @@ msgstr ""
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n"
|
||||
@@ -90,7 +90,7 @@ msgstr "Stranica nije pronađena"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Žao nam je, ali tražena stranica ne može biti pronađena."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Greška u serveru"
|
||||
|
||||
@@ -293,15 +293,15 @@ msgstr "Prebacite navigaciju"
|
||||
msgid "No results"
|
||||
msgstr "Nema rezultata"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Problem u komunikaciji sa serverom"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Proverite mrežnu vezu i pokušajte ponovo za nekoliko trenutaka."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n"
|
||||
@@ -89,7 +89,7 @@ msgstr ""
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr ""
|
||||
|
||||
@@ -292,15 +292,15 @@ msgstr ""
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n"
|
||||
@@ -90,7 +90,7 @@ msgstr "Side ikke fundet"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Beklager, men den ønskede side kunne ikke findes"
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Server fejl"
|
||||
|
||||
@@ -293,15 +293,15 @@ msgstr ""
|
||||
msgid "No results"
|
||||
msgstr "Ingen resultater"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Luk"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n"
|
||||
@@ -93,7 +93,7 @@ msgstr "Seite nicht gefunden"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Die angeforderte Seite konnte leider nicht gefunden werden"
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Serverfehler"
|
||||
|
||||
@@ -296,15 +296,15 @@ msgstr "Navigation ein-/ausschalten"
|
||||
msgid "No results"
|
||||
msgstr "Kein Ergebnis"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Fehler bei der Verbindung zum Server"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Prüfen Sie Ihre Netzwerkeinstellungen und versuchen Sie es nochmals."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n"
|
||||
@@ -89,7 +89,7 @@ msgstr "Η σελίδα δεν βρέθηκε"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Λυπάμαι, η ζητούμενη σελίδα δεν βρέθηκε."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Σφάλμα διακομηστή"
|
||||
|
||||
@@ -292,15 +292,15 @@ msgstr "Εναλλαγή πλοήγησης"
|
||||
msgid "No results"
|
||||
msgstr "Κανένα αποτέλεσμα"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -89,7 +89,7 @@ msgstr ""
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr ""
|
||||
|
||||
@@ -319,15 +319,15 @@ msgstr ""
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-24 21:04+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -90,7 +90,7 @@ msgstr "Página no encontrada"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Lo sentimos, pero no se pudo encontrar la página solicitada."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Error de servidor"
|
||||
|
||||
@@ -155,14 +155,14 @@ msgid ""
|
||||
"\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 "\nTambién puede <a class=\"new_window\" href=\"https://www.paypal.com/paypalme2/RobertoRosario\">donar directamente al creador y desarrollador principal. %(icon_social_paypal)s</a>"
|
||||
|
||||
#: templates/appearance/about.html:127
|
||||
msgid ""
|
||||
"\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 "\nAdemás de las donaciones, también puede apoyar el proyecto <a class=\"new_window\" href=\"https://sellfy.com/p/um2fkx/\">comprando una copia del libro \"Exploring Mayan EDMS\" de Roberto Rosario</a> . <br> El libro está disponible en formato de prelanzamiento a un precio con descuento por tiempo limitado."
|
||||
|
||||
#: templates/appearance/about.html:133
|
||||
#, python-format
|
||||
@@ -293,15 +293,15 @@ msgstr "Activar/Desactivar navegación"
|
||||
msgid "No results"
|
||||
msgstr "Ningún resultado"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Error de comunicación del servidor"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Verifique su conexión de red y vuelva a intentarlo en unos momentos."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n"
|
||||
@@ -90,7 +90,7 @@ msgstr "صفحه پیدا نشد."
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "متاسفانه صفحه درخواستی پیدا نشد."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "خطای سرور"
|
||||
|
||||
@@ -293,15 +293,15 @@ msgstr "تغییر ناوبری"
|
||||
msgid "No results"
|
||||
msgstr "بی جواب و یا بی جواب"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n"
|
||||
@@ -95,7 +95,7 @@ msgstr "Page non trouvée"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Désolé, la page demandée n'a pu être trouvée."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Erreur du serveur"
|
||||
|
||||
@@ -298,15 +298,15 @@ msgstr "Activer la navigation"
|
||||
msgid "No results"
|
||||
msgstr "Pas de résultats"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Erreur de communication serveur"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Vérifiez votre connexion réseau et réessayez dans quelques instants."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n"
|
||||
@@ -90,7 +90,7 @@ msgstr "Oldal nem található"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr ""
|
||||
|
||||
@@ -293,15 +293,15 @@ msgstr ""
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n"
|
||||
@@ -89,7 +89,7 @@ msgstr ""
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr ""
|
||||
|
||||
@@ -292,15 +292,15 @@ msgstr ""
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n"
|
||||
@@ -92,7 +92,7 @@ msgstr "Pagina non trovata"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Scusa ma la pagina richiesta non è disponibile"
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Errore del server"
|
||||
|
||||
@@ -295,15 +295,15 @@ msgstr "Cambia navigazione"
|
||||
msgid "No results"
|
||||
msgstr "Nessun risultato"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Errore di comunicazione del Server"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Controlla la connessione di rete e riprova"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n"
|
||||
@@ -90,7 +90,7 @@ msgstr "Lapa nav atrasta"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Diemžēl pieprasīto lapu nevarēja atrast."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Servera kļūda"
|
||||
|
||||
@@ -293,15 +293,15 @@ msgstr "Pārslēgt navigāciju"
|
||||
msgid "No results"
|
||||
msgstr "Nav rezultātu"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Aizvērt"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Servera sakaru kļūda"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Pārbaudiet tīkla savienojumu un pēc brīža mēģiniet vēlreiz."
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n"
|
||||
@@ -92,7 +92,7 @@ msgstr "Pagina niet gevonden"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Excuses, maar de opgevraagde pagina kan niet worden gevonden."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Server fout"
|
||||
|
||||
@@ -295,15 +295,15 @@ msgstr "Toggle navigatie"
|
||||
msgid "No results"
|
||||
msgstr "Geen resultaten"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Sluiten"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Server communicatie probleem"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Controleer uw netwerkverbinding en probeer nog eens een beetje later."
|
||||
|
||||
|
||||
Binary file not shown.
@@ -4,6 +4,7 @@
|
||||
#
|
||||
# Translators:
|
||||
# Marcin Lozynski <mlozynski@wp.pl>, 2019
|
||||
# Tomasz Szymanowicz <alakdae@gmail.com>, 2019
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2016,2018
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2017
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2016
|
||||
@@ -11,9 +12,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-23 09:49+0000\n"
|
||||
"Last-Translator: Tomasz Szymanowicz <alakdae@gmail.com>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,23 +28,23 @@ msgstr "Wygląd"
|
||||
|
||||
#: dependencies.py:10
|
||||
msgid "Lato font"
|
||||
msgstr ""
|
||||
msgstr "Czcionka Lato"
|
||||
|
||||
#: dependencies.py:14
|
||||
msgid "Bootstrap"
|
||||
msgstr ""
|
||||
msgstr "Bootstrap"
|
||||
|
||||
#: dependencies.py:18
|
||||
msgid "Bootswatch"
|
||||
msgstr ""
|
||||
msgstr "Bootswatch"
|
||||
|
||||
#: dependencies.py:32
|
||||
msgid "Fancybox"
|
||||
msgstr ""
|
||||
msgstr "Fancybox"
|
||||
|
||||
#: dependencies.py:36
|
||||
msgid "FontAwesome"
|
||||
msgstr ""
|
||||
msgstr "FontAwesome"
|
||||
|
||||
#: dependencies.py:40
|
||||
msgid "jQuery"
|
||||
@@ -55,11 +56,11 @@ msgstr "Formularz JQuery"
|
||||
|
||||
#: dependencies.py:47
|
||||
msgid "jQuery Lazy Load"
|
||||
msgstr ""
|
||||
msgstr "jQuery Opóźnione Ładowanie"
|
||||
|
||||
#: dependencies.py:51
|
||||
msgid "JQuery Match Height"
|
||||
msgstr ""
|
||||
msgstr "JQuery Wyrównaj Wysokość"
|
||||
|
||||
#: dependencies.py:55
|
||||
msgid "Select 2"
|
||||
@@ -67,11 +68,11 @@ msgstr "Wybierz 2"
|
||||
|
||||
#: dependencies.py:59
|
||||
msgid "Toastr"
|
||||
msgstr ""
|
||||
msgstr "Toastr"
|
||||
|
||||
#: dependencies.py:62
|
||||
msgid "URI.js"
|
||||
msgstr ""
|
||||
msgstr "URI.js"
|
||||
|
||||
#: settings.py:14
|
||||
msgid "Maximum number of characters that will be displayed as the view title."
|
||||
@@ -93,7 +94,7 @@ msgstr "Nie znaleziono strony"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Niestety, żądana strona nie została znaleziona."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Błąd serwera"
|
||||
|
||||
@@ -134,7 +135,7 @@ msgid ""
|
||||
"\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 jest darmowym oprogramowaniem typu open source dostarczonym z <i class=\"fa fa-heart text-danger\" style=\"transform: rotate(10deg);\"></i> przez Roberto Rosario i współpracowników."
|
||||
|
||||
#: templates/appearance/about.html:109
|
||||
#, python-format
|
||||
@@ -142,7 +143,7 @@ msgid ""
|
||||
"\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 "\nAby %(project_title)s był tak bogaty w funkcje wymaga wiele pracy. Każda pomoc jest mile widziana!"
|
||||
|
||||
#: templates/appearance/about.html:115
|
||||
#, python-format
|
||||
@@ -150,7 +151,7 @@ msgid ""
|
||||
"\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 "\nJeśli używasz %(project_title)s, <a class=\"new_window\" href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3PXN336XFXQNN\">rozważ darowiznę %(icon_social_paypal)s</a>"
|
||||
|
||||
#: templates/appearance/about.html:121
|
||||
#, python-format
|
||||
@@ -158,14 +159,14 @@ msgid ""
|
||||
"\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 "\nMożesz także <a class=\"new_window\" href=\"https://www.paypal.com/paypalme2/RobertoRosario\">przekazać darowiznę bezpośrednio twórcy i głównemu deweloperowi. %(icon_social_paypal)s</a>"
|
||||
|
||||
#: templates/appearance/about.html:127
|
||||
msgid ""
|
||||
"\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 "\nOprócz darowizn możesz również wesprzeć projekt <a class=\"new_window\" href=\"https://sellfy.com/p/um2fkx/\">kupując książkę „Exploring Mayan EDMS” autorstwa Roberto Rosario</a> . <br> Książka jest dostępna w formacie przedpremierowym po obniżonej cenie przez ograniczony czas."
|
||||
|
||||
#: templates/appearance/about.html:133
|
||||
#, python-format
|
||||
@@ -173,7 +174,7 @@ msgid ""
|
||||
"\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 "\nPełna lista zmian jest dostępna w <a class=\"new_window\" href=\"https://docs.mayan-edms.com/releases/index.html\">informacjach o wersji %(icon_documentation)s</a> lub w krótkiej wersji <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms/blob/master/HISTORY.rst\">Dziennik zmian %(icon_documentation)s</a> ."
|
||||
|
||||
#: templates/appearance/about.html:139
|
||||
#, python-format
|
||||
@@ -181,7 +182,7 @@ msgid ""
|
||||
"\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 "\nW razie pytań sprawdź <a class=\"new_window\" href=\"https://docs.mayan-edms.com\">dokumentację %(icon_documentation)s</a> lub <a class=\"new_window\" href=\"https://wiki.mayan-edms.com\">Wiki %(icon_wiki)s</a> ."
|
||||
|
||||
#: templates/appearance/about.html:145
|
||||
#, python-format
|
||||
@@ -189,7 +190,7 @@ msgid ""
|
||||
"\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 "\nJeśli znalazłeś błąd lub masz pomysł na funkcję, odwiedź <a class=\"new_window\" href=\"https://forum.mayan-edms.com\">forum %(icon_forum)s</a> lub otwórz zgłoszenie w <a class=\"new_window\" href=\"https://gitlab.com/mayan-edms/mayan-edms\">repozytorium kodu źródłowego %(icon_source_code)s</a> ."
|
||||
|
||||
#: templates/appearance/about.html:150
|
||||
#, python-format
|
||||
@@ -198,7 +199,7 @@ msgid ""
|
||||
" 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"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\nPrzekaż innym. Porozmawiaj ze znajomymi i kolegami o tym, jak niesamowity jest %(project_title)s! Śledź nas na <a class=\"new_window\" href=\"https://twitter.com/mayanedms\">Twitterze %(icon_social_twitter)s</a> , <a class=\"new_window\" href=\"https://www.facebook.com/MayanEDMS/\">Facebooku %(icon_social_facebook)s</a> lub <a class=\"new_window\" href=\"https://www.instagram.com/mayan_edms/\">Instagramie %(icon_social_instagram)s</a>"
|
||||
|
||||
#: templates/appearance/base.html:36 templates/appearance/base.html:46
|
||||
msgid "Warning"
|
||||
@@ -296,15 +297,15 @@ msgstr "Rozwiń nawigację"
|
||||
msgid "No results"
|
||||
msgstr "Brak wyników"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Błąd komunikacji z serwerem"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Sprawdź połączenie z siecią i spróbuj za chwilę."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n"
|
||||
@@ -89,7 +89,7 @@ msgstr "Página não encontrada"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Desculpe, mas a página solicitada não foi encontrada."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr ""
|
||||
|
||||
@@ -292,15 +292,15 @@ msgstr ""
|
||||
msgid "No results"
|
||||
msgstr "Sem resultados"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n"
|
||||
@@ -92,7 +92,7 @@ msgstr "Página não encontrada"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Desculpe, mas a página solicitada não pôde ser encontrada."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Erro de servidor"
|
||||
|
||||
@@ -295,15 +295,15 @@ msgstr "Ativar/desativar navegação"
|
||||
msgid "No results"
|
||||
msgstr "Nenhum resultado"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Erro na comunicação com o servidor"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Verifique sua conexão de rede e tente novamente em alguns instantes. "
|
||||
|
||||
|
||||
Binary file not shown.
@@ -9,9 +9,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-21 05:30+0000\n"
|
||||
"Last-Translator: Harald Ersch\n"
|
||||
"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -91,7 +91,7 @@ msgstr "Pagina nu a fost gasită"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Ne pare rău, dar pagina solicitată nu a putut fi găsit."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Eroare la server"
|
||||
|
||||
@@ -156,14 +156,14 @@ msgid ""
|
||||
"\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 "\nPuteți <a class=\"new_window\" href=\"https://www.paypal.com/paypalme2/RobertoRosario\">dona direct creatorului și dezvoltatorului principal. %(icon_social_paypal)s</a>"
|
||||
|
||||
#: templates/appearance/about.html:127
|
||||
msgid ""
|
||||
"\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 "\nPe lângă donații, puteți susține și proiectul <a class=\"new_window\" href=\"https://sellfy.com/p/um2fkx/\">achiziționând o copie a cărții „Exploring Mayan EDMS” de Roberto Rosario</a> . <br> Cartea este disponibilă în format pre-lansare la un preț redus pentru o perioadă limitată de timp.\n "
|
||||
|
||||
#: templates/appearance/about.html:133
|
||||
#, python-format
|
||||
@@ -294,15 +294,15 @@ msgstr "Comutare navigare"
|
||||
msgid "No results"
|
||||
msgstr "Fără rezultate"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Închide"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Eroare de comunicare cu server-ul"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Verificați conexiunea la rețea și încercați din nou în câteva momente."
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n"
|
||||
@@ -91,7 +91,7 @@ msgstr "Страница не найдена"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Извините, но запрашиваемая страница не найдена."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Ошибка сервера"
|
||||
|
||||
@@ -294,15 +294,15 @@ msgstr "Переключение навигации"
|
||||
msgid "No results"
|
||||
msgstr "Нет результатов"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "Закрыть"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "Ошибка соединения с сервером"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "Проверьте ваше соединение с сетью и попробуйте еще раз через некоторое время."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n"
|
||||
@@ -90,7 +90,7 @@ msgstr "Stran ni najdena"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Žal, toda zahtevane strani ni bilo mogoče najti."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Napaka strežnika"
|
||||
|
||||
@@ -293,15 +293,15 @@ msgstr "Preklopi navigacijo"
|
||||
msgid "No results"
|
||||
msgstr "Ni rezultatov"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n"
|
||||
@@ -91,7 +91,7 @@ msgstr "sayfa bulunamadı"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "Üzgünüz, ancak istenen sayfa bulunamadı."
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "Server hatası"
|
||||
|
||||
@@ -294,15 +294,15 @@ msgstr "Gezinmeyi aç / kapat"
|
||||
msgid "No results"
|
||||
msgstr "Sonuç yok"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n"
|
||||
@@ -89,7 +89,7 @@ msgstr "Không tìm thấy trang"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr ""
|
||||
|
||||
@@ -292,15 +292,15 @@ msgstr ""
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr ""
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:06-0400\n"
|
||||
"PO-Revision-Date: 2019-09-04 03:25+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n"
|
||||
@@ -90,7 +90,7 @@ msgstr "页面未找到"
|
||||
msgid "Sorry, but the requested page could not be found."
|
||||
msgstr "抱歉,找不到请求的页面。"
|
||||
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:53
|
||||
#: templates/500.html:5 templates/500.html:9 templates/appearance/root.html:52
|
||||
msgid "Server error"
|
||||
msgstr "服务器错误"
|
||||
|
||||
@@ -293,15 +293,15 @@ msgstr "切换导航"
|
||||
msgid "No results"
|
||||
msgstr "没有结果"
|
||||
|
||||
#: templates/appearance/root.html:58
|
||||
#: templates/appearance/root.html:57
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
|
||||
#: templates/appearance/root.html:66
|
||||
#: templates/appearance/root.html:65
|
||||
msgid "Server communication error"
|
||||
msgstr "服务器通信错误"
|
||||
|
||||
#: templates/appearance/root.html:68
|
||||
#: templates/appearance/root.html:67
|
||||
msgid "Check you network connection and try again in a few moments."
|
||||
msgstr "检查网络连接,并稍后再试。"
|
||||
|
||||
|
||||
@@ -410,3 +410,12 @@ a i {
|
||||
.btn-list {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
/* jstree - cabinets */
|
||||
#jstree {
|
||||
max-width: 100%;
|
||||
overflow: auto;
|
||||
font: 11px Verdana, sans-serif;
|
||||
padding: 0px;
|
||||
padding-bottom: 10px; /* Padding for scrollbar */
|
||||
}
|
||||
|
||||
@@ -6,11 +6,10 @@
|
||||
{% load smart_settings_tags %}
|
||||
|
||||
{% spaceless %}
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||
<head>
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=5" name="viewport">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta http-equiv="Content-Language" content="{{ LANGUAGE_CODE }}" />
|
||||
<title>
|
||||
|
||||
@@ -6,11 +6,10 @@
|
||||
{% load smart_settings_tags %}
|
||||
|
||||
{% spaceless %}
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||
<head>
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=5" name="viewport">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta http-equiv="Content-Language" content="{{ LANGUAGE_CODE }}" />
|
||||
<title>
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n"
|
||||
|
||||
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:51+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n"
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n"
|
||||
|
||||
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-07-02 15:51+0000\n"
|
||||
"Last-Translator: Frédéric Sheedy <sheedf@gmail.com>\n"
|
||||
"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n"
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-27 12:07+0000\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"
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n"
|
||||
|
||||
Binary file not shown.
@@ -4,15 +4,16 @@
|
||||
#
|
||||
# Translators:
|
||||
# Marcin Lozynski <mlozynski@wp.pl>, 2019
|
||||
# Tomasz Szymanowicz <alakdae@gmail.com>, 2019
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2016
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2016-2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"PO-Revision-Date: 2019-08-30 21:46+0000\n"
|
||||
"Last-Translator: Marcin Lozynski <mlozynski@wp.pl>\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-09-23 09:50+0000\n"
|
||||
"Last-Translator: Tomasz Szymanowicz <alakdae@gmail.com>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -134,10 +135,10 @@ msgstr "Zmieniono hasła dla %(count)d użytkowników"
|
||||
#: views.py:156
|
||||
msgid "Change user password"
|
||||
msgid_plural "Change users passwords"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
msgstr[0] "Zmień hasło użytkownika"
|
||||
msgstr[1] "Zmień hasła użytkowników"
|
||||
msgstr[2] "Zmień hasła użytkowników"
|
||||
msgstr[3] "Zmień hasła użytkowników"
|
||||
|
||||
#: views.py:166
|
||||
#, python-format
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n"
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-18 15:36+0000\n"
|
||||
"Last-Translator: Harald Ersch\n"
|
||||
"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mayan EDMS\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-06-15 07:48+0000\n"
|
||||
"Last-Translator: Roberto Rosario\n"
|
||||
"Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n"
|
||||
|
||||
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-04-14 04:06+0000\n"
|
||||
"Last-Translator: Mohammed ALDOUB <voulnet@gmail.com>, 2019\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n"
|
||||
|
||||
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-04-14 04:06+0000\n"
|
||||
"Last-Translator: Pavlin Koldamov <pkoldamov@gmail.com>, 2019\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n"
|
||||
|
||||
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-04-14 04:06+0000\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"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-04-14 04:06+0000\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-03 23:14-0400\n"
|
||||
"POT-Creation-Date: 2019-09-24 23:07-0400\n"
|
||||
"PO-Revision-Date: 2019-04-14 04:06+0000\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/rosarior/teams/13584/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user