diff --git a/HISTORY.rst b/HISTORY.rst
index de2906472f..21a4998ec9 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -1,3 +1,20 @@
+1.1.1 (2015-05-21)
+==================
+
+- Update to Django 1.6.11
+- Fix make_dist.sh script
+- Add test for issue #163
+- Activate tests for the sources app
+- Removal of the registration app
+- New simplified official project description
+- Improvements to the index admin interface
+- Removal of installation statistics gathering
+- Remove unused folder tag
+- Fix usage of ugettext to ugettext_lazy
+- Increase size of the lock name field
+- New style documentation
+
+
1.1 (2015-02-10)
================
diff --git a/MANIFEST.in b/MANIFEST.in
index ffc617f623..c3acded2b5 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,3 +1,3 @@
include README.rst LICENSE HISTORY.rst
recursive-include mayan README *.txt *.html *.css *.ico *.png *.jpg *.js *.po *.mo *.ttf
-global-exclude settings_local.* mayan.sqlite* db.sqlite* mayan/media gpg_home document_storage image_cache
+global-exclude mayan/settings/local.py mayan/settings/travis/* settings_local.* mayan.sqlite* db.sqlite* mayan/media gpg_home document_storage image_cache
diff --git a/README.rst b/README.rst
index 19bae74c1a..d2385b92e5 100644
--- a/README.rst
+++ b/README.rst
@@ -24,6 +24,10 @@ Free Open Source Electronic Document Management System.
|Animation|
+Support
+-------
+Help support further improvements and development by donating at: https://www.patreon.com/siloraptor
+
License
-------
diff --git a/Vagrantfile b/Vagrantfile
index 41e36e9d96..8046e9ac64 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -7,6 +7,6 @@ Vagrant.configure(2) do |config|
config.vm.synced_folder ".", "/mayan-edms-repository"
config.vm.provision :shell, :path => "contrib/scripts/install/development.sh", privileged: false
- config.vm.provision "file", destination: "/home/vagrant/mayan-edms/mayan/settings/celery_redis.py", source: "contrib/configs/celery_redis.py"
+ config.vm.provision "file", destination: "/home/vagrant/mayan-edms/mayan/settings/celery_redis.py", source: "contrib/settings/celery_redis.py"
config.vm.provision "file", destination: "/home/vagrant/mayan-edms/mayan_edms_worker.sh", source: "contrib/misc/mayan_edms_worker.sh"
end
diff --git a/contrib/configs/celery_redis.py b/contrib/settings/celery_redis.py
similarity index 100%
rename from contrib/configs/celery_redis.py
rename to contrib/settings/celery_redis.py
diff --git a/docs/_static/logo_pyramid_only.png b/docs/_static/logo_pyramid_only.png
new file mode 100644
index 0000000000..4a09190392
Binary files /dev/null and b/docs/_static/logo_pyramid_only.png differ
diff --git a/docs/_templates/donate.html b/docs/_templates/donate.html
new file mode 100644
index 0000000000..79a151fb76
--- /dev/null
+++ b/docs/_templates/donate.html
@@ -0,0 +1,4 @@
+
Donate
+
+Help support further improvements and development by donating on: Patreon
+
diff --git a/docs/conf.py b/docs/conf.py
index 01fabc764a..920bb4785f 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
#
# Mayan EDMS documentation build configuration file, created by
# sphinx-quickstart on Fri Aug 19 05:13:38 2011.
@@ -43,7 +45,7 @@ source_suffix = '.rst'
# source_encoding = 'utf-8-sig'
# The master toctree document.
-master_doc = 'contents'
+master_doc = 'index'
# General information about the project.
project = mayan.__title__
@@ -98,7 +100,7 @@ pygments_style = 'sphinx'
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
-html_theme = 'default'
+html_theme = 'classic'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
@@ -185,8 +187,8 @@ htmlhelp_basename = 'MayanEDMSdoc'
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'MayanEDMS.tex', u'Mayan EDMS Documentation',
- u'Roberto Rosario', 'manual'),
+ ('index', 'MayanEDMS.tex', 'Mayan EDMS Documentation',
+ mayan.__author__, 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -218,6 +220,29 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'mayanedms', u'Mayan EDMS Documentation',
- [u'Roberto Rosario'], 1)
+ ('index', 'mayanedms', 'Mayan EDMS Documentation',
+ [mayan.__author__], 1)
]
+
+
+# -- Custom options
+import alabaster
+
+html_theme_path = [alabaster.get_path()]
+extensions = ['alabaster']
+html_theme = 'alabaster'
+html_sidebars = {
+ '**': [
+ 'about.html', 'navigation.html', 'searchbox.html', 'donate.html',
+ ]
+}
+html_theme_options = {
+ 'description': 'Free Open Source Electronic Document Management System',
+ 'github_user': 'mayan-edms',
+ 'github_repo': 'mayan-edms',
+ 'travis_button': True,
+ 'gratipay_user': 'rosarior',
+ 'github_banner': True,
+}
+
+html_logo = '_static/logo_pyramid_only.png'
diff --git a/docs/contents.rst b/docs/contents.rst
deleted file mode 100644
index d8cfcbbc36..0000000000
--- a/docs/contents.rst
+++ /dev/null
@@ -1,16 +0,0 @@
-.. _contents:
-
-========
-Contents
-========
-
-.. toctree::
- :hidden:
-
- index
-
-.. toctree::
- :maxdepth: 3
-
- topics/index
- releases/index
diff --git a/docs/index.rst b/docs/index.rst
index e9bbde7e9c..a505830c88 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1,60 +1,41 @@
-.. _index:
+Welcome to Mayan EDMS!
+======================
-========================
-Mayan EDMS documentation
-========================
+**Mayan EDMS** is a `Free Open Source`_ `Electronic Document Management System`_, coded in
+the Python language using the Django_ web application framework and released
+under the `Apache 2.0 License`_. It provides an electronic vault or repository for electronic documents.
-.. rubric:: `Open source`_ `electronic document management system`_.
+The easiest way to install and try **Mayan EDMS** is by using a Debian based Linux distribution
+and installing it from PyPI with the following commands:
-Getting help
-============
+.. code-block:: bash
-* Search for information in the `archives of the mayan-edms mailing list`_, or
- `post a question`_. If you prefer news servers, use the gateway provided by Gmane_.
-* Report bugs with **Mayan EDMS** using Github's `ticket tracker`_.
-* Try the :doc:`FAQ ` -- it's got answers to many common questions.
+ $ sudo apt-get install libjpeg-dev libmagic1 libpng-dev libreoffice libtiff-dev gcc ghostscript gpgv python-dev python-virtualenv tesseract-ocr unpaper poppler-utils -y
+ $ virtualenv venv
+ $ source venv/bin/activate
+ $ pip install mayan-edms
+ $ mayan-edms.py initialsetup
+ $ mayan-edms.py runserver
+Point your browser to 127.0.0.1:8000 and use the automatically created admin
+account.
-First steps
-===========
+.. toctree::
+ :hidden:
- :doc:`Features ` |
- :doc:`Installation ` |
- :doc:`Getting started `
-
-Understanding Mayan EDMS
-========================
-
- :doc:`File storage ` |
- :doc:`Permission system ` |
- :doc:`Transformations ` |
- :doc:`Document versioning ` |
- :doc:`Document signatures ` |
- :doc:`Indexes ` |
- :doc:`Smart links ` |
- :doc:`Tags ` |
-
-Release notes
-=============
-
- :doc:`Release notes and upgrading instructions `
-
-For developers
-==============
-
- :doc:`Development `
-
-Credits
-=======
-
- :doc:`Contributors ` |
- :doc:`Licensing `
+ Features
+ Installation
+ Getting started
+ Release notes and upgrading
+ Concepts
+ Development
+ Contributors
+ Licensing
+ FAQ
+ Contact
.. _Django: http://www.djangoproject.com/
-.. _Gmane: http://news.gmane.org/gmane.comp.python.django.mayan-edms
-.. _Open source: http://en.wikipedia.org/wiki/Open_source
-.. _archives of the mayan-edms mailing list: http://groups.google.com/group/mayan-edms/
-.. _electronic document management system: https://en.wikipedia.org/wiki/Document_management_system
-.. _post a question: http://groups.google.com/group/mayan-edms
-.. _ticket tracker: https://github.com/mayan-edms/mayan-edms/issues
+.. _Free Open Source: http://en.wikipedia.org/wiki/Open_source
+.. _Electronic Document Management System: https://en.wikipedia.org/wiki/Document_management_system
+.. _Apache 2.0 License: https://www.apache.org/licenses/LICENSE-2.0.txt
diff --git a/docs/releases/0.12.rst b/docs/releases/0.12.rst
index 7452447a1d..67f4f20f1e 100644
--- a/docs/releases/0.12.rst
+++ b/docs/releases/0.12.rst
@@ -49,14 +49,14 @@ ACL support
A more in-depth explanation of how this new ACL system can be found in
the :doc:`3 tier access control <../topics/permissions>` section of the
permissions chapter.
-
+
* Default class ACL support. Administrators can setup the access control
lists that new documents, folders and tags will automatically inheric
when created. Aside from asigning permission to users, groups and roles
to specific objects, there is a special user called `Creator`, use to
allow the access control list that the actual creator of an object will
- inherit.
-
+ inherit.
+
Anonymous user support
~~~~~~~~~~~~~~~~~~~~~~
Anonymous user support is a two tier function, first is the addition of
@@ -78,32 +78,31 @@ Usability improvements
erases the previous one.
* Usability improvement in the role member's add/removal form, by using
HTML's option groups tag property
-
+
2 Step download process
~~~~~~~~~~~~~~~~~~~~~~~
The code for downloading single and multiple document and document versions
has been merged with compression support also added. This allows for the
download of documents in their original format or compressed and well as
-the download of several documents in a single compressed file.
+the download of several documents in a single compressed file.
Customizable GPG home directory
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-Addition of the :setting:`SIGNATURES_GPG_HOME` configuration option to let
+Addition of the :setting:`SIGNATURES_GPG_HOME` configuration option to let
administrators set **Mayan EDMS**'s GPG instance home directory, used to
store keyrings and other GPG configuration files.
Out of process bulk uploading
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
A management command has been added to help upload a large number of documents
-from a compressed file. For information about this new feature check the
-:doc:`Initial data loading <../topics/initial_import>` chapter.
+from a compressed file. For information about this new feature check the Initial data loading chapter.
+
-
Out of process user import
~~~~~~~~~~~~~~~~~~~~~~~~~~
A management command has been added to import a large number users
-from a CSV file. More information about this new feature can also be found
-in the :doc:`Initial data loading <../topics/initial_import>` chapter.
+from a CSV file. More information about this new feature can also be found
+in the Initial data loading chapter.
Refactored document indexing
@@ -123,7 +122,7 @@ mirrored on disk.
Help shape Mayan EDMS's future
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-Included in this version is a small feedback application, found under the
+Included in this version is a small feedback application, found under the
``About`` main menu, where users by just answering some questions can
help determine the priority of the next planned features on the pipeline,
or even help add new features if enough requests are received. All questions
@@ -169,7 +168,7 @@ When the following message appears
If you're unsure, answer 'no'.
Type 'yes' to continue, or 'no' to cancel:
-
+
Type ``yes`` and press **Enter**
And continue migrating database schema with::
@@ -213,7 +212,7 @@ Bugs fixed
==========
* Issue #17, special thanks to Dave Herring for all the help including
access to a machine suffering with the issue, and to Sergei Glita for
- his research and eventual find of the core cause.
+ his research and eventual find of the core cause.
* Statistics fixes.
* Fixed get_image_cache_name regression in the OCR app.
@@ -221,12 +220,12 @@ Stuff removed
=============
* Support for Celery and Sentry has been drop
for now.
-* Removed the 'db_index' argument from Text fields definition and
+* Removed the 'db_index' argument from Text fields definition and
migrations as it was causing error messages for MySQL users, thanks to
Sergei Glita for reporting this one.
* Configuration options removed:
-
+
* OCR_CACHE_URI
* DOCUMENT_INDEXING_FILESYSTEM_FILESERVING_PATH - Use the newest :setting:`DOCUMENT_INDEXING_FILESYSTEM_SERVING`
* DOCUMENT_INDEXING_FILESYSTEM_FILESERVING_ENABLE - Use the newest :setting:`DOCUMENT_INDEXING_FILESYSTEM_SERVING`
-
+
diff --git a/docs/releases/1.1.1.rst b/docs/releases/1.1.1.rst
new file mode 100644
index 0000000000..6234d13d7e
--- /dev/null
+++ b/docs/releases/1.1.1.rst
@@ -0,0 +1,72 @@
+===============================
+Mayan EDMS v1.1.1 release notes
+===============================
+
+Released: May 21, 2015
+
+What's new
+==========
+
+Update to Django 1.6.11
+~~~~~~~~~~~~~~~~~~~~~~~
+The required version of Django has been updated to version 1.6.11_.
+
+Minor changes
+~~~~~~~~~~~~~
+- Fix make_dist.sh script
+- Add test for issue #163
+- Activate tests for the sources app
+- Removal of the registration app
+- New simplified official project description
+- Improvements to the index admin interface
+- Removal of installation statistics gathering
+- Remove unused folder tag
+- Fix usage of ugettext to ugettext_lazy
+- Increase size of the lock name field
+- New style documentation
+
+Upgrading from a previous version
+=================================
+
+Using PIP
+~~~~~~~~~
+
+Type in the console::
+
+ $ pip install mayan-edms==1.1.1
+
+the requirements will also be updated.
+
+Using Git
+~~~~~~~~~
+
+If you installed Mayan EDMS by cloning the Git repository issue the commands::
+
+ $ git reset --hard HEAD
+ $ git pull
+
+otherwise download the compressed archived and uncompress it overriding the existing installation.
+
+Next upgrade/add the new requirements::
+
+ $ pip install --upgrade -r requirements.txt
+
+Common steps
+~~~~~~~~~~~~
+
+Add new static media::
+
+ $ mayan-edms.py collectstatic --noinput
+
+The upgrade procedure is now complete.
+
+
+Backward incompatible changes
+=============================
+None
+
+Bugs fixed or issues closed
+===========================
+None
+
+.. _1.6.11: https://docs.djangoproject.com/en/1.8/releases/1.6.11/
diff --git a/docs/releases/index.rst b/docs/releases/index.rst
index 24374d0f39..ba35ac60e1 100644
--- a/docs/releases/index.rst
+++ b/docs/releases/index.rst
@@ -17,26 +17,20 @@ Final releases
Below are release notes through **Mayan EDMS** |version| and its minor releases. Newer
versions of the documentation contain the release notes for any later releases.
-2.0 release
------------
+2.0 series
+----------
.. toctree::
:maxdepth: 1
2.0
-1.1 release
------------
+1.0 series
+----------
.. toctree::
:maxdepth: 1
+ 1.1.1
1.1
-
-
-1.0 release
------------
-.. toctree::
- :maxdepth: 1
-
1.0
0.13 release
diff --git a/docs/topics/contact.rst b/docs/topics/contact.rst
new file mode 100644
index 0000000000..79c277d06d
--- /dev/null
+++ b/docs/topics/contact.rst
@@ -0,0 +1,38 @@
+=======
+Contact
+=======
+
+
+FAQ
+---
+
+* Try the :doc:`FAQ ` -- it's got answers to many common questions.
+
+Mailing list
+------------
+
+Search for information in the `archives of the mayan-edms mailing list`_, or
+`post a question`_. If you prefer news servers, use the gateway provided by Gmane_.
+
+**Mayan EDMS** community developers do their best to reply to basic questions.
+Be sure to check the list archives as it may already containt the answers to your
+questions.
+
+Twitter
+-------
+
+**Mayan EDMS** has an official Twitter account, `@mayanedms
+`_, which is used for announcements and occasional
+related news tidbits.
+
+
+Bugs/ticket tracker
+-------------------
+
+Report bugs with **Mayan EDMS** or search existing ones using Github's `ticket tracker`_.
+
+
+.. _archives of the mayan-edms mailing list: http://groups.google.com/group/mayan-edms/
+.. _post a question: http://groups.google.com/group/mayan-edms
+.. _ticket tracker: https://github.com/mayan-edms/mayan-edms/issues
+.. _Gmane: http://news.gmane.org/gmane.comp.python.django.mayan-edms
diff --git a/docs/topics/development.rst b/docs/topics/development.rst
index a2f7cbd0c0..6100cfc70b 100644
--- a/docs/topics/development.rst
+++ b/docs/topics/development.rst
@@ -481,7 +481,7 @@ This is the sequence of step I use to produce an installable package:
$ rm dist -R
-2. Generate the packaged version (will produce dist/mayan-edms-1.1.0.tar.gz)::
+2. Generate the packaged version (will produce dist/mayan-edms-1.1.1.tar.gz)::
$ python setup.py sdist
@@ -490,7 +490,7 @@ This is the sequence of step I use to produce an installable package:
$ cd /tmp
$ virtualenv venv
$ source venv/bin/activate
- $ pip install /dist/mayan-edms-1.1.0.tar.gz
+ $ pip install /dist/mayan-edms-1.1.1.tar.gz
$ mayan-edms.py initialsetup
$ mayan-edms.py runserver
@@ -504,13 +504,13 @@ Wheel package
2. Create wheel package using the source file package (Until issue #99 of wheel is fixed: https://bitbucket.org/pypa/wheel/issue/99/cannot-exclude-directory)::
- $ pip wheel --no-index --no-deps --wheel-dir dist dist/mayan-edms-1.1.0.tar.gz
+ $ pip wheel --no-index --no-deps --wheel-dir dist dist/mayan-edms-1.1.1.tar.gz
3. Do a test install::
$ cd /tmp
$ virtualenv venv
$ source venv/bin/activate
- $ pip install /dist/mayan_edms-1.1.0-py2-none-any.whl
+ $ pip install /dist/mayan_edms-1.1.1-py2-none-any.whl
$ mayan-edms.py initialsetup
$ mayan-edms.py runserver
diff --git a/docs/topics/index.rst b/docs/topics/index.rst
index 0cae551fbc..8ec133f1e9 100644
--- a/docs/topics/index.rst
+++ b/docs/topics/index.rst
@@ -1,23 +1,16 @@
-Using Mayan EDMS
-================
+Concepts
+========
Introductions to all the key parts of Mayan EDMS you'll need to know:
.. toctree::
:maxdepth: 1
- contributors
- development
- faq
- features
file_storage
- getting_started
- indexes
- installation
- license
permissions
- signatures
- smart_links
- tags
transformations
versioning
+ signatures
+ indexes
+ smart_links
+ tags
diff --git a/docs/topics/installation.rst b/docs/topics/installation.rst
index 0a43c02cf4..da025e1f0e 100644
--- a/docs/topics/installation.rst
+++ b/docs/topics/installation.rst
@@ -118,8 +118,8 @@ to /usr/bin/ with ...
GM_PATH = '/usr/local/bin/gm'
LIBREOFFICE_PATH = '/Applications/LibreOffice.app/Contents/MacOS/soffice'
-Production use
---------------
+Testing the install
+-------------------
To create a custom settings file for **Mayan EDMS**, create a Python (.py) file
in the directory: venv/lib/python2.7/site-packages/mayan/settings/ with the following basic content::
@@ -128,7 +128,7 @@ in the directory: venv/lib/python2.7/site-packages/mayan/settings/ with the foll
from __future__ import unicode_literals
- from . import *
+ from .local import *
@@ -136,7 +136,12 @@ To test your settings launch **Mayan EDMS** using::
$ mayan-edms.py runserver --settings=mayan.settings.my_settings
-After making sure everything is running correctly, stop the runserver command.
+Note: Background tasks and scheduled tasks will not run when using the test server.
+
+Production use
+--------------
+
+After making sure everything is running correctly, stop the `runserver` command.
Deploy **Mayan EDMS** using the webserver of your preference. For more information
on deployment instructions and examples, checkout Django's official documentation
on the topic https://docs.djangoproject.com/en/1.6/howto/deployment/
diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po
index f635effb17..6bcd780f1d 100644
--- a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
diff --git a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po
index 9cecc579cb..ec3a2161f9 100644
--- a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
diff --git a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po
index af3c7a8285..339db6d97b 100644
--- a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
diff --git a/mayan/apps/acls/locale/da/LC_MESSAGES/django.po b/mayan/apps/acls/locale/da/LC_MESSAGES/django.po
index e1454d7301..c6c86477ee 100644
--- a/mayan/apps/acls/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/da/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
diff --git a/mayan/apps/acls/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/acls/locale/de_CH/LC_MESSAGES/django.po
index ae9f062db6..610bef10a3 100644
--- a/mayan/apps/acls/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
diff --git a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po
index 0af7589c55..150f1b1a9e 100644
--- a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-02-06 23:55+0000\n"
"Last-Translator: Mathias Behrle \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
diff --git a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po
index f190f43ec8..9ea3b705c9 100644
--- a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2012-02-02 18:20+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po
index 694a5afc2e..2ec67a6b3d 100644
--- a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-14 20:07+0000\n"
"Last-Translator: Lory977 \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po
index 4394596227..ce95e683fe 100644
--- a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-30 13:05+0000\n"
"Last-Translator: Mehdi Amani \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po
index 7d0346e645..1af7f52dbf 100644
--- a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-11-02 08:22+0000\n"
"Last-Translator: Christophe kryskool \n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
diff --git a/mayan/apps/acls/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hr_HR/LC_MESSAGES/django.po
index 9aa1401fcb..c0142d9b1f 100644
--- a/mayan/apps/acls/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/hr_HR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po
index 6b98ae16a7..87d4c46776 100644
--- a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
diff --git a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po
index 86793e0cfc..b60d386aee 100644
--- a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po
index 188619891d..07b557e620 100644
--- a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-29 07:17+0000\n"
"Last-Translator: Pierpaolo Baldan \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
diff --git a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po
index 7740bdd650..be4cd66869 100644
--- a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/acls/locale/nb/LC_MESSAGES/django.po b/mayan/apps/acls/locale/nb/LC_MESSAGES/django.po
index d711ae363e..4f9cd484f3 100644
--- a/mayan/apps/acls/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po
index 5fdca494ce..475f6e3d50 100644
--- a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po
index 3e15899dcd..117f7942ce 100644
--- a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po
@@ -4,14 +4,14 @@
#
# Translators:
# Translators:
-# mic , 2013
+# mic , 2013,2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
-"PO-Revision-Date: 2014-10-25 06:47+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
+"PO-Revision-Date: 2015-02-28 19:42+0000\n"
+"Last-Translator: mic \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -45,15 +45,15 @@ msgstr "ACLs"
#: links.py:10 links.py:18
msgid "Details"
-msgstr ""
+msgstr "Szczegóły"
#: links.py:11 links.py:20
msgid "Grant"
-msgstr ""
+msgstr "Przyznać"
#: links.py:12 links.py:21
msgid "Revoke"
-msgstr ""
+msgstr "Odwołać"
#: links.py:15
msgid "Default ACLs"
@@ -73,7 +73,7 @@ msgstr "Niewystarczające uprawnienia."
#: models.py:25 models.py:67
msgid "Permission"
-msgstr ""
+msgstr "Uprawnienia"
#: models.py:51
msgid "Access entry"
@@ -126,7 +126,7 @@ msgstr ""
#: views.py:51 views.py:403
msgid "Permissions"
-msgstr ""
+msgstr "Uprawnienia"
#: views.py:98
#, python-format
@@ -139,15 +139,15 @@ msgstr ""
#: views.py:106 views.py:435
msgid "Label"
-msgstr ""
+msgstr "Etykieta"
#: views.py:108 views.py:437
msgid "Has permission"
-msgstr ""
+msgstr "Ma uprawnienie"
#: views.py:181 views.py:272 views.py:516 views.py:593
msgid ", "
-msgstr ""
+msgstr ", "
#: views.py:182 views.py:273 views.py:517 views.py:594
#, python-format
@@ -162,7 +162,7 @@ msgstr ""
#: views.py:186 views.py:521
#, python-format
msgid "Are you sure you wish to grant the permission %(title_suffix)s?"
-msgstr "Czy na pewno chcesz przyznać uprawnienia %(title_suffix)s?"
+msgstr "Czy na pewno chcesz przyznać uprawnienie %(title_suffix)s?"
#: views.py:188 views.py:523
#, python-format
@@ -172,14 +172,14 @@ msgstr "Czy na pewno chcesz przyznać uprawnienia %(title_suffix)s?"
#: views.py:195 views.py:530
#, python-format
msgid "Permission \"%(permission)s\" granted to %(actor)s for %(object)s."
-msgstr ""
+msgstr "Uprawnienie \"%(permission)s\" przyznane %(actor)s dla %(object)s."
#: views.py:201 views.py:536
#, python-format
msgid ""
"%(actor)s, already had the permission \"%(permission)s\" granted for "
"%(object)s."
-msgstr ""
+msgstr "%(actor)s, posiada uprawnienie \"%(permission)s\" przyznane dla %(object)s."
#: views.py:274 views.py:595
#, python-format
@@ -189,12 +189,12 @@ msgstr ""
#: views.py:277 views.py:598
#, python-format
msgid "Are you sure you wish to revoke the permission %(title_suffix)s?"
-msgstr ""
+msgstr "Czy na pewno chcesz odwołać uprawnienie %(title_suffix)s?"
#: views.py:279 views.py:600
#, python-format
msgid "Are you sure you wish to revoke the permissions %(title_suffix)s?"
-msgstr ""
+msgstr "Czy na pewno chcesz odwołać uprawnienia %(title_suffix)s?"
#: views.py:286 views.py:607
#, python-format
diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po
index 15669aa2a5..74a611e782 100644
--- a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
diff --git a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po
index 99fd2889df..8df88ad6bd 100644
--- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po
@@ -5,14 +5,15 @@
# Translators:
# Translators:
# wolvsky , 2014
+# Rogerio Falcone , 2015
# wolvsky , 2014
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
-"PO-Revision-Date: 2014-10-25 06:47+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
+"PO-Revision-Date: 2015-05-07 13:57+0000\n"
+"Last-Translator: Rogerio Falcone \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -46,15 +47,15 @@ msgstr "ACLs"
#: links.py:10 links.py:18
msgid "Details"
-msgstr ""
+msgstr "Detalhes"
#: links.py:11 links.py:20
msgid "Grant"
-msgstr ""
+msgstr "Conceder"
#: links.py:12 links.py:21
msgid "Revoke"
-msgstr ""
+msgstr "Revogar"
#: links.py:15
msgid "Default ACLs"
@@ -62,7 +63,7 @@ msgstr "ACLs padrões"
#: links.py:16 views.py:379
msgid "Classes"
-msgstr ""
+msgstr "classes"
#: links.py:17
msgid "ACLs for class"
@@ -74,23 +75,23 @@ msgstr "Acesso insuficiente."
#: models.py:25 models.py:67
msgid "Permission"
-msgstr ""
+msgstr "Permissões"
#: models.py:51
msgid "Access entry"
-msgstr ""
+msgstr "Acesso entrada"
#: models.py:52
msgid "Access entries"
-msgstr ""
+msgstr "Entradas de acesso"
#: models.py:88
msgid "Default access entry"
-msgstr ""
+msgstr "Entrada de acesso padrão"
#: models.py:89
msgid "Default access entries"
-msgstr ""
+msgstr "Entradas de acesso padrão"
#: models.py:108 models.py:111 models.py:112
msgid "Creator"
@@ -119,32 +120,32 @@ msgstr "Visualizar classe de ACLs padrões"
#: views.py:48
#, python-format
msgid "Access control lists for: %s"
-msgstr ""
+msgstr "listas de controle de acesso para: %s"
#: views.py:50 views.py:402
msgid "Holder"
-msgstr ""
+msgstr "Titular"
#: views.py:51 views.py:403
msgid "Permissions"
-msgstr ""
+msgstr "Permissões"
#: views.py:98
#, python-format
msgid "Permissions available to: %(actor)s for %(obj)s"
-msgstr ""
+msgstr "permissões disponíveis para: %(actor)s para %(obj)s"
#: views.py:105 views.py:434
msgid "Namespace"
-msgstr ""
+msgstr "Namespace"
#: views.py:106 views.py:435
msgid "Label"
-msgstr ""
+msgstr "Label"
#: views.py:108 views.py:437
msgid "Has permission"
-msgstr ""
+msgstr "tem permissão"
#: views.py:181 views.py:272 views.py:516 views.py:593
msgid ", "
@@ -210,7 +211,7 @@ msgstr "%(actor)s, não tinha a permissão \"%(permission)s\" para %(object)s."
#: views.py:346
#, python-format
msgid "Add new holder for: %s"
-msgstr ""
+msgstr "adicionar um novo titular para: %s"
#: views.py:347 views.py:477
msgid "Select"
@@ -218,22 +219,22 @@ msgstr "Selecionar"
#: views.py:381
msgid "Class"
-msgstr ""
+msgstr "classe"
#: views.py:400
#, python-format
msgid "Default access control lists for class: %s"
-msgstr ""
+msgstr "listas de controle de acesso padrão para classe: %s"
#: views.py:428
#, python-format
msgid "Permissions available to: %(actor)s for class %(class)s"
-msgstr ""
+msgstr "permissões disponíveis para: %(actor)s para a classe %(class)s"
#: views.py:475
#, python-format
msgid "Add new holder for class: %s"
-msgstr ""
+msgstr "adicionar um novo titular para a classe: %s"
#~ msgid "List of classes"
#~ msgstr "List of classes"
diff --git a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po
index 6ff9c5bd53..9368c86e2d 100644
--- a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
diff --git a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po
index a4c23525e9..c6570cd84b 100644
--- a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: forms.py:25 links.py:13 links.py:19
msgid "New holder"
diff --git a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po
index 65238c50c9..2436ff9e55 100644
--- a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
diff --git a/mayan/apps/acls/locale/sq/LC_MESSAGES/django.po b/mayan/apps/acls/locale/sq/LC_MESSAGES/django.po
index 84e9ddec4f..f360cbd1a0 100644
--- a/mayan/apps/acls/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/sq/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po
index 416e236df4..1699311320 100644
--- a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
diff --git a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po
index 26002e0784..ca928f59a3 100644
--- a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
diff --git a/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po
index 073e1c4130..d08fb76a7b 100644
--- a/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-07 02:01+0000\n"
"Last-Translator: Genlin Jiao \n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
diff --git a/mayan/apps/acls/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/acls/locale/zh_TW/LC_MESSAGES/django.po
index 54696d854a..943db3197c 100644
--- a/mayan/apps/acls/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/acls/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2014-10-25 06:47+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/acls/urls.py b/mayan/apps/acls/urls.py
index 5a96c21f4b..ba0652ae13 100644
--- a/mayan/apps/acls/urls.py
+++ b/mayan/apps/acls/urls.py
@@ -2,7 +2,8 @@ from __future__ import unicode_literals
from django.conf.urls import patterns, url
-urlpatterns = patterns('acls.views',
+urlpatterns = patterns(
+ 'acls.views',
url(r'^new_holder_for/(?P[-\w]+)/(?P[-\w]+)/(?P\d+)/$', 'acl_new_holder_for', (), 'acl_new_holder_for'),
url(r'^list_for/(?P[-\w]+)/(?P[-\w]+)/(?P\d+)/$', 'acl_list', (), 'acl_list'),
url(r'^details/(?P[.\w]+)/holder/(?P[.\w]+)/$', 'acl_detail', (), 'acl_detail'),
@@ -18,5 +19,4 @@ urlpatterns = patterns('acls.views',
url(r'^class/multiple/grant/$', 'acl_class_multiple_grant', (), 'acl_class_multiple_grant'),
url(r'^class/multiple/revoke/$', 'acl_class_multiple_revoke', (), 'acl_class_multiple_revoke'),
-
)
diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po
index 61455f3030..fdf3a9d398 100644
--- a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po
index 38376ba266..59835232f2 100644
--- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
diff --git a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po
index 7e9e580d2c..a45f06bf0d 100644
--- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
diff --git a/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po
index 28824fa119..cc971f61d2 100644
--- a/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
diff --git a/mayan/apps/checkouts/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/de_CH/LC_MESSAGES/django.po
index 5969bc11e0..e04707b53f 100644
--- a/mayan/apps/checkouts/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
diff --git a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po
index 04ab1843e4..8ff43badc7 100644
--- a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-02-06 23:55+0000\n"
"Last-Translator: Mathias Behrle \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po
index 4797730d29..23884a7188 100644
--- a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2012-07-10 15:47+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po
index 0dd0419554..bc7fbac664 100644
--- a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-18 06:13+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
diff --git a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po
index a5394be290..f3595da5a4 100644
--- a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po
index 01382057cf..63addddadc 100644
--- a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
-"PO-Revision-Date: 2015-01-29 07:50+0000\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
+"PO-Revision-Date: 2015-04-06 09:00+0000\n"
"Last-Translator: Christophe kryskool \n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
"MIME-Version: 1.0\n"
@@ -42,27 +42,27 @@ msgstr "Document déjà verrouillé."
#: links.py:19
msgid "Checkouts"
-msgstr ""
+msgstr "Verrous"
#: links.py:20
msgid "Check out document"
-msgstr ""
+msgstr "Verrouiller le document"
#: links.py:21
msgid "Check in document"
-msgstr ""
+msgstr "Déverrouiller le document"
#: links.py:22
msgid "Check in/out"
-msgstr ""
+msgstr "Verrouiller/déverrouiller"
#: literals.py:9
msgid "Checked out"
-msgstr ""
+msgstr "Verrouillé"
#: literals.py:10
msgid "Checked in/available"
-msgstr ""
+msgstr "Déverrouiller/rendre disponible"
#: models.py:23
msgid "Document"
@@ -70,7 +70,7 @@ msgstr "Document"
#: models.py:24
msgid "Check out date and time"
-msgstr ""
+msgstr "Date et heure du verrouillage"
#: models.py:25 widgets.py:79
msgid "Check out expiration date and time"
@@ -82,7 +82,7 @@ msgstr "Durée en minutes pendant laquelle le document doit être verrouillé"
#: models.py:32
msgid "Block new version upload"
-msgstr ""
+msgstr "Empêcher l'importation d'une nouvelle version"
#: models.py:32
msgid "Do not allow new version of this document to be uploaded."
@@ -94,7 +94,7 @@ msgstr "Verrouillage du document"
#: models.py:59
msgid "Document checkouts"
-msgstr ""
+msgstr "Verrouillages du document"
#: permissions.py:9
msgid "Check out documents"
@@ -114,7 +114,7 @@ msgstr "Permettre de révoquer le verrouillage"
#: views.py:32
msgid "Documents checked out"
-msgstr ""
+msgstr "Documents verrouillés"
#: views.py:35
msgid "Checkout user"
@@ -122,11 +122,11 @@ msgstr "Verrou utilisateur"
#: views.py:36
msgid "Checkout time and date"
-msgstr ""
+msgstr "date et heure de verrouillage"
#: views.py:37
msgid "Checkout expiration"
-msgstr ""
+msgstr "Expiration du verrou"
#: views.py:50
#, python-format
diff --git a/mayan/apps/checkouts/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/hr_HR/LC_MESSAGES/django.po
index 86ea593c91..6eff9becce 100644
--- a/mayan/apps/checkouts/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/hr_HR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po
index 43f786c3fd..d83e4d3825 100644
--- a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
diff --git a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po
index 55ea14c30f..22fcfd19fc 100644
--- a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
diff --git a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po
index 9c9944a679..6f3865af12 100644
--- a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-29 08:10+0000\n"
"Last-Translator: Pierpaolo Baldan \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
diff --git a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po
index 1ab458c6e0..b00569e5cf 100644
--- a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/checkouts/locale/nb/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/nb/LC_MESSAGES/django.po
index 99c7ce2870..459fedadf4 100644
--- a/mayan/apps/checkouts/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po
index 6e762c43ac..30728df711 100644
--- a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po
index a1bb93d607..0e936ba0e9 100644
--- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po
@@ -4,13 +4,15 @@
#
# Translators:
# Translators:
+# Annunnaky , 2015
+# mic , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
-"PO-Revision-Date: 2015-01-11 22:05+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
+"PO-Revision-Date: 2015-03-01 19:24+0000\n"
+"Last-Translator: Annunnaky \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -64,15 +66,15 @@ msgstr ""
#: models.py:23
msgid "Document"
-msgstr ""
+msgstr "Dokument"
#: models.py:24
msgid "Check out date and time"
-msgstr ""
+msgstr "Sprawdź datę i godzinę"
#: models.py:25 widgets.py:79
msgid "Check out expiration date and time"
-msgstr ""
+msgstr "Sprawdź datę i godzinę wygaśnięcia"
#: models.py:25
msgid "Amount of time to hold the document checked out in minutes."
@@ -80,7 +82,7 @@ msgstr ""
#: models.py:32
msgid "Block new version upload"
-msgstr ""
+msgstr "Zablokuj uaktualnienie do nowszej wersji."
#: models.py:32
msgid "Do not allow new version of this document to be uploaded."
@@ -129,12 +131,12 @@ msgstr ""
#: views.py:50
#, python-format
msgid "Document status: %s"
-msgstr ""
+msgstr "Status dokumentu: %s"
#: views.py:54
#, python-format
msgid "User: %s"
-msgstr ""
+msgstr "Użytkownik: %s"
#: views.py:55
#, python-format
@@ -153,11 +155,11 @@ msgstr ""
#: views.py:57
msgid "Yes"
-msgstr ""
+msgstr "Tak"
#: views.py:57
msgid "No"
-msgstr ""
+msgstr "Nie"
#: views.py:62
#, python-format
@@ -207,23 +209,23 @@ msgstr ""
#: widgets.py:17
msgid "Days"
-msgstr ""
+msgstr "Dni"
#: widgets.py:18
msgid "Hours"
-msgstr ""
+msgstr "Godziny"
#: widgets.py:19
msgid "Minutes"
-msgstr ""
+msgstr "Minuty"
#: widgets.py:49
msgid "Enter a valid number of days."
-msgstr ""
+msgstr "Wprowadź poprawną liczbę dni."
#: widgets.py:50
msgid "Enter a valid number of hours."
-msgstr ""
+msgstr "Wprowadź poprawną liczbę godzin."
#: widgets.py:51
msgid "Enter a valid number of minutes."
@@ -231,7 +233,7 @@ msgstr ""
#: widgets.py:52
msgid "Enter a valid time difference."
-msgstr ""
+msgstr "Wprowadź różnicę czasu."
#: widgets.py:78
msgid ""
diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po
index 5e73ef261d..c06f34ab4a 100644
--- a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
diff --git a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po
index c07e079e58..f51d19ab6d 100644
--- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po
@@ -4,13 +4,14 @@
#
# Translators:
# Translators:
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
-"PO-Revision-Date: 2015-01-11 22:05+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
+"PO-Revision-Date: 2015-05-13 17:40+0000\n"
+"Last-Translator: Rogerio Falcone \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,224 +21,224 @@ msgstr ""
#: events.py:7
msgid "Document checked out"
-msgstr ""
+msgstr "Documento checked out"
#: events.py:8
msgid "Document checked in"
-msgstr ""
+msgstr "Documento checked in"
#: events.py:9
msgid "Document automatically checked in"
-msgstr ""
+msgstr "Documento checked in automático"
#: events.py:10
msgid "Document forcefully checked in"
-msgstr ""
+msgstr "Documento forçando o check-in"
#: exceptions.py:18 views.py:82
msgid "Document already checked out."
-msgstr ""
+msgstr "Documento já fez check-out. "
#: links.py:19
msgid "Checkouts"
-msgstr ""
+msgstr "Checkouts"
#: links.py:20
msgid "Check out document"
-msgstr ""
+msgstr "Documento Check out "
#: links.py:21
msgid "Check in document"
-msgstr ""
+msgstr "Documento Check in"
#: links.py:22
msgid "Check in/out"
-msgstr ""
+msgstr "Check in/out"
#: literals.py:9
msgid "Checked out"
-msgstr ""
+msgstr "Checked out"
#: literals.py:10
msgid "Checked in/available"
-msgstr ""
+msgstr "Checked in disponível"
#: models.py:23
msgid "Document"
-msgstr ""
+msgstr "Documento"
#: models.py:24
msgid "Check out date and time"
-msgstr ""
+msgstr "Data e hora do Check out"
#: models.py:25 widgets.py:79
msgid "Check out expiration date and time"
-msgstr ""
+msgstr "Confira data e hora de expiração"
#: models.py:25
msgid "Amount of time to hold the document checked out in minutes."
-msgstr ""
+msgstr "Quantidade de tempo para armazenar o documento com check-out em poucos minutos."
#: models.py:32
msgid "Block new version upload"
-msgstr ""
+msgstr "Permitir restrições imperativas do check out"
#: models.py:32
msgid "Do not allow new version of this document to be uploaded."
-msgstr ""
+msgstr "Não permitir nova versão deste documento a ser enviado."
#: models.py:58 permissions.py:7
msgid "Document checkout"
-msgstr ""
+msgstr "Documento checked out"
#: models.py:59
msgid "Document checkouts"
-msgstr ""
+msgstr "Documentos checkouts"
#: permissions.py:9
msgid "Check out documents"
-msgstr ""
+msgstr "Documentos Check out"
#: permissions.py:10
msgid "Check in documents"
-msgstr ""
+msgstr "Documentos Check in "
#: permissions.py:11
msgid "Forcefully check in documents"
-msgstr ""
+msgstr "Forçando o check-in documentos"
#: permissions.py:12
msgid "Allow overriding check out restrictions"
-msgstr ""
+msgstr "Permitir restrições imperativas do check out"
#: views.py:32
msgid "Documents checked out"
-msgstr ""
+msgstr "Documentos checked out"
#: views.py:35
msgid "Checkout user"
-msgstr ""
+msgstr "Checkout de usuario"
#: views.py:36
msgid "Checkout time and date"
-msgstr ""
+msgstr "Data e hora do Check out"
#: views.py:37
msgid "Checkout expiration"
-msgstr ""
+msgstr "Check Out expiração"
#: views.py:50
#, python-format
msgid "Document status: %s"
-msgstr ""
+msgstr "Documento status: %s"
#: views.py:54
#, python-format
msgid "User: %s"
-msgstr ""
+msgstr "Usuario: %s"
#: views.py:55
#, python-format
msgid "Check out time: %s"
-msgstr ""
+msgstr "Confira o tempo:%s"
#: views.py:56
#, python-format
msgid "Check out expiration: %s"
-msgstr ""
+msgstr "Check out expirado: %s"
#: views.py:57
#, python-format
msgid "New versions allowed: %s"
-msgstr ""
+msgstr "Novas versões permitida:%s"
#: views.py:57
msgid "Yes"
-msgstr ""
+msgstr "Sim"
#: views.py:57
msgid "No"
-msgstr ""
+msgstr "não"
#: views.py:62
#, python-format
msgid "Check out details for document: %s"
-msgstr ""
+msgstr "Confira detalhes sobre documento:%s "
#: views.py:85
#, python-format
msgid "Error trying to check out document; %s"
-msgstr ""
+msgstr "Erro tentando check-out de documentos;%s"
#: views.py:87
#, python-format
msgid "Document \"%s\" checked out successfully."
-msgstr ""
+msgstr "Documento \"%s\" check-out com êxito."
#: views.py:95
#, python-format
msgid "Check out document: %s"
-msgstr ""
+msgstr "Check out - documento: %s"
#: views.py:107 views.py:128
msgid "Document has not been checked out."
-msgstr ""
+msgstr "Documento não foi verificado."
#: views.py:130
#, python-format
msgid "Error trying to check in document; %s"
-msgstr ""
+msgstr "Erro tente novamente realizar o check no documento; %s"
#: views.py:132
#, python-format
msgid "Document \"%s\" checked in successfully."
-msgstr ""
+msgstr "Sucesso no checked in - Documento \"%s\""
#: views.py:143
#, python-format
msgid ""
"You didn't originally checked out this document. Are you sure you wish to "
"forcefully check in document: %s?"
-msgstr ""
+msgstr "Você originalmente não fez check-out este documento. Tem certeza de que deseja verificar no documento: %s?"
#: views.py:145
#, python-format
msgid "Are you sure you wish to check in document: %s?"
-msgstr ""
+msgstr "Tem certeza de que deseja verificar no documento: %s?"
#: widgets.py:17
msgid "Days"
-msgstr ""
+msgstr "Dia"
#: widgets.py:18
msgid "Hours"
-msgstr ""
+msgstr "Hora"
#: widgets.py:19
msgid "Minutes"
-msgstr ""
+msgstr "Minutos"
#: widgets.py:49
msgid "Enter a valid number of days."
-msgstr ""
+msgstr "Entre com o numero válido de dias."
#: widgets.py:50
msgid "Enter a valid number of hours."
-msgstr ""
+msgstr "Entre com o numero válido de horas."
#: widgets.py:51
msgid "Enter a valid number of minutes."
-msgstr ""
+msgstr "Entre com o numero válido de minutos."
#: widgets.py:52
msgid "Enter a valid time difference."
-msgstr ""
+msgstr "Digite com um tempo válido diferente."
#: widgets.py:78
msgid ""
"Amount of time to hold the document in the checked out state in days, hours "
"and/or minutes."
-msgstr ""
+msgstr "Quantidade de tempo para guardar o documento no estado check-out em dias, horas e / ou minutos."
#~ msgid "Document \"%(document)s\" checked out by %(fullname)s."
#~ msgstr "Document \"%(document)s\" checked out by %(fullname)s."
diff --git a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po
index 509e65563b..7c6a2fd23a 100644
--- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po
index 7be2b8389b..81f05ecb81 100644
--- a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: events.py:7
msgid "Document checked out"
diff --git a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po
index 8ec357fa3f..2d6031dbdd 100644
--- a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
diff --git a/mayan/apps/checkouts/locale/sq/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/sq/LC_MESSAGES/django.po
index b6dd4d9e8e..1ab6a83022 100644
--- a/mayan/apps/checkouts/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/sq/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po
index 50c991699c..77483f6689 100644
--- a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
diff --git a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po
index 893704ae0e..f60fcf26ad 100644
--- a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
diff --git a/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po
index f0179ed78b..d4d78dab63 100644
--- a/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 20:44-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
diff --git a/mayan/apps/checkouts/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/zh_TW/LC_MESSAGES/django.po
index a31e3329b0..314354bdbe 100644
--- a/mayan/apps/checkouts/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/checkouts/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 18:59-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/checkouts/urls.py b/mayan/apps/checkouts/urls.py
index e7084f140e..e8c54ca78b 100644
--- a/mayan/apps/checkouts/urls.py
+++ b/mayan/apps/checkouts/urls.py
@@ -5,14 +5,16 @@ from django.conf.urls import patterns, url
from .api_views import APICheckedoutDocumentListView, APICheckedoutDocumentView
from .views import CheckoutListView
-urlpatterns = patterns('checkouts.views',
+urlpatterns = patterns(
+ 'checkouts.views',
url(r'^list/$', CheckoutListView.as_view(), name='checkout_list'),
url(r'^(?P\d+)/check/out/$', 'checkout_document', name='checkout_document'),
url(r'^(?P\d+)/check/in/$', 'checkin_document', name='checkin_document'),
url(r'^(?P\d+)/check/info/$', 'checkout_info', name='checkout_info'),
)
-api_urls = patterns('',
+api_urls = patterns(
+ '',
url(r'^documents/$', APICheckedoutDocumentListView.as_view(), name='checkout-document-list'),
url(r'^documents/(?P[0-9]+)/$', APICheckedoutDocumentView.as_view(), name='checkedout-document-view'),
)
diff --git a/mayan/apps/common/forms.py b/mayan/apps/common/forms.py
index 3eef494511..376d51957e 100644
--- a/mayan/apps/common/forms.py
+++ b/mayan/apps/common/forms.py
@@ -31,8 +31,12 @@ class DetailForm(forms.ModelForm):
else:
self.fields[extra_field['field']] = forms.CharField(
label=extra_field['label'],
- initial=escape(return_attrib(self.instance,
- extra_field['field'], None)),
+ initial=escape(
+ return_attrib(
+ self.instance,
+ extra_field['field'], None
+ )
+ ),
widget=PlainWidget)
for field_name, field in self.fields.items():
diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po
index 1714587e59..c6e3e6c4ad 100644
--- a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po
@@ -4,7 +4,7 @@
#
# Translators:
# Translators:
-# Mehdi Amani , 2014
+# Mehdi Amani , 2014-2015
# Mohammad Dashtizadeh , 2013
msgid ""
msgstr ""
@@ -27,7 +27,7 @@ msgstr ""
#: classes.py:40
msgid "Available attributes: "
-msgstr ""
+msgstr "خصوصیات موجود"
#: forms.py:98
msgid "Selection"
@@ -61,6 +61,7 @@ msgstr ""
msgid "License"
msgstr "لیسانس"
+<<<<<<< HEAD
#: links.py:19
msgid "Maintenance"
msgstr ""
@@ -72,6 +73,19 @@ msgstr ""
#: links.py:21 views.py:435
msgid "Tools"
msgstr ""
+=======
+#: links.py:17
+msgid "Locale profile"
+msgstr "پروفایل محلی"
+
+#: links.py:18
+msgid "Edit locale profile"
+msgstr "ویرایش پروفایل محلی"
+
+#: links.py:20
+msgid "Logout"
+msgstr "خروج"
+>>>>>>> master
#: models.py:29 models.py:32
msgid "Anonymous user"
@@ -115,23 +129,23 @@ msgstr "فایلهای آپلود شده اشتراکی"
#: models.py:64
msgid "User"
-msgstr ""
+msgstr "کاربر"
#: models.py:66
msgid "Timezone"
-msgstr ""
+msgstr "زمان محلی"
#: models.py:67
msgid "Language"
-msgstr ""
+msgstr "زبان"
#: models.py:73
msgid "User locale profile"
-msgstr ""
+msgstr "پروفایل محلی کاربر"
#: models.py:74
msgid "User locale profiles"
-msgstr ""
+msgstr "پروفایل محلی کاربر"
#: settings.py:14
msgid ""
@@ -182,7 +196,7 @@ msgstr "جزئیاتا کاربر فعلی"
#: views.py:196
msgid "Current user locale profile details"
-msgstr ""
+msgstr "شرح پروفایل محلی کاربر فعلی"
#: views.py:213
msgid "E-mail conflict, another user has that same email."
@@ -198,11 +212,11 @@ msgstr "یرایش جزئیات کاربر کنونی"
#: views.py:248
msgid "Current user's locale profile details updated."
-msgstr ""
+msgstr "شرح پروفایل محلی کاربر فعلی بروز رسانی شد."
#: views.py:257
msgid "Edit current user locale profile details"
-msgstr ""
+msgstr "ویرایش شرح پروفایل محلی کاربر فعلی"
#: views.py:282
#, python-format
diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po
index 1dd45a7a03..111d2ba203 100644
--- a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po
@@ -4,9 +4,11 @@
#
# Translators:
# Translators:
+# Annunnaky , 2015
# mic, 2012
# mic , 2012
# mic , 2012
+# mic , 2015
# mic , 2012
msgid ""
msgstr ""
@@ -30,7 +32,7 @@ msgstr ""
#: classes.py:40
msgid "Available attributes: "
-msgstr ""
+msgstr "Dostępne atrybuty:"
#: forms.py:98
msgid "Selection"
@@ -46,11 +48,11 @@ msgstr ""
#: links.py:14
msgid "User details"
-msgstr ""
+msgstr "Dane użytkownika"
#: links.py:15
msgid "Edit details"
-msgstr ""
+msgstr "Edytuj szczegóły"
#: links.py:16
msgid "Locale profile"
@@ -82,7 +84,7 @@ msgstr "Użytkownik anonimowy"
#: models.py:36
msgid "Account"
-msgstr ""
+msgstr "Konto"
#: models.py:37
msgid "Password"
@@ -90,51 +92,51 @@ msgstr ""
#: models.py:38
msgid "Password hash"
-msgstr ""
+msgstr "Hasło hash"
#: models.py:41
msgid "Auto admin properties"
-msgstr ""
+msgstr "Właściwości automatyczne"
#: models.py:46
msgid "File"
-msgstr ""
+msgstr "Plik"
#: models.py:47
msgid "Filename"
-msgstr ""
+msgstr "Nazwa"
#: models.py:48
msgid "Date time"
-msgstr ""
+msgstr "data i godzina"
#: models.py:51
msgid "Shared uploaded file"
-msgstr ""
+msgstr "Udostępniony plik"
#: models.py:52
msgid "Shared uploaded files"
-msgstr ""
+msgstr "Pliki udostępnione"
#: models.py:64
msgid "User"
-msgstr ""
+msgstr "Użytkownik"
#: models.py:66
msgid "Timezone"
-msgstr ""
+msgstr "Strefa czasowa"
#: models.py:67
msgid "Language"
-msgstr ""
+msgstr "Język"
#: models.py:73
msgid "User locale profile"
-msgstr ""
+msgstr "Lokalny profil użytkownika"
#: models.py:74
msgid "User locale profiles"
-msgstr ""
+msgstr "Lokalne profile użytkownika"
#: settings.py:14
msgid ""
@@ -145,11 +147,11 @@ msgstr ""
#: settings.py:48
msgid "A storage backend that all workers can use to share files."
-msgstr ""
+msgstr "Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie plików."
#: utils.py:114
msgid "Function found"
-msgstr ""
+msgstr "Wyszukano funkcję"
#: views.py:54
msgid "No action selected."
@@ -162,12 +164,12 @@ msgstr "Musisz wybrać co najmniej jeden element."
#: views.py:110
#, python-format
msgid "Unable to remove %(selection)s."
-msgstr ""
+msgstr "Nie można usunąć %(selection)s."
#: views.py:135
#, python-format
msgid "Unable to add %(selection)s."
-msgstr ""
+msgstr "Nie można dodać %(selection)s."
#: views.py:148
msgid "Add"
@@ -179,11 +181,11 @@ msgstr "Usuń"
#: views.py:181
msgid "Current user details"
-msgstr ""
+msgstr "Aktualne dane użytkownika"
#: views.py:196
msgid "Current user locale profile details"
-msgstr ""
+msgstr "Aktualne dane użytkownika szczegóły"
#: views.py:213
msgid "E-mail conflict, another user has that same email."
@@ -195,69 +197,69 @@ msgstr "Aktualne dane użytkownika aktualizowane."
#: views.py:225
msgid "Edit current user details"
-msgstr ""
+msgstr "Edytuj aktualne dane użytkownika"
#: views.py:248
msgid "Current user's locale profile details updated."
-msgstr ""
+msgstr "Profil aktualnego użytkownika został zaktualizowany."
#: views.py:257
msgid "Edit current user locale profile details"
-msgstr ""
+msgstr "Edytuj profil aktualnego użytkownika."
#: views.py:282
#, python-format
msgid "Error saving %s details."
-msgstr ""
+msgstr "Błąd podczas zapisu %s."
#: views.py:284
msgid "Error saving details."
-msgstr ""
+msgstr "Błąd zapisu detali."
#: views.py:292
#, python-format
msgid "%s details saved successfully."
-msgstr ""
+msgstr "%s detale zapiane pomyślnie."
#: views.py:294
msgid "Details saved successfully."
-msgstr ""
+msgstr "Detale zapsane pomyślnie."
#: views.py:306
#, python-format
msgid "Error creating new %s."
-msgstr ""
+msgstr "Błąd podczas tworzenia nowego : %s."
#: views.py:308
msgid "Error creating object."
-msgstr ""
+msgstr "Błąd poczas tworzenia obiektu."
#: views.py:315
#, python-format
msgid "%s created successfully."
-msgstr ""
+msgstr "%s utworzono pomyślnie."
#: views.py:317
msgid "New object created successfully."
-msgstr ""
+msgstr "Pomyślnie utworzono nowy obiekt."
#: views.py:335
#, python-format
msgid "Error deleting %s."
-msgstr ""
+msgstr "Błąd podczas usuwania %s."
#: views.py:337
msgid "Error deleting object."
-msgstr ""
+msgstr "Błąd podczas usuwania obiektu."
#: views.py:342
#, python-format
msgid "%s deleted successfully."
-msgstr ""
+msgstr "%s usunięto pomyślnie."
#: views.py:344
msgid "Object deleted successfully."
-msgstr ""
+msgstr "Pomyślnie usunuęto obiekt."
#: views.py:425
msgid "Setup items"
diff --git a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po
index e224f427c9..67dea8cdaa 100644
--- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po
@@ -6,6 +6,7 @@
# Translators:
# Emerson Soares , 2011
# Roberto Rosario, 2012
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
@@ -27,7 +28,7 @@ msgstr ""
#: classes.py:40
msgid "Available attributes: "
-msgstr ""
+msgstr "Atributos disponíveis:"
#: forms.py:98
msgid "Selection"
@@ -43,11 +44,11 @@ msgstr ""
#: links.py:14
msgid "User details"
-msgstr ""
+msgstr "Detalhes do usuário"
#: links.py:15
msgid "Edit details"
-msgstr ""
+msgstr "Editar Detalhes"
#: links.py:16
msgid "Locale profile"
@@ -79,7 +80,7 @@ msgstr "Usuário anônimo"
#: models.py:36
msgid "Account"
-msgstr ""
+msgstr "Conta"
#: models.py:37
msgid "Password"
@@ -87,51 +88,51 @@ msgstr ""
#: models.py:38
msgid "Password hash"
-msgstr ""
+msgstr "Senha hash"
#: models.py:41
msgid "Auto admin properties"
-msgstr ""
+msgstr "Propriedades de administração Automático"
#: models.py:46
msgid "File"
-msgstr ""
+msgstr "Arquivo"
#: models.py:47
msgid "Filename"
-msgstr ""
+msgstr "Nome do arquivo"
#: models.py:48
msgid "Date time"
-msgstr ""
+msgstr "hora, data"
#: models.py:51
msgid "Shared uploaded file"
-msgstr ""
+msgstr "Arquivo enviado Partilhado"
#: models.py:52
msgid "Shared uploaded files"
-msgstr ""
+msgstr "Arquivos enviados Partilhado"
#: models.py:64
msgid "User"
-msgstr ""
+msgstr "Usuário"
#: models.py:66
msgid "Timezone"
-msgstr ""
+msgstr "Timezone"
#: models.py:67
msgid "Language"
-msgstr ""
+msgstr "Lingua"
#: models.py:73
msgid "User locale profile"
-msgstr ""
+msgstr "Perfil de localidade do usuário"
#: models.py:74
msgid "User locale profiles"
-msgstr ""
+msgstr "Perfis de localidade do usuário"
#: settings.py:14
msgid ""
@@ -142,11 +143,11 @@ msgstr ""
#: settings.py:48
msgid "A storage backend that all workers can use to share files."
-msgstr ""
+msgstr "Um backend de armazenamento que todos os trabalhadores podem usar para compartilhar arquivos."
#: utils.py:114
msgid "Function found"
-msgstr ""
+msgstr "função encontrada"
#: views.py:54
msgid "No action selected."
@@ -159,12 +160,12 @@ msgstr "Deve selecionar pelo menos um item."
#: views.py:110
#, python-format
msgid "Unable to remove %(selection)s."
-msgstr ""
+msgstr "Não foi possível remover %(selection)s."
#: views.py:135
#, python-format
msgid "Unable to add %(selection)s."
-msgstr ""
+msgstr "Não foi possível adicionar %(selection)s."
#: views.py:148
msgid "Add"
@@ -176,11 +177,11 @@ msgstr "Remover"
#: views.py:181
msgid "Current user details"
-msgstr ""
+msgstr "Detalhes do usuário"
#: views.py:196
msgid "Current user locale profile details"
-msgstr ""
+msgstr "Usuário Atual - detalhes do perfil de localidade"
#: views.py:213
msgid "E-mail conflict, another user has that same email."
@@ -192,69 +193,69 @@ msgstr "Detalhes do usuário atual atualizados."
#: views.py:225
msgid "Edit current user details"
-msgstr ""
+msgstr "Editar detalhes do usuário corrente"
#: views.py:248
msgid "Current user's locale profile details updated."
-msgstr ""
+msgstr "Detalhes do perfil de localidade do usuário atual atualizado."
#: views.py:257
msgid "Edit current user locale profile details"
-msgstr ""
+msgstr "Editar Usuário Atual - detalhes do perfil de localidade"
#: views.py:282
#, python-format
msgid "Error saving %s details."
-msgstr ""
+msgstr "Erro ao salvar %s detalhes."
#: views.py:284
msgid "Error saving details."
-msgstr ""
+msgstr "Salvar detalhes de erro."
#: views.py:292
#, python-format
msgid "%s details saved successfully."
-msgstr ""
+msgstr "%s Detalhes salvos com sucesso."
#: views.py:294
msgid "Details saved successfully."
-msgstr ""
+msgstr "Detalhes salvos com sucesso."
#: views.py:306
#, python-format
msgid "Error creating new %s."
-msgstr ""
+msgstr "Erro ao criar nova :%s. "
#: views.py:308
msgid "Error creating object."
-msgstr ""
+msgstr "Erro ao criar objeto."
#: views.py:315
#, python-format
msgid "%s created successfully."
-msgstr ""
+msgstr "%s criado com sucesso."
#: views.py:317
msgid "New object created successfully."
-msgstr ""
+msgstr "Novo objeto criado com sucesso."
#: views.py:335
#, python-format
msgid "Error deleting %s."
-msgstr ""
+msgstr "Erro ao excluir:%s."
#: views.py:337
msgid "Error deleting object."
-msgstr ""
+msgstr "Erro ao excluir objeto."
#: views.py:342
#, python-format
msgid "%s deleted successfully."
-msgstr ""
+msgstr "%s excluído com sucesso"
#: views.py:344
msgid "Object deleted successfully."
-msgstr ""
+msgstr "Objeto excluído com sucesso."
#: views.py:425
msgid "Setup items"
diff --git a/mayan/apps/common/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/common/locale/zh_TW/LC_MESSAGES/django.po
index 3028b25b85..69bbcc56b7 100644
--- a/mayan/apps/common/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/common/locale/zh_TW/LC_MESSAGES/django.po
@@ -269,145 +269,3 @@ msgstr ""
#: widgets.py:60
msgid "None"
msgstr ""
-
-#~ msgid "%(selection)s added successfully added to %(right_list_title)s."
-#~ msgstr "%(selection)s added successfully added to %(right_list_title)s."
-
-#~ msgid "%(selection)s added successfully removed from %(right_list_title)s."
-#~ msgstr "%(selection)s added successfully removed from %(right_list_title)s."
-
-#~ msgid "A5"
-#~ msgstr "A5"
-
-#~ msgid "A4"
-#~ msgstr "A4"
-
-#~ msgid "A3"
-#~ msgstr "A3"
-
-#~ msgid "B5"
-#~ msgstr "B5"
-
-#~ msgid "B4"
-#~ msgstr "B4"
-
-#~ msgid "Letter"
-#~ msgstr "Letter"
-
-#~ msgid "Legal"
-#~ msgstr "Legal"
-
-#~ msgid "Ledger"
-#~ msgstr "Ledger"
-
-#~ msgid "Portrait"
-#~ msgstr "Portrait"
-
-#~ msgid "Landscape"
-#~ msgstr "Landscape"
-
-#~ msgid "license"
-#~ msgstr "license"
-
-#~ msgid "anonymous user"
-#~ msgstr "anonymous user"
-
-#~ msgid "password"
-#~ msgstr "password"
-
-#~ msgid "Insufficient permissions"
-#~ msgstr "Insufficient permissions"
-
-#~ msgid "You don't have enough permissions for this operation."
-#~ msgstr "You don't have enough permissions for this operation."
-
-#~ msgid "Page not found"
-#~ msgstr "Page not found"
-
-#~ msgid "Sorry, but the requested page could not be found."
-#~ msgstr "Sorry, but the requested page could not be found."
-
-#~ msgid "Details for %(object_name)s: %(object)s"
-#~ msgstr "Details for %(object_name)s: %(object)s"
-
-#~ msgid "Details for: %(object)s"
-#~ msgstr "Details for: %(object)s"
-
-#~ msgid "Edit %(object_name)s: %(object)s"
-#~ msgstr "Details for %(object_name)s: %(object)s"
-
-#~ msgid "Edit: %(object)s"
-#~ msgstr "Edit %(object_name)s:"
-
-#~ msgid "Create new %(object_name)s"
-#~ msgstr "Create new %(object_name)s"
-
-#~ msgid "Create"
-#~ msgstr "Create"
-
-#~ msgid "Assign %(title)s %(object)s"
-#~ msgstr "Assign %(title)s %(object)s"
-
-#~ msgid "Confirm"
-#~ msgstr "Confirm"
-
-#~ msgid "Confirm delete"
-#~ msgstr "Confirm delete"
-
-#~ msgid "form icon"
-#~ msgstr "form icon"
-
-#~ msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
-#~ msgstr "Are you sure you wish to delete %(object_name)s: %(object)s?"
-
-#~ msgid "Are you sure you wish to delete: %(object)s?"
-#~ msgstr "Are you sure you wish to delete: %(object)s?"
-
-#~ msgid "Yes"
-#~ msgstr "Yes"
-
-#~ msgid "No"
-#~ msgstr "No"
-
-#~ msgid "required"
-#~ msgstr "required"
-
-#~ msgid "Save"
-#~ msgstr "Save"
-
-#~ msgid "Submit"
-#~ msgstr "Submit"
-
-#~ msgid "Cancel"
-#~ msgstr "Cancel"
-
-#~ msgid "List of %(title)s"
-#~ msgstr "List of %(stripped_title)s"
-
-#~ msgid ""
-#~ "List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
-#~ "%(page_number)s of %(total_pages)s)"
-#~ msgstr ""
-#~ "List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
-#~ "%(page_number)s of %(total_pages)s)"
-
-#~ msgid "List of %(title)s (%(total)s)"
-#~ msgstr "List of %(title)s (%(total)s)"
-
-#~ msgid "Identifier"
-#~ msgstr "Identifier"
-
-#~ msgid "There are no %(title)s"
-#~ msgstr "There are no %(stripped_title)s"
-
-#~ msgid "Login"
-#~ msgstr "Login"
-
-#~ msgid "Password change"
-#~ msgstr "Password change"
-
-#~ msgid "lock field"
-#~ msgstr "lock field"
-
-#~ msgid "Edit"
-#~ msgstr "Edit"
diff --git a/mayan/apps/common/urls.py b/mayan/apps/common/urls.py
index 91151c1f1a..3e8d02452e 100644
--- a/mayan/apps/common/urls.py
+++ b/mayan/apps/common/urls.py
@@ -9,7 +9,8 @@ from .views import (
HomeView, LicenseView, MaintenanceMenuView, SetupListView, ToolsListView
)
-urlpatterns = patterns('common.views',
+urlpatterns = patterns(
+ 'common.views',
url(r'^$', HomeView.as_view(), name='home'),
url(r'^about/$', AboutView.as_view(), name='about_view'),
url(r'^license/$', LicenseView.as_view(), name='license_view'),
@@ -21,9 +22,19 @@ urlpatterns = patterns('common.views',
url(r'^user/edit/$', 'current_user_edit', name='current_user_edit'),
url(r'^user/locale/$', CurrentUserLocaleProfileDetailsView.as_view(), name='current_user_locale_profile_details'),
url(r'^user/locale/edit/$', 'current_user_locale_profile_edit', name='current_user_locale_profile_edit'),
+
+urlpatterns += patterns(
+ '',
+ url(r'^logout/$', 'django.contrib.auth.views.logout', {'next_page': 'main:home'}, name='logout_view'),
+
+ url(r'^password/reset/$', 'django.contrib.auth.views.password_reset', {'email_template_name': 'main/password_reset_email.html', 'template_name': 'main/password_reset_form.html', 'post_reset_redirect': '/password/reset/done'}, name='password_reset_view'),
+ url(r'^password/reset/confirm/(?P[0-9A-Za-z]+)-(?P.+)/$', 'django.contrib.auth.views.password_reset_confirm', {'template_name': 'main/password_reset_confirm.html', 'post_reset_redirect': '/password/reset/complete/'}, name='password_reset_confirm_view'),
+ url(r'^password/reset/complete/$', 'django.contrib.auth.views.password_reset_complete', {'template_name': 'main/password_reset_complete.html'}, name='password_reset_complete_view'),
+ url(r'^password/reset/done/$', 'django.contrib.auth.views.password_reset_done', {'template_name': 'main/password_reset_done.html'}, name='password_reset_done_view'),
)
-urlpatterns += patterns('',
+urlpatterns += patterns(
+ '',
url(r'^set_language/$', 'django.views.i18n.set_language', name='set_language'),
(r'^favicon\.ico$', RedirectView.as_view(url=static('appearance/images/favicon.ico'))),
)
diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po
index 8180d986a2..e775ad5732 100644
--- a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po
index cd7b177eee..82913b6da6 100644
--- a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
diff --git a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po
index 30ed0fd9fc..637917d852 100644
--- a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
diff --git a/mayan/apps/converter/locale/da/LC_MESSAGES/django.po b/mayan/apps/converter/locale/da/LC_MESSAGES/django.po
index 892d0c874d..8deaedc774 100644
--- a/mayan/apps/converter/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/da/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
diff --git a/mayan/apps/converter/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/converter/locale/de_CH/LC_MESSAGES/django.po
index afa39c1ae3..f99c4a158a 100644
--- a/mayan/apps/converter/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
diff --git a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po
index ef7edfcabe..21608fa410 100644
--- a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-02-06 23:55+0000\n"
"Last-Translator: Mathias Behrle \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
diff --git a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po
index f232ce504d..8f8efd9516 100644
--- a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2012-12-12 06:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po
index 39ab227e36..e221010d2f 100644
--- a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po
index 549d54e07a..d58bac6c54 100644
--- a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po
@@ -4,14 +4,14 @@
#
# Translators:
# Translators:
-# Mehdi Amani , 2014
+# Mehdi Amani , 2014-2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-03-03 10:56+0000\n"
+"Last-Translator: Mehdi Amani \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -93,7 +93,7 @@ msgstr "Path to the libreoffice program."
#: settings.py:17
msgid "Path to the Popple program pdftoppm."
-msgstr ""
+msgstr "محل Popple نرم افزار pdftoppm."
#~ msgid "Help"
#~ msgstr "Help"
diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po
index 3f4f28c09a..523ebc2c7d 100644
--- a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-02-05 10:21+0000\n"
"Last-Translator: Christophe kryskool \n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
diff --git a/mayan/apps/converter/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/hr_HR/LC_MESSAGES/django.po
index bb48e7df9b..8a34443f1d 100644
--- a/mayan/apps/converter/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/hr_HR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po
index 8052d90f07..ca428840b6 100644
--- a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po
index 84d555ccb6..3662adc91c 100644
--- a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po
index 3d1dca1040..db5b647083 100644
--- a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-29 08:13+0000\n"
"Last-Translator: Pierpaolo Baldan \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
diff --git a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po
index 5148bdeb41..46d57b1c55 100644
--- a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/converter/locale/nb/LC_MESSAGES/django.po b/mayan/apps/converter/locale/nb/LC_MESSAGES/django.po
index 533dcda587..b5c2526094 100644
--- a/mayan/apps/converter/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po
index a0b16fb7ad..07705a41b5 100644
--- a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po
index d224311e6c..ce1891ef62 100644
--- a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po
@@ -4,14 +4,15 @@
#
# Translators:
# Translators:
+# mic , 2015
# mic , 2012
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-02-28 19:56+0000\n"
+"Last-Translator: mic \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -29,11 +30,11 @@ msgstr "Zmiana rozmiaru."
#: literals.py:24 literals.py:39
msgid "Width"
-msgstr ""
+msgstr "Szerokość"
#: literals.py:25 literals.py:40
msgid "Height"
-msgstr ""
+msgstr "Wysokość"
#: literals.py:29
msgid "Rotate"
@@ -45,11 +46,11 @@ msgstr ""
#: literals.py:32
msgid "Degrees"
-msgstr ""
+msgstr "Stopnie"
#: literals.py:36
msgid "Density"
-msgstr ""
+msgstr "Gęstość"
#: literals.py:37
msgid "Change the resolution (ie: DPI) without resizing."
@@ -65,7 +66,7 @@ msgstr ""
#: literals.py:47
msgid "Percent"
-msgstr ""
+msgstr "Procent"
#: settings.py:11
msgid "File path to imagemagick's convert program."
diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po
index a68d501022..1ba0386c6f 100644
--- a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
diff --git a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po
index d87ed7540f..4b20902570 100644
--- a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po
@@ -6,13 +6,14 @@
# Translators:
# Emerson Soares , 2011-2012
# Renata Oliveira , 2011
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-06 12:52+0000\n"
+"Last-Translator: Rogerio Falcone \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -30,11 +31,11 @@ msgstr "Redimensionar."
#: literals.py:24 literals.py:39
msgid "Width"
-msgstr ""
+msgstr "largura"
#: literals.py:25 literals.py:40
msgid "Height"
-msgstr ""
+msgstr "altura"
#: literals.py:29
msgid "Rotate"
@@ -46,7 +47,7 @@ msgstr "Rodar por n graus."
#: literals.py:32
msgid "Degrees"
-msgstr ""
+msgstr "graus"
#: literals.py:36
msgid "Density"
@@ -66,7 +67,7 @@ msgstr "Zoom por n percento."
#: literals.py:47
msgid "Percent"
-msgstr ""
+msgstr "Percentual"
#: settings.py:11
msgid "File path to imagemagick's convert program."
@@ -86,7 +87,7 @@ msgid ""
"converter.backends.imagemagick.ImageMagick, "
"converter.backends.graphicsmagick.GraphicsMagick and "
"converter.backends.python.Python"
-msgstr ""
+msgstr "Gráficos de conversão backend, para usar as opções são:\nconverter.backends.imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick and converter.backends.python.Python"
#: settings.py:16
msgid "Path to the libreoffice program."
@@ -94,7 +95,7 @@ msgstr "Caminho para o programa BrOffice."
#: settings.py:17
msgid "Path to the Popple program pdftoppm."
-msgstr ""
+msgstr "Caminho para o programa libreoffice"
#~ msgid "Help"
#~ msgstr "Help"
diff --git a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po
index 2ce92b9d6b..605be6662d 100644
--- a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
diff --git a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po
index af3fabb196..9d2ff011c7 100644
--- a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: literals.py:21
msgid "Resize"
diff --git a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po
index 0f537fdb13..c92768ccdf 100644
--- a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
diff --git a/mayan/apps/converter/locale/sq/LC_MESSAGES/django.po b/mayan/apps/converter/locale/sq/LC_MESSAGES/django.po
index 07de314120..6118cb1577 100644
--- a/mayan/apps/converter/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/sq/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po
index d6d85dbf2d..6a7be19926 100644
--- a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
diff --git a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po
index 910403c807..5e1fd7e9f1 100644
--- a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
diff --git a/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po
index 5b6824019a..6b8aebd5c1 100644
--- a/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
diff --git a/mayan/apps/converter/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/converter/locale/zh_TW/LC_MESSAGES/django.po
index ffe5a7c0b9..f226810b24 100644
--- a/mayan/apps/converter/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/converter/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/django_gpg/api.py b/mayan/apps/django_gpg/api.py
index 2b9baecadd..43e4e29839 100644
--- a/mayan/apps/django_gpg/api.py
+++ b/mayan/apps/django_gpg/api.py
@@ -123,6 +123,8 @@ class GPG(object):
try:
self.gpg = gnupg.GPG(**kwargs)
+ except OSError as exception:
+ raise GPGException('ERROR: GPG initialization error; Make sure the GPG binary is properly installed; %s' % exception)
except Exception as exception:
raise GPGException('ERROR: GPG initialization error; %s' % exception)
diff --git a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po
index af9814b6ce..99ba19b2eb 100644
--- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
diff --git a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po
index e41b535480..bdd7a8ed6d 100644
--- a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
diff --git a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po
index 4a889ebc77..0fd6250c48 100644
--- a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
diff --git a/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po
index f61f2433c6..d81b09716e 100644
--- a/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
diff --git a/mayan/apps/django_gpg/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/de_CH/LC_MESSAGES/django.po
index b45a1d5110..e9f49f94fa 100644
--- a/mayan/apps/django_gpg/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
diff --git a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po
index 779f33435f..58a58476a9 100644
--- a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-02-06 23:55+0000\n"
"Last-Translator: Mathias Behrle \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
diff --git a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po
index 4e27339ea7..142bd3ccab 100644
--- a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2012-12-12 06:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po
index 7d423f0c29..8ea9b1358c 100644
--- a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-02-07 05:27+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
diff --git a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po
index ef16d10dbe..a6cc2d74bd 100644
--- a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po
@@ -4,14 +4,14 @@
#
# Translators:
# Translators:
-# Mehdi Amani , 2014
+# Mehdi Amani , 2014-2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-03-03 10:56+0000\n"
+"Last-Translator: Mehdi Amani \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -121,7 +121,7 @@ msgstr "ریشه دایرکتوری جهت نگهداری کلیدها بهمر
#: settings.py:16
msgid "Path to the GPG binary."
-msgstr ""
+msgstr "محل کتایخانه باینری GPG"
#: views.py:40
#, python-format
diff --git a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po
index 977f2d25bb..88a0b53a59 100644
--- a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-29 07:41+0000\n"
"Last-Translator: Christophe kryskool \n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
diff --git a/mayan/apps/django_gpg/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/hr_HR/LC_MESSAGES/django.po
index 6c9166cfed..359cdf1b26 100644
--- a/mayan/apps/django_gpg/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/hr_HR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
diff --git a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po
index 331da7adb0..27a5c08cd6 100644
--- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
diff --git a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po
index 713be7161a..bdfae20e6c 100644
--- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
diff --git a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po
index 26ec82c8e3..354fc00397 100644
--- a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-29 09:01+0000\n"
"Last-Translator: Pierpaolo Baldan \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
diff --git a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po
index 745099d08b..1601e45b9b 100644
--- a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/django_gpg/locale/nb/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/nb/LC_MESSAGES/django.po
index 08987904e0..f4fa6f401e 100644
--- a/mayan/apps/django_gpg/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po
index 50685758bf..ad39cc2305 100644
--- a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
diff --git a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po
index c27957b9af..0786f9b30f 100644
--- a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po
@@ -4,14 +4,16 @@
#
# Translators:
# Translators:
+# Annunnaky , 2015
+# mic , 2015
# mic , 2012
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-03-02 05:31+0000\n"
+"Last-Translator: Annunnaky \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,7 +23,7 @@ msgstr ""
#: api.py:94
msgid "Unknown"
-msgstr ""
+msgstr "Nieznany"
#: forms.py:9
msgid "Term"
@@ -33,15 +35,15 @@ msgstr "Imię i nazwisko, e-mail, key ID lub key fingerprint kluc szukać."
#: links.py:10 views.py:68
msgid "Private keys"
-msgstr ""
+msgstr "Klucze prywatne"
#: links.py:11 views.py:71
msgid "Public keys"
-msgstr ""
+msgstr "Klucze publiczne"
#: links.py:12
msgid "Delete"
-msgstr ""
+msgstr "Usunąć"
#: links.py:13 permissions.py:11
msgid "Query keyservers"
@@ -49,7 +51,7 @@ msgstr "Query keyservers"
#: links.py:14
msgid "Import"
-msgstr ""
+msgstr "Import"
#: links.py:15 permissions.py:7
msgid "Key management"
@@ -61,7 +63,7 @@ msgstr "Publiczny"
#: literals.py:7
msgid "Secret"
-msgstr "Secret"
+msgstr "Sekret"
#: literals.py:15 literals.py:20
msgid "RSA"
@@ -121,7 +123,7 @@ msgstr "Katalog domowy używany do przechowywania kluczy oraz plików konfigurac
#: settings.py:16
msgid "Path to the GPG binary."
-msgstr ""
+msgstr "Ścieżka do GPG binary."
#: views.py:40
#, python-format
@@ -181,31 +183,31 @@ msgstr "ID"
#: views.py:151
msgid "Type"
-msgstr ""
+msgstr "Typ"
#: views.py:155
msgid "Creation date"
-msgstr ""
+msgstr "Data utworzenia"
#: views.py:159
msgid "Disabled"
-msgstr ""
+msgstr "Wyłączone"
#: views.py:163
msgid "Expiration date"
-msgstr ""
+msgstr "Data wygaśnięcia"
#: views.py:167
msgid "Expired"
-msgstr ""
+msgstr "Wygasł"
#: views.py:171
msgid "Length"
-msgstr ""
+msgstr "Długość"
#: views.py:175
msgid "Revoked"
-msgstr ""
+msgstr "Odwołany"
#: views.py:180
msgid "Identifies"
diff --git a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po
index 4916a8c6d1..37ef950823 100644
--- a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
diff --git a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po
index 726f6268d5..f5209ce25a 100644
--- a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po
@@ -5,13 +5,14 @@
# Translators:
# Translators:
# Roberto Rosario, 2012
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-11 20:22+0000\n"
+"Last-Translator: Rogerio Falcone \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,11 +22,11 @@ msgstr ""
#: api.py:94
msgid "Unknown"
-msgstr ""
+msgstr "desconhecido"
#: forms.py:9
msgid "Term"
-msgstr ""
+msgstr "Termo"
#: forms.py:10
msgid "Name, e-mail, key ID or key fingerprint to look for."
@@ -33,15 +34,15 @@ msgstr ""
#: links.py:10 views.py:68
msgid "Private keys"
-msgstr ""
+msgstr "chaves privadas"
#: links.py:11 views.py:71
msgid "Public keys"
-msgstr ""
+msgstr "chaves públicas"
#: links.py:12
msgid "Delete"
-msgstr ""
+msgstr "Excluir"
#: links.py:13 permissions.py:11
msgid "Query keyservers"
@@ -49,11 +50,11 @@ msgstr "Consulta servidores de chaves"
#: links.py:14
msgid "Import"
-msgstr ""
+msgstr "Importar"
#: links.py:15 permissions.py:7
msgid "Key management"
-msgstr ""
+msgstr "Gerenciar chaves"
#: literals.py:6
msgid "Public"
@@ -109,7 +110,7 @@ msgstr "Excluir chaves"
#: permissions.py:12
msgid "Import keys from keyservers"
-msgstr ""
+msgstr "Importar chaves do Keyservers"
#: settings.py:14
msgid "List of keyservers to be queried for unknown keys."
@@ -181,35 +182,35 @@ msgstr "ID"
#: views.py:151
msgid "Type"
-msgstr ""
+msgstr "Tipo"
#: views.py:155
msgid "Creation date"
-msgstr ""
+msgstr "data de criação"
#: views.py:159
msgid "Disabled"
-msgstr ""
+msgstr "desativada"
#: views.py:163
msgid "Expiration date"
-msgstr ""
+msgstr "data de validade"
#: views.py:167
msgid "Expired"
-msgstr ""
+msgstr "expirado"
#: views.py:171
msgid "Length"
-msgstr ""
+msgstr "comprimento"
#: views.py:175
msgid "Revoked"
-msgstr ""
+msgstr "Revogada"
#: views.py:180
msgid "Identifies"
-msgstr ""
+msgstr "Identifica"
#~ msgid "private keys"
#~ msgstr "private keys"
diff --git a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po
index f0434fd3c3..6f7d794219 100644
--- a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
diff --git a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po
index 6246d608b1..7b84b62475 100644
--- a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: api.py:94
msgid "Unknown"
diff --git a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po
index 54eb05c4a4..3f9c7e41b5 100644
--- a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
diff --git a/mayan/apps/django_gpg/locale/sq/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/sq/LC_MESSAGES/django.po
index c59175f00b..74e49244f8 100644
--- a/mayan/apps/django_gpg/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/sq/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po
index e16aed674f..96a50741b4 100644
--- a/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
diff --git a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po
index 06cf933bd6..372a59319b 100644
--- a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
diff --git a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po
index d772ce2b72..d34bf3f34a 100644
--- a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
diff --git a/mayan/apps/django_gpg/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/zh_TW/LC_MESSAGES/django.po
index a8b1edc4ea..0e74b582d1 100644
--- a/mayan/apps/django_gpg/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/django_gpg/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/django_gpg/urls.py b/mayan/apps/django_gpg/urls.py
index bdeb7a9c51..dc172041a4 100644
--- a/mayan/apps/django_gpg/urls.py
+++ b/mayan/apps/django_gpg/urls.py
@@ -1,6 +1,7 @@
from django.conf.urls import patterns, url
-urlpatterns = patterns('django_gpg.views',
+urlpatterns = patterns(
+ 'django_gpg.views',
url(r'^delete/(?P.+)/(?P\w+)/$', 'key_delete', (), 'key_delete'),
url(r'^list/private/$', 'key_list', {'secret': True}, 'key_private_list'),
url(r'^list/public/$', 'key_list', {'secret': False}, 'key_public_list'),
diff --git a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po
index 7818f86bbe..4c2e5fefea 100644
--- a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
diff --git a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po
index 8e739364c2..1c9b7c1a70 100644
--- a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
diff --git a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po
index 0b49973cb7..386f90af7b 100644
--- a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
diff --git a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po
index 48acdf206a..138ece7f9e 100644
--- a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
diff --git a/mayan/apps/document_comments/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/de_CH/LC_MESSAGES/django.po
index 7e290f23ec..9d39fbc59e 100644
--- a/mayan/apps/document_comments/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
diff --git a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po
index 96b8453940..9278f0a7b7 100644
--- a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-02-06 23:55+0000\n"
"Last-Translator: Mathias Behrle \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
diff --git a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po
index 442fa41115..b559612755 100644
--- a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2013-11-20 11:56+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po
index 457852137f..3e72e9a89d 100644
--- a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-12 18:53+0000\n"
"Last-Translator: Lory977 \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
diff --git a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po
index 290f114584..abbda7a427 100644
--- a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 17:30+0000\n"
"Last-Translator: Mehdi Amani \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
diff --git a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po
index f594dcee49..eb7078fee9 100644
--- a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-11-02 08:17+0000\n"
"Last-Translator: Christophe kryskool \n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
diff --git a/mayan/apps/document_comments/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/hr_HR/LC_MESSAGES/django.po
index 79e458d6d3..d1cac4dde8 100644
--- a/mayan/apps/document_comments/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/hr_HR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
diff --git a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po
index d19fcd352b..29e9695144 100644
--- a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
diff --git a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po
index 7b7e2d7d5b..7dcb1de8f2 100644
--- a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
diff --git a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po
index f959dd739a..59d38fc4d7 100644
--- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-29 09:02+0000\n"
"Last-Translator: Pierpaolo Baldan \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
diff --git a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po
index 8591b96134..9997b3a237 100644
--- a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/document_comments/locale/nb/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/nb/LC_MESSAGES/django.po
index e8e7172786..6fd82d7a70 100644
--- a/mayan/apps/document_comments/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po
index 6d01298265..0538f4d381 100644
--- a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
diff --git a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po
index b86984e45d..ee65046040 100644
--- a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po
@@ -4,16 +4,18 @@
#
# Translators:
# Translators:
+# Annunnaky , 2015
# mic , 2012
# mic , 2012
+# mic , 2015
# mic , 2012
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2014-10-25 07:18+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-03-02 05:28+0000\n"
+"Last-Translator: Annunnaky \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -23,15 +25,15 @@ msgstr ""
#: __init__.py:35
msgid "Date"
-msgstr ""
+msgstr "Data"
#: __init__.py:39
msgid "User"
-msgstr ""
+msgstr "Użytkownik"
#: __init__.py:43
msgid "Comment"
-msgstr ""
+msgstr "Komentarz"
#: __init__.py:52 links.py:13 permissions.py:7
msgid "Comments"
@@ -39,11 +41,11 @@ msgstr "Komentarze"
#: links.py:10 links.py:11
msgid "Delete"
-msgstr ""
+msgstr "Usuń"
#: links.py:12
msgid "Add comment"
-msgstr ""
+msgstr "Dodaj komentarz"
#: permissions.py:9
msgid "Create new comments"
@@ -93,7 +95,7 @@ msgstr "Dodaj komentarz do dokumentu:%s"
#: views.py:127
#, python-format
msgid "Comments for document: %s"
-msgstr ""
+msgstr "Komentarze dla dokumkentu: %s"
#~ msgid "date"
#~ msgstr "date"
diff --git a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po
index da3a45e36a..5be07be061 100644
--- a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
diff --git a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po
index 94b06e820a..6bc8bd610b 100644
--- a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po
@@ -5,13 +5,14 @@
# Translators:
# Translators:
# Emerson Soares , 2011
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2014-10-25 07:18+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-06 14:46+0000\n"
+"Last-Translator: Rogerio Falcone \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,15 +22,15 @@ msgstr ""
#: __init__.py:35
msgid "Date"
-msgstr ""
+msgstr "Data"
#: __init__.py:39
msgid "User"
-msgstr ""
+msgstr "Usuário"
#: __init__.py:43
msgid "Comment"
-msgstr ""
+msgstr "Comentário"
#: __init__.py:52 links.py:13 permissions.py:7
msgid "Comments"
@@ -37,11 +38,11 @@ msgstr "Comentários"
#: links.py:10 links.py:11
msgid "Delete"
-msgstr ""
+msgstr "Excluir"
#: links.py:12
msgid "Add comment"
-msgstr ""
+msgstr "Adicionar comentário"
#: permissions.py:9
msgid "Create new comments"
@@ -91,7 +92,7 @@ msgstr "Adicionar comentário ao documento: %s"
#: views.py:127
#, python-format
msgid "Comments for document: %s"
-msgstr ""
+msgstr "Comentário para documento: %s"
#~ msgid "date"
#~ msgstr "date"
diff --git a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po
index aa53926370..960c87dc21 100644
--- a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
diff --git a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po
index 608d424e08..458d859bed 100644
--- a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: __init__.py:35
msgid "Date"
diff --git a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po
index e20549e6b4..bd213a1042 100644
--- a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
diff --git a/mayan/apps/document_comments/locale/sq/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/sq/LC_MESSAGES/django.po
index 7b445f107f..9ba287f176 100644
--- a/mayan/apps/document_comments/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/sq/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po
index cc00a546c8..8cc695fdf0 100644
--- a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
diff --git a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po
index b4b80cd305..6dc923d6d8 100644
--- a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
diff --git a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po
index 1bfcea7ecb..14bd3fc729 100644
--- a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
diff --git a/mayan/apps/document_comments/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/zh_TW/LC_MESSAGES/django.po
index fa7a71a6f1..bc978cf468 100644
--- a/mayan/apps/document_comments/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/document_comments/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2014-10-25 07:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/document_comments/urls.py b/mayan/apps/document_comments/urls.py
index 88042839c9..2d2f2cae2f 100644
--- a/mayan/apps/document_comments/urls.py
+++ b/mayan/apps/document_comments/urls.py
@@ -2,7 +2,8 @@ from __future__ import unicode_literals
from django.conf.urls import patterns, url
-urlpatterns = patterns('document_comments.views',
+urlpatterns = patterns(
+ 'document_comments.views',
url(r'^comment/(?P\d+)/delete/$', 'comment_delete', (), 'comment_delete'),
url(r'^comment/multiple/delete/$', 'comment_multiple_delete', (), 'comment_multiple_delete'),
url(r'^(?P\d+)/comment/add/$', 'comment_add', (), 'comment_add'),
diff --git a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po
index 9af96722a0..b92c351026 100644
--- a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
"MIME-Version: 1.0\n"
@@ -24,6 +24,14 @@ msgstr ""
msgid "Indexes"
msgstr "Indexes"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -122,31 +126,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po
index 9134978a29..6e6d8b3991 100644
--- a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
"MIME-Version: 1.0\n"
@@ -24,6 +24,14 @@ msgstr ""
msgid "Indexes"
msgstr "Индекси"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -122,31 +126,36 @@ msgid ""
" as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po
index 4eefad46f9..076adf46e8 100644
--- a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
"MIME-Version: 1.0\n"
@@ -24,6 +24,14 @@ msgstr ""
msgid "Indexes"
msgstr "Indeksi"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -122,31 +126,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao parent za buduće nodove."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po
index a8d54d9f22..18c725c8b7 100644
--- a/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
"MIME-Version: 1.0\n"
@@ -23,6 +23,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -46,10 +54,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
" as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/de_CH/LC_MESSAGES/django.po
index a5bd0ed786..00e15a2e67 100644
--- a/mayan/apps/document_indexing/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
@@ -24,6 +24,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
"as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po
index af1224ba5c..12aadbe4b7 100644
--- a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-07 00:08+0000\n"
-"Last-Translator: Mathias Behrle \n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
+"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -30,6 +30,14 @@ msgstr ""
msgid "Indexes"
msgstr "Indices"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr "Dokumententypen"
+
#: api.py:49
#, python-format
msgid ""
@@ -53,10 +61,6 @@ msgstr "Löschen"
msgid "Tree template"
msgstr "Baumvorlage"
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr "Dokumententypen"
-
#: links.py:31
msgid "New child node"
msgstr "Neuer Unterknoten"
@@ -128,31 +132,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-Knotenpunkte fungieren soll)."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr "Index Knotenvorlage"
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr "Index Knotenvorlagen"
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr "Index Knotenpunkt"
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr "Wert"
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr "Dokumente"
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr "Indexknotenpunkt"
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr "Indexknotenpunkte"
diff --git a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po
index 196095ecaa..4e7e3a2fd9 100644
--- a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2012-12-12 06:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
@@ -23,6 +23,15 @@ msgstr ""
msgid "Indexes"
msgstr "Indexes"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+#, fuzzy
+msgid "Document types"
+msgstr "document types"
+
#: api.py:49
#, fuzzy, python-format
msgid ""
@@ -50,11 +59,6 @@ msgstr "delete"
msgid "Tree template"
msgstr "tree template"
-#: links.py:29 models.py:19 views.py:300
-#, fuzzy
-msgid "Document types"
-msgstr "document types"
-
#: links.py:31
#, fuzzy
msgid "New child node"
@@ -137,37 +141,42 @@ msgstr ""
"Check this option to have this node act as a container for documents and not "
"as a parent for further nodes."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
#, fuzzy
msgid "Index node template"
msgstr "index template node"
-#: models.py:75
+#: models.py:78
#, fuzzy
msgid "Indexes node template"
msgstr "indexes template nodes"
-#: models.py:80
+#: models.py:83
#, fuzzy
msgid "Index template node"
msgstr "index template node"
-#: models.py:81
+#: models.py:84
#, fuzzy
msgid "Value"
msgstr "value"
-#: models.py:82
+#: models.py:85
#, fuzzy
msgid "Documents"
msgstr "documents"
-#: models.py:100
+#: models.py:103
#, fuzzy
msgid "Index node instance"
msgstr "index instance"
-#: models.py:101
+#: models.py:104
#, fuzzy
msgid "Indexes node instances"
msgstr "index instance"
diff --git a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po
index e9833092b1..b06477c075 100644
--- a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-07 05:09+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:10+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
"MIME-Version: 1.0\n"
@@ -26,6 +26,14 @@ msgstr ""
msgid "Indexes"
msgstr "Índices"
+#: admin.py:21
+msgid "None"
+msgstr "Ninguno"
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr "Tipos de documento"
+
#: api.py:49
#, python-format
msgid ""
@@ -49,10 +57,6 @@ msgstr "Borrar"
msgid "Tree template"
msgstr "árbol de plantilla"
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr "Tipos de documento"
-
#: links.py:31
msgid "New child node"
msgstr "nuevo nodo secundario"
@@ -124,31 +128,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Marque esta opción para que el nodo actúe como un contenedor de documentos y no como un padre para otros nodos secundarios."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr "<%s Raíz>"
+
+#: models.py:77
msgid "Index node template"
msgstr "nodo de plantilla de indice"
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr "nodos de plantillas de índices"
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr "nodo de plantilla de indice"
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr "Valor"
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr "Documentos"
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr "índice de nodo de instancia"
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr "nodos de instancias de indices"
diff --git a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po
index e0edb049b0..9b086fe3d5 100644
--- a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po
@@ -4,13 +4,13 @@
#
# Translators:
# Translators:
-# Mehdi Amani , 2014
+# Mehdi Amani , 2014-2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -24,12 +24,20 @@ msgstr ""
msgid "Indexes"
msgstr "اندیس ها"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr "انواع سند"
+
#: api.py:49
#, python-format
msgid ""
"Error indexing document: %(document)s; expression: %(expression)s; "
"%(exception)s"
-msgstr ""
+msgstr "خطای ساختن ایندکس سند: %(document)s; , عبارت : %(expression)s; %(exception)s"
#: links.py:25 views.py:75
msgid "Create index"
@@ -47,10 +55,6 @@ msgstr "حذف"
msgid "Tree template"
msgstr "الگوی درخت"
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr "انواع سند"
-
#: links.py:31
msgid "New child node"
msgstr "گره فرزند جدید"
@@ -122,31 +126,36 @@ msgid ""
" as a parent for further nodes."
msgstr "بررسی شود که اینکه این گره ظرفی برای اسناد است و نه پدر گره های دیگر."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr "الگوی گره اندیس"
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr "الگوی گره اندیس ها"
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr "گره الگوی اندیس"
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr "مقدار"
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr "اسناد"
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr "موردی ازگره اندیس"
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr "موارد گره اندیس ها"
@@ -284,12 +293,12 @@ msgstr "در پایگاه داده بزرگ این عملیات مدت زیاد
#: views.py:383
msgid "Index rebuild queued successfully."
-msgstr ""
+msgstr "ساخت مجدد اندیسها در صف قرار گرفت."
#: views.py:408
#, python-format
msgid "Indexes containing document: %s"
-msgstr ""
+msgstr "اندیسهای شامل سند : %s"
#: widgets.py:85
msgid "Root"
diff --git a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po
index 5c3800b923..bc566e8a31 100644
--- a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
"MIME-Version: 1.0\n"
@@ -26,6 +26,14 @@ msgstr ""
msgid "Indexes"
msgstr "Indexes"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr "Types de document"
+
#: api.py:49
#, python-format
msgid ""
@@ -49,10 +57,6 @@ msgstr "Supprimer"
msgid "Tree template"
msgstr "Modèle d'arborescence"
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr "Types de document"
-
#: links.py:31
msgid "New child node"
msgstr "Nouveau noeud enfant"
@@ -124,31 +128,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Cochez cette option pour permettre à ce noeud d'être un conteneur de documents et pas seulement un noeud parent d'autres noeuds enfants."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr "Noeud de modèle d'index"
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr "Noeud de modèle d'index"
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr "Noeud de modèle d'index"
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr "Valeur"
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr "Documents"
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr "Noeud d'instance d'index"
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr "Noeud d'instances d'indexes"
diff --git a/mayan/apps/document_indexing/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/hr_HR/LC_MESSAGES/django.po
index 4fe68ee905..b259614645 100644
--- a/mayan/apps/document_indexing/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/hr_HR/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
"MIME-Version: 1.0\n"
@@ -23,6 +23,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -46,10 +54,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
" as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po
index f649c84620..074e30004a 100644
--- a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
"MIME-Version: 1.0\n"
@@ -23,6 +23,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -46,10 +54,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
" as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po
index b051a7e20a..17b340b7d1 100644
--- a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -23,6 +23,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -46,10 +54,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
" as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po
index f72b811bd7..4b9c884ac7 100644
--- a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -27,6 +27,14 @@ msgstr ""
msgid "Indexes"
msgstr "Indici"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr "Tipi di documento"
+
#: api.py:49
#, python-format
msgid ""
@@ -50,10 +58,6 @@ msgstr "Cancella"
msgid "Tree template"
msgstr "Template Principale"
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr "Tipi di documento"
-
#: links.py:31
msgid "New child node"
msgstr "Novo nodo figlio"
@@ -125,31 +129,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Selezionare questa opzione per questo specifico nodo quale contenitore per i documenti e non come un genitore per ulteriori nodi."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr "Indice del nodo Template "
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr "Indici dei nodi Template"
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr "Indice del nodo Template"
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr "Valore"
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr "Documenti"
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr "Istanza nodo Indice"
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr "Istanze nodo indici"
diff --git a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po
index 510e19d524..d982488572 100644
--- a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
@@ -25,6 +25,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -48,10 +56,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -122,31 +126,36 @@ msgid ""
"as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/nb/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/nb/LC_MESSAGES/django.po
index 9f1c22773d..6b10b7b03b 100644
--- a/mayan/apps/document_indexing/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
@@ -24,6 +24,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
"as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po
index 5f217a46d3..b6a1a09e8f 100644
--- a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
"MIME-Version: 1.0\n"
@@ -24,6 +24,14 @@ msgstr ""
msgid "Indexes"
msgstr "Indexeringen"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -122,31 +126,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. "
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po
index 82d3a995c0..859296c421 100644
--- a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po
@@ -4,13 +4,14 @@
#
# Translators:
# Translators:
+# mic , 2015
# mic , 2012
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -24,6 +25,14 @@ msgstr ""
msgid "Indexes"
msgstr "Indeksy"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -33,24 +42,20 @@ msgstr ""
#: links.py:25 views.py:75
msgid "Create index"
-msgstr ""
+msgstr "Tworzenie indeksu"
#: links.py:26 links.py:32
msgid "Edit"
-msgstr ""
+msgstr "Edytuj"
#: links.py:27 links.py:33
msgid "Delete"
-msgstr ""
+msgstr "Usunąć"
#: links.py:28
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -73,7 +78,7 @@ msgstr "Usuwa i tworzy od podstaw wszystkie indeksy dokumentów."
#: models.py:15 views.py:42
msgid "Name"
-msgstr ""
+msgstr "Nazwa"
#: models.py:15
msgid "Internal name used to reference this index."
@@ -81,7 +86,7 @@ msgstr "Wewnętrzna nazwa używana do odniesienia tego indeksu."
#: models.py:17 views.py:43
msgid "Title"
-msgstr ""
+msgstr "Tytuł"
#: models.py:17
msgid "The name that will be visible to users."
@@ -89,7 +94,7 @@ msgstr "Nazwa, która będzie widoczna dla użytkowników."
#: models.py:18 models.py:67 views.py:44 views.py:160
msgid "Enabled"
-msgstr ""
+msgstr "Włączony"
#: models.py:18
msgid ""
@@ -98,7 +103,7 @@ msgstr "Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zm
#: models.py:59 models.py:65 views.py:243 views.py:281
msgid "Index"
-msgstr ""
+msgstr "Indeks"
#: models.py:66
msgid "Indexing expression"
@@ -122,31 +127,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
-msgstr ""
+msgstr "Wartość"
-#: models.py:82
+#: models.py:85
msgid "Documents"
-msgstr ""
+msgstr "Dokumenty"
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po
index dc634e73cb..8f733da2d6 100644
--- a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
"MIME-Version: 1.0\n"
@@ -25,6 +25,14 @@ msgstr ""
msgid "Indexes"
msgstr "Índices"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -48,10 +56,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -123,31 +127,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Escolha esta opção para que este nó atue como contentor para documentos e não como pai de outros nós."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po
index 21d1f8a3ac..23e8dabf54 100644
--- a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po
@@ -5,12 +5,13 @@
# Translators:
# Translators:
# Renata Oliveira , 2011
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@@ -22,50 +23,54 @@ msgstr ""
#: __init__.py:40 links.py:23 links.py:24 links.py:38 links.py:40 models.py:60
#: views.py:38 views.py:296
msgid "Indexes"
-msgstr "Índices"
+msgstr "Indices"
+
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr "Tipos de Documentos"
#: api.py:49
#, python-format
msgid ""
"Error indexing document: %(document)s; expression: %(expression)s; "
"%(exception)s"
-msgstr ""
+msgstr "Error indexing document: %(document)s; expression: %(expression)s; %(exception)s"
#: links.py:25 views.py:75
msgid "Create index"
-msgstr ""
+msgstr "Criar Index"
#: links.py:26 links.py:32
msgid "Edit"
-msgstr ""
+msgstr "Editar"
#: links.py:27 links.py:33
msgid "Delete"
-msgstr ""
+msgstr "Excluir"
#: links.py:28
msgid "Tree template"
-msgstr ""
-
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
+msgstr "Template Árvore"
#: links.py:31
msgid "New child node"
-msgstr ""
+msgstr "Novo node filho"
#: links.py:35
msgid "Index list"
-msgstr ""
+msgstr "Lista Index"
#: links.py:37
msgid "Go up one level"
-msgstr ""
+msgstr "Subir um nível"
#: links.py:42
msgid "Rebuild indexes"
-msgstr ""
+msgstr "Reconstruir índices de documento"
#: links.py:42
msgid "Deletes and creates from scratch all the document indexes."
@@ -73,36 +78,36 @@ msgstr "Exclui e criar a partir do zero todos os índices de documento."
#: models.py:15 views.py:42
msgid "Name"
-msgstr ""
+msgstr "Nome"
#: models.py:15
msgid "Internal name used to reference this index."
-msgstr ""
+msgstr "Nome interno usado para fazer referência a esse índice."
#: models.py:17 views.py:43
msgid "Title"
-msgstr ""
+msgstr "título"
#: models.py:17
msgid "The name that will be visible to users."
-msgstr ""
+msgstr "O nome que será visível para os usuários."
#: models.py:18 models.py:67 views.py:44 views.py:160
msgid "Enabled"
-msgstr ""
+msgstr "habilitado"
#: models.py:18
msgid ""
"Causes this index to be visible and updated when document data changes."
-msgstr ""
+msgstr "Faz com que este índice seja visível, e atualizado quando alterações de dados de documentos."
#: models.py:59 models.py:65 views.py:243 views.py:281
msgid "Index"
-msgstr ""
+msgstr "Indice"
#: models.py:66
msgid "Indexing expression"
-msgstr ""
+msgstr "Indexando expressão"
#: models.py:66
msgid "Enter a python string expression to be evaluated."
@@ -110,45 +115,50 @@ msgstr "Digite uma expressão python para ser avaliada."
#: models.py:67
msgid "Causes this node to be visible and updated when document data changes."
-msgstr ""
+msgstr "Faz com que este nó para ser quando alterações de dados do documento visível e atualizado."
#: models.py:68
msgid "Link documents"
-msgstr ""
+msgstr "Link de documentos"
#: models.py:68
msgid ""
"Check this option to have this node act as a container for documents and not"
" as a parent for further nodes."
+msgstr "Marque esta opção para que este nó ato como um contêiner para documentos e não como um pai para mais nós."
+
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
msgstr ""
-#: models.py:74
+#: models.py:77
msgid "Index node template"
-msgstr ""
+msgstr "Índice Template de nó"
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
-msgstr ""
+msgstr "Indices Template de Nó"
-#: models.py:80
+#: models.py:83
msgid "Index template node"
-msgstr ""
+msgstr "Indice Template de nó"
-#: models.py:81
+#: models.py:84
msgid "Value"
-msgstr ""
+msgstr "Valor"
-#: models.py:82
+#: models.py:85
msgid "Documents"
-msgstr ""
+msgstr "Documento"
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
-msgstr ""
+msgstr "Índice instância de nó"
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
-msgstr ""
+msgstr "Índices instâncias de nó "
#: permissions.py:7
msgid "Indexing"
@@ -156,19 +166,19 @@ msgstr "Indexando"
#: permissions.py:9
msgid "Configure document indexes"
-msgstr ""
+msgstr "Configurar documento indexado"
#: permissions.py:10
msgid "Create new document indexes"
-msgstr ""
+msgstr "riar novo documento indexado"
#: permissions.py:11
msgid "Edit document indexes"
-msgstr ""
+msgstr "Editar documento indexado"
#: permissions.py:12
msgid "Delete document indexes"
-msgstr ""
+msgstr "Excluir documento indexeado"
#: permissions.py:14
msgid "View document indexes"
@@ -180,99 +190,99 @@ msgstr "Reconstruir índices de documento"
#: views.py:69
msgid "Index created successfully."
-msgstr ""
+msgstr "Index criado com sucesso"
#: views.py:92
msgid "Index edited successfully"
-msgstr ""
+msgstr "Indice adicionado com sucesso."
#: views.py:98
#, python-format
msgid "Edit index: %s"
-msgstr ""
+msgstr "Editar Indice: %s"
#: views.py:121
#, python-format
msgid "Index: %s deleted successfully."
-msgstr ""
+msgstr "Índice:%s foi excluído com sucesso."
#: views.py:123
#, python-format
msgid "Index: %(index)s delete error: %(error)s"
-msgstr ""
+msgstr "Indice: %(index)s delete erro: %(error)s"
#: views.py:134
#, python-format
msgid "Are you sure you with to delete the index: %s?"
-msgstr ""
+msgstr "Tem certeza de que com a excluir o índice: %s"
#: views.py:156
#, python-format
msgid "Tree template nodes for index: %s"
-msgstr ""
+msgstr "Árvore nó modelo para o índice: %s"
#: views.py:159
msgid "Level"
-msgstr ""
+msgstr "Nível"
#: views.py:161
msgid "Has document links?"
-msgstr ""
+msgstr "Tem links de documentos?"
#: views.py:183
#, python-format
msgid "Document types not in index: %s"
-msgstr ""
+msgstr "Documento status: %s"
#: views.py:184
#, python-format
msgid "Document types for index: %s"
-msgstr ""
+msgstr "Criando nó filho: %s"
#: views.py:206
msgid "Index template node created successfully."
-msgstr ""
+msgstr "Modelo de nó de indice criado com sucesso."
#: views.py:212
msgid "Create child node"
-msgstr ""
+msgstr "Criar nó filho"
#: views.py:231
msgid "Index template node edited successfully"
-msgstr ""
+msgstr "Modelo de nó de indice criado com sucesso."
#: views.py:237
#, python-format
msgid "Edit index template node: %s"
-msgstr ""
+msgstr "Editar template de nó indice: %s"
#: views.py:244 views.py:282 views.py:349
msgid "Node"
-msgstr ""
+msgstr "Nó"
#: views.py:265
#, python-format
msgid "Node: %s deleted successfully."
-msgstr ""
+msgstr "Nó: %s excluído com sucesso"
#: views.py:267
#, python-format
msgid "Node: %(node)s delete error: %(error)s"
-msgstr ""
+msgstr "nó: %(node)s delete erro: %(error)s"
#: views.py:276
#, python-format
msgid "Are you sure you with to delete the index template node: %s?"
-msgstr ""
+msgstr "Tem certeza de que deseja apagar a assinatura separada do documento: %s?"
#: views.py:299 views.py:353
msgid "Items"
-msgstr ""
+msgstr "itens"
#: views.py:331
#, python-format
msgid "Contents for index: %s"
-msgstr ""
+msgstr "Conteúdo para Indice? %s"
#: views.py:378
msgid "Are you sure you wish to rebuild all indexes?"
@@ -284,16 +294,16 @@ msgstr "Em grandes bases de dados esta operação pode levar algum tempo para ex
#: views.py:383
msgid "Index rebuild queued successfully."
-msgstr ""
+msgstr "Sucesso do Rebuild da fila de indice."
#: views.py:408
#, python-format
msgid "Indexes containing document: %s"
-msgstr ""
+msgstr "Índices que contêm documento: %s"
#: widgets.py:85
msgid "Root"
-msgstr ""
+msgstr "Raiz"
#~ msgid "Nodes"
#~ msgstr "nodes"
diff --git a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po
index 7a1a8883c1..3bd7f83bcf 100644
--- a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
"MIME-Version: 1.0\n"
@@ -24,6 +24,14 @@ msgstr ""
msgid "Indexes"
msgstr "Indexuri"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -122,31 +126,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Bifați această opțiune pentru a avea acest nod ca un container pentru documente și nu ca un părinte pentru nodurile suplimentare."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po
index 1bcb9311b4..5772e3ea1e 100644
--- a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po
@@ -9,21 +9,29 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: __init__.py:40 links.py:23 links.py:24 links.py:38 links.py:40 models.py:60
#: views.py:38 views.py:296
msgid "Indexes"
msgstr "Индексы"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -122,31 +126,36 @@ msgid ""
" as a parent for further nodes."
msgstr "Этот узел будет контейнером для документов и не будет иметь дочерних узлов."
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po
index 1b83e665df..2a9c6918af 100644
--- a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
"MIME-Version: 1.0\n"
@@ -23,6 +23,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -46,10 +54,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
" as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/sq/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/sq/LC_MESSAGES/django.po
index ba91f28e7d..2836da98c1 100644
--- a/mayan/apps/document_indexing/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/sq/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
@@ -24,6 +24,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
"as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po
index c6726638f8..a4c5448f29 100644
--- a/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
"MIME-Version: 1.0\n"
@@ -23,6 +23,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -46,10 +54,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
" as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po
index a2f0f3ea25..e1b8b36b18 100644
--- a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
"MIME-Version: 1.0\n"
@@ -23,6 +23,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -46,10 +54,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
" as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po
index 0925628b36..4f1dcf08ba 100644
--- a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-06 23:25+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
@@ -24,6 +24,14 @@ msgstr ""
msgid "Indexes"
msgstr "索引"
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -122,31 +126,36 @@ msgid ""
" as a parent for further nodes."
msgstr "检查当前节点是否为文档容器,而不是作为别处节点的父节点。"
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/zh_TW/LC_MESSAGES/django.po
index 0f17ba8f8b..1d6056359e 100644
--- a/mayan/apps/document_indexing/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/document_indexing/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
@@ -24,6 +24,14 @@ msgstr ""
msgid "Indexes"
msgstr ""
+#: admin.py:21
+msgid "None"
+msgstr ""
+
+#: admin.py:23 links.py:29 models.py:19 views.py:300
+msgid "Document types"
+msgstr ""
+
#: api.py:49
#, python-format
msgid ""
@@ -47,10 +55,6 @@ msgstr ""
msgid "Tree template"
msgstr ""
-#: links.py:29 models.py:19 views.py:300
-msgid "Document types"
-msgstr ""
-
#: links.py:31
msgid "New child node"
msgstr ""
@@ -121,31 +125,36 @@ msgid ""
"as a parent for further nodes."
msgstr ""
-#: models.py:74
+#: models.py:72
+#, python-format
+msgid "<%s Root>"
+msgstr ""
+
+#: models.py:77
msgid "Index node template"
msgstr ""
-#: models.py:75
+#: models.py:78
msgid "Indexes node template"
msgstr ""
-#: models.py:80
+#: models.py:83
msgid "Index template node"
msgstr ""
-#: models.py:81
+#: models.py:84
msgid "Value"
msgstr ""
-#: models.py:82
+#: models.py:85
msgid "Documents"
msgstr ""
-#: models.py:100
+#: models.py:103
msgid "Index node instance"
msgstr ""
-#: models.py:101
+#: models.py:104
msgid "Indexes node instances"
msgstr ""
diff --git a/mayan/apps/document_indexing/urls.py b/mayan/apps/document_indexing/urls.py
index 9390e318eb..8b10297642 100644
--- a/mayan/apps/document_indexing/urls.py
+++ b/mayan/apps/document_indexing/urls.py
@@ -10,7 +10,8 @@ from .api_views import (
from .views import SetupIndexDocumentTypesView
-urlpatterns = patterns('document_indexing.views',
+urlpatterns = patterns(
+ 'document_indexing.views',
url(r'^setup/index/list/$', 'index_setup_list', (), 'index_setup_list'),
url(r'^setup/index/create/$', 'index_setup_create', (), 'index_setup_create'),
url(r'^setup/index/(?P\d+)/edit/$', 'index_setup_edit', (), 'index_setup_edit'),
@@ -29,7 +30,8 @@ urlpatterns = patterns('document_indexing.views',
url(r'^list/for/document/(?P\d+)/$', 'document_index_list', (), 'document_index_list'),
)
-api_urls = patterns('',
+api_urls = patterns(
+ '',
url(r'^index/node/(?P[0-9]+)/documents/$', APIIndexNodeInstanceDocumentListView.as_view(), name='index-node-documents'),
url(r'^index/template/(?P[0-9]+)/$', APIIndexTemplateView.as_view(), name='index-template-detail'),
url(r'^indexes/(?P[0-9]+)/$', APIIndexView.as_view(), name='index-detail'),
diff --git a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po
index 6b8603bdba..071c7fe6c6 100644
--- a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
diff --git a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po
index e3f100c3de..1140a045f1 100644
--- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
diff --git a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po
index bf4d83bb1d..8296a01828 100644
--- a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
diff --git a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po
index 92010d15db..bd6dce907d 100644
--- a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
diff --git a/mayan/apps/document_signatures/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/de_CH/LC_MESSAGES/django.po
index b56c7a3696..20ee48fcb9 100644
--- a/mayan/apps/document_signatures/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
diff --git a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po
index 7ad19cf472..6a3c3a662d 100644
--- a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-06 23:55+0000\n"
"Last-Translator: Mathias Behrle \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
diff --git a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po
index 93b4d8e80d..5465553847 100644
--- a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2012-12-12 06:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po
index 48ef29440e..dfee5ece32 100644
--- a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-07 05:18+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
diff --git a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po
index da735e60d5..2a5d1d795a 100644
--- a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po
@@ -4,14 +4,14 @@
#
# Translators:
# Translators:
-# Mehdi Amani , 2014
+# Mehdi Amani , 2014-2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-03-03 11:11+0000\n"
+"Last-Translator: Mehdi Amani \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -120,7 +120,7 @@ msgstr "امضا کننده: %s"
#: views.py:74
#, python-format
msgid "Signature properties for document: %s"
-msgstr ""
+msgstr "خصوصیات امضا برای سند :%s"
#: views.py:97
msgid "Detached signature uploaded successfully."
@@ -129,7 +129,7 @@ msgstr "امضای جدا شده با موفقیت آپلود شد."
#: views.py:110
#, python-format
msgid "Upload detached signature for document: %s"
-msgstr ""
+msgstr "بارگیری (upload) امضای جدا شده از سند : %s"
#: views.py:155
msgid "Detached signature deleted successfully."
diff --git a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po
index 0b6d5ca496..2aca205a10 100644
--- a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-05 10:22+0000\n"
"Last-Translator: Christophe kryskool \n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
diff --git a/mayan/apps/document_signatures/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/hr_HR/LC_MESSAGES/django.po
index 7becb2b6fe..015d66384e 100644
--- a/mayan/apps/document_signatures/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/hr_HR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
diff --git a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po
index 24ee361665..51e29a7f1a 100644
--- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
diff --git a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po
index f4ce3b5edd..fe86c105b6 100644
--- a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
diff --git a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po
index 5ba6eaf2d2..c17121f8ec 100644
--- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-29 09:11+0000\n"
"Last-Translator: Pierpaolo Baldan \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
diff --git a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po
index 21d5a5c4e3..0ca717fd88 100644
--- a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/document_signatures/locale/nb/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/nb/LC_MESSAGES/django.po
index c95f7c55c1..9faf45c5ad 100644
--- a/mayan/apps/document_signatures/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po
index 0ae6e9d1c1..7bf27a0d60 100644
--- a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
diff --git a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po
index 9a0959fe04..a2ec7fbb30 100644
--- a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-02-28 20:14+0000\n"
+"Last-Translator: mic \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
diff --git a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po
index 80f4fc8dbb..51b76747e3 100644
--- a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
diff --git a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po
index fa9413c679..65a30379ec 100644
--- a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po
@@ -4,13 +4,14 @@
#
# Translators:
# Translators:
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-13 16:20+0000\n"
+"Last-Translator: Rogerio Falcone \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,35 +25,35 @@ msgstr "Arquivo de assinatura"
#: links.py:22
msgid "Delete signature"
-msgstr ""
+msgstr "Excluir assinatura"
#: links.py:23
msgid "Download signature"
-msgstr ""
+msgstr "download do assinatura"
#: links.py:24
msgid "Upload signature"
-msgstr ""
+msgstr "upload do assinatura"
#: links.py:25
msgid "Signatures"
-msgstr ""
+msgstr "assinaturas"
#: models.py:22
msgid "Document version"
-msgstr ""
+msgstr "Versão do Documento"
#: models.py:24
msgid "Has embedded signature"
-msgstr ""
+msgstr "Tem incorporado a assinatura"
#: models.py:39
msgid "Document version signature"
-msgstr ""
+msgstr "Versão do documento da assinatura "
#: models.py:40
msgid "Document version signatures"
-msgstr ""
+msgstr "Versão do documento das assinaturas"
#: permissions.py:7
msgid "Document signatures"
@@ -64,7 +65,7 @@ msgstr "Verificar as assinaturas de documentos"
#: permissions.py:9
msgid "Delete detached signatures"
-msgstr ""
+msgstr "Excluir assinaturas desanexados"
#: permissions.py:10
msgid "Download detached signatures"
@@ -77,19 +78,19 @@ msgstr "Upload de assinaturas destacadas"
#: views.py:49
#, python-format
msgid "Signature status: %s"
-msgstr ""
+msgstr "Assinatura status: %s"
#: views.py:53
msgid "Embedded"
-msgstr ""
+msgstr "embutido"
#: views.py:55
msgid "Detached"
-msgstr ""
+msgstr "destacado"
#: views.py:57
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: views.py:62
#, python-format
@@ -119,7 +120,7 @@ msgstr "Signee: %s"
#: views.py:74
#, python-format
msgid "Signature properties for document: %s"
-msgstr ""
+msgstr "Propriedades da assinatura do documento: %s"
#: views.py:97
msgid "Detached signature uploaded successfully."
@@ -128,22 +129,22 @@ msgstr "Assinatura separado enviado com sucesso."
#: views.py:110
#, python-format
msgid "Upload detached signature for document: %s"
-msgstr ""
+msgstr "Carregar assinatura separada para documento: %s"
#: views.py:155
msgid "Detached signature deleted successfully."
-msgstr ""
+msgstr "Assinatura separada excluído com sucesso."
#: views.py:158
#, python-format
msgid "Error while deleting the detached signature; %s"
-msgstr ""
+msgstr "Erro ao excluir a assinatura individual; %s "
#: views.py:162
#, python-format
msgid ""
"Are you sure you wish to delete the detached signature from document: %s?"
-msgstr ""
+msgstr "Tem certeza de que deseja apagar a assinatura separada do documento: %s?"
#~ msgid "Signature status: %(widget)s %(text)s"
#~ msgstr "Signature status: %(widget)s %(text)s"
diff --git a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po
index b47e8a22ad..98ea44e57d 100644
--- a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
diff --git a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po
index a1b0307cd8..1ae714bb40 100644
--- a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: forms.py:9 models.py:23
msgid "Signature file"
diff --git a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po
index 39328d25b0..b012af87e8 100644
--- a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
diff --git a/mayan/apps/document_signatures/locale/sq/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/sq/LC_MESSAGES/django.po
index fca8ae99f1..5df90b38b8 100644
--- a/mayan/apps/document_signatures/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/sq/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po
index a7601c0538..ec649fc836 100644
--- a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
diff --git a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po
index 275db45625..e421373dbb 100644
--- a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
diff --git a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po
index 4f327ac500..041cd950eb 100644
--- a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
diff --git a/mayan/apps/document_signatures/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/zh_TW/LC_MESSAGES/django.po
index be591b5326..99111df7cb 100644
--- a/mayan/apps/document_signatures/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/document_signatures/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/document_signatures/urls.py b/mayan/apps/document_signatures/urls.py
index 9996f23fe6..3651d40107 100644
--- a/mayan/apps/document_signatures/urls.py
+++ b/mayan/apps/document_signatures/urls.py
@@ -2,7 +2,8 @@ from __future__ import unicode_literals
from django.conf.urls import patterns, url
-urlpatterns = patterns('document_signatures.views',
+urlpatterns = patterns(
+ 'document_signatures.views',
url(r'^verify/(?P\d+)/$', 'document_verify', (), 'document_verify'),
url(r'^upload/signature/(?P\d+)/$', 'document_signature_upload', (), 'document_signature_upload'),
url(r'^download/signature/(?P\d+)/$', 'document_signature_download', (), 'document_signature_download'),
diff --git a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po
index 65d61f27b5..2eb90cf979 100644
--- a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
diff --git a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po
index b40f06e48d..333b0ccf94 100644
--- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
diff --git a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po
index d75495e80a..4f4b45d88c 100644
--- a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
diff --git a/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po
index 10ef100ee9..fc590eba1c 100644
--- a/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
diff --git a/mayan/apps/document_states/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/de_CH/LC_MESSAGES/django.po
index 71bb55bd93..93c3875dec 100644
--- a/mayan/apps/document_states/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/de_CH/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
diff --git a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po
index 711fb7c577..b524988a75 100644
--- a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-06 23:55+0000\n"
"Last-Translator: Mathias Behrle \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
diff --git a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po
index cc70df4643..5cacc61a5c 100644
--- a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po
index 156b0719a3..4541155e86 100644
--- a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-07 00:09+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
diff --git a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po
index 9404632726..1b4683ca00 100644
--- a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Mehdi Amani , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-03-03 11:41+0000\n"
+"Last-Translator: Mehdi Amani \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,212 +20,212 @@ msgstr ""
#: __init__.py:38
msgid "Initial state"
-msgstr ""
+msgstr "وضعیت اولیه"
#: __init__.py:39 __init__.py:57 __init__.py:65
msgid "None"
-msgstr ""
+msgstr "هیچ"
#: __init__.py:45
msgid "Is initial state?"
-msgstr ""
+msgstr "آیا در وضعیت اولیه است؟"
#: __init__.py:52 views.py:83
msgid "Current state"
-msgstr ""
+msgstr "وضعیت فعلی"
#: __init__.py:56 __init__.py:86 models.py:129
msgid "User"
-msgstr ""
+msgstr "کاربر"
#: __init__.py:60 views.py:84
msgid "Last transition"
-msgstr ""
+msgstr "آخرین تغییر وضعیت"
#: __init__.py:64 __init__.py:82
msgid "Date and time"
-msgstr ""
+msgstr "تاریخ و زمان"
#: __init__.py:71 models.py:66
msgid "Origin state"
-msgstr ""
+msgstr "وضعیت شروع"
#: __init__.py:75 models.py:67
msgid "Destination state"
-msgstr ""
+msgstr "وضعیت نهایی"
#: __init__.py:90 forms.py:41 links.py:24 models.py:128
msgid "Transition"
-msgstr ""
+msgstr "تغییر وضعیت"
#: __init__.py:94 forms.py:42 models.py:130
msgid "Comment"
-msgstr ""
+msgstr "شرح"
#: links.py:5 links.py:22 models.py:38 views.py:170
msgid "Workflows"
-msgstr ""
+msgstr "گردشکار"
#: links.py:6
msgid "Create"
-msgstr ""
+msgstr "ایجاد"
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
-msgstr ""
+msgstr "حذف"
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
-msgstr ""
+msgstr "ویرایش"
#: links.py:10 permissions.py:7
msgid "States"
-msgstr ""
+msgstr "وضعیت ها"
#: links.py:11
msgid "Create state"
-msgstr ""
+msgstr "وضغیت ایجاد"
#: links.py:15
msgid "Transitions"
-msgstr ""
+msgstr "تغییر وضعیت ها"
#: links.py:16
msgid "Create transition"
-msgstr ""
+msgstr "تغییر وضعیت به ایجاد"
#: links.py:20 models.py:17
msgid "Document types"
-msgstr ""
+msgstr "انواع سند"
#: links.py:23
msgid "Detail"
-msgstr ""
+msgstr "شرح"
#: models.py:16 models.py:44 models.py:64
msgid "Label"
-msgstr ""
+msgstr "برچسب"
#: models.py:37 models.py:43 models.py:63 models.py:80
msgid "Workflow"
-msgstr ""
+msgstr "گردشکار"
#: models.py:45
msgid ""
"Select if this will be the state with which you want the workflow to start "
"in. Only one state can be the initial state."
-msgstr ""
+msgstr "در صورتیکه این وضعیت شروع گردشکار باشد این وضعیت را انتخاب کنید. وضعیت فقط میتواند وضعیت اولیه باشد."
#: models.py:45
msgid "Initial"
-msgstr ""
+msgstr "اولیه"
#: models.py:57
msgid "Workflow state"
-msgstr ""
+msgstr "وضعیت گردشکار"
#: models.py:58
msgid "Workflow states"
-msgstr ""
+msgstr "وضعیتهای گردشکار"
#: models.py:74
msgid "Workflow transition"
-msgstr ""
+msgstr "تغییر وضعیت گردشکار"
#: models.py:75
msgid "Workflow transitions"
-msgstr ""
+msgstr "تغییر وضعیت های گردشکار"
#: models.py:81
msgid "Document"
-msgstr ""
+msgstr "سند"
#: models.py:120 models.py:126
msgid "Workflow instance"
-msgstr ""
+msgstr "موردی از گردشکار"
#: models.py:121
msgid "Workflow instances"
-msgstr ""
+msgstr "موردهای گردشکار"
#: models.py:127
msgid "Datetime"
-msgstr ""
+msgstr "تاریخ زمان"
#: models.py:136
msgid "Workflow instance log entry"
-msgstr ""
+msgstr "ورودیه لاگ برای مورد گردشکار"
#: models.py:137
msgid "Workflow instance log entries"
-msgstr ""
+msgstr "ورودیهای مورد گردشکار"
#: permissions.py:8
msgid "Create workflows"
-msgstr ""
+msgstr "ایجاد گردشکار"
#: permissions.py:9
msgid "Delete workflows"
-msgstr ""
+msgstr "حذف گردشکار"
#: permissions.py:10
msgid "Edit workflows"
-msgstr ""
+msgstr "ویرایش گردشکار"
#: permissions.py:11
msgid "View workflows"
-msgstr ""
+msgstr "مشاهده گردشکار"
#: permissions.py:13
msgid "View document workflows"
-msgstr ""
+msgstr "مشاهده سند گردشکار"
#: permissions.py:14
msgid "Transition document workflows"
-msgstr ""
+msgstr "تغییر وضعیت سند در گردشکار"
#: views.py:55
#, python-format
msgid "Workflows for document: %s"
-msgstr ""
+msgstr "گردشکارهای سند : %s"
#: views.py:95
#, python-format
msgid "Detail of workflow: %(workflow)s"
-msgstr ""
+msgstr "شرح گردشکار : %(workflow)s"
#: views.py:109
msgid "Log entries"
-msgstr ""
+msgstr "ورودیهای لاگ"
#: views.py:155
#, python-format
msgid "Do transition for workflow: %s"
-msgstr ""
+msgstr "انجام تغییر وضعیت گردشکار : %s"
#: views.py:156
msgid "Submit"
-msgstr ""
+msgstr "ارسال"
#: views.py:220
#, python-format
msgid "States of workflow: %s"
-msgstr ""
+msgstr "وضعیتهای گردشکار : %s"
#: views.py:243
#, python-format
msgid "Create states for workflow: %s"
-msgstr ""
+msgstr "وضعیت ایجاد برای گردشکار : %s"
#: views.py:337
#, python-format
msgid "Transitions of workflow: %s"
-msgstr ""
+msgstr "تغییر وضعیتهای گردشکار : %s"
#: views.py:360
#, python-format
msgid "Create transitions for workflow: %s"
-msgstr ""
+msgstr "ایجاد تغییر وضعیت برای گردشکار : %s"
#: views.py:385
msgid "Unable to save transition; integrity error."
diff --git a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po
index f817cc1ae3..d5339250d3 100644
--- a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-01-29 07:57+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-04-06 09:03+0000\n"
"Last-Translator: Christophe kryskool \n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
"MIME-Version: 1.0\n"
@@ -84,7 +84,7 @@ msgstr "États"
#: links.py:11
msgid "Create state"
-msgstr ""
+msgstr "Créer un état"
#: links.py:15
msgid "Transitions"
@@ -96,7 +96,7 @@ msgstr "Créer une transition"
#: links.py:20 models.py:17
msgid "Document types"
-msgstr ""
+msgstr "Types de document"
#: links.py:23
msgid "Detail"
@@ -114,7 +114,7 @@ msgstr "Flux de travail"
msgid ""
"Select if this will be the state with which you want the workflow to start "
"in. Only one state can be the initial state."
-msgstr ""
+msgstr "Sélectionnez si ceci sera l'état avec lequel vous voulez que le flux de travail pour démarrer. Un seul état peut être à l'état initial."
#: models.py:45
msgid "Initial"
@@ -142,35 +142,35 @@ msgstr "Document"
#: models.py:120 models.py:126
msgid "Workflow instance"
-msgstr ""
+msgstr "Instance du flux de travail"
#: models.py:121
msgid "Workflow instances"
-msgstr ""
+msgstr "Instances du flux de travail"
#: models.py:127
msgid "Datetime"
-msgstr ""
+msgstr "Date et heure"
#: models.py:136
msgid "Workflow instance log entry"
-msgstr ""
+msgstr "Entrée de la journalisation de l'instance du flux de travail"
#: models.py:137
msgid "Workflow instance log entries"
-msgstr ""
+msgstr "Entrées de la journlisation du flux de travail"
#: permissions.py:8
msgid "Create workflows"
-msgstr ""
+msgstr "Créer des flux de travail"
#: permissions.py:9
msgid "Delete workflows"
-msgstr ""
+msgstr "Supprimer des flux de travail"
#: permissions.py:10
msgid "Edit workflows"
-msgstr ""
+msgstr "Modifier des flux de travail"
#: permissions.py:11
msgid "View workflows"
@@ -182,26 +182,26 @@ msgstr "Voir le flux de travail du document"
#: permissions.py:14
msgid "Transition document workflows"
-msgstr ""
+msgstr "transition des flux de travail du document"
#: views.py:55
#, python-format
msgid "Workflows for document: %s"
-msgstr ""
+msgstr "Flux de travail du document: %s"
#: views.py:95
#, python-format
msgid "Detail of workflow: %(workflow)s"
-msgstr ""
+msgstr "Détail du flux de travail: %(workflow)s"
#: views.py:109
msgid "Log entries"
-msgstr ""
+msgstr "Entrées de journalisation"
#: views.py:155
#, python-format
msgid "Do transition for workflow: %s"
-msgstr ""
+msgstr "Construire une transition pour le flux de travail: %s"
#: views.py:156
msgid "Submit"
@@ -210,28 +210,28 @@ msgstr "Soumettre"
#: views.py:220
#, python-format
msgid "States of workflow: %s"
-msgstr ""
+msgstr "États du flux de travail: %s"
#: views.py:243
#, python-format
msgid "Create states for workflow: %s"
-msgstr ""
+msgstr "Créer des états pour le flux de travail: %s"
#: views.py:337
#, python-format
msgid "Transitions of workflow: %s"
-msgstr ""
+msgstr "Transitions du flux de travail: %s "
#: views.py:360
#, python-format
msgid "Create transitions for workflow: %s"
-msgstr ""
+msgstr "Créer des transitions du flux de travail: %s"
#: views.py:385
msgid "Unable to save transition; integrity error."
-msgstr ""
+msgstr "Impossible de sauvegarder la transition; erreur d'intégrité."
#: views.py:461
#, python-format
msgid "Document types assigned the workflow: %s"
-msgstr ""
+msgstr "Types de document assignés au flux de travail: %s"
diff --git a/mayan/apps/document_states/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/hr_HR/LC_MESSAGES/django.po
index 10797533d5..f2b5be6d6d 100644
--- a/mayan/apps/document_states/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/hr_HR/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po
index 199ca8d4d7..7b1527c54b 100644
--- a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po
index c4fe1ce98a..39cac90a6f 100644
--- a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po
index 03c9a22a80..f46b337b9d 100644
--- a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
diff --git a/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po
index 8f8b6b572f..b28168602c 100644
--- a/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/document_states/locale/nb/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/nb/LC_MESSAGES/django.po
index 74830cd528..a40b1ccd2a 100644
--- a/mayan/apps/document_states/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/nb/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po
index b5c7d0f9b7..76a5a9bc18 100644
--- a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
diff --git a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po
index 2f503150c8..0756268ad3 100644
--- a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Annunnaky , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-03-01 19:40+0000\n"
+"Last-Translator: Annunnaky \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,23 +20,23 @@ msgstr ""
#: __init__.py:38
msgid "Initial state"
-msgstr ""
+msgstr "Stan początkowy"
#: __init__.py:39 __init__.py:57 __init__.py:65
msgid "None"
-msgstr ""
+msgstr "Brak"
#: __init__.py:45
msgid "Is initial state?"
-msgstr ""
+msgstr "Czy jest stan początkowy?"
#: __init__.py:52 views.py:83
msgid "Current state"
-msgstr ""
+msgstr "Aktualny stan"
#: __init__.py:56 __init__.py:86 models.py:129
msgid "User"
-msgstr ""
+msgstr "Użytkownik"
#: __init__.py:60 views.py:84
msgid "Last transition"
@@ -43,7 +44,7 @@ msgstr ""
#: __init__.py:64 __init__.py:82
msgid "Date and time"
-msgstr ""
+msgstr "Data i godzina"
#: __init__.py:71 models.py:66
msgid "Origin state"
@@ -59,7 +60,7 @@ msgstr ""
#: __init__.py:94 forms.py:42 models.py:130
msgid "Comment"
-msgstr ""
+msgstr "Komentarz"
#: links.py:5 links.py:22 models.py:38 views.py:170
msgid "Workflows"
@@ -67,23 +68,23 @@ msgstr ""
#: links.py:6
msgid "Create"
-msgstr ""
+msgstr "Utwórz"
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
-msgstr ""
+msgstr "Usuń"
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
-msgstr ""
+msgstr "Edytuj"
#: links.py:10 permissions.py:7
msgid "States"
-msgstr ""
+msgstr "Stany"
#: links.py:11
msgid "Create state"
-msgstr ""
+msgstr "Utwórz stan"
#: links.py:15
msgid "Transitions"
@@ -95,19 +96,19 @@ msgstr ""
#: links.py:20 models.py:17
msgid "Document types"
-msgstr ""
+msgstr "Typy dokumentu"
#: links.py:23
msgid "Detail"
-msgstr ""
+msgstr "Szczegół"
#: models.py:16 models.py:44 models.py:64
msgid "Label"
-msgstr ""
+msgstr "Etykieta"
#: models.py:37 models.py:43 models.py:63 models.py:80
msgid "Workflow"
-msgstr ""
+msgstr "Obieg dokumentów"
#: models.py:45
msgid ""
@@ -117,15 +118,15 @@ msgstr ""
#: models.py:45
msgid "Initial"
-msgstr ""
+msgstr "Początkowy"
#: models.py:57
msgid "Workflow state"
-msgstr ""
+msgstr "Stan obiegu"
#: models.py:58
msgid "Workflow states"
-msgstr ""
+msgstr "Stany obiegu"
#: models.py:74
msgid "Workflow transition"
@@ -137,7 +138,7 @@ msgstr ""
#: models.py:81
msgid "Document"
-msgstr ""
+msgstr "Dokument"
#: models.py:120 models.py:126
msgid "Workflow instance"
@@ -161,19 +162,19 @@ msgstr ""
#: permissions.py:8
msgid "Create workflows"
-msgstr ""
+msgstr "Utwórz obieg"
#: permissions.py:9
msgid "Delete workflows"
-msgstr ""
+msgstr "Usuń obieg"
#: permissions.py:10
msgid "Edit workflows"
-msgstr ""
+msgstr "Edytuj obieg"
#: permissions.py:11
msgid "View workflows"
-msgstr ""
+msgstr "Pokaż obieg"
#: permissions.py:13
msgid "View document workflows"
@@ -186,51 +187,51 @@ msgstr ""
#: views.py:55
#, python-format
msgid "Workflows for document: %s"
-msgstr ""
+msgstr "Obiegi dokumentu: %s"
#: views.py:95
#, python-format
msgid "Detail of workflow: %(workflow)s"
-msgstr ""
+msgstr "Szczegóły obiegu dokumentów: %(workflow)s"
#: views.py:109
msgid "Log entries"
-msgstr ""
+msgstr "Wpisy rejestru logów"
#: views.py:155
#, python-format
msgid "Do transition for workflow: %s"
-msgstr ""
+msgstr "Dokonaj zmiany w obiegu dokumentów: %s"
#: views.py:156
msgid "Submit"
-msgstr ""
+msgstr "Wyślij"
#: views.py:220
#, python-format
msgid "States of workflow: %s"
-msgstr ""
+msgstr "Stany obiegu dokumentów: %s"
#: views.py:243
#, python-format
msgid "Create states for workflow: %s"
-msgstr ""
+msgstr "Utwórz stany obiegu dokumentów: %s"
#: views.py:337
#, python-format
msgid "Transitions of workflow: %s"
-msgstr ""
+msgstr "Zmiany obiegu dokumentów: %s"
#: views.py:360
#, python-format
msgid "Create transitions for workflow: %s"
-msgstr ""
+msgstr "Utwórz zmiany w obiegu dokumentów: %s"
#: views.py:385
msgid "Unable to save transition; integrity error."
-msgstr ""
+msgstr "Nie można zapisać zmiany; błąd integralności."
#: views.py:461
#, python-format
msgid "Document types assigned the workflow: %s"
-msgstr ""
+msgstr "Typy dokumentów przypisane do obiegu dokumentów: %s"
diff --git a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po
index 6c5a04a552..0cc97a72a2 100644
--- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
diff --git a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po
index 3d3d378ca1..1c27560ea0 100644
--- a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-13 18:02+0000\n"
+"Last-Translator: Rogerio Falcone \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,35 +20,35 @@ msgstr ""
#: __init__.py:38
msgid "Initial state"
-msgstr ""
+msgstr "Estado Inicial"
#: __init__.py:39 __init__.py:57 __init__.py:65
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: __init__.py:45
msgid "Is initial state?"
-msgstr ""
+msgstr "é estado inicial?"
#: __init__.py:52 views.py:83
msgid "Current state"
-msgstr ""
+msgstr "Estado corrente"
#: __init__.py:56 __init__.py:86 models.py:129
msgid "User"
-msgstr ""
+msgstr "Usuário"
#: __init__.py:60 views.py:84
msgid "Last transition"
-msgstr ""
+msgstr "Última transação"
#: __init__.py:64 __init__.py:82
msgid "Date and time"
-msgstr ""
+msgstr "data e hora"
#: __init__.py:71 models.py:66
msgid "Origin state"
-msgstr ""
+msgstr "Estado Original"
#: __init__.py:75 models.py:67
msgid "Destination state"
@@ -55,182 +56,182 @@ msgstr ""
#: __init__.py:90 forms.py:41 links.py:24 models.py:128
msgid "Transition"
-msgstr ""
+msgstr "Transações"
#: __init__.py:94 forms.py:42 models.py:130
msgid "Comment"
-msgstr ""
+msgstr "Comentário"
#: links.py:5 links.py:22 models.py:38 views.py:170
msgid "Workflows"
-msgstr ""
+msgstr "Workflows"
#: links.py:6
msgid "Create"
-msgstr ""
+msgstr "Criar"
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
-msgstr ""
+msgstr "Excluir"
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
-msgstr ""
+msgstr "Editar"
#: links.py:10 permissions.py:7
msgid "States"
-msgstr ""
+msgstr "estado"
#: links.py:11
msgid "Create state"
-msgstr ""
+msgstr "Criar estado"
#: links.py:15
msgid "Transitions"
-msgstr ""
+msgstr "Transações"
#: links.py:16
msgid "Create transition"
-msgstr ""
+msgstr "Criar Transições"
#: links.py:20 models.py:17
msgid "Document types"
-msgstr ""
+msgstr "Tipos de Documentos"
#: links.py:23
msgid "Detail"
-msgstr ""
+msgstr "Detalhes"
#: models.py:16 models.py:44 models.py:64
msgid "Label"
-msgstr ""
+msgstr "Label"
#: models.py:37 models.py:43 models.py:63 models.py:80
msgid "Workflow"
-msgstr ""
+msgstr "Workflow"
#: models.py:45
msgid ""
"Select if this will be the state with which you want the workflow to start "
"in. Only one state can be the initial state."
-msgstr ""
+msgstr "Selecione se este será o estado com o qual você deseja que o fluxo de trabalho para começar em. Apenas um Estado pode ser o estado inicial."
#: models.py:45
msgid "Initial"
-msgstr ""
+msgstr "Inicial"
#: models.py:57
msgid "Workflow state"
-msgstr ""
+msgstr "Estado do Workflow"
#: models.py:58
msgid "Workflow states"
-msgstr ""
+msgstr "Estados do Workflow"
#: models.py:74
msgid "Workflow transition"
-msgstr ""
+msgstr "Transição do Workflow"
#: models.py:75
msgid "Workflow transitions"
-msgstr ""
+msgstr "Transição dos Workflows"
#: models.py:81
msgid "Document"
-msgstr ""
+msgstr "Documento"
#: models.py:120 models.py:126
msgid "Workflow instance"
-msgstr ""
+msgstr "Instância do Workflow"
#: models.py:121
msgid "Workflow instances"
-msgstr ""
+msgstr "instâncias do Workflow "
#: models.py:127
msgid "Datetime"
-msgstr ""
+msgstr "Hora e data"
#: models.py:136
msgid "Workflow instance log entry"
-msgstr ""
+msgstr "Workflow instance log de entrada "
#: models.py:137
msgid "Workflow instance log entries"
-msgstr ""
+msgstr "Workflow instance log de entradas"
#: permissions.py:8
msgid "Create workflows"
-msgstr ""
+msgstr "Criar workflows"
#: permissions.py:9
msgid "Delete workflows"
-msgstr ""
+msgstr "Excluir Workflows"
#: permissions.py:10
msgid "Edit workflows"
-msgstr ""
+msgstr "Editar Workflows"
#: permissions.py:11
msgid "View workflows"
-msgstr ""
+msgstr "Ver workflows"
#: permissions.py:13
msgid "View document workflows"
-msgstr ""
+msgstr "Ver documento de workflows"
#: permissions.py:14
msgid "Transition document workflows"
-msgstr ""
+msgstr "Transição de documento de Workflows"
#: views.py:55
#, python-format
msgid "Workflows for document: %s"
-msgstr ""
+msgstr "Workflows para documento: %s"
#: views.py:95
#, python-format
msgid "Detail of workflow: %(workflow)s"
-msgstr ""
+msgstr "Detalhe do workflow: %(workflow)s"
#: views.py:109
msgid "Log entries"
-msgstr ""
+msgstr "As entradas de log"
#: views.py:155
#, python-format
msgid "Do transition for workflow: %s"
-msgstr ""
+msgstr "Fazer a transição para o workflow: %s"
#: views.py:156
msgid "Submit"
-msgstr ""
+msgstr "Submeter"
#: views.py:220
#, python-format
msgid "States of workflow: %s"
-msgstr ""
+msgstr "Estado do workflow: %s"
#: views.py:243
#, python-format
msgid "Create states for workflow: %s"
-msgstr ""
+msgstr "Criar estados para Workflow: %s"
#: views.py:337
#, python-format
msgid "Transitions of workflow: %s"
-msgstr ""
+msgstr "Transição do Workflow: %s"
#: views.py:360
#, python-format
msgid "Create transitions for workflow: %s"
-msgstr ""
+msgstr "Criar Transição para Workflow: %s"
#: views.py:385
msgid "Unable to save transition; integrity error."
-msgstr ""
+msgstr "Não foi possível salvar transição; erro de integridade."
#: views.py:461
#, python-format
msgid "Document types assigned the workflow: %s"
-msgstr ""
+msgstr "Os tipos de documento atribuído ao workflow: %s"
diff --git a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po
index 849838f99d..a8a662a324 100644
--- a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
diff --git a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po
index 11f95d4b2d..deaa506beb 100644
--- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: __init__.py:38
msgid "Initial state"
diff --git a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po
index 4bbbc16582..502993c01c 100644
--- a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
diff --git a/mayan/apps/document_states/locale/sq/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/sq/LC_MESSAGES/django.po
index fbb8387148..33aae0ed6b 100644
--- a/mayan/apps/document_states/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/sq/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po
index 822f47d648..2a098c9bfb 100644
--- a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
diff --git a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po
index 26e2e0b62f..c75d39cf65 100644
--- a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
diff --git a/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po
index 7d4981a5aa..bee115147d 100644
--- a/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
diff --git a/mayan/apps/document_states/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/zh_TW/LC_MESSAGES/django.po
index a403a02837..4e6d016ae2 100644
--- a/mayan/apps/document_states/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/document_states/locale/zh_TW/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/document_states/urls.py b/mayan/apps/document_states/urls.py
index 9112d767c6..efaf5c4848 100644
--- a/mayan/apps/document_states/urls.py
+++ b/mayan/apps/document_states/urls.py
@@ -13,10 +13,12 @@ from .views import (
WorkflowInstanceTransitionView, DocumentWorkflowInstanceListView
)
-urlpatterns = patterns('',
+urlpatterns = patterns(
+ '',
url(r'^document/(?P\d+)/workflows/$', DocumentWorkflowInstanceListView.as_view(), name='document_workflow_instance_list'),
url(r'^document/workflows/(?P\d+)/$', WorkflowInstanceDetailView.as_view(), name='workflow_instance_detail'),
url(r'^document/workflows/(?P\d+)/transition/$', WorkflowInstanceTransitionView.as_view(), name='workflow_instance_transition'),
+
url(r'^setup/all/$', SetupWorkflowListView.as_view(), name='setup_workflow_list'),
url(r'^setup/create/$', SetupWorkflowCreateView.as_view(), name='setup_workflow_create'),
url(r'^setup/(?P\d+)/edit/$', SetupWorkflowEditView.as_view(), name='setup_workflow_edit'),
@@ -31,3 +33,8 @@ urlpatterns = patterns('',
url(r'^setup/workflow/transitions/(?P\d+)/delete/$', SetupWorkflowTransitionDeleteView.as_view(), name='setup_workflow_transition_delete'),
url(r'^setup/workflow/transitions/(?P\d+)/edit/$', SetupWorkflowTransitionEditView.as_view(), name='setup_workflow_transition_edit'),
)
+
+urlpatterns += patterns(
+ 'document_states.views',
+ url(r'^setup/(?P\d+)/document_types/$', 'setup_workflow_document_types', name='setup_workflow_document_types'),
+)
diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po
index 4b8c6349ae..4a66d527bd 100644
--- a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
"MIME-Version: 1.0\n"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "إعادة تسمية الوثيقة بسرعة"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -910,7 +910,12 @@ msgid ""
"%(document_page)s"
msgstr "هل أنت متأكد من مسح التحويل \"%(transformation)s\" التابع ل: %(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1026,9 +1031,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po
index c4bdd389ad..15c446c1da 100644
--- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
"MIME-Version: 1.0\n"
@@ -103,7 +103,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Бързо преименуване на документ"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -896,7 +896,12 @@ msgid ""
"%(document_page)s"
msgstr "Сигурни ли сте, че желаете да изтриете преобразуването преобразуване %(transformation)s за %(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1012,9 +1017,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po
index 72ffb8a42f..e7936c378c 100644
--- a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
"MIME-Version: 1.0\n"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Brzo preimenuj dokument"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -898,7 +898,12 @@ msgid ""
"%(document_page)s"
msgstr "Jeste li sigurni da želite obrisati transformaciju \"%(transformation)s\" za: %(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1014,9 +1019,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po
index 0922c173a9..b58be414e6 100644
--- a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
"MIME-Version: 1.0\n"
@@ -102,7 +102,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Hurtig dokument omdøbning"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -895,7 +895,12 @@ msgid ""
"%(document_page)s"
msgstr "Er du sikker på du ønsker at slette transformation \" %(transformation)s \" for: %(document_page)s "
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1011,9 +1016,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/documents/locale/de_CH/LC_MESSAGES/django.po
index 04ac6525e3..81db5831ce 100644
--- a/mayan/apps/documents/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr ""
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -893,7 +893,12 @@ msgid ""
"%(document_page)s"
msgstr ""
-#: widgets.py:84
+#: widgets.py:67
+#, fuzzy, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1013,9 +1018,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po
index ba0d567ea6..2cd2ce26c4 100644
--- a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-02-06 23:55+0000\n"
-"Last-Translator: Mathias Behrle \n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
+"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -107,7 +107,7 @@ msgstr "Dokumentseiten (%d)"
msgid "Quick document rename"
msgstr "Dokument schnell umbenennen"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr "Seite %(page_number)d"
@@ -900,7 +900,12 @@ msgid ""
"%(document_page)s"
msgstr "Sind Sie sicher, dass Sie die Transformation \"%(transformation)s\" für %(document_page)s löschen möchten?"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr "Dokumentenseitenbild"
@@ -1016,9 +1021,6 @@ msgstr "Dokumentenseitenbild"
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po
index d7440d7ae9..afcb0dc842 100644
--- a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2013-11-20 11:36+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
@@ -106,7 +106,7 @@ msgstr "Document pages (%s)"
msgid "Quick document rename"
msgstr "Quick document rename"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, fuzzy, python-format
msgid "Page %(page_number)d"
msgstr "page number"
@@ -993,7 +993,12 @@ msgstr ""
"Are you sure you wish to delete transformation \"%(transformation)s\" for: "
"%(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, fuzzy, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
+
+#: widgets.py:86
#, fuzzy
msgid "Document page image"
msgstr "document page image"
@@ -1135,10 +1140,6 @@ msgstr "document page image"
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#, fuzzy
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po
index c039fd3c99..31db5abfa3 100644
--- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-02-07 05:15+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
"MIME-Version: 1.0\n"
@@ -103,7 +103,7 @@ msgstr "Páginas del documento (%d)"
msgid "Quick document rename"
msgstr "Cambio rápido de nombre"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr "Página %(page_number)d"
@@ -896,7 +896,12 @@ msgid ""
"%(document_page)s"
msgstr "¿Está seguro que desea eliminar la transformación \"%(transformation)s\" para: %(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr "Imagen de página de documento"
@@ -1012,9 +1017,6 @@ msgstr "Imagen de página de documento"
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po
index 7d0e4441b9..2aa626917d 100644
--- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po
@@ -4,13 +4,13 @@
#
# Translators:
# Translators:
-# Mehdi Amani , 2014
+# Mehdi Amani , 2014-2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr "شرح"
#: __init__.py:129
msgid "Tags"
-msgstr ""
+msgstr "برچسبها"
#: __init__.py:132
msgid "Document tendencies"
@@ -74,15 +74,15 @@ msgstr "استفاده سند"
#: events.py:7
msgid "Document created"
-msgstr ""
+msgstr "سند ساخته شد."
#: events.py:8
msgid "Document properties edited"
-msgstr ""
+msgstr "خصوصیات سند ویرایش شد"
#: events.py:9
msgid "Document type changed"
-msgstr ""
+msgstr "نوع سند تغییر کرد"
#: forms.py:46 links.py:69
msgid "Page image"
@@ -101,10 +101,10 @@ msgstr "تعداد صفحات سند (%d)"
msgid "Quick document rename"
msgstr "نامگذاری سریع سند "
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
-msgstr ""
+msgstr "صفحه %(page_number)d"
#: forms.py:167
msgid "Page range"
@@ -141,7 +141,7 @@ msgstr "اسناد تازه"
#: links.py:42
msgid "Preview"
-msgstr ""
+msgstr "پیشنمایش"
#: links.py:44
msgid "Properties"
@@ -177,7 +177,7 @@ msgstr "چاپ"
#: links.py:58
msgid "Events"
-msgstr ""
+msgstr "رویداد"
#: links.py:61
msgid "Clear the document image cache"
@@ -287,7 +287,7 @@ msgstr "سند آماده نشده"
#: models.py:79
msgid "The name of the document"
-msgstr ""
+msgstr "نام سند"
#: models.py:81
msgid "Added"
@@ -496,7 +496,7 @@ msgstr "زبان پیش فرض اسناد (in ISO639-2) میباشد."
#: settings.py:33
msgid "List of supported document languages."
-msgstr ""
+msgstr "لیست زبانهای پشتیبانی سند"
#: statistics.py:46
#, python-format
@@ -587,17 +587,17 @@ msgstr "صفحات"
#: views.py:131
#, python-format
msgid "Properties for document: %s"
-msgstr ""
+msgstr "خصوصیات سند : %s"
#: views.py:152
#, python-format
msgid "Preview of document: %s"
-msgstr ""
+msgstr "پیش نمایش سند : %s"
#: views.py:173
#, python-format
msgid "Content of document: %s"
-msgstr ""
+msgstr "محتوای سند : %s"
#: views.py:186 views.py:277 views.py:468 views.py:520
msgid "Must provide at least one document."
@@ -615,7 +615,7 @@ msgstr "سند %(document)s با خطای حذف :%(error)s"
#: views.py:214
msgid "Are you sure you wish to delete the selected document?"
msgid_plural "Are you sure you wish to delete the selected documents?"
-msgstr[0] ""
+msgstr[0] "آیا از حذف سند انتخاب شده مطمئن هستید؟"
#: views.py:255
#, python-format
@@ -625,11 +625,11 @@ msgstr "ویرایش موفقیت آمیز سند:%s"
#: views.py:264
#, python-format
msgid "Edit properties of document: %s"
-msgstr ""
+msgstr "ویرایش خصوصیات سند : %s"
#: views.py:297
msgid "Document type changed successfully."
-msgstr ""
+msgstr "نوغ سند تغییریافت"
#: views.py:304
msgid "Submit"
@@ -638,7 +638,7 @@ msgstr "ارسال"
#: views.py:308
msgid "Change the type of the selected document."
msgid_plural "Change the type of the selected documents."
-msgstr[0] ""
+msgstr[0] "تغییرنوع سند"
#: views.py:373
msgid "Documents to be downloaded"
@@ -646,7 +646,7 @@ msgstr "اسنادی که قرار است دانلود شوند."
#: views.py:382
msgid "Date and time"
-msgstr ""
+msgstr "تاریخ و زمان"
#: views.py:384 views.py:1129
msgid "Encoding"
@@ -669,7 +669,7 @@ msgid ""
"Are you sure you wish to reset the page count of the selected document?"
msgid_plural ""
"Are you sure you wish to reset the page count of the selected documents?"
-msgstr[0] ""
+msgstr[0] "آیا از ریست کردن شمارش صفحات اسناد انتخاب شده مطمئن هستید؟"
#: views.py:538
#, python-format
@@ -692,7 +692,7 @@ msgid ""
msgid_plural ""
"Are you sure you wish to clear all the page transformations for the selected"
" documents?"
-msgstr[0] ""
+msgstr[0] "آیا از حذف کلیه تبدیلات صفحه برای اسناد انتخاب شده مطمئن هستید؟"
#: views.py:579 views.py:621
#, python-format
@@ -770,7 +770,7 @@ msgstr "خطا %(error)s در ایجاد نوع سند."
#: views.py:967
#, python-format
msgid "Filenames for document type: %s"
-msgstr ""
+msgstr "نام فایلهای نوع سند : %s"
#: views.py:997
msgid "Document type filename edited successfully"
@@ -837,7 +837,7 @@ msgstr "تاریخ و زمان"
#: views.py:1140
#, python-format
msgid "Versions of document: %s"
-msgstr ""
+msgstr "نسخ سند : %s"
#: views.py:1160
msgid "Document version reverted successfully"
@@ -890,7 +890,12 @@ msgid ""
"%(document_page)s"
msgstr "آیا از حذف تبدیلات\"%(transformation)s\" برای سند %(document_page)s مطمئن هستید؟"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr "عکس صفحه سند"
@@ -1006,9 +1011,6 @@ msgstr "عکس صفحه سند"
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po
index 96a255ef2a..23f6ace6b8 100644
--- a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-02-05 10:38+0000\n"
-"Last-Translator: Christophe kryskool \n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
+"Last-Translator: Roberto Rosario\n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -103,7 +103,7 @@ msgstr "Pages (%d) du document"
msgid "Quick document rename"
msgstr "Renommage rapide du document"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr "Page %(page_number)d"
@@ -498,7 +498,7 @@ msgstr "Langue des documents par défaut (au format ISO639-2)."
#: settings.py:33
msgid "List of supported document languages."
-msgstr ""
+msgstr "Liste des langues supportées du document."
#: statistics.py:46
#, python-format
@@ -589,17 +589,17 @@ msgstr "Pages"
#: views.py:131
#, python-format
msgid "Properties for document: %s"
-msgstr ""
+msgstr "Propriété du document: %s"
#: views.py:152
#, python-format
msgid "Preview of document: %s"
-msgstr ""
+msgstr "Aperçu du document: %s"
#: views.py:173
#, python-format
msgid "Content of document: %s"
-msgstr ""
+msgstr "Conetnu du document: %s"
#: views.py:186 views.py:277 views.py:468 views.py:520
msgid "Must provide at least one document."
@@ -617,8 +617,8 @@ msgstr "Document: erreur de suppression du %(document)s: %(error)s"
#: views.py:214
msgid "Are you sure you wish to delete the selected document?"
msgid_plural "Are you sure you wish to delete the selected documents?"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Êtes vous sûr de vouloir supprimer le document sélectionné?"
+msgstr[1] "Êtes vous sûr de vouloir supprimer les documents sélectionnés?"
#: views.py:255
#, python-format
@@ -628,11 +628,11 @@ msgstr "Modification du document \"%s\" effectuée."
#: views.py:264
#, python-format
msgid "Edit properties of document: %s"
-msgstr ""
+msgstr "Modifier les propriétés du document: %s"
#: views.py:297
msgid "Document type changed successfully."
-msgstr ""
+msgstr "Le type de document a été changé avec succès."
#: views.py:304
msgid "Submit"
@@ -641,8 +641,8 @@ msgstr "Soumettre"
#: views.py:308
msgid "Change the type of the selected document."
msgid_plural "Change the type of the selected documents."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Changer le type du document sélectionné."
+msgstr[1] "Changer le type des documents sélectionnés."
#: views.py:373
msgid "Documents to be downloaded"
@@ -650,7 +650,7 @@ msgstr "Documents à télécharger"
#: views.py:382
msgid "Date and time"
-msgstr ""
+msgstr "Date et heure"
#: views.py:384 views.py:1129
msgid "Encoding"
@@ -662,19 +662,19 @@ msgstr "Retour"
#: views.py:485
msgid "Document queued for page count reset."
-msgstr ""
+msgstr "Document en file d'attente pour remise à zéro de la page de comptage."
#: views.py:486
msgid "Documents queued for page count reset."
-msgstr ""
+msgstr "Documents en file d'attente pour remise à zéro de la page de comptage."
#: views.py:495
msgid ""
"Are you sure you wish to reset the page count of the selected document?"
msgid_plural ""
"Are you sure you wish to reset the page count of the selected documents?"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Êtes vous sûr de vouloir réinitialiser le compteur de page du document sélectionné? "
+msgstr[1] "Êtes vous sûr de vouloir réinitialiser le compteur de page des documents sélectionnés? "
#: views.py:538
#, python-format
@@ -697,8 +697,8 @@ msgid ""
msgid_plural ""
"Are you sure you wish to clear all the page transformations for the selected"
" documents?"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Êtes vous certain de vouloir supprimer toutes les transformations de page pour le document sélectionné?"
+msgstr[1] "Êtes vous certain de vouloir supprimer toutes les transformations de page pour les documents sélectionnés?"
#: views.py:579 views.py:621
#, python-format
@@ -776,7 +776,7 @@ msgstr "Erreur lors de la création du type de document;%(error)s"
#: views.py:967
#, python-format
msgid "Filenames for document type: %s"
-msgstr ""
+msgstr "Nom de fichiers pour le type de document: %s"
#: views.py:997
msgid "Document type filename edited successfully"
@@ -790,7 +790,7 @@ msgstr "Erreur lors de la modification du nom de fichier du type de document;%s"
#: views.py:1005
#, python-format
msgid "Edit filename \"%(filename)s\" from document type \"%(document_type)s\""
-msgstr ""
+msgstr "Modifier le nom de fichier \"%(filename)s\" pour le type de document \"%(document_type)s\""
#: views.py:1014 views.py:1046
msgid "Document type filename"
@@ -843,7 +843,7 @@ msgstr "Heure et date"
#: views.py:1140
#, python-format
msgid "Versions of document: %s"
-msgstr ""
+msgstr "Versions du document:%s"
#: views.py:1160
msgid "Document version reverted successfully"
@@ -896,7 +896,12 @@ msgid ""
"%(document_page)s"
msgstr "Êtes vous certain de vouloir supprimer la transformation \"%(transformation)s\" pour: %(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr "Image de la page du document"
@@ -1012,9 +1017,6 @@ msgstr "Image de la page du document"
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hr_HR/LC_MESSAGES/django.po
index 00bb18c469..5d205cae34 100644
--- a/mayan/apps/documents/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/hr_HR/LC_MESSAGES/django.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
"MIME-Version: 1.0\n"
@@ -104,7 +104,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Brza promjena naziva dokumenta"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -901,7 +901,12 @@ msgid ""
"%(document_page)s"
msgstr ""
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1017,9 +1022,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po
index 888e1431d3..8fb477e576 100644
--- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
"MIME-Version: 1.0\n"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Dokumentum gyors átnevezése"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -894,7 +894,12 @@ msgid ""
"%(document_page)s"
msgstr "Biztos, hogy törölni szeretné a %(document_page)s \"%(transformation)s\" átalakítóját?"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1010,9 +1015,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po
index b5a24cb1f6..60c4ad395a 100644
--- a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Cara cepat mengganti nama dokumen"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -890,7 +890,12 @@ msgid ""
"%(document_page)s"
msgstr "Apakah anda yakin untuk menghapus transformasi \"%(transformation)s\" untuk: %(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1006,9 +1011,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po
index 80229571c9..64f2fca426 100644
--- a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-29 08:56+0000\n"
-"Last-Translator: Pierpaolo Baldan \n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
+"Last-Translator: Roberto Rosario\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -105,7 +105,7 @@ msgstr "Pagine del documento (%d)"
msgid "Quick document rename"
msgstr "Rinomina del documento veloce"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr "Pagina %(page_number)d"
@@ -898,7 +898,12 @@ msgid ""
"%(document_page)s"
msgstr "Sei sicuro di voler cancellare la trasformazione \"%(transformation)s\" per: %(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr "Immagine pagina documento"
@@ -1014,9 +1019,6 @@ msgstr "Immagine pagina documento"
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po
index cc94db2ea2..26a548ba98 100644
--- a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
@@ -102,7 +102,7 @@ msgstr ""
msgid "Quick document rename"
msgstr ""
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -898,7 +898,12 @@ msgid ""
"%(document_page)s"
msgstr ""
-#: widgets.py:84
+#: widgets.py:67
+#, fuzzy, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1018,9 +1023,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/nb/LC_MESSAGES/django.po b/mayan/apps/documents/locale/nb/LC_MESSAGES/django.po
index 58bc70edd6..e6676927b5 100644
--- a/mayan/apps/documents/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr ""
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -893,7 +893,12 @@ msgid ""
"%(document_page)s"
msgstr ""
-#: widgets.py:84
+#: widgets.py:67
+#, fuzzy, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1013,9 +1018,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po
index 6e086a00d5..846074ab2d 100644
--- a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
"MIME-Version: 1.0\n"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Snel document hernoemen"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -894,7 +894,12 @@ msgid ""
"%(document_page)s"
msgstr "Weet u zeker dat u deze transformatie wenst te verwijderen: \"%(transformation)s\" for: %(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1010,9 +1015,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po
index d93dc940bd..4d4544a7de 100644
--- a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po
@@ -6,13 +6,14 @@
# Translators:
# mic , 2012
# mic , 2012
+# mic , 2015
# mic , 2012
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -27,24 +28,24 @@ msgstr "Dokumenty"
#: __init__.py:97
msgid "Thumbnail"
-msgstr ""
+msgstr "Miniatura"
#: __init__.py:101
msgid "Type"
-msgstr ""
+msgstr "Typ"
#: __init__.py:122 models.py:67 models.py:78 models.py:475 views.py:1013
#: views.py:1045 views.py:1085
msgid "Document type"
-msgstr ""
+msgstr "Typ dokumentu"
#: __init__.py:123 views.py:383 views.py:1125
msgid "MIME type"
-msgstr ""
+msgstr "typ MIME"
#: __init__.py:124 __init__.py:137 models.py:79
msgid "Label"
-msgstr ""
+msgstr "Etykieta"
#: __init__.py:125
msgid "Metadata type"
@@ -56,15 +57,15 @@ msgstr ""
#: __init__.py:127 links.py:43 models.py:494
msgid "Content"
-msgstr ""
+msgstr "Zawartość"
#: __init__.py:128 models.py:80
msgid "Description"
-msgstr ""
+msgstr "Opis"
#: __init__.py:129
msgid "Tags"
-msgstr ""
+msgstr "Tagi"
#: __init__.py:132
msgid "Document tendencies"
@@ -103,7 +104,7 @@ msgstr ""
msgid "Quick document rename"
msgstr ""
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -135,31 +136,31 @@ msgstr ""
#: links.py:40 views.py:68
msgid "All documents"
-msgstr ""
+msgstr "Wszystkie dokumenty"
#: links.py:41 models.py:582 views.py:723
msgid "Recent documents"
-msgstr ""
+msgstr "Ostatnie dokumenty"
#: links.py:42
msgid "Preview"
-msgstr ""
+msgstr "Podgląd"
#: links.py:44
msgid "Properties"
-msgstr ""
+msgstr "Właściwości"
#: links.py:45 links.py:46 links.py:67 links.py:90 links.py:96
msgid "Delete"
-msgstr ""
+msgstr "Usunąć"
#: links.py:47
msgid "Edit properties"
-msgstr ""
+msgstr "Edytuj właściwości"
#: links.py:48 links.py:49
msgid "Change type"
-msgstr ""
+msgstr "Zmień typ"
#: links.py:50 links.py:51 links.py:52 views.py:441
msgid "Download"
@@ -167,7 +168,7 @@ msgstr "Pobierz"
#: links.py:53 links.py:54
msgid "Reset page count"
-msgstr ""
+msgstr "Resetuj liczbę stron"
#: links.py:55 links.py:56
msgid "Clear transformations"
@@ -175,11 +176,11 @@ msgstr ""
#: links.py:57
msgid "Print"
-msgstr ""
+msgstr "Drukuj"
#: links.py:58
msgid "Events"
-msgstr ""
+msgstr "Zdarzenia"
#: links.py:61
msgid "Clear the document image cache"
@@ -201,7 +202,7 @@ msgstr ""
#: links.py:66 links.py:89 links.py:95
msgid "Edit"
-msgstr ""
+msgstr "Edytuj"
#: links.py:70
msgid "Page text"
@@ -213,55 +214,55 @@ msgstr ""
#: links.py:72
msgid "Next page"
-msgstr ""
+msgstr "Następna strona"
#: links.py:73
msgid "Previous page"
-msgstr ""
+msgstr "Poprzednia strona"
#: links.py:74
msgid "First page"
-msgstr ""
+msgstr "Pierwsza strona"
#: links.py:75
msgid "Last page"
-msgstr ""
+msgstr "Ostatnia strona"
#: links.py:76
msgid "Zoom in"
-msgstr ""
+msgstr "Powiększ"
#: links.py:77
msgid "Zoom out"
-msgstr ""
+msgstr "Pomniejszyć"
#: links.py:78
msgid "Rotate right"
-msgstr ""
+msgstr "Obrót w prawo"
#: links.py:79
msgid "Rotate left"
-msgstr ""
+msgstr "Obrót w lewo"
#: links.py:80
msgid "Reset view"
-msgstr ""
+msgstr "Resetuj widok"
#: links.py:83
msgid "Versions"
-msgstr ""
+msgstr "Wersje"
#: links.py:84
msgid "Revert"
-msgstr ""
+msgstr "Przywróć"
#: links.py:87 links.py:88 views.py:866
msgid "Document types"
-msgstr ""
+msgstr "Typy dokumentu"
#: links.py:91 views.py:956
msgid "Create document type"
-msgstr ""
+msgstr "Tworzenie typów dokumentów"
#: links.py:93
msgid "Filenames"
@@ -273,7 +274,7 @@ msgstr ""
#: models.py:53
msgid "Name"
-msgstr ""
+msgstr "Nazwa"
#: models.py:56
msgid "Automatically queue newly created documents for OCR."
@@ -281,7 +282,7 @@ msgstr ""
#: models.py:68
msgid "Documents types"
-msgstr ""
+msgstr "Typy dokumentów"
#: models.py:79
msgid "Uninitialized document"
@@ -293,15 +294,15 @@ msgstr ""
#: models.py:81
msgid "Added"
-msgstr ""
+msgstr "Dodana"
#: models.py:82
msgid "Language"
-msgstr ""
+msgstr "Język"
#: models.py:87 models.py:289 models.py:571 views.py:381
msgid "Document"
-msgstr ""
+msgstr "Dokument"
#: models.py:290
msgid "Timestamp"
@@ -313,7 +314,7 @@ msgstr "Komentarz"
#: models.py:294
msgid "File"
-msgstr ""
+msgstr "Plik"
#: models.py:298 views.py:121
msgid "Checksum"
@@ -335,7 +336,7 @@ msgstr "Nazwa pliku"
#: models.py:477 views.py:974
msgid "Enabled"
-msgstr ""
+msgstr "Włączony"
#: models.py:485
msgid "Document type quick rename filename"
@@ -347,11 +348,11 @@ msgstr ""
#: models.py:495
msgid "Page label"
-msgstr ""
+msgstr "Etykieta strony"
#: models.py:496
msgid "Page number"
-msgstr ""
+msgstr "Numer strony"
#: models.py:499
#, python-format
@@ -360,11 +361,11 @@ msgstr ""
#: models.py:507 models.py:550
msgid "Document page"
-msgstr ""
+msgstr "Strona dokumentu"
#: models.py:508
msgid "Document pages"
-msgstr ""
+msgstr "Strony dokumentu"
#: models.py:525
msgid "Enter a valid value."
@@ -372,11 +373,11 @@ msgstr "Wprowadź poprawną wartość."
#: models.py:551 views.py:1193
msgid "Order"
-msgstr ""
+msgstr "Kolejność"
#: models.py:552 views.py:1194 views.py:1257 views.py:1288
msgid "Transformation"
-msgstr ""
+msgstr "Transformacja"
#: models.py:553 views.py:1195
msgid "Arguments"
@@ -396,15 +397,15 @@ msgstr ""
#: models.py:570
msgid "User"
-msgstr ""
+msgstr "Użytkownik"
#: models.py:572
msgid "Accessed"
-msgstr ""
+msgstr "Dostępne"
#: models.py:581
msgid "Recent document"
-msgstr ""
+msgstr "Ostatni dokument"
#: permissions.py:9
msgid "Create documents"
@@ -584,7 +585,7 @@ msgstr ""
#: views.py:122
msgid "Pages"
-msgstr ""
+msgstr "Strony"
#: views.py:131
#, python-format
@@ -637,7 +638,7 @@ msgstr ""
#: views.py:304
msgid "Submit"
-msgstr ""
+msgstr "Wyślij"
#: views.py:308
msgid "Change the type of the selected document."
@@ -652,7 +653,7 @@ msgstr ""
#: views.py:382
msgid "Date and time"
-msgstr ""
+msgstr "Data i godzina"
#: views.py:384 views.py:1129
msgid "Encoding"
@@ -729,11 +730,11 @@ msgstr "Jesteś już na pierwszej stronie tego dokumentu"
#: views.py:828
#, python-format
msgid "Print: %s"
-msgstr ""
+msgstr "Drukuj: %s"
#: views.py:870
msgid "OCR"
-msgstr ""
+msgstr "OCR"
#: views.py:890
msgid "Document type edited successfully"
@@ -900,7 +901,12 @@ msgid ""
"%(document_page)s"
msgstr ""
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1016,9 +1022,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po
index 4010c2a833..9250e7a148 100644
--- a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
"MIME-Version: 1.0\n"
@@ -103,7 +103,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Renomeação rápida de documento"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -896,7 +896,12 @@ msgid ""
"%(document_page)s"
msgstr "Tem a certeza de que deseja excluir \"%(transformation)s\" para: %(document_page)s "
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1012,9 +1017,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po
index 73661c31b1..2f3ec6256f 100644
--- a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po
@@ -7,12 +7,13 @@
# Emerson Soares , 2011-2012
# Fábio C. Barrionuevo da Luz , 2012
# Roberto Rosario, 2012
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@@ -27,64 +28,64 @@ msgstr "Documentos"
#: __init__.py:97
msgid "Thumbnail"
-msgstr ""
+msgstr "miniatura"
#: __init__.py:101
msgid "Type"
-msgstr ""
+msgstr "Tipo"
#: __init__.py:122 models.py:67 models.py:78 models.py:475 views.py:1013
#: views.py:1045 views.py:1085
msgid "Document type"
-msgstr ""
+msgstr "Tipo de Documento"
#: __init__.py:123 views.py:383 views.py:1125
msgid "MIME type"
-msgstr ""
+msgstr "Tipo MIME"
#: __init__.py:124 __init__.py:137 models.py:79
msgid "Label"
-msgstr ""
+msgstr "Label"
#: __init__.py:125
msgid "Metadata type"
-msgstr ""
+msgstr "Tipos de metadados"
#: __init__.py:126
msgid "Metadata value"
-msgstr ""
+msgstr "Valor de metadados"
#: __init__.py:127 links.py:43 models.py:494
msgid "Content"
-msgstr ""
+msgstr "Conteúdo"
#: __init__.py:128 models.py:80
msgid "Description"
-msgstr ""
+msgstr "Descrição"
#: __init__.py:129
msgid "Tags"
-msgstr ""
+msgstr "Etiqueta"
#: __init__.py:132
msgid "Document tendencies"
-msgstr ""
+msgstr "tendências de documentos"
#: __init__.py:133
msgid "Document usage"
-msgstr ""
+msgstr "Documento usado"
#: events.py:7
msgid "Document created"
-msgstr ""
+msgstr "Documento criado "
#: events.py:8
msgid "Document properties edited"
-msgstr ""
+msgstr "As propriedades do documento editado "
#: events.py:9
msgid "Document type changed"
-msgstr ""
+msgstr "Tipo de Documento mudado"
#: forms.py:46 links.py:69
msgid "Page image"
@@ -97,16 +98,16 @@ msgstr "Conteúdos"
#: forms.py:89 forms.py:91
#, python-format
msgid "Document pages (%d)"
-msgstr ""
+msgstr "As páginas do documento (%d)"
#: forms.py:118
msgid "Quick document rename"
msgstr "Renomear documento rápido"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
-msgstr ""
+msgstr "Pagina: %(page_number)d"
#: forms.py:167
msgid "Page range"
@@ -114,52 +115,52 @@ msgstr "Intervalo de páginas"
#: forms.py:197
msgid "Compress"
-msgstr ""
+msgstr "comprimir"
#: forms.py:197
msgid ""
"Download the document in the original format or in a compressed manner. "
"This option is selectable only when downloading one document, for multiple "
"documents, the bundle will always be downloads as a compressed file."
-msgstr ""
+msgstr "Baixar o documento no formato original ou numa forma comprimida. Esta opção é selecionável apenas ao baixar um documento, por vários documentos, o bundle estará sempre de downloads como um arquivo compactado"
#: forms.py:198
msgid "Compressed filename"
-msgstr ""
+msgstr "Comprimido o filename "
#: forms.py:198
msgid ""
"The filename of the compressed file that will contain the documents to be "
"downloaded, if the previous option is selected."
-msgstr ""
+msgstr "O nome do arquivo do arquivo compactado que vai conter os documentos a serem baixados, se a opção anterior é selecionado."
#: links.py:40 views.py:68
msgid "All documents"
-msgstr ""
+msgstr "Todos os Documentos"
#: links.py:41 models.py:582 views.py:723
msgid "Recent documents"
-msgstr ""
+msgstr "Documentos recentes"
#: links.py:42
msgid "Preview"
-msgstr ""
+msgstr "Visualizar"
#: links.py:44
msgid "Properties"
-msgstr ""
+msgstr "propriedades"
#: links.py:45 links.py:46 links.py:67 links.py:90 links.py:96
msgid "Delete"
-msgstr ""
+msgstr "Excluir"
#: links.py:47
msgid "Edit properties"
-msgstr ""
+msgstr "Editar propriedades"
#: links.py:48 links.py:49
msgid "Change type"
-msgstr ""
+msgstr "Mudar o tipo"
#: links.py:50 links.py:51 links.py:52 views.py:441
msgid "Download"
@@ -167,145 +168,145 @@ msgstr "Baixar"
#: links.py:53 links.py:54
msgid "Reset page count"
-msgstr ""
+msgstr "Redefinir contador de pagina"
#: links.py:55 links.py:56
msgid "Clear transformations"
-msgstr ""
+msgstr "remover transformações"
#: links.py:57
msgid "Print"
-msgstr ""
+msgstr "Imprimir"
#: links.py:58
msgid "Events"
-msgstr ""
+msgstr "Eventos"
#: links.py:61
msgid "Clear the document image cache"
-msgstr ""
+msgstr "Limpar o cache de imagem do documento"
#: links.py:61
msgid ""
"Clear the graphics representations used to speed up the documents' display "
"and interactive transformations results."
-msgstr ""
+msgstr "Desmarque as representações gráficas utilizadas para acelerar a exibição e transformações interativas resultados dos documentos."
#: links.py:64
msgid "Page transformations"
-msgstr ""
+msgstr "transformações da página"
#: links.py:65
msgid "Create new transformation"
-msgstr ""
+msgstr "Criar uma nova transformação"
#: links.py:66 links.py:89 links.py:95
msgid "Edit"
-msgstr ""
+msgstr "Editar"
#: links.py:70
msgid "Page text"
-msgstr ""
+msgstr "texto da página"
#: links.py:71
msgid "Edit page text"
-msgstr ""
+msgstr "Editar texto da página"
#: links.py:72
msgid "Next page"
-msgstr ""
+msgstr "próxima pagina"
#: links.py:73
msgid "Previous page"
-msgstr ""
+msgstr "Página anterior"
#: links.py:74
msgid "First page"
-msgstr ""
+msgstr "Primeira página"
#: links.py:75
msgid "Last page"
-msgstr ""
+msgstr "Última pagina"
#: links.py:76
msgid "Zoom in"
-msgstr ""
+msgstr "mais zoom"
#: links.py:77
msgid "Zoom out"
-msgstr ""
+msgstr "menos zoom"
#: links.py:78
msgid "Rotate right"
-msgstr ""
+msgstr "girar para a direita"
#: links.py:79
msgid "Rotate left"
-msgstr ""
+msgstr "girar para a esquerda"
#: links.py:80
msgid "Reset view"
-msgstr ""
+msgstr "redefinir visão"
#: links.py:83
msgid "Versions"
-msgstr ""
+msgstr "Versão"
#: links.py:84
msgid "Revert"
-msgstr ""
+msgstr "reverter"
#: links.py:87 links.py:88 views.py:866
msgid "Document types"
-msgstr ""
+msgstr "Tipos de Documentos"
#: links.py:91 views.py:956
msgid "Create document type"
-msgstr ""
+msgstr "Criar Tipo de documento"
#: links.py:93
msgid "Filenames"
-msgstr ""
+msgstr "Nome do arquivo"
#: links.py:94
msgid "Add filename to document type"
-msgstr ""
+msgstr "Adicionar nome do arquivo para o tipo de documento"
#: models.py:53
msgid "Name"
-msgstr ""
+msgstr "Nome"
#: models.py:56
msgid "Automatically queue newly created documents for OCR."
-msgstr ""
+msgstr "A fila automaticamente de documentos recém-criados para o OCR."
#: models.py:68
msgid "Documents types"
-msgstr ""
+msgstr "Tipos de Documentos"
#: models.py:79
msgid "Uninitialized document"
-msgstr ""
+msgstr "documento não inicializado"
#: models.py:79
msgid "The name of the document"
-msgstr ""
+msgstr "O nome do documento"
#: models.py:81
msgid "Added"
-msgstr ""
+msgstr "adicionado"
#: models.py:82
msgid "Language"
-msgstr ""
+msgstr "Lingua"
#: models.py:87 models.py:289 models.py:571 views.py:381
msgid "Document"
-msgstr ""
+msgstr "Documento"
#: models.py:290
msgid "Timestamp"
-msgstr ""
+msgstr "Timestamp"
#: models.py:291 views.py:1133
msgid "Comment"
@@ -313,7 +314,7 @@ msgstr "Comentário"
#: models.py:294
msgid "File"
-msgstr ""
+msgstr "Arquivo"
#: models.py:298 views.py:121
msgid "Checksum"
@@ -321,7 +322,7 @@ msgstr "Verificação"
#: models.py:301 models.py:302 models.py:493
msgid "Document version"
-msgstr ""
+msgstr "Versão do documento"
#: models.py:357
msgid ""
@@ -335,23 +336,23 @@ msgstr "Nome do arquivo"
#: models.py:477 views.py:974
msgid "Enabled"
-msgstr ""
+msgstr "habilitado"
#: models.py:485
msgid "Document type quick rename filename"
-msgstr ""
+msgstr "Tipo de documento renomea rápido o nome de arquivo"
#: models.py:486
msgid "Document types quick rename filenames"
-msgstr ""
+msgstr "Tipos de documentos renomea rápido o nomes de arquivos"
#: models.py:495
msgid "Page label"
-msgstr ""
+msgstr "Etiqueta de página"
#: models.py:496
msgid "Page number"
-msgstr ""
+msgstr "página número"
#: models.py:499
#, python-format
@@ -360,11 +361,11 @@ msgstr "Pagina %(page_num)d de %(total_pages)d em %(document)s"
#: models.py:507 models.py:550
msgid "Document page"
-msgstr ""
+msgstr "página do documento"
#: models.py:508
msgid "Document pages"
-msgstr ""
+msgstr "páginas do documento"
#: models.py:525
msgid "Enter a valid value."
@@ -372,39 +373,39 @@ msgstr "Digite um valor válido."
#: models.py:551 views.py:1193
msgid "Order"
-msgstr ""
+msgstr "ordem"
#: models.py:552 views.py:1194 views.py:1257 views.py:1288
msgid "Transformation"
-msgstr ""
+msgstr "transformação"
#: models.py:553 views.py:1195
msgid "Arguments"
-msgstr ""
+msgstr "argumentos"
#: models.py:553
msgid "Use dictionaries to indentify arguments, example: {'degrees':90}"
-msgstr ""
+msgstr "Use dicionários para identificar os argumentos, exemplo: {'degrees':90}"
#: models.py:561
msgid "Document page transformation"
-msgstr ""
+msgstr "Documento da transformação da página"
#: models.py:562
msgid "Document page transformations"
-msgstr ""
+msgstr "Documento das transformações da página"
#: models.py:570
msgid "User"
-msgstr ""
+msgstr "Usuário"
#: models.py:572
msgid "Accessed"
-msgstr ""
+msgstr "acessado"
#: models.py:581
msgid "Recent document"
-msgstr ""
+msgstr "Documentos recentes"
#: permissions.py:9
msgid "Create documents"
@@ -494,31 +495,31 @@ msgstr "Valor em graus para girar uma página do documento por interação do us
#: settings.py:32
msgid "Default documents language (in ISO639-2 format)."
-msgstr ""
+msgstr "Os documentos padrão linguagem (em formato ISO639-2)."
#: settings.py:33
msgid "List of supported document languages."
-msgstr ""
+msgstr "Lista de idiomas de documentos suportados."
#: statistics.py:46
#, python-format
msgid "Document types: %d"
-msgstr "Tipos de documentos: %d"
+msgstr "Tipos de Documentos : %d"
#: statistics.py:50
#, python-format
msgid "Minimum amount of pages per document: %d"
-msgstr ""
+msgstr "O montante mínimo de páginas por documento:%d."
#: statistics.py:51
#, python-format
msgid "Maximum amount of pages per document: %d"
-msgstr ""
+msgstr "Maximum amount of pages per document:%d"
#: statistics.py:52
#, python-format
msgid "Average amount of pages per document: %f"
-msgstr ""
+msgstr "Quantidade média de páginas por documento:%f."
#: statistics.py:65
#, python-format
@@ -564,11 +565,11 @@ msgstr "Mimetype do arquivo"
#: views.py:116 views.py:117
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: views.py:117
msgid "File encoding"
-msgstr ""
+msgstr "codificação de arquivo"
#: views.py:118
msgid "File size"
@@ -589,17 +590,17 @@ msgstr "Páginas"
#: views.py:131
#, python-format
msgid "Properties for document: %s"
-msgstr ""
+msgstr "Pré-visualização do documento:%s"
#: views.py:152
#, python-format
msgid "Preview of document: %s"
-msgstr ""
+msgstr "Pré-visualização do documento:%s "
#: views.py:173
#, python-format
msgid "Content of document: %s"
-msgstr ""
+msgstr "Conteúdo do documento:%s"
#: views.py:186 views.py:277 views.py:468 views.py:520
msgid "Must provide at least one document."
@@ -628,15 +629,15 @@ msgstr "Documento \"%s\", editado com sucesso."
#: views.py:264
#, python-format
msgid "Edit properties of document: %s"
-msgstr ""
+msgstr "Editar propriedades de documento: %s"
#: views.py:297
msgid "Document type changed successfully."
-msgstr ""
+msgstr "Tipo de documento alterado com sucesso."
#: views.py:304
msgid "Submit"
-msgstr ""
+msgstr "Submeter"
#: views.py:308
msgid "Change the type of the selected document."
@@ -646,15 +647,15 @@ msgstr[1] ""
#: views.py:373
msgid "Documents to be downloaded"
-msgstr ""
+msgstr "Documentos a serem baixados"
#: views.py:382
msgid "Date and time"
-msgstr ""
+msgstr "data e hora"
#: views.py:384 views.py:1129
msgid "Encoding"
-msgstr ""
+msgstr "Codificação"
#: views.py:443
msgid "Return"
@@ -662,11 +663,11 @@ msgstr "Voltar"
#: views.py:485
msgid "Document queued for page count reset."
-msgstr ""
+msgstr "Documento em fila para redefinição de contagem de página."
#: views.py:486
msgid "Documents queued for page count reset."
-msgstr ""
+msgstr "Documentos em fila para redefinição de contagem de página"
#: views.py:495
msgid ""
@@ -703,7 +704,7 @@ msgstr[1] ""
#: views.py:579 views.py:621
#, python-format
msgid "Details for: %s"
-msgstr ""
+msgstr "detalhes para: %s"
#: views.py:640
msgid "Document page edited successfully."
@@ -712,7 +713,7 @@ msgstr "Página do documento editado com sucesso."
#: views.py:649
#, python-format
msgid "Edit: %s"
-msgstr ""
+msgstr "Edita: %s"
#: views.py:666
msgid "There are no more pages in this document"
@@ -729,7 +730,7 @@ msgstr ""
#: views.py:870
msgid "OCR"
-msgstr ""
+msgstr "OCR"
#: views.py:890
msgid "Document type edited successfully"
@@ -743,7 +744,7 @@ msgstr "Erro ao editar tipo de documento; %s"
#: views.py:898
#, python-format
msgid "Edit document type: %s"
-msgstr ""
+msgstr "Editar o tipo de documento: %s"
#: views.py:918
#, python-format
@@ -762,7 +763,7 @@ msgstr "Tem certeza de que deseja excluir o tipo de documento: %s?"
#: views.py:932
msgid "All documents of this type will be deleted too."
-msgstr ""
+msgstr "Todos os documentos deste tipo serão excluídos também."
#: views.py:947
msgid "Document type created successfully"
@@ -776,7 +777,7 @@ msgstr "Erro ao criar tipo de documento; %(error)s "
#: views.py:967
#, python-format
msgid "Filenames for document type: %s"
-msgstr ""
+msgstr "Os nomes de arquivo para o tipo de documento:%s."
#: views.py:997
msgid "Document type filename edited successfully"
@@ -790,11 +791,11 @@ msgstr "Erro ao editar nome de arquivo do tipo de documento: %s"
#: views.py:1005
#, python-format
msgid "Edit filename \"%(filename)s\" from document type \"%(document_type)s\""
-msgstr ""
+msgstr "Editar filename \"%(filename)s\" do tipo de documento \"%(document_type)s\""
#: views.py:1014 views.py:1046
msgid "Document type filename"
-msgstr ""
+msgstr "Tipo de documento filename"
#: views.py:1031
#, python-format
@@ -826,24 +827,24 @@ msgstr "Erro ao criar nome de arquivo do tipo de documento; %(error)s"
#: views.py:1081
#, python-format
msgid "Create filename for document type: %s"
-msgstr ""
+msgstr "Criar nome de arquivo para o tipo de documento: %s"
#: views.py:1097
msgid "Document image cache clearing queued successfully."
-msgstr ""
+msgstr "Documento cache de imagem de compensação em fila com êxito."
#: views.py:1103
msgid "Are you sure you wish to clear the document image cache?"
-msgstr ""
+msgstr "Tem certeza de que deseja limpar o cache de imagem do documento?"
#: views.py:1121
msgid "Time and date"
-msgstr ""
+msgstr "Hora e Data"
#: views.py:1140
#, python-format
msgid "Versions of document: %s"
-msgstr ""
+msgstr "Versões do documento: %s"
#: views.py:1160
msgid "Document version reverted successfully"
@@ -856,16 +857,16 @@ msgstr "Erro ao reverter versão do documento; %s"
#: views.py:1169
msgid "Are you sure you wish to revert to this version?"
-msgstr ""
+msgstr "Tem certeza de que deseja reverter para esta versão?"
#: views.py:1170
msgid "All later version after this one will be deleted too."
-msgstr ""
+msgstr "Tudo versão posterior após este será excluído também."
#: views.py:1189
#, python-format
msgid "Transformations for: %s"
-msgstr ""
+msgstr "transformações para: %s"
#: views.py:1218
msgid "Document page transformation created successfully."
@@ -896,10 +897,15 @@ msgid ""
"%(document_page)s"
msgstr "Tem certeza de que deseja excluir \"%(transformation)s\" para: %(document_page)s "
-#: widgets.py:84
-msgid "Document page image"
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
msgstr ""
+#: widgets.py:86
+msgid "Document page image"
+msgstr "Imagem da página do documento"
+
#~ msgid "Document properties"
#~ msgstr "Edit document properties"
@@ -1012,9 +1018,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po
index 2511a563cf..eb4f34e250 100644
--- a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
"MIME-Version: 1.0\n"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Redenumire rapidă"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -898,7 +898,12 @@ msgid ""
"%(document_page)s"
msgstr "Sunteți sigur că doriți să ștergeți transformare \"%(transformation)s\" pentru: %(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1014,9 +1019,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po
index 002104cd5f..ec7d0b10ac 100644
--- a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po
@@ -10,15 +10,15 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: __init__.py:94 __init__.py:131 models.py:88 permissions.py:7 views.py:871
msgid "Documents"
@@ -102,7 +102,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Быстро переименовать документ"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -619,6 +619,7 @@ msgid_plural "Are you sure you wish to delete the selected documents?"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
+msgstr[3] ""
#: views.py:255
#, python-format
@@ -644,6 +645,7 @@ msgid_plural "Change the type of the selected documents."
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
+msgstr[3] ""
#: views.py:373
msgid "Documents to be downloaded"
@@ -677,6 +679,7 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
+msgstr[3] ""
#: views.py:538
#, python-format
@@ -702,6 +705,7 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
+msgstr[3] ""
#: views.py:579 views.py:621
#, python-format
@@ -899,7 +903,12 @@ msgid ""
"%(document_page)s"
msgstr "Вы действительно хотите удалить преобразования \"%(transformation)s\" for: %(document_page)s\""
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1015,9 +1024,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po
index f003b90a79..9014303572 100644
--- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
"MIME-Version: 1.0\n"
@@ -102,7 +102,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Hitro preimenovanje dokumenta"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -903,7 +903,12 @@ msgid ""
"%(document_page)s"
msgstr "Ali ste prepričani, da želite izbrisati preoblikovanja \"%(transformation)s\" za: %(document_page)s"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1019,9 +1024,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/sq/LC_MESSAGES/django.po b/mayan/apps/documents/locale/sq/LC_MESSAGES/django.po
index 730d2c7390..ec7aee45a4 100644
--- a/mayan/apps/documents/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/sq/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr ""
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -893,7 +893,12 @@ msgid ""
"%(document_page)s"
msgstr ""
-#: widgets.py:84
+#: widgets.py:67
+#, fuzzy, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1013,9 +1018,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po
index f23ac967f5..18906aea62 100644
--- a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
"MIME-Version: 1.0\n"
@@ -100,7 +100,7 @@ msgstr ""
msgid "Quick document rename"
msgstr ""
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -889,7 +889,12 @@ msgid ""
"%(document_page)s"
msgstr ""
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1005,9 +1010,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po
index da0a649f6e..fce567bb41 100644
--- a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
"MIME-Version: 1.0\n"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr "Sửa nhanh tên tài liệu"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -890,7 +890,12 @@ msgid ""
"%(document_page)s"
msgstr ""
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1006,9 +1011,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po
index f9869bb6c1..975f3bc924 100644
--- a/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:50-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
@@ -102,7 +102,7 @@ msgstr "文档页(%d)"
msgid "Quick document rename"
msgstr "快速文档重命名"
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -891,7 +891,12 @@ msgid ""
"%(document_page)s"
msgstr "确定要删除文档页: %(document_page)s的变换 \"%(transformation)s\"么?"
-#: widgets.py:84
+#: widgets.py:67
+#, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr ""
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1007,9 +1012,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/documents/locale/zh_TW/LC_MESSAGES/django.po
index fe00f76c90..3381e20031 100644
--- a/mayan/apps/documents/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/documents/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:00-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
@@ -101,7 +101,7 @@ msgstr ""
msgid "Quick document rename"
msgstr ""
-#: forms.py:148 widgets.py:65
+#: forms.py:148
#, python-format
msgid "Page %(page_number)d"
msgstr ""
@@ -889,7 +889,12 @@ msgid ""
"%(document_page)s"
msgstr ""
-#: widgets.py:84
+#: widgets.py:67
+#, fuzzy, python-format
+msgid "Page %(page_number)d of %(total_pages)d"
+msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
+
+#: widgets.py:86
msgid "Document page image"
msgstr ""
@@ -1009,9 +1014,6 @@ msgstr ""
#~ msgid "Missing documents"
#~ msgstr "missing documents"
-#~ msgid "Page %(page_num)d of %(total_pages)d"
-#~ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s"
-
#~ msgid "Click on the image for full size preview"
#~ msgstr "Click on the image for full size preview"
diff --git a/mayan/apps/documents/urls.py b/mayan/apps/documents/urls.py
index 01fd8dea17..857e9c9ec4 100644
--- a/mayan/apps/documents/urls.py
+++ b/mayan/apps/documents/urls.py
@@ -12,7 +12,8 @@ from .api_views import (
from .settings import PRINT_SIZE, DISPLAY_SIZE
from .views import DocumentListView, RecentDocumentListView
-urlpatterns = patterns('documents.views',
+urlpatterns = patterns(
+ 'documents.views',
url(r'^list/$', DocumentListView.as_view(), name='document_list'),
url(r'^list/recent/$', RecentDocumentListView.as_view(), name='document_list_recent'),
@@ -41,6 +42,8 @@ urlpatterns = patterns('documents.views',
url(r'^document/version/(?P\d+)/download/$', 'document_download', (), 'document_version_download'),
url(r'^document/version/(?P\d+)/revert/$', 'document_version_revert', (), 'document_version_revert'),
+ url(r'^(?P\d+)/acls/$', 'document_acl_list', (), 'document_acl_list'),
+
url(r'^multiple/clear_transformations/$', 'document_multiple_clear_transformations', (), 'document_multiple_clear_transformations'),
url(r'^maintenance/clear_image_cache/$', 'document_clear_image_cache', (), 'document_clear_image_cache'),
@@ -75,7 +78,8 @@ urlpatterns = patterns('documents.views',
url(r'^type/(?P\d+)/filename/create/$', 'document_type_filename_create', (), 'document_type_filename_create'),
)
-api_urls = patterns('',
+api_urls = patterns(
+ '',
url(r'^documents/$', APIDocumentListView.as_view(), name='document-list'),
url(r'^documents/recent/$', APIRecentDocumentListView.as_view(), name='document-recent-list'),
url(r'^documents/(?P[0-9]+)/$', APIDocumentView.as_view(), name='document-detail'),
diff --git a/mayan/apps/documents/widgets.py b/mayan/apps/documents/widgets.py
index 1ffc5270b6..72b5858413 100644
--- a/mayan/apps/documents/widgets.py
+++ b/mayan/apps/documents/widgets.py
@@ -41,8 +41,10 @@ class DocumentPagesCarouselWidget(forms.widgets.Widget):
try:
document_pages = value.pages.all()
+ total_pages = value.pages.count()
except AttributeError:
document_pages = []
+ total_pages = 0
# Reuse expensive values
latest_version_pk = value.latest_version.pk
@@ -62,7 +64,7 @@ class DocumentPagesCarouselWidget(forms.widgets.Widget):
post_load_class='lazy-load-carousel-loaded',
)
)
- output.append('%s
' % ugettext('Page %(page_number)d') % {'page_number': page.page_number})
+ output.append('%s
' % ugettext('Page %(page_number)d of %(total_pages)d') % {'page_number': page.page_number, 'total_pages': total_pages})
output.append('')
output.append('')
diff --git a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po
index 226dfa10a0..cbb0ff6bb3 100644
--- a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
diff --git a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po
index 762ec54452..229db7b68a 100644
--- a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
diff --git a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po
index a8d58fbc51..b5e6e70cf5 100644
--- a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
diff --git a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po
index f61cde41de..ff37d486cf 100644
--- a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
diff --git a/mayan/apps/dynamic_search/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/de_CH/LC_MESSAGES/django.po
index 30f86b31d3..00ace10960 100644
--- a/mayan/apps/dynamic_search/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
diff --git a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po
index dafc65f18d..622e956244 100644
--- a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-06 23:55+0000\n"
"Last-Translator: Mathias Behrle \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
diff --git a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po
index 71a6bb2114..987c268a96 100644
--- a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2012-12-12 06:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po
index ade0340331..b48f2a3a06 100644
--- a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-14 20:21+0000\n"
"Last-Translator: Lory977 \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
diff --git a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po
index c07476c51c..daf60930d5 100644
--- a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
diff --git a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po
index 65e65f34ba..453a2905dd 100644
--- a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
diff --git a/mayan/apps/dynamic_search/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/hr_HR/LC_MESSAGES/django.po
index ba666c35ac..7e449e0d57 100644
--- a/mayan/apps/dynamic_search/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/hr_HR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
diff --git a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po
index 23ea933f3c..3936c15e03 100644
--- a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
diff --git a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po
index 4462c1b4dc..3cd7b90d0b 100644
--- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
diff --git a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po
index 167110a792..830d71f200 100644
--- a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
diff --git a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po
index b3ea289619..f7a4e59c21 100644
--- a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/dynamic_search/locale/nb/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/nb/LC_MESSAGES/django.po
index 07b954d417..6f9b94e599 100644
--- a/mayan/apps/dynamic_search/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po
index 6f9c6e774d..579c121f0f 100644
--- a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
diff --git a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po
index e6b63b60f3..e244cdb971 100644
--- a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po
@@ -4,16 +4,18 @@
#
# Translators:
# Translators:
+# Annunnaky , 2015
# mic , 2012
# mic , 2012
+# mic , 2015
# mic , 2012
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-01-11 22:05+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-03-16 09:28+0000\n"
+"Last-Translator: Annunnaky \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -23,7 +25,7 @@ msgstr ""
#: forms.py:8
msgid "Search terms"
-msgstr ""
+msgstr "Słowa do wyszukania"
#: links.py:5 views.py:66 views.py:72 views.py:74
#: templatetags/search_tags.py:20 templatetags/search_tags.py:21
@@ -32,51 +34,51 @@ msgstr "Szukaj"
#: links.py:6 views.py:62
msgid "Advanced search"
-msgstr ""
+msgstr "Zaawansowane wyszukiwanie"
#: links.py:7
msgid "Search again"
-msgstr ""
+msgstr "Wyszukać ponownie"
#: models.py:19
msgid "User"
-msgstr ""
+msgstr "Użytkownik"
#: models.py:25
msgid "Query"
-msgstr ""
+msgstr "Zapytanie"
#: models.py:26
msgid "Datetime created"
-msgstr ""
+msgstr "Data utworzenia"
#: models.py:27
msgid "Hits"
-msgstr ""
+msgstr "Trafienia"
#: models.py:64
msgid "Recent search"
-msgstr ""
+msgstr "Ostatnie wyszukiwanie"
#: models.py:65
msgid "Recent searches"
-msgstr ""
+msgstr "Ostatnie wyszukiwania"
#: settings.py:12
msgid "Maximum amount search hits to fetch and display."
-msgstr ""
+msgstr "Maksymalna liczba wyświetlenia pasujących odszukań."
#: settings.py:13
msgid "Maximum number of search queries to remember per user."
-msgstr ""
+msgstr "Maksymalna liczba wyszukań do zapamiętania na 1 użytkownika."
#: views.py:38
msgid "Results"
-msgstr ""
+msgstr "Wyniki"
#: views.py:46
msgid "Type"
-msgstr ""
+msgstr "Typ"
#: templates/dynamic_search/search_results.html:3
msgid "Search results"
@@ -90,7 +92,7 @@ msgstr "Upływający czas: %(time_delta)s seconds"
#: templatetags/search_tags.py:37
#, python-format
msgid "Recent searches (maximum of %d)"
-msgstr ""
+msgstr "Ostatnie wyszukiwania (maksimum %d)"
#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)"
#~ msgstr ""
diff --git a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po
index c7ee159cc8..b77fcf0d9b 100644
--- a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
diff --git a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po
index 7adc778fd6..c61d3a6769 100644
--- a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po
@@ -5,13 +5,14 @@
# Translators:
# Translators:
# Emerson Soares , 2011
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-01-11 22:05+0000\n"
-"Last-Translator: Roberto Rosario\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-07 18:33+0000\n"
+"Last-Translator: Rogerio Falcone \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,7 +22,7 @@ msgstr ""
#: forms.py:8
msgid "Search terms"
-msgstr ""
+msgstr "Termos de pesquisa"
#: links.py:5 views.py:66 views.py:72 views.py:74
#: templatetags/search_tags.py:20 templatetags/search_tags.py:21
@@ -30,39 +31,39 @@ msgstr "Pesquisa"
#: links.py:6 views.py:62
msgid "Advanced search"
-msgstr ""
+msgstr "pesquisa avançada"
#: links.py:7
msgid "Search again"
-msgstr ""
+msgstr "pesquisar novamente"
#: models.py:19
msgid "User"
-msgstr ""
+msgstr "Usuário"
#: models.py:25
msgid "Query"
-msgstr ""
+msgstr "pergunta"
#: models.py:26
msgid "Datetime created"
-msgstr ""
+msgstr "Hora e data criada"
#: models.py:27
msgid "Hits"
-msgstr ""
+msgstr "visitas"
#: models.py:64
msgid "Recent search"
-msgstr ""
+msgstr "pesquisa recente"
#: models.py:65
msgid "Recent searches"
-msgstr ""
+msgstr "pesquisas recentes"
#: settings.py:12
msgid "Maximum amount search hits to fetch and display."
-msgstr ""
+msgstr "Quantidade máxima acessos para a pesquisa buscar e mostrar."
#: settings.py:13
msgid "Maximum number of search queries to remember per user."
@@ -70,11 +71,11 @@ msgstr "Número máximo de consultas de pesquisa para se lembrar por usuário."
#: views.py:38
msgid "Results"
-msgstr ""
+msgstr "resultados"
#: views.py:46
msgid "Type"
-msgstr ""
+msgstr "Tipo"
#: templates/dynamic_search/search_results.html:3
msgid "Search results"
@@ -88,7 +89,7 @@ msgstr "Tempo decorrido: %(time_delta)s segundos"
#: templatetags/search_tags.py:37
#, python-format
msgid "Recent searches (maximum of %d)"
-msgstr ""
+msgstr "pesquisas recentes (maximum of %d)"
#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)"
#~ msgstr ""
diff --git a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po
index 073cd29410..d7e7da846c 100644
--- a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
diff --git a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po
index 9c35e0d4d2..c86cae1de0 100644
--- a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: forms.py:8
msgid "Search terms"
diff --git a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po
index 1c361dfe7f..d999dae0ca 100644
--- a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
diff --git a/mayan/apps/dynamic_search/locale/sq/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/sq/LC_MESSAGES/django.po
index 19f94c3812..bb4ddca538 100644
--- a/mayan/apps/dynamic_search/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/sq/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
diff --git a/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po
index ad660a2d7c..49fbce5bc6 100644
--- a/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
diff --git a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po
index 54298f7e2b..d12c08a0a4 100644
--- a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
diff --git a/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po
index 03b7ab5e6f..356e897b2d 100644
--- a/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
diff --git a/mayan/apps/dynamic_search/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/zh_TW/LC_MESSAGES/django.po
index 3ec0a3ac35..ee2de5505c 100644
--- a/mayan/apps/dynamic_search/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/dynamic_search/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
diff --git a/mayan/apps/dynamic_search/urls.py b/mayan/apps/dynamic_search/urls.py
index cc635bde0a..20ec32cb06 100644
--- a/mayan/apps/dynamic_search/urls.py
+++ b/mayan/apps/dynamic_search/urls.py
@@ -6,14 +6,16 @@ from .api_views import (
APIRecentSearchListView, APIRecentSearchView, APISearchView
)
-urlpatterns = patterns('dynamic_search.views',
+urlpatterns = patterns(
+ 'dynamic_search.views',
url(r'^$', 'search', (), 'search'),
url(r'^advanced/$', 'search', {'advanced': True}, 'search_advanced'),
url(r'^again/$', 'search_again', (), 'search_again'),
url(r'^results/$', 'results', (), 'results'),
)
-api_urls = patterns('',
+api_urls = patterns(
+ '',
url(r'^recent_searches/$', APIRecentSearchListView.as_view(), name='recentsearch-list'),
url(r'^recent_searches/(?P[0-9]+)/$', APIRecentSearchView.as_view(), name='recentsearch-detail'),
url(r'^search/$', APISearchView.as_view(), name='search-view'),
diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po
index ee6936038d..0df965aa5b 100644
--- a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po
index 6fa45b9558..121c0242fe 100644
--- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
diff --git a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po
index be4a7bb171..a7e909f489 100644
--- a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
diff --git a/mayan/apps/events/locale/da/LC_MESSAGES/django.po b/mayan/apps/events/locale/da/LC_MESSAGES/django.po
index 4068e5454a..649d5226fb 100644
--- a/mayan/apps/events/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/da/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
diff --git a/mayan/apps/events/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/events/locale/de_CH/LC_MESSAGES/django.po
index 76f3aa5a6c..e0ff32cf04 100644
--- a/mayan/apps/events/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po
index d6a6f392c8..a524bfef6b 100644
--- a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:48+0000\n"
"Last-Translator: Mathias Behrle \n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.po b/mayan/apps/events/locale/en/LC_MESSAGES/django.po
index 76f3aa5a6c..e0ff32cf04 100644
--- a/mayan/apps/events/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/mayan/apps/events/locale/es/LC_MESSAGES/django.po b/mayan/apps/events/locale/es/LC_MESSAGES/django.po
index 1867cec144..24f1817e0f 100644
--- a/mayan/apps/events/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/es/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 19:37+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po
index 156d3d2e7c..c68a165793 100644
--- a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Mehdi Amani , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-09 18:30+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-09 12:30+0000\n"
+"Last-Translator: Mehdi Amani \n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,7 +25,7 @@ msgstr ""
#: links.py:5 permissions.py:7 views.py:76
msgid "Events"
-msgstr ""
+msgstr "رویداد"
#: models.py:18
msgid "Name"
@@ -32,7 +33,7 @@ msgstr ""
#: models.py:24
msgid "Event type"
-msgstr ""
+msgstr "نوع رویداد"
#: models.py:25
msgid "Event types"
diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po
index 0ee4d7688e..99dc2f08aa 100644
--- a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Christophe kryskool , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-09 18:30+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-04-06 08:53+0000\n"
+"Last-Translator: Christophe kryskool \n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,50 +21,50 @@ msgstr ""
#: classes.py:17
#, python-brace-format
msgid "Unknown or obsolete event type: {0}"
-msgstr ""
+msgstr "Type d'évènement inconnu ou obsolète: {0}"
#: links.py:5 permissions.py:7 views.py:76
msgid "Events"
-msgstr ""
+msgstr "Évènements"
#: models.py:18
msgid "Name"
-msgstr ""
+msgstr "Nom"
#: models.py:24
msgid "Event type"
-msgstr ""
+msgstr "Type d'évènement"
#: models.py:25
msgid "Event types"
-msgstr ""
+msgstr "Types d'évènement"
#: models.py:30
msgid "Timestamp"
-msgstr ""
+msgstr "Horodatage"
#: models.py:34
msgid "Actor"
-msgstr ""
+msgstr "Acteur"
#: models.py:38
msgid "Verb"
-msgstr ""
+msgstr "Verbe"
#: permissions.py:8
msgid "Access the events of an object"
-msgstr ""
+msgstr "Accéder aux évènements de cet objet"
#: views.py:42
#, python-format
msgid "Events for: %s"
-msgstr ""
+msgstr "Évènements pour: %s"
#: views.py:59
#, python-format
msgid "Events of type: %s"
-msgstr ""
+msgstr "Évènements de type: %s"
#: views.py:83
msgid "Target"
-msgstr ""
+msgstr "Cible"
diff --git a/mayan/apps/events/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/events/locale/hr_HR/LC_MESSAGES/django.po
index 867ad71bef..477ff21cce 100644
--- a/mayan/apps/events/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/hr_HR/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po
index b44bd05564..4199448d1f 100644
--- a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.po b/mayan/apps/events/locale/id/LC_MESSAGES/django.po
index 1df2e3f314..54338c7c2a 100644
--- a/mayan/apps/events/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/id/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.po b/mayan/apps/events/locale/it/LC_MESSAGES/django.po
index 56a0dcd300..9792e9160d 100644
--- a/mayan/apps/events/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/it/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
diff --git a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po
index f9401134c7..fa0ccd9b7d 100644
--- a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/mayan/apps/events/locale/nb/LC_MESSAGES/django.po b/mayan/apps/events/locale/nb/LC_MESSAGES/django.po
index ac93a589d5..92686186d2 100644
--- a/mayan/apps/events/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po
index 19d2113939..57f443146e 100644
--- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po
index ac776bacd4..917601ff80 100644
--- a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Annunnaky , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-09 18:30+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-03-02 05:44+0000\n"
+"Last-Translator: Annunnaky \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,50 +21,50 @@ msgstr ""
#: classes.py:17
#, python-brace-format
msgid "Unknown or obsolete event type: {0}"
-msgstr ""
+msgstr "Nieznany, bądź przestarzały typ zdarzenia: {0}"
#: links.py:5 permissions.py:7 views.py:76
msgid "Events"
-msgstr ""
+msgstr "Zdarzenia"
#: models.py:18
msgid "Name"
-msgstr ""
+msgstr "Nazwa"
#: models.py:24
msgid "Event type"
-msgstr ""
+msgstr "Typ zdarzenia"
#: models.py:25
msgid "Event types"
-msgstr ""
+msgstr "Typy zdarzeń"
#: models.py:30
msgid "Timestamp"
-msgstr ""
+msgstr "Pieczęć czasu"
#: models.py:34
msgid "Actor"
-msgstr ""
+msgstr "Czynnik"
#: models.py:38
msgid "Verb"
-msgstr ""
+msgstr "Słowo"
#: permissions.py:8
msgid "Access the events of an object"
-msgstr ""
+msgstr "Dostęp do zdarzeń obiektu"
#: views.py:42
#, python-format
msgid "Events for: %s"
-msgstr ""
+msgstr "Zdarzenia dla: %s"
#: views.py:59
#, python-format
msgid "Events of type: %s"
-msgstr ""
+msgstr "Zdarzenia typu: %s"
#: views.py:83
msgid "Target"
-msgstr ""
+msgstr "Cel"
diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po
index 3f6d002fa3..eb8951953c 100644
--- a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
diff --git a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po
index 30e11bcd5a..97c2e6b43b 100644
--- a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po
@@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
-"PO-Revision-Date: 2015-02-09 18:30+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-07 20:12+0000\n"
+"Last-Translator: Rogerio Falcone \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,50 +21,50 @@ msgstr ""
#: classes.py:17
#, python-brace-format
msgid "Unknown or obsolete event type: {0}"
-msgstr ""
+msgstr "Desconhecido ou obsoletos tipo de evento: 0"
#: links.py:5 permissions.py:7 views.py:76
msgid "Events"
-msgstr ""
+msgstr "Eventos"
#: models.py:18
msgid "Name"
-msgstr ""
+msgstr "Nome"
#: models.py:24
msgid "Event type"
-msgstr ""
+msgstr "Tipo de Evento"
#: models.py:25
msgid "Event types"
-msgstr ""
+msgstr "Tipos de Eventos"
#: models.py:30
msgid "Timestamp"
-msgstr ""
+msgstr "Timestamp"
#: models.py:34
msgid "Actor"
-msgstr ""
+msgstr "Ator"
#: models.py:38
msgid "Verb"
-msgstr ""
+msgstr "Verbo"
#: permissions.py:8
msgid "Access the events of an object"
-msgstr ""
+msgstr "Acesse os eventos de um objeto"
#: views.py:42
#, python-format
msgid "Events for: %s"
-msgstr ""
+msgstr "Eventos para: %s"
#: views.py:59
#, python-format
msgid "Events of type: %s"
-msgstr ""
+msgstr "Eventos do Tipo: %s"
#: views.py:83
msgid "Target"
-msgstr ""
+msgstr "Destino"
diff --git a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po
index e3a4d26e0d..df1b5fd363 100644
--- a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po
index 02367afd85..63dbcf905d 100644
--- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: classes.py:17
#, python-brace-format
diff --git a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po
index 55c79ddacb..6bab9858d6 100644
--- a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
diff --git a/mayan/apps/events/locale/sq/LC_MESSAGES/django.po b/mayan/apps/events/locale/sq/LC_MESSAGES/django.po
index ac93a589d5..92686186d2 100644
--- a/mayan/apps/events/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/sq/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po
index 3de1b0a34f..5713f9d502 100644
--- a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
diff --git a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po
index d5148ed14d..4a4dc2a5b8 100644
--- a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
diff --git a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po
index 6d0106f40c..30afbc717f 100644
--- a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:51-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-09 18:30+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
diff --git a/mayan/apps/events/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh_TW/LC_MESSAGES/django.po
index f2246daa73..0a2dec31d1 100644
--- a/mayan/apps/events/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/events/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/mayan/apps/events/urls.py b/mayan/apps/events/urls.py
index 5d7d9ceb0d..0d0a13e2a2 100644
--- a/mayan/apps/events/urls.py
+++ b/mayan/apps/events/urls.py
@@ -2,7 +2,8 @@ from __future__ import unicode_literals
from django.conf.urls import patterns, url
-urlpatterns = patterns('events.views',
+urlpatterns = patterns(
+ 'events.views',
url(r'^all/$', 'events_list', (), 'events_list'),
url(r'^for_object/(?P[\w\-]+)/(?P[\w\-]+)/(?P\d+)/$', 'events_list', (), 'events_for_object'),
url(r'^by_verb/(?P[\w\-]+)/$', 'events_list', (), 'events_by_verb'),
diff --git a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po
index e946926d75..8a683b111d 100644
--- a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
"MIME-Version: 1.0\n"
@@ -201,9 +201,8 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "إضافة وثيقة إلى مجلد"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po
index 1a3e05d74a..8ab97a6f66 100644
--- a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
"MIME-Version: 1.0\n"
@@ -194,9 +194,8 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Добавяне на документ към папка"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po
index b64b73bd9b..77cff135a7 100644
--- a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
"MIME-Version: 1.0\n"
@@ -195,9 +195,8 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Dodati dokument u folder"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/da/LC_MESSAGES/django.po b/mayan/apps/folders/locale/da/LC_MESSAGES/django.po
index cb38546a27..307eae753e 100644
--- a/mayan/apps/folders/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/da/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
"MIME-Version: 1.0\n"
@@ -193,9 +193,8 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Tilføj dokument til en mappe"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/folders/locale/de_CH/LC_MESSAGES/django.po
index 9975f0967a..2eae7aafc0 100644
--- a/mayan/apps/folders/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
@@ -193,10 +193,6 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
-
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po
index 54d1c23eff..4303acc763 100644
--- a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-02-06 23:56+0000\n"
-"Last-Translator: Mathias Behrle \n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
+"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-edms/language/de_DE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -199,9 +199,8 @@ msgid_plural ""
msgstr[0] "Wollen Sie das ausgewählte Dokument wirklich aus Ordner %(folder)s entfernen?"
msgstr[1] "Wollen Sie die ausgewählten Dokumente wirklich aus Ordner %(folder)s entfernen?"
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Dokument zu einem Ordner hinzufügen"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/en/LC_MESSAGES/django.po b/mayan/apps/folders/locale/en/LC_MESSAGES/django.po
index e11a63f607..75d8320cf0 100644
--- a/mayan/apps/folders/locale/en/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2012-12-12 06:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
@@ -206,9 +206,8 @@ msgstr[1] ""
"Are you sure you wish to remove the document: %(document)s from the folder "
"\"%(folder)s\"?"
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Add document to a folder"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/es/LC_MESSAGES/django.po b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po
index ed0ac5891c..a34c80766a 100644
--- a/mayan/apps/folders/locale/es/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-02-07 05:17+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/language/es/)\n"
"MIME-Version: 1.0\n"
@@ -195,9 +195,8 @@ msgid_plural ""
msgstr[0] "¿Está seguro que desea eliminar el documento seleccionado de la carpeta: %(folder)s?"
msgstr[1] "¿Está seguro que desea eliminar los documentos seleccionados de la carpeta: %(folder)s?"
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Agregar documento a una carpeta"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po
index a77719550c..ca0811f8e3 100644
--- a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -191,9 +191,8 @@ msgid_plural ""
"%(folder)s?"
msgstr[0] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "اضافه کردن سند به پرونده"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po
index 95b698bb42..6c82f4ef86 100644
--- a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-02-05 10:36+0000\n"
-"Last-Translator: Christophe kryskool \n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
+"Last-Translator: Roberto Rosario\n"
"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -195,9 +195,8 @@ msgid_plural ""
msgstr[0] "Êtes vous certain de vouloir supprimer le document sélectionné du répertoire \"%(folder)s\"?"
msgstr[1] "Êtes vous certain de vouloir supprimer les documents sélectionnés du répertoire %(folder)s?"
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Ajouter un document au répertoire"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/folders/locale/hr_HR/LC_MESSAGES/django.po
index 266380ff25..724ede80d9 100644
--- a/mayan/apps/folders/locale/hr_HR/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/hr_HR/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-edms/language/hr_HR/)\n"
"MIME-Version: 1.0\n"
@@ -194,9 +194,8 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po
index e76986e3c2..aa5f5ac282 100644
--- a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/language/hu/)\n"
"MIME-Version: 1.0\n"
@@ -193,9 +193,8 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Dokumentum elhelyezése egy mappában"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po b/mayan/apps/folders/locale/id/LC_MESSAGES/django.po
index 02a5883c48..5313eb411e 100644
--- a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/id/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -190,9 +190,8 @@ msgid_plural ""
"%(folder)s?"
msgstr[0] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/it/LC_MESSAGES/django.po b/mayan/apps/folders/locale/it/LC_MESSAGES/django.po
index 60e82e5a5c..22a0ef17f7 100644
--- a/mayan/apps/folders/locale/it/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/it/LC_MESSAGES/django.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -197,9 +197,8 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Aggiungi documento alla cartella"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/lv/LC_MESSAGES/django.po b/mayan/apps/folders/locale/lv/LC_MESSAGES/django.po
index 3399bcdc71..65c982773b 100644
--- a/mayan/apps/folders/locale/lv/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/lv/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mayan-edms/"
@@ -196,10 +196,6 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
-
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/nb/LC_MESSAGES/django.po b/mayan/apps/folders/locale/nb/LC_MESSAGES/django.po
index 5b40674a5a..2c99b0cc2e 100644
--- a/mayan/apps/folders/locale/nb/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/nb/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mayan-"
@@ -193,10 +193,6 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
-
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po
index d7316db94f..009b0def2a 100644
--- a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mayan-edms/language/nl_NL/)\n"
"MIME-Version: 1.0\n"
@@ -192,9 +192,8 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po
index d111bff558..aa6c79936b 100644
--- a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po
@@ -4,15 +4,16 @@
#
# Translators:
# Translators:
+# Annunnaky , 2015
# mic , 2012
-# mic , 2013
+# mic , 2013,2015
# mic , 2012
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -23,11 +24,11 @@ msgstr ""
#: __init__.py:46
msgid "Created"
-msgstr ""
+msgstr "utworzony"
#: __init__.py:47 links.py:19 models.py:14
msgid "Documents"
-msgstr ""
+msgstr "Dokumenty"
#: forms.py:38 models.py:26
msgid "Folder"
@@ -40,27 +41,27 @@ msgstr "Katalogi"
#: links.py:15 views.py:61
msgid "Create folder"
-msgstr ""
+msgstr "Stworzyć folder"
#: links.py:16
msgid "Edit"
-msgstr ""
+msgstr "Edytuj"
#: links.py:17
msgid "Delete"
-msgstr ""
+msgstr "Usunąć"
#: links.py:18
msgid "Remove from folder"
-msgstr ""
+msgstr "Usuń z folderu"
#: links.py:20
msgid "Add to a folder"
-msgstr ""
+msgstr "Dodać do folderu"
#: links.py:21
msgid "Add to folder"
-msgstr ""
+msgstr "Dodać do folderu"
#: links.py:24
msgid "ACLs"
@@ -68,15 +69,15 @@ msgstr "ACLs"
#: models.py:11
msgid "Title"
-msgstr ""
+msgstr "Tytuł"
#: models.py:12
msgid "User"
-msgstr ""
+msgstr "Użytkownik"
#: models.py:13
msgid "Datetime created"
-msgstr ""
+msgstr "Data utworzenia"
#: permissions.py:9
msgid "Create new folders"
@@ -113,17 +114,17 @@ msgstr "Katalog o nazwie:%s już istnieje."
#: views.py:79
msgid "Folder edited successfully"
-msgstr ""
+msgstr "Folder edytowany powodzeniem"
#: views.py:82
#, python-format
msgid "Error editing folder; %s"
-msgstr ""
+msgstr "błąd edycji katalogu; %s"
#: views.py:87
#, python-format
msgid "Edit folder: %s"
-msgstr ""
+msgstr "edytuj katalog: %s"
#: views.py:109
#, python-format
@@ -133,7 +134,7 @@ msgstr "Katalog: %s został usunięty."
#: views.py:111
#, python-format
msgid "Folder: %(folder)s delete error: %(error)s"
-msgstr ""
+msgstr "Katalog: %(folder)s błąd usuwania: %(error)s"
#: views.py:121
#, python-format
@@ -143,7 +144,7 @@ msgstr "Czy na pewno chcesz usunąć katalog: %s?"
#: views.py:144
#, python-format
msgid "Documents in folder: %s"
-msgstr ""
+msgstr "Dokumenty w katalogu: %s"
#: views.py:157
msgid "Must provide at least one document."
@@ -152,38 +153,38 @@ msgstr "Musisz podać co najmniej jeden dokument."
#: views.py:176
#, python-format
msgid "Document: %(document)s added to folder: %(folder)s successfully."
-msgstr ""
+msgstr "Dokument : %(document)s pomyślnie dodano do katalogu: %(folder)s."
#: views.py:179
#, python-format
msgid "Document: %(document)s is already in folder: %(folder)s."
-msgstr ""
+msgstr "Dokument: %(document)s jest już w katalogu: %(folder)s."
#: views.py:196
msgid "Add document to folder"
msgid_plural "Add documents to folder"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "Dodaj dokument do katalogu"
+msgstr[1] "Dodaj dokumenty do katalogu"
+msgstr[2] "Dodaj dokumenty do katalogu"
#: views.py:216
#, python-format
msgid "Folders containing document: %s"
-msgstr ""
+msgstr "Katalogi zawierające dokument: %s"
#: views.py:242
msgid "Must provide at least one folder document."
-msgstr ""
+msgstr "Musisz podać conajmiej jeden katalog dokumentów."
#: views.py:260
#, python-format
msgid "Document: %s removed successfully."
-msgstr ""
+msgstr "Pomyślnie usunięto dokument: %s. "
#: views.py:262
#, python-format
msgid "Document: %(document)s delete error: %(error)s"
-msgstr ""
+msgstr "Dokument: %(document)s błąd usuwania: %(error)s"
#: views.py:272
#, python-format
@@ -193,13 +194,12 @@ msgid ""
msgid_plural ""
"Are you sure you wish to remove the selected documents from the folder: "
"%(folder)s?"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "Czy napewno usunąć zaznaczony dokument z katalogu: %(folder)s?"
+msgstr[1] "Czy napewno usunąć zaznaczony dokumenty z katalogu: %(folder)s?"
+msgstr[2] "Czy napewno usunąć zaznaczony dokumenty z katalogu: %(folder)s?"
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po
index 12f6c1e75b..197e27f437 100644
--- a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/language/pt/)\n"
"MIME-Version: 1.0\n"
@@ -195,9 +195,8 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Adicionar documento a uma pasta"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po
index 86ad2a366d..8b23ec2acf 100644
--- a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po
@@ -7,12 +7,13 @@
# Emerson Soares , 2012
# Renata Oliveira , 2011
# Roberto Rosario, 2012
+# Rogerio Falcone , 2015
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mayan-edms/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@@ -23,11 +24,11 @@ msgstr ""
#: __init__.py:46
msgid "Created"
-msgstr ""
+msgstr "Criando"
#: __init__.py:47 links.py:19 models.py:14
msgid "Documents"
-msgstr ""
+msgstr "Documentos"
#: forms.py:38 models.py:26
msgid "Folder"
@@ -40,27 +41,27 @@ msgstr "Pastas"
#: links.py:15 views.py:61
msgid "Create folder"
-msgstr ""
+msgstr "Criar pasta"
#: links.py:16
msgid "Edit"
-msgstr ""
+msgstr "Editar"
#: links.py:17
msgid "Delete"
-msgstr ""
+msgstr "Excluir"
#: links.py:18
msgid "Remove from folder"
-msgstr ""
+msgstr "Remover da pasta"
#: links.py:20
msgid "Add to a folder"
-msgstr ""
+msgstr "Adicionar a uma pasta"
#: links.py:21
msgid "Add to folder"
-msgstr ""
+msgstr "Adicione a pasta"
#: links.py:24
msgid "ACLs"
@@ -68,15 +69,15 @@ msgstr "ACLs"
#: models.py:11
msgid "Title"
-msgstr ""
+msgstr "título"
#: models.py:12
msgid "User"
-msgstr ""
+msgstr "Usuário"
#: models.py:13
msgid "Datetime created"
-msgstr ""
+msgstr "Hora e data criada"
#: permissions.py:9
msgid "Create new folders"
@@ -123,7 +124,7 @@ msgstr "Erro ao editar pasta; %s"
#: views.py:87
#, python-format
msgid "Edit folder: %s"
-msgstr ""
+msgstr "Editar pasta: %s"
#: views.py:109
#, python-format
@@ -143,7 +144,7 @@ msgstr "Tem certeza de que deseja excluir a pasta: %s?"
#: views.py:144
#, python-format
msgid "Documents in folder: %s"
-msgstr ""
+msgstr "Documentos na pasta: %s"
#: views.py:157
msgid "Must provide at least one document."
@@ -168,7 +169,7 @@ msgstr[1] ""
#: views.py:216
#, python-format
msgid "Folders containing document: %s"
-msgstr ""
+msgstr "Pastas contendo documento:%s"
#: views.py:242
msgid "Must provide at least one folder document."
@@ -195,9 +196,8 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Adicionar documento à uma pasta"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po
index 1a43d41cfd..1b40f34d93 100644
--- a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-edms/language/ro_RO/)\n"
"MIME-Version: 1.0\n"
@@ -195,9 +195,8 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Adaugă un document într-un director"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po
index b21dd6686e..df06587bc9 100644
--- a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po
@@ -9,15 +9,15 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: __init__.py:46
msgid "Created"
@@ -163,6 +163,7 @@ msgid_plural "Add documents to folder"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
+msgstr[3] ""
#: views.py:216
#, python-format
@@ -194,10 +195,10 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
+msgstr[3] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Добавить документ в папку"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po
index 50eefa10a1..736f31e2d4 100644
--- a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/mayan-edms/language/sl_SI/)\n"
"MIME-Version: 1.0\n"
@@ -196,9 +196,8 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/sq/LC_MESSAGES/django.po b/mayan/apps/folders/locale/sq/LC_MESSAGES/django.po
index 33b3d60e96..a8249af4d7 100644
--- a/mayan/apps/folders/locale/sq/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/sq/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mayan-edms/"
@@ -193,10 +193,6 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
-
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/folders/locale/tr_TR/LC_MESSAGES/django.po
index aa8eda7308..4bff1e07b8 100644
--- a/mayan/apps/folders/locale/tr_TR/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/tr_TR/LC_MESSAGES/django.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:01+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-edms/language/tr_TR/)\n"
"MIME-Version: 1.0\n"
@@ -190,9 +190,8 @@ msgid_plural ""
"%(folder)s?"
msgstr[0] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po
index 95ddf3916e..266af2563c 100644
--- a/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/mayan-edms/language/vi_VN/)\n"
"MIME-Version: 1.0\n"
@@ -191,9 +191,8 @@ msgid_plural ""
"%(folder)s?"
msgstr[0] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "Thêm tài liệu vào thư mục"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po
index d89a3dec57..65116feaeb 100644
--- a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
-"PO-Revision-Date: 2015-01-27 20:02+0000\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
+"PO-Revision-Date: 2015-05-15 23:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mayan-edms/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
@@ -191,9 +191,8 @@ msgid_plural ""
"%(folder)s?"
msgstr[0] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr "添加文档到文件夹"
+#~ msgid "Add document to a folder"
+#~ msgstr "Add document to a folder"
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/locale/zh_TW/LC_MESSAGES/django.po b/mayan/apps/folders/locale/zh_TW/LC_MESSAGES/django.po
index 6f5837b0c8..d65b87ffa1 100644
--- a/mayan/apps/folders/locale/zh_TW/LC_MESSAGES/django.po
+++ b/mayan/apps/folders/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-27 20:01+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mayan-"
@@ -191,10 +191,6 @@ msgid_plural ""
"%(folder)s?"
msgstr[0] ""
-#: templatetags/folder_tags.py:17
-msgid "Add document to a folder"
-msgstr ""
-
#~ msgid "Add document: %s to folder."
#~ msgstr "Add document: %s to folder."
diff --git a/mayan/apps/folders/urls.py b/mayan/apps/folders/urls.py
index 44c4e14728..2aacaf5ead 100644
--- a/mayan/apps/folders/urls.py
+++ b/mayan/apps/folders/urls.py
@@ -8,7 +8,8 @@ from .api_views import (
)
from .views import FolderDetailView, FolderListView
-urlpatterns = patterns('folders.views',
+urlpatterns = patterns(
+ 'folders.views',
url(r'^list/$', FolderListView.as_view(), name='folder_list'),
url(r'^create/$', 'folder_create', (), 'folder_create'),
url(r'^(?P\d+)/edit/$', 'folder_edit', (), 'folder_edit'),
@@ -23,7 +24,8 @@ urlpatterns = patterns('folders.views',
url(r'^(?P\d+)/acl/list/$', 'folder_acl_list', (), 'folder_acl_list'),
)
-api_urls = patterns('',
+api_urls = patterns(
+ '',
url(r'^folders/(?P[0-9]+)/documents/(?P[0-9]+)/$', APIFolderDocumentView.as_view(), name='folder-document'),
url(r'^folders/(?P[0-9]+)/documents/$', APIFolderDocumentListView.as_view(), name='folder-document-list'),
url(r'^folders/(?P[0-9]+)/$', APIFolderView.as_view(), name='folder-detail'),
diff --git a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po
index 97dc89ad4a..059c8f769b 100644
--- a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po
+++ b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:11+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/language/ar/)\n"
@@ -19,19 +19,19 @@ msgstr ""
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-#: __init__.py:38 __init__.py:49
+#: __init__.py:26 __init__.py:37
msgid "Label"
msgstr ""
-#: __init__.py:42
+#: __init__.py:30
msgid "Items"
msgstr ""
-#: __init__.py:53
+#: __init__.py:41
msgid "Value"
msgstr ""
-#: links.py:7 models.py:178
+#: links.py:7 models.py:156
msgid "Installation details"
msgstr ""
@@ -43,155 +43,155 @@ msgstr ""
msgid "Details"
msgstr ""
-#: models.py:52
+#: models.py:48
msgid "Operating system"
msgstr ""
-#: models.py:54 models.py:61
+#: models.py:50 models.py:57
msgid "LSB OS"
msgstr "LSB OS"
-#: models.py:55
+#: models.py:51
msgid "Distributor ID"
msgstr "Distributor ID"
-#: models.py:56
+#: models.py:52
msgid "Description"
msgstr "Description"
-#: models.py:57
+#: models.py:53
msgid "Release"
msgstr "Release"
-#: models.py:58
+#: models.py:54
msgid "Codename"
msgstr "Codename"
-#: models.py:59
+#: models.py:55
msgid "System info"
msgstr "System info"
-#: models.py:63
+#: models.py:59
msgid "OS architecture"
msgstr "OS architecture"
-#: models.py:64
+#: models.py:60
msgid "Python version"
msgstr "Python version"
-#: models.py:65
+#: models.py:61
msgid "Hostname"
msgstr "Hostname"
-#: models.py:66
+#: models.py:62
msgid "Platform"
msgstr "Platform"
-#: models.py:67
+#: models.py:63
msgid "Machine"
msgstr "Machine"
-#: models.py:68
+#: models.py:64
msgid "Processor"
msgstr "Processor"
-#: models.py:69
+#: models.py:65
msgid "Number of CPUs"
msgstr "Number of CPUs"
-#: models.py:70
+#: models.py:66
msgid "Total physical memory"
msgstr "Total physical memory"
-#: models.py:71
+#: models.py:67
msgid "Disk partitions"
msgstr "Disk partitions"
-#: models.py:74
+#: models.py:70
msgid "Binary dependencies"
msgstr ""
-#: models.py:79 models.py:81 models.py:83
+#: models.py:75 models.py:77 models.py:79
msgid "tesseract version"
msgstr "tesseract version"
-#: models.py:79 models.py:88 models.py:97
+#: models.py:75 models.py:84 models.py:93
msgid "not found"
msgstr "not found"
-#: models.py:81 models.py:90 models.py:99
+#: models.py:77 models.py:86 models.py:95
msgid "error getting version"
msgstr "error getting version"
-#: models.py:88 models.py:90 models.py:92
+#: models.py:84 models.py:86 models.py:88
msgid "unpaper version"
msgstr "unpaper version"
-#: models.py:97 models.py:99 models.py:101
+#: models.py:93 models.py:95 models.py:97
msgid "pdftotext version"
msgstr "pdftotext version"
-#: models.py:104
+#: models.py:100
msgid "Mayan EDMS"
msgstr ""
-#: models.py:106
+#: models.py:102
msgid "UUID"
msgstr ""
-#: models.py:107
+#: models.py:103
msgid "Mayan EDMS version"
msgstr "Mayan EDMS version"
-#: models.py:110
+#: models.py:106
msgid "Git repository"
msgstr ""
-#: models.py:115 models.py:120
+#: models.py:111 models.py:116
msgid "Running from a Git repository"
msgstr "Running from a Git repository"
-#: models.py:121
+#: models.py:117
msgid "Repository remotes"
msgstr "Repository remotes"
-#: models.py:122
+#: models.py:118
msgid "Repository remotes URLs"
msgstr "Repository remotes URLs"
-#: models.py:123
+#: models.py:119
msgid "Branch"
msgstr "Branch"
-#: models.py:124
+#: models.py:120
msgid "HEAD commit hex SHA"
msgstr "HEAD commit hex SHA"
-#: models.py:125
+#: models.py:121
msgid "HEAD commit author"
msgstr "HEAD commit author"
-#: models.py:126
+#: models.py:122
msgid "HEAD commit authored date"
msgstr "HEAD commit authored date"
-#: models.py:127
+#: models.py:123
msgid "HEAD commit committer"
msgstr "HEAD commit committer"
-#: models.py:128
+#: models.py:124
msgid "HEAD commit committed date"
msgstr "HEAD commit committed date"
-#: models.py:129
+#: models.py:125
msgid "HEAD commit message"
msgstr "HEAD commit message"
-#: models.py:135
+#: models.py:131
msgid "VirtualEnv"
msgstr ""
-#: models.py:139
+#: models.py:135
msgid "pip not found."
msgstr ""
diff --git a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po b/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po
index bb624483b5..cf313ec955 100644
--- a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po
+++ b/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:11+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/language/bg/)\n"
@@ -20,19 +20,19 @@ msgstr ""
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: __init__.py:38 __init__.py:49
+#: __init__.py:26 __init__.py:37
msgid "Label"
msgstr ""
-#: __init__.py:42
+#: __init__.py:30
msgid "Items"
msgstr ""
-#: __init__.py:53
+#: __init__.py:41
msgid "Value"
msgstr ""
-#: links.py:7 models.py:178
+#: links.py:7 models.py:156
msgid "Installation details"
msgstr ""
@@ -44,155 +44,155 @@ msgstr ""
msgid "Details"
msgstr ""
-#: models.py:52
+#: models.py:48
msgid "Operating system"
msgstr ""
-#: models.py:54 models.py:61
+#: models.py:50 models.py:57
msgid "LSB OS"
msgstr "LSB OS"
-#: models.py:55
+#: models.py:51
msgid "Distributor ID"
msgstr "ID на дистрибуция"
-#: models.py:56
+#: models.py:52
msgid "Description"
msgstr "Описание"
-#: models.py:57
+#: models.py:53
msgid "Release"
msgstr "Версия"
-#: models.py:58
+#: models.py:54
msgid "Codename"
msgstr "Кодово име"
-#: models.py:59
+#: models.py:55
msgid "System info"
msgstr "Системна информация"
-#: models.py:63
+#: models.py:59
msgid "OS architecture"
msgstr "архитектура на операционната система"
-#: models.py:64
+#: models.py:60
msgid "Python version"
msgstr "Версия на питон"
-#: models.py:65
+#: models.py:61
msgid "Hostname"
msgstr "Име на хоста"
-#: models.py:66
+#: models.py:62
msgid "Platform"
msgstr "Платформа"
-#: models.py:67
+#: models.py:63
msgid "Machine"
msgstr "Машина"
-#: models.py:68
+#: models.py:64
msgid "Processor"
msgstr "Процесор"
-#: models.py:69
+#: models.py:65
msgid "Number of CPUs"
msgstr "Брой процесори"
-#: models.py:70
+#: models.py:66
msgid "Total physical memory"
msgstr "Общ обем физическа памет"
-#: models.py:71
+#: models.py:67
msgid "Disk partitions"
msgstr "Дялове на диска"
-#: models.py:74
+#: models.py:70
msgid "Binary dependencies"
msgstr ""
-#: models.py:79 models.py:81 models.py:83
+#: models.py:75 models.py:77 models.py:79
msgid "tesseract version"
msgstr "tesseract версия"
-#: models.py:79 models.py:88 models.py:97
+#: models.py:75 models.py:84 models.py:93
msgid "not found"
msgstr "не е намерен"
-#: models.py:81 models.py:90 models.py:99
+#: models.py:77 models.py:86 models.py:95
msgid "error getting version"
msgstr ""
-#: models.py:88 models.py:90 models.py:92
+#: models.py:84 models.py:86 models.py:88
msgid "unpaper version"
msgstr "версия на unpaper"
-#: models.py:97 models.py:99 models.py:101
+#: models.py:93 models.py:95 models.py:97
msgid "pdftotext version"
msgstr ""
-#: models.py:104
+#: models.py:100
msgid "Mayan EDMS"
msgstr ""
-#: models.py:106
+#: models.py:102
msgid "UUID"
msgstr ""
-#: models.py:107
+#: models.py:103
msgid "Mayan EDMS version"
msgstr "Версия на Mayan EDMS"
-#: models.py:110
+#: models.py:106
msgid "Git repository"
msgstr ""
-#: models.py:115 models.py:120
+#: models.py:111 models.py:116
msgid "Running from a Git repository"
msgstr ""
-#: models.py:121
+#: models.py:117
msgid "Repository remotes"
msgstr ""
-#: models.py:122
+#: models.py:118
msgid "Repository remotes URLs"
msgstr ""
-#: models.py:123
+#: models.py:119
msgid "Branch"
msgstr ""
-#: models.py:124
+#: models.py:120
msgid "HEAD commit hex SHA"
msgstr ""
-#: models.py:125
+#: models.py:121
msgid "HEAD commit author"
msgstr ""
-#: models.py:126
+#: models.py:122
msgid "HEAD commit authored date"
msgstr ""
-#: models.py:127
+#: models.py:123
msgid "HEAD commit committer"
msgstr ""
-#: models.py:128
+#: models.py:124
msgid "HEAD commit committed date"
msgstr ""
-#: models.py:129
+#: models.py:125
msgid "HEAD commit message"
msgstr ""
-#: models.py:135
+#: models.py:131
msgid "VirtualEnv"
msgstr ""
-#: models.py:139
+#: models.py:135
msgid "pip not found."
msgstr ""
diff --git a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po
index f6ff30b659..d3fb713cb4 100644
--- a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po
+++ b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:11+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/projects/p/mayan-edms/language/bs_BA/)\n"
@@ -19,19 +19,19 @@ msgstr ""
"Language: bs_BA\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: __init__.py:38 __init__.py:49
+#: __init__.py:26 __init__.py:37
msgid "Label"
msgstr ""
-#: __init__.py:42
+#: __init__.py:30
msgid "Items"
msgstr ""
-#: __init__.py:53
+#: __init__.py:41
msgid "Value"
msgstr ""
-#: links.py:7 models.py:178
+#: links.py:7 models.py:156
msgid "Installation details"
msgstr ""
@@ -43,155 +43,155 @@ msgstr ""
msgid "Details"
msgstr ""
-#: models.py:52
+#: models.py:48
msgid "Operating system"
msgstr ""
-#: models.py:54 models.py:61
+#: models.py:50 models.py:57
msgid "LSB OS"
msgstr "LSB OS"
-#: models.py:55
+#: models.py:51
msgid "Distributor ID"
msgstr "ID oznaka distributora"
-#: models.py:56
+#: models.py:52
msgid "Description"
msgstr "Opis"
-#: models.py:57
+#: models.py:53
msgid "Release"
msgstr "Izdanje"
-#: models.py:58
+#: models.py:54
msgid "Codename"
msgstr "Kodno ime"
-#: models.py:59
+#: models.py:55
msgid "System info"
msgstr "Sistemske informacije"
-#: models.py:63
+#: models.py:59
msgid "OS architecture"
msgstr "Arhitektura OS-a"
-#: models.py:64
+#: models.py:60
msgid "Python version"
msgstr "Verzija Python-a"
-#: models.py:65
+#: models.py:61
msgid "Hostname"
msgstr "Ime hosta"
-#: models.py:66
+#: models.py:62
msgid "Platform"
msgstr "Platforma"
-#: models.py:67
+#: models.py:63
msgid "Machine"
msgstr "Mašina"
-#: models.py:68
+#: models.py:64
msgid "Processor"
msgstr "Procesor"
-#: models.py:69
+#: models.py:65
msgid "Number of CPUs"
msgstr "Broj CPU"
-#: models.py:70
+#: models.py:66
msgid "Total physical memory"
msgstr "Ukupna fizička memorija"
-#: models.py:71
+#: models.py:67
msgid "Disk partitions"
msgstr "Particije diska"
-#: models.py:74
+#: models.py:70
msgid "Binary dependencies"
msgstr ""
-#: models.py:79 models.py:81 models.py:83
+#: models.py:75 models.py:77 models.py:79
msgid "tesseract version"
msgstr "verzija tesseract-a"
-#: models.py:79 models.py:88 models.py:97
+#: models.py:75 models.py:84 models.py:93
msgid "not found"
msgstr "nije pronađeno"
-#: models.py:81 models.py:90 models.py:99
+#: models.py:77 models.py:86 models.py:95
msgid "error getting version"
msgstr "greška pribavljanja verzije"
-#: models.py:88 models.py:90 models.py:92
+#: models.py:84 models.py:86 models.py:88
msgid "unpaper version"
msgstr "bezpapirna verzija"
-#: models.py:97 models.py:99 models.py:101
+#: models.py:93 models.py:95 models.py:97
msgid "pdftotext version"
msgstr "verzija pdftotext"
-#: models.py:104
+#: models.py:100
msgid "Mayan EDMS"
msgstr ""
-#: models.py:106
+#: models.py:102
msgid "UUID"
msgstr ""
-#: models.py:107
+#: models.py:103
msgid "Mayan EDMS version"
msgstr "verzija Mayan EDMS "
-#: models.py:110
+#: models.py:106
msgid "Git repository"
msgstr ""
-#: models.py:115 models.py:120
+#: models.py:111 models.py:116
msgid "Running from a Git repository"
msgstr "Izvršava se iz Git repozitorija"
-#: models.py:121
+#: models.py:117
msgid "Repository remotes"
msgstr "Udaljeni repozitoriji"
-#: models.py:122
+#: models.py:118
msgid "Repository remotes URLs"
msgstr "URL-ovi udaljenih repozitorija"
-#: models.py:123
+#: models.py:119
msgid "Branch"
msgstr "Ogranak"
-#: models.py:124
+#: models.py:120
msgid "HEAD commit hex SHA"
msgstr "HEAD izvršava heksadekadni SHA"
-#: models.py:125
+#: models.py:121
msgid "HEAD commit author"
msgstr "HEAD izvršava autor"
-#: models.py:126
+#: models.py:122
msgid "HEAD commit authored date"
msgstr "HEAD izvršava autor datum"
-#: models.py:127
+#: models.py:123
msgid "HEAD commit committer"
msgstr "HEAD izvršava komitera"
-#: models.py:128
+#: models.py:124
msgid "HEAD commit committed date"
msgstr "HEAD izvršava datum izvršenja"
-#: models.py:129
+#: models.py:125
msgid "HEAD commit message"
msgstr "HEAD izvršava poruku"
-#: models.py:135
+#: models.py:131
msgid "VirtualEnv"
msgstr ""
-#: models.py:139
+#: models.py:135
msgid "pip not found."
msgstr ""
diff --git a/mayan/apps/installation/locale/da/LC_MESSAGES/django.po b/mayan/apps/installation/locale/da/LC_MESSAGES/django.po
index 084a8f6b47..6255c9328a 100644
--- a/mayan/apps/installation/locale/da/LC_MESSAGES/django.po
+++ b/mayan/apps/installation/locale/da/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:11+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/language/da/)\n"
@@ -19,19 +19,19 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: __init__.py:38 __init__.py:49
+#: __init__.py:26 __init__.py:37
msgid "Label"
msgstr ""
-#: __init__.py:42
+#: __init__.py:30
msgid "Items"
msgstr ""
-#: __init__.py:53
+#: __init__.py:41
msgid "Value"
msgstr ""
-#: links.py:7 models.py:178
+#: links.py:7 models.py:156
msgid "Installation details"
msgstr ""
@@ -43,155 +43,155 @@ msgstr ""
msgid "Details"
msgstr ""
-#: models.py:52
+#: models.py:48
msgid "Operating system"
msgstr ""
-#: models.py:54 models.py:61
+#: models.py:50 models.py:57
msgid "LSB OS"
msgstr "LSB OS"
-#: models.py:55
+#: models.py:51
msgid "Distributor ID"
msgstr "Distributør id"
-#: models.py:56
+#: models.py:52
msgid "Description"
msgstr "Beskrivelse"
-#: models.py:57
+#: models.py:53
msgid "Release"
msgstr "Release"
-#: models.py:58
+#: models.py:54
msgid "Codename"
msgstr "Codename"
-#: models.py:59
+#: models.py:55
msgid "System info"
msgstr "System info"
-#: models.py:63
+#: models.py:59
msgid "OS architecture"
msgstr "OS arkitektur"
-#: models.py:64
+#: models.py:60
msgid "Python version"
msgstr "Python version"
-#: models.py:65
+#: models.py:61
msgid "Hostname"
msgstr "Host navn"
-#: models.py:66
+#: models.py:62
msgid "Platform"
msgstr "Platform"
-#: models.py:67
+#: models.py:63
msgid "Machine"
msgstr "Maskine"
-#: models.py:68
+#: models.py:64
msgid "Processor"
msgstr "Processor"
-#: models.py:69
+#: models.py:65
msgid "Number of CPUs"
msgstr "Antal CPU'er"
-#: models.py:70
+#: models.py:66
msgid "Total physical memory"
msgstr "Samlet fysisk hukommelse"
-#: models.py:71
+#: models.py:67
msgid "Disk partitions"
msgstr "Diskpartitioner"
-#: models.py:74
+#: models.py:70
msgid "Binary dependencies"
msgstr ""
-#: models.py:79 models.py:81 models.py:83
+#: models.py:75 models.py:77 models.py:79
msgid "tesseract version"
msgstr "Tesseract version"
-#: models.py:79 models.py:88 models.py:97
+#: models.py:75 models.py:84 models.py:93
msgid "not found"
msgstr "Ej fundet"
-#: models.py:81 models.py:90 models.py:99
+#: models.py:77 models.py:86 models.py:95
msgid "error getting version"
msgstr "Fejl ved versionssøgning"
-#: models.py:88 models.py:90 models.py:92
+#: models.py:84 models.py:86 models.py:88
msgid "unpaper version"
msgstr "digital udgave"
-#: models.py:97 models.py:99 models.py:101
+#: models.py:93 models.py:95 models.py:97
msgid "pdftotext version"
msgstr "pdftotext version"
-#: models.py:104
+#: models.py:100
msgid "Mayan EDMS"
msgstr ""
-#: models.py:106
+#: models.py:102
msgid "UUID"
msgstr ""
-#: models.py:107
+#: models.py:103
msgid "Mayan EDMS version"
msgstr "Mayan EDMS version"
-#: models.py:110
+#: models.py:106
msgid "Git repository"
msgstr ""
-#: models.py:115 models.py:120
+#: models.py:111 models.py:116
msgid "Running from a Git repository"
msgstr "Kører fra en Git repository"
-#: models.py:121
+#: models.py:117
msgid "Repository remotes"
msgstr "Repository remotes"
-#: models.py:122
+#: models.py:118
msgid "Repository remotes URLs"
msgstr "Repository remotes URLs"
-#: models.py:123
+#: models.py:119
msgid "Branch"
msgstr "Branch"
-#: models.py:124
+#: models.py:120
msgid "HEAD commit hex SHA"
msgstr "HEAD commit hex SHA"
-#: models.py:125
+#: models.py:121
msgid "HEAD commit author"
msgstr "HEAD commit author"
-#: models.py:126
+#: models.py:122
msgid "HEAD commit authored date"
msgstr "HEAD commit authored date"
-#: models.py:127
+#: models.py:123
msgid "HEAD commit committer"
msgstr "HEAD commit committer"
-#: models.py:128
+#: models.py:124
msgid "HEAD commit committed date"
msgstr "HEAD commit committed date"
-#: models.py:129
+#: models.py:125
msgid "HEAD commit message"
msgstr "HEAD commit message"
-#: models.py:135
+#: models.py:131
msgid "VirtualEnv"
msgstr ""
-#: models.py:139
+#: models.py:135
msgid "pip not found."
msgstr ""
diff --git a/mayan/apps/installation/locale/de_CH/LC_MESSAGES/django.po b/mayan/apps/installation/locale/de_CH/LC_MESSAGES/django.po
index fa5905543d..a7e0e0345c 100644
--- a/mayan/apps/installation/locale/de_CH/LC_MESSAGES/django.po
+++ b/mayan/apps/installation/locale/de_CH/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-01-11 22:11+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/"
@@ -19,19 +19,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: __init__.py:38 __init__.py:49
+#: __init__.py:26 __init__.py:37
msgid "Label"
msgstr ""
-#: __init__.py:42
+#: __init__.py:30
msgid "Items"
msgstr ""
-#: __init__.py:53
+#: __init__.py:41
msgid "Value"
msgstr ""
-#: links.py:7 models.py:178
+#: links.py:7 models.py:156
msgid "Installation details"
msgstr ""
@@ -43,155 +43,155 @@ msgstr ""
msgid "Details"
msgstr ""
-#: models.py:52
+#: models.py:48
msgid "Operating system"
msgstr ""
-#: models.py:54 models.py:61
+#: models.py:50 models.py:57
msgid "LSB OS"
msgstr ""
-#: models.py:55
+#: models.py:51
msgid "Distributor ID"
msgstr ""
-#: models.py:56
+#: models.py:52
msgid "Description"
msgstr ""
-#: models.py:57
+#: models.py:53
msgid "Release"
msgstr ""
-#: models.py:58
+#: models.py:54
msgid "Codename"
msgstr ""
-#: models.py:59
+#: models.py:55
msgid "System info"
msgstr ""
-#: models.py:63
+#: models.py:59
msgid "OS architecture"
msgstr ""
-#: models.py:64
+#: models.py:60
msgid "Python version"
msgstr ""
-#: models.py:65
+#: models.py:61
msgid "Hostname"
msgstr ""
-#: models.py:66
+#: models.py:62
msgid "Platform"
msgstr ""
-#: models.py:67
+#: models.py:63
msgid "Machine"
msgstr ""
-#: models.py:68
+#: models.py:64
msgid "Processor"
msgstr ""
-#: models.py:69
+#: models.py:65
msgid "Number of CPUs"
msgstr ""
-#: models.py:70
+#: models.py:66
msgid "Total physical memory"
msgstr ""
-#: models.py:71
+#: models.py:67
msgid "Disk partitions"
msgstr ""
-#: models.py:74
+#: models.py:70
msgid "Binary dependencies"
msgstr ""
-#: models.py:79 models.py:81 models.py:83
+#: models.py:75 models.py:77 models.py:79
msgid "tesseract version"
msgstr ""
-#: models.py:79 models.py:88 models.py:97
+#: models.py:75 models.py:84 models.py:93
msgid "not found"
msgstr ""
-#: models.py:81 models.py:90 models.py:99
+#: models.py:77 models.py:86 models.py:95
msgid "error getting version"
msgstr ""
-#: models.py:88 models.py:90 models.py:92
+#: models.py:84 models.py:86 models.py:88
msgid "unpaper version"
msgstr ""
-#: models.py:97 models.py:99 models.py:101
+#: models.py:93 models.py:95 models.py:97
msgid "pdftotext version"
msgstr ""
-#: models.py:104
+#: models.py:100
msgid "Mayan EDMS"
msgstr ""
-#: models.py:106
+#: models.py:102
msgid "UUID"
msgstr ""
-#: models.py:107
+#: models.py:103
msgid "Mayan EDMS version"
msgstr ""
-#: models.py:110
+#: models.py:106
msgid "Git repository"
msgstr ""
-#: models.py:115 models.py:120
+#: models.py:111 models.py:116
msgid "Running from a Git repository"
msgstr ""
-#: models.py:121
+#: models.py:117
msgid "Repository remotes"
msgstr ""
-#: models.py:122
+#: models.py:118
msgid "Repository remotes URLs"
msgstr ""
-#: models.py:123
+#: models.py:119
msgid "Branch"
msgstr ""
-#: models.py:124
+#: models.py:120
msgid "HEAD commit hex SHA"
msgstr ""
-#: models.py:125
+#: models.py:121
msgid "HEAD commit author"
msgstr ""
-#: models.py:126
+#: models.py:122
msgid "HEAD commit authored date"
msgstr ""
-#: models.py:127
+#: models.py:123
msgid "HEAD commit committer"
msgstr ""
-#: models.py:128
+#: models.py:124
msgid "HEAD commit committed date"
msgstr ""
-#: models.py:129
+#: models.py:125
msgid "HEAD commit message"
msgstr ""
-#: models.py:135
+#: models.py:131
msgid "VirtualEnv"
msgstr ""
-#: models.py:139
+#: models.py:135
msgid "pip not found."
msgstr ""
diff --git a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po
index ece30a7104..38e04f98ae 100644
--- a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po
+++ b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 16:52-0400\n"
+"POT-Creation-Date: 2015-05-15 19:01-0400\n"
"PO-Revision-Date: 2015-02-06 23:56+0000\n"
"Last-Translator: Mathias Behrle