diff --git a/docs/releases/2.2.rst b/docs/releases/2.2.rst new file mode 100644 index 0000000000..92c6297960 --- /dev/null +++ b/docs/releases/2.2.rst @@ -0,0 +1,70 @@ +============================= +Mayan EDMS v2.2 release notes +============================= + +Released: XX, 2016 + +What's new +========== + + +Other changes +------------- +- Remove the installation app + +Removals +-------- +* None + +Upgrading from a previous version +--------------------------------- + +Using PIP +~~~~~~~~~ + +Type in the console:: + + $ pip install -U mayan-edms + +the requirements will also be updated automatically. + +Using Git +~~~~~~~~~ + +If you installed Mayan EDMS by cloning the Git repository issue the commands:: + + $ git reset --hard HEAD + $ git pull + +otherwise download the compressed archived and uncompress it overriding the +existing installation. + +Next upgrade/add the new requirements:: + + $ pip install --upgrade -r requirements.txt + +Common steps +~~~~~~~~~~~~ + +Migrate existing database schema with:: + + $ mayan-edms.py performupgrade + +Add new static media:: + + $ mayan-edms.py collectstatic --noinput + +The upgrade procedure is now complete. + + +Backward incompatible changes +============================= + +* None + +Bugs fixed or issues closed +=========================== + +* `GitLab issue #311 `_ acl page return ContentType:Document + +.. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 394b5a7cde..d0b6429a11 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -23,6 +23,7 @@ versions of the documentation contain the release notes for any later releases. :maxdepth: 1 ======= + 2.2 2.1.4 2.1.3 2.1.2 diff --git a/mayan/apps/installation/__init__.py b/mayan/apps/installation/__init__.py deleted file mode 100644 index cc7b07fd73..0000000000 --- a/mayan/apps/installation/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -from __future__ import unicode_literals - -from .classes import PropertyNamespace # NOQA - -default_app_config = 'installation.apps.InstallationApp' diff --git a/mayan/apps/installation/apps.py b/mayan/apps/installation/apps.py deleted file mode 100644 index a5ae30bf39..0000000000 --- a/mayan/apps/installation/apps.py +++ /dev/null @@ -1,52 +0,0 @@ -from __future__ import unicode_literals - -from django.utils.translation import ugettext_lazy as _ - -from common import MayanAppConfig, menu_tools, menu_object, menu_secondary -from navigation import SourceColumn - -from .classes import Property, PropertyNamespace, PIPNotFound, VirtualEnv -from .links import ( - link_menu_link, link_namespace_details, link_namespace_list -) - - -class InstallationApp(MayanAppConfig): - name = 'installation' - verbose_name = _('Installation') - - def ready(self): - super(InstallationApp, self).ready() - - SourceColumn( - source=PropertyNamespace, label=_('Label'), attribute='label' - ) - SourceColumn( - source=PropertyNamespace, label=_('Items'), - func=lambda context: len(context['object'].get_properties()) - ) - - SourceColumn(source=Property, label=_('Label'), attribute='label') - SourceColumn(source=Property, label=_('Value'), attribute='value') - - menu_object.bind_links( - links=(link_namespace_details,), sources=(PropertyNamespace,) - ) - menu_secondary.bind_links( - links=(link_namespace_list,), - sources=('installation:namespace_list', PropertyNamespace) - ) - menu_tools.bind_links(links=(link_menu_link,)) - - namespace = PropertyNamespace('venv', _('VirtualEnv')) - try: - venv = VirtualEnv() - except PIPNotFound: - namespace.add_property( - 'pip', 'pip', _('pip not found.'), report=True - ) - else: - for item, version, result in venv.get_results(): - namespace.add_property( - item, '%s (%s)' % (item, version), result, report=True - ) diff --git a/mayan/apps/installation/classes.py b/mayan/apps/installation/classes.py deleted file mode 100644 index 1efdc370ef..0000000000 --- a/mayan/apps/installation/classes.py +++ /dev/null @@ -1,158 +0,0 @@ -from __future__ import unicode_literals - -from collections import namedtuple -from json import dumps - -import sh - -try: - pip = sh.Command('pip') -except sh.CommandNotFound: - PIP = False -else: - PIP = True - - -class PIPNotFound(Exception): - pass - - -class PropertyNamespace(object): - _registry = {} - - @classmethod - def get(cls, name): - return cls._registry[name] - - @classmethod - def get_all(cls): - return cls._registry.values() - - def __init__(self, name, label): - self.name = name - self.label = label - self.properties = {} - self.__class__._registry[name] = self - - def __unicode__(self): - return unicode(self.label) - - def __str__(self): - return str(self.label) - - def add_property(self, *args, **kwargs): - prop = Property(*args, **kwargs) - self.properties[prop.name] = prop - - def get_properties(self): - return self.properties.values() - - @property - def id(self): - return self.name - - -class Property(object): - _registry = {} - - @classmethod - def get_all(cls): - return cls._registry.values() - - @classmethod - def get(cls, name): - return cls._registry[name] - - @classmethod - def get_reportable(cls, as_dict=False, as_json=False): - if as_json: - return dumps(cls.get_reportable(as_dict=True)) - - if not as_dict: - return [prop for prop in cls.get_all() if prop.report] - else: - result = {} - for prop in cls.get_all(): - if prop.report: - result[prop.name] = unicode(prop.value) - return result - - def __init__(self, name, label, value, report=False): - self.name = name - self.label = label - self.value = value - self.report = report - self.__class__._registry[name] = self - - def __unicode__(self): - return unicode(self.value) - - def __str__(self): - return str(self.value) - - -Dependency = namedtuple('Dependency', 'name, version, standard') - - -class VirtualEnv(object): - def extract_dependency(self, string): - string = str(string.strip()) - - try: - package, version = string.split('==') - except ValueError: - # item is not installed from package, svn/git maybe - try: - version, package = string.split('=') - except: - # has no version number - return Dependency(string, version=None, standard=True) - else: - # Get rid of '#egg' and '-e' - version = version.split('#')[0].split(' ')[1] - return Dependency(package, version, standard=False) - else: - return Dependency(package, version, standard=True) - - def get_packages_info(self, requirements_file=None): - for item in pip('freeze').splitlines(): - yield self.extract_dependency(item) - - def __init__(self): - if not PIP: - raise PIPNotFound - - def get_results(self): - requirements = {} - installed_packages = {} - - for item in self.get_packages_info(): - requirements[item.name] = item - - for item in self.get_packages_info(): - installed_packages[item.name] = item - - for name, item in requirements.items(): - try: - if item.standard: - if item.version: - if item.version == installed_packages[name].version: - status = item.version - else: - status = installed_packages[name].version - else: - status = None - else: - # Non standard version number, check SVN or GIT path - if item.version == installed_packages['%s-dev' % name.replace('-', '_')].version: - status = item.version - else: - status = installed_packages[ - '%s-dev' % name.replace('-', '_') - ].version - except KeyError: - # Not installed package found matching with name matching - # requirement - status = False - - yield name, item.version, status diff --git a/mayan/apps/installation/links.py b/mayan/apps/installation/links.py deleted file mode 100644 index d5aae4bba5..0000000000 --- a/mayan/apps/installation/links.py +++ /dev/null @@ -1,22 +0,0 @@ -from __future__ import unicode_literals - -from django.utils.translation import ugettext_lazy as _ - -from navigation import Link - -from .permissions import permission_installation_details - -link_menu_link = Link( - icon='fa fa-check-square-o', - permissions=(permission_installation_details,), - text=_('Installation details'), view='installation:namespace_list' -) -link_namespace_details = Link( - permissions=(permission_installation_details,), text=_('Details'), - view='installation:namespace_details', args='object.id' -) -link_namespace_list = Link( - permissions=(permission_installation_details,), - text=_('Installation property namespaces'), - view='installation:namespace_list' -) diff --git a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.mo deleted file mode 100644 index c47f64e29a..0000000000 Binary files a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po deleted file mode 100644 index c27840e3a9..0000000000 --- a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po +++ /dev/null @@ -1,172 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Mohammed ALDOUB , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Installation" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "قيمة" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "التفاصيل" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "View installation environment details" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/bg/LC_MESSAGES/django.mo deleted file mode 100644 index 4ee2a4af2e..0000000000 Binary files a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po b/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po deleted file mode 100644 index 846d27ad99..0000000000 --- a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po +++ /dev/null @@ -1,172 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Iliya Georgiev , 2012 -# Pavlin Koldamov , 2012 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Инсталация" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "Стойност" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Детайли" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Преглед на детайли относно средата на инсталацията" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.mo deleted file mode 100644 index ccb95b5e2b..0000000000 Binary files a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po deleted file mode 100644 index 1df407ea3a..0000000000 --- a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po +++ /dev/null @@ -1,172 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# www.ping.ba , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Instalacija" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "Vrijednost" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Detalji" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Pregled detalja instalacije" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/da/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/da/LC_MESSAGES/django.mo deleted file mode 100644 index 03136d3975..0000000000 Binary files a/mayan/apps/installation/locale/da/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/da/LC_MESSAGES/django.po b/mayan/apps/installation/locale/da/LC_MESSAGES/django.po deleted file mode 100644 index 6475667e99..0000000000 --- a/mayan/apps/installation/locale/da/LC_MESSAGES/django.po +++ /dev/null @@ -1,171 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# René Rovsing Bach , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Installation" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Detaljer" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Se installations miljø detaljer" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.mo deleted file mode 100644 index 2bc6601410..0000000000 Binary files a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po deleted file mode 100644 index 11bab55ff8..0000000000 --- a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po +++ /dev/null @@ -1,173 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Mathias Behrle , 2014 -# Stefan Lodders , 2012 -# Tobias Paepke , 2014 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Installation" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "Bezeichnung" - -#: apps.py:25 -msgid "Items" -msgstr "Elemente" - -#: apps.py:30 -msgid "Value" -msgstr "Wert" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "VirtualEnv" - -#: apps.py:46 -msgid "pip not found." -msgstr "Programm pip nicht gefunden" - -#: links.py:12 -msgid "Installation details" -msgstr "Installationsdetails" - -#: links.py:15 -msgid "Details" -msgstr "Details" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "Installationseigenschaften Namensräume" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Details der Installationsumgebung anzeigen" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "Installationsdetails für %s" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/en/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/en/LC_MESSAGES/django.mo deleted file mode 100644 index a74863750b..0000000000 Binary files a/mayan/apps/installation/locale/en/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/en/LC_MESSAGES/django.po b/mayan/apps/installation/locale/en/LC_MESSAGES/django.po deleted file mode 100644 index 2c914d156c..0000000000 --- a/mayan/apps/installation/locale/en/LC_MESSAGES/django.po +++ /dev/null @@ -1,174 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2012-12-12 06:06+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" -"language/en/)\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Installation" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -#, fuzzy -msgid "pip not found." -msgstr "not found" - -#: links.py:12 -#, fuzzy -msgid "Installation details" -msgstr "installation details" - -#: links.py:15 -msgid "Details" -msgstr "" - -#: links.py:20 views.py:13 -#, fuzzy -msgid "Installation property namespaces" -msgstr "installation details" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "View installation environment details" - -#: views.py:27 -#, fuzzy, python-format -msgid "Installation namespace details for: %s" -msgstr "installation details" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#, fuzzy -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#, fuzzy -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/es/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/es/LC_MESSAGES/django.mo deleted file mode 100644 index 2b6935746b..0000000000 Binary files a/mayan/apps/installation/locale/es/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/es/LC_MESSAGES/django.po b/mayan/apps/installation/locale/es/LC_MESSAGES/django.po deleted file mode 100644 index bf994f20ed..0000000000 --- a/mayan/apps/installation/locale/es/LC_MESSAGES/django.po +++ /dev/null @@ -1,173 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Igor Támara , 2015 -# jmcainzos , 2014 -# Roberto Rosario, 2012,2014 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Instalación" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "Etiqueta" - -#: apps.py:25 -msgid "Items" -msgstr "Elementos" - -#: apps.py:30 -msgid "Value" -msgstr "Valor" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "VirtualEnv" - -#: apps.py:46 -msgid "pip not found." -msgstr "pip no fue encontrado." - -#: links.py:12 -msgid "Installation details" -msgstr "Detalles de instalación" - -#: links.py:15 -msgid "Details" -msgstr "Detalles" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "categorías de propiedades de instalación" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Ver detalles del entorno de instalación" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "categorias de detalles de instalación para: %s" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.mo deleted file mode 100644 index b7f323b5bc..0000000000 Binary files a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po deleted file mode 100644 index 81f84b77ef..0000000000 --- a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po +++ /dev/null @@ -1,172 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Mehdi Amani , 2014 -# Mohammad Dashtizadeh , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "نصب" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "برچسب" - -#: apps.py:25 -msgid "Items" -msgstr "اقلام" - -#: apps.py:30 -msgid "Value" -msgstr "مقدار" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "محیط مجازی" - -#: apps.py:46 -msgid "pip not found." -msgstr "pip پیدا نشد." - -#: links.py:12 -msgid "Installation details" -msgstr "جزئیات نصب" - -#: links.py:15 -msgid "Details" -msgstr "جزئیات" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "فضای نام نصب" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "دیدن جزئیات محیط نصب" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "جزئیات فضای نام نصب برای : %s" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.mo deleted file mode 100644 index c9b6ba4bab..0000000000 Binary files a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po deleted file mode 100644 index 760f69d3c4..0000000000 --- a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po +++ /dev/null @@ -1,173 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Christophe CHAUVET , 2014 -# PatrickHetu , 2012 -# SadE54 , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Installation" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "Étiquette" - -#: apps.py:25 -msgid "Items" -msgstr "Éléments" - -#: apps.py:30 -msgid "Value" -msgstr "Valeur" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "VirtualEnv" - -#: apps.py:46 -msgid "pip not found." -msgstr "pip non trouvé" - -#: links.py:12 -msgid "Installation details" -msgstr "Détails de l'installation" - -#: links.py:15 -msgid "Details" -msgstr "Détails" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "installation des propriétés des espaces de nommages" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Voir détails de la plateforme" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "installation détaillée de l'espace de nommage pour: %s" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.mo deleted file mode 100644 index 9d088e39f2..0000000000 Binary files a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po deleted file mode 100644 index dbc68e1b01..0000000000 --- a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po +++ /dev/null @@ -1,170 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2015-08-20 19:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Részletek" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/id/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/id/LC_MESSAGES/django.mo deleted file mode 100644 index b0d9e475c0..0000000000 Binary files a/mayan/apps/installation/locale/id/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/id/LC_MESSAGES/django.po b/mayan/apps/installation/locale/id/LC_MESSAGES/django.po deleted file mode 100644 index 857e4e70c4..0000000000 --- a/mayan/apps/installation/locale/id/LC_MESSAGES/django.po +++ /dev/null @@ -1,170 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2015-08-20 19:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Detail" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/it/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/it/LC_MESSAGES/django.mo deleted file mode 100644 index 76af8f6094..0000000000 Binary files a/mayan/apps/installation/locale/it/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/it/LC_MESSAGES/django.po b/mayan/apps/installation/locale/it/LC_MESSAGES/django.po deleted file mode 100644 index 0bc8356bfe..0000000000 --- a/mayan/apps/installation/locale/it/LC_MESSAGES/django.po +++ /dev/null @@ -1,170 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2015-08-20 19:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "etichetta" - -#: apps.py:25 -msgid "Items" -msgstr "Articoli" - -#: apps.py:30 -msgid "Value" -msgstr "Valore" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Dettagli" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.mo deleted file mode 100644 index 8da3476ecc..0000000000 Binary files a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po deleted file mode 100644 index 7839e9578a..0000000000 --- a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po +++ /dev/null @@ -1,170 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2015-08-20 19:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Gegevens" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.mo deleted file mode 100644 index 6ded16ed76..0000000000 Binary files a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po deleted file mode 100644 index 5ab583602f..0000000000 --- a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po +++ /dev/null @@ -1,174 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Annunnaky , 2015 -# mic , 2013,2015 -# Wojciech Warczakowski , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Instalacja" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "Etykieta" - -#: apps.py:25 -msgid "Items" -msgstr "Pozycje" - -#: apps.py:30 -msgid "Value" -msgstr "Wartość" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "VirtualEnv" - -#: apps.py:46 -msgid "pip not found." -msgstr "nie odnaleziono pip." - -#: links.py:12 -msgid "Installation details" -msgstr "Szczegóły instalacji" - -#: links.py:15 -msgid "Details" -msgstr "Szczegóły" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "Przestrzenie nazw instalacji" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Przeglądaj szczegóły środowiska instalacji" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "Szczegóły przestrzeni nazw instalacji dla: %s" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pt/LC_MESSAGES/django.mo deleted file mode 100644 index 6ce504dfeb..0000000000 Binary files a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.po b/mayan/apps/installation/locale/pt/LC_MESSAGES/django.po deleted file mode 100644 index b1fd41c0a2..0000000000 --- a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.po +++ /dev/null @@ -1,171 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Vítor Figueiró , 2012 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "instalação" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "Nome" - -#: apps.py:25 -msgid "Items" -msgstr "Itens" - -#: apps.py:30 -msgid "Value" -msgstr "Valor" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "pip não encontrado." - -#: links.py:12 -msgid "Installation details" -msgstr "Detalhes da instalação" - -#: links.py:15 -msgid "Details" -msgstr "Detalhes" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Ver detalhes do ambiente de instalação" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.mo deleted file mode 100644 index b40158089f..0000000000 Binary files a/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po deleted file mode 100644 index 29b57e562e..0000000000 --- a/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po +++ /dev/null @@ -1,171 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Rogerio Falcone , 2015 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Instalação" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "Label" - -#: apps.py:25 -msgid "Items" -msgstr "itens" - -#: apps.py:30 -msgid "Value" -msgstr "Valor" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "Virtualenv" - -#: apps.py:46 -msgid "pip not found." -msgstr "pip não encontrado" - -#: links.py:12 -msgid "Installation details" -msgstr "Detalhe das Instalação" - -#: links.py:15 -msgid "Details" -msgstr "Detalhes" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "Instalando Propriedades namespaces" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Exibir detalhes do ambiente de instalação" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "Detalhes da Instalação do namespace para: %s" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.mo deleted file mode 100644 index f2a3cc7c7a..0000000000 Binary files a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po deleted file mode 100644 index 1f3f4ec8f2..0000000000 --- a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po +++ /dev/null @@ -1,172 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Badea Gabriel , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "Instalare" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "Valoare" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Detalii" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Vezi detalii de instalare de mediu" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ru/LC_MESSAGES/django.mo deleted file mode 100644 index 59a1df5fac..0000000000 Binary files a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po deleted file mode 100644 index cb8c7fc531..0000000000 --- a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po +++ /dev/null @@ -1,172 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "установка" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "Значение" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Детали" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "Подробности среды установки" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.mo deleted file mode 100644 index bea4d564a1..0000000000 Binary files a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po deleted file mode 100644 index 9e77c268e6..0000000000 --- a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po +++ /dev/null @@ -1,171 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2015-08-20 19:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Podrobnosti" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.mo deleted file mode 100644 index 3988920fdf..0000000000 Binary files a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po deleted file mode 100644 index cce62ef395..0000000000 --- a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po +++ /dev/null @@ -1,170 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2015-08-20 19:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "Giá trị" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "" - -#: apps.py:46 -msgid "pip not found." -msgstr "" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "Chi tiết" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.mo deleted file mode 100644 index de4c1ee0ac..0000000000 Binary files a/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po deleted file mode 100644 index d1f11a501e..0000000000 --- a/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po +++ /dev/null @@ -1,171 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Translators: -# Ford Guo , 2014 -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:13-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: apps.py:16 permissions.py:7 -msgid "Installation" -msgstr "安装" - -#: apps.py:22 apps.py:29 -msgid "Label" -msgstr "" - -#: apps.py:25 -msgid "Items" -msgstr "" - -#: apps.py:30 -msgid "Value" -msgstr "值" - -#: apps.py:41 -msgid "VirtualEnv" -msgstr "VirtualEnv" - -#: apps.py:46 -msgid "pip not found." -msgstr "pip未发现" - -#: links.py:12 -msgid "Installation details" -msgstr "" - -#: links.py:15 -msgid "Details" -msgstr "细节" - -#: links.py:20 views.py:13 -msgid "Installation property namespaces" -msgstr "" - -#: permissions.py:10 -msgid "View installation environment details" -msgstr "查看安装环境的详细信息" - -#: views.py:27 -#, python-format -msgid "Installation namespace details for: %s" -msgstr "" - -#~ msgid "LSB OS" -#~ msgstr "LSB OS" - -#~ msgid "Distributor ID" -#~ msgstr "Distributor ID" - -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Release" -#~ msgstr "Release" - -#~ msgid "Codename" -#~ msgstr "Codename" - -#~ msgid "System info" -#~ msgstr "System info" - -#~ msgid "OS architecture" -#~ msgstr "OS architecture" - -#~ msgid "Python version" -#~ msgstr "Python version" - -#~ msgid "Hostname" -#~ msgstr "Hostname" - -#~ msgid "Platform" -#~ msgstr "Platform" - -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgid "Processor" -#~ msgstr "Processor" - -#~ msgid "Number of CPUs" -#~ msgstr "Number of CPUs" - -#~ msgid "Total physical memory" -#~ msgstr "Total physical memory" - -#~ msgid "Disk partitions" -#~ msgstr "Disk partitions" - -#~ msgid "tesseract version" -#~ msgstr "tesseract version" - -#~ msgid "not found" -#~ msgstr "not found" - -#~ msgid "error getting version" -#~ msgstr "error getting version" - -#~ msgid "unpaper version" -#~ msgstr "unpaper version" - -#~ msgid "pdftotext version" -#~ msgstr "pdftotext version" - -#~ msgid "Mayan EDMS" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Mayan EDMS version" -#~ msgstr "Mayan EDMS version" - -#~ msgid "Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Running from a Git repository" -#~ msgstr "Running from a Git repository" - -#~ msgid "Repository remotes" -#~ msgstr "Repository remotes" - -#~ msgid "Repository remotes URLs" -#~ msgstr "Repository remotes URLs" - -#~ msgid "Branch" -#~ msgstr "Branch" - -#~ msgid "HEAD commit hex SHA" -#~ msgstr "HEAD commit hex SHA" - -#~ msgid "HEAD commit author" -#~ msgstr "HEAD commit author" - -#~ msgid "HEAD commit authored date" -#~ msgstr "HEAD commit authored date" - -#~ msgid "HEAD commit committer" -#~ msgstr "HEAD commit committer" - -#~ msgid "HEAD commit committed date" -#~ msgstr "HEAD commit committed date" - -#~ msgid "HEAD commit message" -#~ msgstr "HEAD commit message" - -#~ msgid "Installed via fabfile" -#~ msgstr "Installed via fabfile" - -#~ msgid "Installation environment details" -#~ msgstr "Installation environment details" diff --git a/mayan/apps/installation/permissions.py b/mayan/apps/installation/permissions.py deleted file mode 100644 index 14dcf66821..0000000000 --- a/mayan/apps/installation/permissions.py +++ /dev/null @@ -1,11 +0,0 @@ -from __future__ import absolute_import, unicode_literals - -from django.utils.translation import ugettext_lazy as _ - -from permissions import PermissionNamespace - -namespace = PermissionNamespace('installation', _('Installation')) -permission_installation_details = namespace.add_permission( - name='installation_details', - label=_('View installation environment details') -) diff --git a/mayan/apps/installation/urls.py b/mayan/apps/installation/urls.py deleted file mode 100644 index 2f0207f5af..0000000000 --- a/mayan/apps/installation/urls.py +++ /dev/null @@ -1,14 +0,0 @@ -from __future__ import unicode_literals - -from django.conf.urls import patterns, url - -from .views import NamespaceDetailView, NamespaceListView - -urlpatterns = patterns( - 'installation.views', - url(r'^$', NamespaceListView.as_view(), name='namespace_list'), - url( - r'^(?P\w+)/details/$', NamespaceDetailView.as_view(), - name='namespace_details' - ), -) diff --git a/mayan/apps/installation/views.py b/mayan/apps/installation/views.py deleted file mode 100644 index 06a31fefb9..0000000000 --- a/mayan/apps/installation/views.py +++ /dev/null @@ -1,36 +0,0 @@ -from __future__ import absolute_import, unicode_literals - -from django.utils.translation import ugettext_lazy as _ - -from common.generics import SingleObjectListView - -from .classes import PropertyNamespace -from .permissions import permission_installation_details - - -class NamespaceListView(SingleObjectListView): - extra_context = { - 'title': _('Installation property namespaces'), - 'hide_object': True, - } - view_permission = permission_installation_details - - def get_queryset(self): - return PropertyNamespace.get_all() - - -class NamespaceDetailView(SingleObjectListView): - view_permission = permission_installation_details - - def get_extra_context(self): - return { - 'title': _('Installation namespace details for: %s') % self.get_namespace().label, - 'hide_object': True, - 'object': self.get_namespace(), - } - - def get_namespace(self): - return PropertyNamespace.get(self.kwargs['namespace_id']) - - def get_queryset(self): - return self.get_namespace().get_properties() diff --git a/mayan/apps/ocr/apps.py b/mayan/apps/ocr/apps.py index a25271b601..38420e0c40 100644 --- a/mayan/apps/ocr/apps.py +++ b/mayan/apps/ocr/apps.py @@ -18,7 +18,6 @@ from common.settings import settings_db_sync_task_delay from documents.search import document_search from documents.signals import post_version_upload from documents.widgets import document_link -from installation import PropertyNamespace from mayan.celery import app from navigation import SourceColumn from rest_api.classes import APIEndPoint @@ -150,41 +149,3 @@ class OCRApp(MayanAppConfig): post_version_upload_ocr, dispatch_uid='post_version_upload_ocr', sender=DocumentVersion ) - - namespace = PropertyNamespace('ocr', _('OCR')) - - try: - pdftotext = sh.Command(setting_pdftotext_path.value) - except sh.CommandNotFound: - namespace.add_property( - 'pdftotext', _('pdftotext version'), _('not found'), - report=True - ) - except Exception: - namespace.add_property( - 'pdftotext', _('pdftotext version'), - _('error getting version'), report=True - ) - else: - namespace.add_property( - 'pdftotext', _('pdftotext version'), pdftotext('-v').stderr, - report=True - ) - - try: - tesseract = sh.Command(setting_tesseract_path.value) - except sh.CommandNotFound: - namespace.add_property( - 'tesseract', _('tesseract version'), _('not found'), - report=True - ) - except Exception: - namespace.add_property( - 'tesseract', _('tesseract version'), - _('error getting version'), report=True - ) - else: - namespace.add_property( - 'tesseract', _('tesseract version'), tesseract('-v').stderr, - report=True - ) diff --git a/mayan/settings/base.py b/mayan/settings/base.py index 6d8d16e4cf..09bf543aed 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -86,7 +86,6 @@ INSTALLED_APPS = ( 'documents', 'events', 'folders', - 'installation', 'linking', 'mailer', 'metadata',