From f66f815ba658b07937e02174dedf9e7d8a5df5f5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 26 Oct 2016 23:04:59 -0400 Subject: [PATCH] Remove the installation app --- docs/releases/2.2.rst | 70 +++++++ docs/releases/index.rst | 1 + mayan/apps/installation/__init__.py | 5 - mayan/apps/installation/apps.py | 52 ------ mayan/apps/installation/classes.py | 158 ---------------- mayan/apps/installation/links.py | 22 --- .../locale/ar/LC_MESSAGES/django.mo | Bin 759 -> 0 bytes .../locale/ar/LC_MESSAGES/django.po | 172 ----------------- .../locale/bg/LC_MESSAGES/django.mo | Bin 750 -> 0 bytes .../locale/bg/LC_MESSAGES/django.po | 172 ----------------- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 764 -> 0 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 172 ----------------- .../locale/da/LC_MESSAGES/django.mo | Bin 624 -> 0 bytes .../locale/da/LC_MESSAGES/django.po | 171 ----------------- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1135 -> 0 bytes .../locale/de_DE/LC_MESSAGES/django.po | 173 ----------------- .../locale/en/LC_MESSAGES/django.mo | Bin 599 -> 0 bytes .../locale/en/LC_MESSAGES/django.po | 174 ------------------ .../locale/es/LC_MESSAGES/django.mo | Bin 1121 -> 0 bytes .../locale/es/LC_MESSAGES/django.po | 173 ----------------- .../locale/fa/LC_MESSAGES/django.mo | Bin 1101 -> 0 bytes .../locale/fa/LC_MESSAGES/django.po | 172 ----------------- .../locale/fr/LC_MESSAGES/django.mo | Bin 1128 -> 0 bytes .../locale/fr/LC_MESSAGES/django.po | 173 ----------------- .../locale/hu/LC_MESSAGES/django.mo | Bin 500 -> 0 bytes .../locale/hu/LC_MESSAGES/django.po | 170 ----------------- .../locale/id/LC_MESSAGES/django.mo | Bin 490 -> 0 bytes .../locale/id/LC_MESSAGES/django.po | 170 ----------------- .../locale/it/LC_MESSAGES/django.mo | Bin 596 -> 0 bytes .../locale/it/LC_MESSAGES/django.po | 170 ----------------- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 514 -> 0 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 170 ----------------- .../locale/pl/LC_MESSAGES/django.mo | Bin 1202 -> 0 bytes .../locale/pl/LC_MESSAGES/django.po | 174 ------------------ .../locale/pt/LC_MESSAGES/django.mo | Bin 865 -> 0 bytes .../locale/pt/LC_MESSAGES/django.po | 171 ----------------- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1124 -> 0 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 171 ----------------- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 719 -> 0 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 172 ----------------- .../locale/ru/LC_MESSAGES/django.mo | Bin 840 -> 0 bytes .../locale/ru/LC_MESSAGES/django.po | 172 ----------------- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 570 -> 0 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 171 ----------------- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 544 -> 0 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 170 ----------------- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 757 -> 0 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 171 ----------------- mayan/apps/installation/permissions.py | 11 -- mayan/apps/installation/urls.py | 14 -- mayan/apps/installation/views.py | 36 ---- mayan/apps/ocr/apps.py | 39 ---- mayan/settings/base.py | 1 - 53 files changed, 71 insertions(+), 3942 deletions(-) create mode 100644 docs/releases/2.2.rst delete mode 100644 mayan/apps/installation/__init__.py delete mode 100644 mayan/apps/installation/apps.py delete mode 100644 mayan/apps/installation/classes.py delete mode 100644 mayan/apps/installation/links.py delete mode 100644 mayan/apps/installation/locale/ar/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/ar/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/bg/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/bg/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/da/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/da/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/en/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/en/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/es/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/es/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/fa/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/fa/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/fr/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/fr/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/hu/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/hu/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/id/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/id/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/it/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/it/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/pl/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/pl/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/pt/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/pt/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/ru/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/ru/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.mo delete mode 100644 mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po delete mode 100644 mayan/apps/installation/permissions.py delete mode 100644 mayan/apps/installation/urls.py delete mode 100644 mayan/apps/installation/views.py 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 c47f64e29a0692993da1f16687120608a10459e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 759 zcma))F>ezw6vq!J0-YETGlQ2_Amp5VNlWW+AZSu45)n~2vO9^Jy1KJZw$rpDs7S!Z zz{-SF(VdAefY{jX7WgVW_bSqEJn5(Rx8MIg%a(uNS@{$|TnFv~9pDC#0Y2UVe*GS} z1$+d&_cO2xd;$Jk34))HZv&@SYu|UsH(~t)viJRh47T7J;QLnqAFy3VM>sAs8}yWQ zJj=L~S_LDX%|$ShVu9p^eI(R@G+O0CIW#?Q92mVXCJy(ecqEL4c82==h%40X^k0TU zQE20E-_GO|Kby}iPBlZ};6;kJjW|0FceoP_#e{BP(!%jWL|cr;pa}sZ9*P6$=U(zP zaZFK68CicoAj0R|I-DA=EZjjGhK719jMI=UH&TN^&E|Y2a4LAt&{M<5a)R#dIajbK zS}Ya~=ey;uIBZOG9+|q&M7h5V7Sr5D+4+o!o9O<(i41WQ_Iv&A@&RargxgvvKz4qa4aT&gyj>~Uj-OJ1crcysCV$L|V*yK17RQq36J97`7tvbo_I-q9wv45{L5 zX_JjMs%4^*grFygAgCq@1xafegN(ggrGz|AnrLmU){heEJDSTHr5B1@TTpC4alIV| fs5Rlk!{jp*p_&Q>r(x_qP1{pP%I~u9(?$ 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 4ee2a4af2e7caad0de8d88059541a8256f413333..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 750 zcmZXQ&uUXa6vjub2p16%moBCYp+zS5k5$WrY}%wyFc{)B3m3v9ncj}vI}>ImO}i28 zLUa`b1y_pT0|ZPUQrZV_HF*J_#WP8;6%YLGH*@AY=iHg!w^lwOh^xRIpbA_Aa=^zs z!0+D!*MSd!_kIEH0^fn*C4_!~-T97E@^RXpq%15J7N;o zs`aNqllPRiq;4|NC0qT>kW^6|G@hhnTl4uiQe~D?oJ8?M5^a#=5so)#oWMGYz(|_> zK={7@`0kS=#z{=02lpa~;4w3nq?$d2ZKS$`UYZ;AC@|*2=$^=hlRfn;oZW7`La#e&cgM-O(||?L4CJgJAZ?? z6b0K#T6imx9`)dYmLJ-%mop*DxU>HK%pW56b@tj#+z%+3xG{$O2)pscMi`vO3%~zjDDxF#=n2D?71RG``BU@< DKFtZw 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 ccb95b5e2b8c2848cafb3a1fb5096a8758e0f3d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 764 zcmY+C!EO^V5QYsDAuXJ^!eKbHN`##CZUa=?ZV_!#5s8Q>gj|u6oo*d%?8tVK7WDz( z$bl;-UW6muxgwr|Gvg#s80phL_Wm=rSM%fU)<;HhlekZ`h+9NOgm_1U^?TwD@qq~5 zPsBFynfP^$v2Uco_vJccw@JT}Mx@_K?~(o_B^$dzg!(Na1Z}UQg%%<#^XVXOhICaS z4iW*Em+KPph&t6IRFl^CBNpbSnyAg($g!G8HneJjg*MK!p2f1lVl^ezL~h0?*pU4O DT%FVK 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 03136d397570fa7d7e22082c9b271739f68b7ad9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 624 zcmY+B&2AGh5XToN0v zpt>)aIJ=-(z;T5awKd8qc@4PQcV&k_(o- zmrhw0n0hH|!jfboU?`39bJ(AU(268ktyaCzRjVty>CJ4DxNV(Fn(i@3RpS$V-y^AH za`3OCfJ(;2xEMWrK-Np+6Kev06qf6jUl-^mB(0Xp^kFua&QlnCEl=_2LDwCBMGi-1 zW-DcC0Y{fA#1p-AQsb$0jTd0rP3i}EAGYCO-@xkuWC#5?>gK2y, 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 2bc660141021b15ec44d5d34e8240eaa61a4e734..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1135 zcmaiyO>Yx15QZ08zLp9J!~qGA+(V%OIbW1gwgjOzDO5C2wV@o5lT0>7yWW-UZJLUI z0UVH!xWIu6zW{ORkvkUB3#8RE4q-}pc z9s!nOGG&H#61Fd#gHm zNiEBl+kAtxK?MP;i@s2-R;{o5Ym_G1^12CSn=fRc;f*9<{_4{PU(__Hm{*0RfR&4- zSzessqcGJt`vqX zP*+F9?#07>^Fe&qii8x>nNyo@~ddPl`O?RzLgF>O#>*cLemL1y4 zx01M^6C<=tbRl+ya%#t>5bdfJ+VrAYE9Ca%12hpQeto%K+iy`RU-TCfWzl5b=%=XP z(v~fxk&tShwYowZvXy6zB|f(w=aT4<<~7wy+ERr9n`=tzuSS^`5noDlYyzgz!PZpD z^K7`ROe;27VWr%>|NoIQM~&R*kac#x>VF5#kPJx~Z(kI-g8XlC=oPAvxD<*vN)tB!kAFF0_B6lhiMD7h+{UGLI_$GQU`;Gu)p)! BIRpRz 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 a74863750bfaac17d237cd02c12073df486ec086..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 599 zcmbV}&2HN;49C5%i?P$rJ8-}Tv=|uKMvxT>a#@=K0ctGByq>4VtfRq}42fylr`TnE zy*|t6WLS0{fgk=7MN%U5^ycMbBKAUfD~yF#!j&-Ccj2{Qgb#ufem+Z*U!sHm{quuA z7ZrCRvacm_u!W0k+Sai3F1fa}1N)B$$lclCT}O_gCN{Q>$ujsKv}Rn?cugTnqK48u z7zgu<@@u-H-Ur4qHnzsk+a_Y=HKfZg6`lv$UxXKiNkft46U@d~e1d$e^Fr2HCV{x3 zJ3G`p#uX^Xc>&o(XOoYaSbAk5V-<{x@_HXMto#iH_M*`Q>m|T7ThkC$WI7FV*R(cn z;AF$xYo&I(-H3;DdrSADweM7aXe_E;bwfW$br)6pr;H+}PX89wGMcnpl=I^Z@==za zd&e>>tR8x4km;UP-x}+tu-=#uiD%!cOFTQq4G*}bfOEI@wRMe#vm49lvfT#L;-wE= b)ZqI4HqMGE9G0^a2k&N(pH9={KfdrcbW5(H 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 2b6935746b8e624cf2d8a604c3fb8cca5754aa69..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1121 zcmZvaJ#Q2-5QY~B1Qvto9u#Ou4uHzSQ6f4rWt$MgHv*oOdi4SpBC2fqpb1^33z z1;IEt33|;8cpIDp?}5)j1{&}p_u>J)M!SCR8@F(~V{s(>;b9-SJe-FHa z`CBjoKZEzdAK(@6FX;8-W5awmz-i1UKp+1JH~~Hb5qfZU3=hrU(Z9pnB{;$j%*XcU z&%>_{R)%?kC2~UMHds;Ci98ohYIS15vi~TU5(U{(q;#;&y4oac>SQ2R8eNicyGMEm z92GWL6`Pa?8zQeL*pSp`^4J9!scmVrDoDA51W*}QiM*w@gHo1EX@{JZ%4)%y(XT0W zd?n)>WGr5gu(sG0inW&7FT-^zwQ;;{dotrstDfZ@ov?82MTajM8oZb<2}cQQ)Z;l` zpXH6mES^o`2FCR|gnXU0rH^|;_mDSY)`*k(qX%_ZxGJpU9V3)Q8GSX@^(G##K`V^Z z5U5@ydc->a3@CQ;Py_iN4{mtESarMigB@Suqb{~AtNVWWH$BqAHl z9EMC7*|5FRZXH!1uGPautsH8|JG&*G=V-@8WiF&zVCj}HmR$2yXPM6*>3sSw8QxN< z&ZO!kY<^R^a4oNl$oaB1g-w_$2UFW@EU@9QIjz`alf^R&;h>}PoDMocq;mh8I$Xtf zj=p-dk)rZFZKSY%%Qu@pd|JjzVZ@-nM*97)!vns2!PiH;bbF5nt)G6v}M5b%OKloTRW&i*H 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 b7f323b5bc78fc6d04a7013f406f79a38023b873..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1101 zcmZvaJ!}&(6vqveuLB|RAtnYRQ3OKH-Gx%BtGdvpQbi-861uyIlODRWPqx!E5(88u zQ#W8>VuDl%6t#S9j4bTPM}ZBAogMLfO+O;_N$-C4yZ`&JU*V`Uk;JWD$gpSxzxc!$_eSt~8AzszbpCHn_Tv0&^NOmCy>?{*7xw26%X|5Kg2> znAELZJqR?56`G|BEJE`%YA`e(vL+7q41gJ53Z>vN<9fRRsHAStsKA#{5+;}n4LuvY znnNWi?z4&}GgUIrq=FL!xJX-+j*;!%8D~nnuf$KJ#&78LBVT~>4Dk65}R-$xcdm6&3 zv2vq+5w}L&t2-qFT%%5LrdZg$0YB$ClY(owLsD)fa6HYHwVOmVB}@_K;B7DDZmqK2dqnHDlu0p>}zRTKU=-daw0;|?-!%!YZjxoW!R zHA*|?gIODh;eBI|%tzDRT(v*DX}hn%X3eZ;;p|PN`-%`GtfY@^8nXKD9rF%artNga w^k9f}WO^`7FYVyHqv5n|-a`D-_B^}$Ht4!$V{, 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 c9b6ba4bab999aa7baa13d23dd0efb0dab42d16d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1128 zcmZvaO>Yx15QYtuuLXgMIH3xeLuo7I>?X9O+NvCAQmLX5RS6MSH*r#cqen*bnxq!IwKX{!@+6Hx`$>VWmWIuu7VH2=O6_Qcp3aO=9e+Qg7et_4hG;4@D}(J{0RRGzlQkmQqlh{cn|S= za1Hzhu7JNlUq3rja1OkJcmcc*md5*a@HXPtAX<;kj^&B@Gx|Ba`FgY+*>(K-{ukjl zMmxp1NL4s46HB(0bv#M9lUhv$w0%wnRXi0o<1I1yn|8E`>HKsfni-u5EsX z$qwHa32E{q7o;ggpUN`_phESe(JB?nO+J7u<8q$VRF7mbqe?q`Ggs{r*){r&XgRjs zW=&x%CWvXBA9F=()%wd|Ph{FSR<~W*X3z4jWepwEVE09XZ5lC}m{qwGF|9=9RTeF? z$`e{%j>{FSqX>y?PxPekJC*mCRm!wdj-!=F5iHo@*0F}+%HkURZS3iN46i}Ujnqg` z-JEv?YY3jkbjt|UI-rXO&Sh~J_WS*k^VPB=j!G?^hNh@9Vd{rrqMh0>8TSY~CR{q{ z7}Jgk>f80&=>?QaQLw3%!xgf|afa!fIC5c@aH-a5>wp_8+{UZM7F#>b^Ples!)mIf z+fsF7y0$M}u$$zDCu~cb)W%e0qtI?t)@iZaSXA^WEibJHq&gg&BdEzP9+M^uXP=s! z4QRWlPKE<7ETo=@4DX$$xI3EZyb#)Sp|B&d8Ho, 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 9d088e39f23f293345a841df5aaf5a1f472691e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 500 zcmYL_!A=`75QdkksL~#L?!nxG=wx>Tw5iivAc=_76(L=aI6BF&G2OLS_H09ViJo`} zo`d)3owr~%Ao9zfW^Da49{d02j}HOs1M`LX%Iq>fnMM=l6LZ1*+X;eejv@2RIj?s$ z^&1V4lrDTQarPGH1mgu6@)Ob$7ZV>ZGR|LUgi)^`kX7do*>e#j&_h*{w;f zC&kpx(2?cnmD83DCa+bFkfAE2IIB(0=R9U>NmR)wTCG-XY8vPpylc;G8M)U|7nRL> z02if?inlh=vX1uOn@X{)!*rYuw||hddD}Es19Ys~4wCRcYQaO**zsyF^ z-TIpAZ_vTe%f(RU)F4fW*=?Lu!=Rk?qoQ1P;LU*l-ah z6t%znX~xn&#f+g}pYBuO658(tWV?87;R~g*Qa|fvrEF9mZ(6cB#`Jpd83fAQD z1@IO$FIn6Y@fqculMyEPuIj!U-#PF$G&zf}L>!-RQg|z!htx{#3h9j%Y+_!}dPC7k zs|*=*K9@N{in0`Jq%)(@DVpiHY)220cNF(ivK>5 z%A(_SSHV;kCZlAqd4#yZ!=BL|H4XMr(G5K=eN+`v=?Yx15QYtuuRU_+U~a7{XV;-XaFhcisT8RzqOkPtY^EC{uf4J-P5Te%fddD` zi4*^e-@>?w$VjiB8SC}<>+g%BpN!%$=_P4GdP=gS6yHdxz9S{ik3E0w`J4Ft0b_rN z&q(s&j*9r4>M`*Nu_Ti1z6XIlN&^K=v!j$u0JX7^%@EqiF7y&CyVQ0AY##hqs8P&T z;u1nM-YH({TkZICQhv@B(D{I(jEz}|kDDfn$}67DKUHEJKqL9ZL?bBPFXUTMoQeKB zF3*&FO?gp}Q7quvq`n8=8&M2Izu@w{lJc~m$S!n5Q3dUy)#!ub3%`Vbo)~p7o(!(p z=mtaux>bCJ+8R3K@fxvHdA{9ldzhA+E4b;^zRkmKVaVHb8v&~}=62sCH<+LNZ>hM! zteln8!wbk>k&V4WaCEBMj;@DrgL!AQaYJ6Ob%=nYFV(pi9DHf}D+prhYQHkBQGBqZ z&U3p7+KO`@+Nike?#npp5BV+~9XtMN#O28_OaFwrv4(vJXlhRh5Z7ro{g)5G{sE(v Bo`wJb 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 8da3476eccc11ae415e7a1715fef184c259ee037..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 514 zcmYL_!A{#i5Qg0fMCBvr9=5kcbYeSD2%F~8Bp{@irl~>Vgcf^n7TLSj?u3vB>A7#l zd-T?EkjSt7w6m*!W@q;GaPLpR`pA4{zB2pFcc#^xIbePh6Y^)ti6Co(zaIF8u}3w+jX-JS0n!~^KZA~}~yaul<|neqggQ^r?{tdnA4 zAJCEI-7BXp8%()UB|?U(mSVD^d?`BDNK15;GKKGo&XTB+QM6vKd(@WFkNDEdZ5_F{ zA}*@i$pDMmN1U`R7@6w+dKPuxUyx#Z6Q)<`boVDoFAm4n5E|}t)9}EAFBCPE(q<^~ zrE(r=bdz1cVCQR_cti(NliNa@Qi{QYrf^=ZoT}i$y4v$=&GzU={h@dZM;#-+j6~8M NhQTG4_>9H}{{b-rl4t+` 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 6ded16ed76760a63915b1162ee0468216080117b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1202 zcmZvb&ubGw6vx-!8bwgVlZWS_r9~#$P3sS~jfys6(O}S6@i^U`rjzc@EHjhFgq{TP zu6Pg;PyPk|3EGo*6$J65_(yp0J25q>_~7L;Z{|C1-psyyJGuWw06PXh1K)z5fPaO1 zqdh@z2s{gV%`A8dyZ}yvw?G07cmRAp;>!`=fK!-%3zoo-;BoLX_!IsEeiZSieSg-! zfTt0E2P@z&(ARZt|DQT;f`<_|!6V>9unZ=k&;Jbc^}Pm>dRRM#f6dqE@8Rtr9O;MV zbNT&y;l3Vk{+wV*I4(0AEGz4HmT@Pw+7(dx9|b9%3tR9+>@3roHZe`@PDF*#g)pu^ z)EeB1b zJ0fvxIb|!tSll3{2Jdr4^`*wW(p^z#<5ebWG#^KE7>6N*?5^09KJPBw9IHlDjpFe9xe!*m&8=fC!Q_1~pnMiY6$woOUMOK;pn=z&$D>arI_3;Zu<*;;JD~C5`t$u;) zJMqY28<%Q0p=Z{|#hSgP~Q>of9U0Ri{)XchuXY7VHxs6E`!_d~| z7I3Uzsm-WbEut$F5|*c;@N%t6)6>J@Vr||JXZ&=y7=^U8HJtaFa29(a?5WN!l!AMM zWFXq_-)%qck6M%`9X>fd>LN_bUDJgb2(`{ZyX~u_*+Z=1ezoMY22mPcY zg1YN(NckUwwFr?n6=8hbJlTkR4Y@+pmmHbx+z2K3Ud88!IVDr;2A{fZo!C Iwk`+10Z6e?p#T5? 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 6ce504dfebff458a4ae22012369b9c5a7c070d1c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 865 zcmY*XO>Yx15H(P~mJg{F5czZ@^99J8&2H z2|NIP1J{8&S885g@I&xZ>~DeZgWKQ_zyP=f|Hsu@=NEVr{vWW{*|L4o&|>IFVa&%ts<4 zCp;?!Igw&c<$sA(s8eaQ%7t>vyh0XKX-6lzRB40sjeal2j&)OZB8 z_cj=aLL0|=b}Cc$s+?Lj)CmpxZ-%UGL{%Q^a3>PljN%t8+GEX^G~P?%U96)Bfovd7 zrPp1F+hxs|Hsd6E{w#t8$J{zLG+bHqtW81(dL)d~V9Slv2vF0KPX!wao+q@As>*38 ztf1R7=ZYi@=ks~Pc?CHUXN|GWLsRFPF!v2Hk>)nc7CK?!!kwjRLJJr4y1m28M~E9y z(ALV~?bz_VK!;A8xvppe)ij~|Bk6*ERvMnM zBW-eX85d 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 b40158089f58a630ccadc8d77060a068860c1e30..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1124 zcmZvaPiqrF7{*tvR^uPgdQkB2ic}h8vPoKN*-{T}Qz$kVV(e8W*=ahmJG0EpHm!K{ z>PbB4K@TE+06#*H-aUyI@q75pCTSY*g*U(X^XA$29iHDeX5I&gE66*@*U0P0Uq~Nx zCJ1K1yP&TrgEzrt@ILqiB+!88!FMBm81XYWkMpl!3H$+G1Al^_kbjXEv43-JsQ(tc zh5bh`1iyp#z(1hZpPd=<>WFjT1DxLmy?z6n16v@Zi{7z339sSj@NoeN*&;6C*Z==4 z@^W!9>?_z5j?2Ub+sZngB-}}@rZyD+r-Bquh0SQUfC zYJ(l#6-ltmlUxM5QVd9*YJh|~kVdOiC^!B9s*KBd(ohFMCNomn;hVXND?!WXm!jv` zcFcB#v6vvDCO_he8k@~$rMAelaja?kGG^;}-?EO5sMLDeVH-vi6SGb3L`3y!ZJAY< zSp5;zmZI7s*3~KsSz8=PuRB$@$m%t!*P`mf2USFAhg-)whAWF_^smv@T@0^5%Z=11 zQ2m_u1?vc&M$|%Ac|R9c(89XmuVhlDg?;C;C=3UKLB)9~xhD=QJ)MSTC}P6YPsT)? z+AtXjhM9Y@-VVzrUx=tUDK)p7jmewTD%H}4Rt~SqI!74>cH+>5S;D1SrQSX_R=Bn2 zoh`O9sq;!55v_EkE47l`@Put?liG+>R&4EBeU*mGwFO0wsa9Ss6&6eO z#n>AB_}lRpJwBzFTN;{g`oiL7>VjfDu@Pn5@Q5ac;|kX>LT03hc`PhVifte<^C{11 r6EqHGSDM0HzBez<)2_tRcuSAmIO=HRJeYFmJhTso_VAL1$2#~2rZP5^ 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 f2a3cc7c7a40aa023455feb22289968d44ef1822..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 719 zcmY+C&2AGh5XTJ^Ay%9?b1+D)c7>evZVD7fOC_3AibT{XEV&{#>!z-}_R4me7WDz( z2oe_#oO_}8FMK!1Qj8oC37^;crKMgW9>XwihF4^ znsc=hXfDMX%YWvv(C5+`T?_4T)h(P_b0!v^j4Lu1*1>XyC;XCYJQ_~kMl;bE>&e6| zWkp`EmX4H$;b?kPk^?K+?Z}XO!EjEq=Y;N(`~}W-S=NU!rI1Kw;#`Kh|K;^bp5Z)W z^x0Di7QNxllhShS;10$zJTu3_dIRdXl?D>@a>bW|l!DhGTyrhqlyNsoaD3{0!_suU zUiW;cBu~UeZ(-`xZfe-H4i_V$s$HtOdJud+J4%zk8!+6?M3eDkbn_%xk46VZdw4oh zUN&%FFD`uAC@%E?FHX62!WZw#L$Y_17Y=bEEE(yAsia;qymu^pG*v6h6*)Avb`0yL zbzRXP;LWgzbx~ydl*MtZw=+s#WiOMftIjD3n(XYv`Y~vd?B^^?l0k$*BPc1mM&K6y ZpDWX<_#oTwhA?Q?5)cVaEh@P}e*nJ@$Y1~f 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 59a1df5fac659ddf5ba3827e1f0ae974d3a56421..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 840 zcmZWl!EO^V5H+O;X~hAR0~ZeF(5ew~cfC!aY_q9E(@K?yh(hSyP2ALIV@I~PX{8_mD8P9t&YyX^?evcro0B!*)fUAH6 zki{!NR=);Z1H1)f+K+%)z-PeCDTICiXZ>H0&j9}hz79Nf8KENZ4d6?_K)HV!I17-C zqQWf`i9wsvSe7Kr3MJ7NOHz)u1n*(-*E!~LPiQ4OTw2^38*5rUq`VT@n;Ycn{NJL>D0s z0uYiq-xJx~e{_o^q&TEeuyiMY@E$T_NkcPf;0{VhxUROjwhGuVEfff3J7sN78k}{Y zof;$HC+Byq?MA-e>-83FW*0krf1#;5z8)F1-^p%6c&lUlWIV*zsb9Dl8DX7z)y?Yq zT(>Ow@Ps_OLIq1 zq9Hy!99hb=SO5zhTjDs#TDh(qFHP+C3m4}w7uKBbEX6Qk6^Afjv9RJH_s;c)&)u>6 z?gnW1V)!gCPTiUN>b|*S=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 bea4d564a179c1b9f719624c101e3adba3c977ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 570 zcmYLF!H&}~5Df@~6mFb3%mt|xOk<}7in|dK+pbiJh|mTkPRMP%S);^`YA`AU-30CH{F7ML+0#P8?AI$p`fH z2h3HFy75ur>@T$qxUBHIa$Z{_AeXn&z+#@S7?8Emhl z^D1QD$_t#HeEkrY%HhInZKX{uV7k#EE}ET_4PIE+dI6?8NS{q+a1677dBqvaG7cYs i0a=bRCCN{640m_;sR^Z0N{xrJI4W%A?8aChbo38^k)E>v 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 3988920fdf20cd1c2af1a0df6799848f00d6c450..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 544 zcmYL_&u$Yj5XKD!A?>jeHx53wLX-7|0Kri%Bq^%YEm2r<1vi;)jCSpnJ!#r!;LN4B zz6KmP@E%Bg6J`_CjP%p|(WlQd{(Jc3hu}D1UNAl8DRaiO@s)YT7^a6=B8Ssm~*&9$j=)RR%PiL>VR*Ho%!zpV2Q6p*0t0!@(FE&R;L5cr5ehW5mUD~bOpOucQCrJ%Qyj}It@FUkk;*OfXh0j)ql(M%6^%jr^gR(Xt|vv`Ds4c|4PZqk_ hwrw0{1Gy`QYLJN0%1W~LKYx?>VE^1n3irRhi+`DLnsopG 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 de4c1ee0acc1fb67d9c4ef4b32ddd866c3b0bda8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 757 zcmY+CO=}ZD7{^C#6;|;e9zBc)p+zRUn^s#kZzz^UI@Dp%=zrb-|_5ec9fRn&s7{5O_)h*CNF#ZI38gv`f_Wc62 zzGF~mnFOShTD$HHVAr!@{dS|s4CS##WuXm?V`{h*s7~XQp*m+h%=gV>Cc0cn(P6^i zXs5Bxl}Tw_5?z$=1Pf_!Q>G%ypsJGBS;LTWMCwdwFb;5qu2X?a#mW_@#uBLvspuAu z$c40}NhkyCR4<35px9(1q(}`5aMttB6K|1Zm$1JW_zRGG9u$%q>vHS+U)=)9`Z((c z-np|LgmaNqa6xY4FcGn2m>u8`%uI=hJ`Q=}vsGUB2Y;N?|roNAmZ8j}^N zIy%52nGAK_&*5pB_i_#zZQmb1yp0AQAB^AJLxY=N(eUNl(dMJ+#Au^GcztK|;_kTr b4l4hAdo{e(hljBL7Y{c-44yn4ZET@`FW%tg 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',