Remove the installation app

This commit is contained in:
Roberto Rosario
2016-10-26 23:04:59 -04:00
parent 62c0918acf
commit f66f815ba6
53 changed files with 71 additions and 3942 deletions

70
docs/releases/2.2.rst Normal file
View File

@@ -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 <https://gitlab.com/mayan-edms/mayan-edms/issues/311>`_ acl page return ContentType:Document
.. _PyPI: https://pypi.python.org/pypi/mayan-edms/

View File

@@ -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

View File

@@ -1,5 +0,0 @@
from __future__ import unicode_literals
from .classes import PropertyNamespace # NOQA
default_app_config = 'installation.apps.InstallationApp'

View File

@@ -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
)

View File

@@ -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

View File

@@ -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'
)

View File

@@ -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 <voulnet@gmail.com>, 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"

View File

@@ -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 <inactive+iliicho7@transifex.com>, 2012
# Pavlin Koldamov <pkoldamov@gmail.com>, 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"

View File

@@ -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 <jomer@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"

View File

@@ -1,171 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Translators:
# René Rovsing Bach <reroba@outlook.com>, 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"

View File

@@ -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 <mbehrle@m9s.biz>, 2014
# Stefan Lodders <sl@suchreflex.de>, 2012
# Tobias Paepke <tobias.paepke@paepke.net>, 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 <mathiasb@m9s.biz>\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"

View File

@@ -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"

View File

@@ -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 <igor@tamarapatino.org>, 2015
# jmcainzos <jmcainzos@vodafone.es>, 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"

View File

@@ -1,172 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Translators:
# Mehdi Amani <MehdiAmani@toorintan.com>, 2014
# Mohammad Dashtizadeh <mohammad@dashtizadeh.net>, 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"

View File

@@ -1,173 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Translators:
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2014
# PatrickHetu <patrick.hetu@gmail.com>, 2012
# SadE54 <yannsuisini@gmail.com>, 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"

View File

@@ -1,170 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-27 14:13-0400\n"
"PO-Revision-Date: 2015-08-20 19:11+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/"
"language/hu/)\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: apps.py:16 permissions.py:7
msgid "Installation"
msgstr ""
#: apps.py:22 apps.py:29
msgid "Label"
msgstr ""
#: apps.py:25
msgid "Items"
msgstr ""
#: apps.py:30
msgid "Value"
msgstr ""
#: apps.py:41
msgid "VirtualEnv"
msgstr ""
#: apps.py:46
msgid "pip not found."
msgstr ""
#: links.py:12
msgid "Installation details"
msgstr ""
#: links.py:15
msgid "Details"
msgstr "Részletek"
#: links.py:20 views.py:13
msgid "Installation property namespaces"
msgstr ""
#: permissions.py:10
msgid "View installation environment details"
msgstr ""
#: views.py:27
#, python-format
msgid "Installation namespace details for: %s"
msgstr ""
#~ msgid "LSB OS"
#~ msgstr "LSB OS"
#~ msgid "Distributor ID"
#~ msgstr "Distributor ID"
#~ msgid "Description"
#~ msgstr "Description"
#~ msgid "Release"
#~ msgstr "Release"
#~ msgid "Codename"
#~ msgstr "Codename"
#~ msgid "System info"
#~ msgstr "System info"
#~ msgid "OS architecture"
#~ msgstr "OS architecture"
#~ msgid "Python version"
#~ msgstr "Python version"
#~ msgid "Hostname"
#~ msgstr "Hostname"
#~ msgid "Platform"
#~ msgstr "Platform"
#~ msgid "Machine"
#~ msgstr "Machine"
#~ msgid "Processor"
#~ msgstr "Processor"
#~ msgid "Number of CPUs"
#~ msgstr "Number of CPUs"
#~ msgid "Total physical memory"
#~ msgstr "Total physical memory"
#~ msgid "Disk partitions"
#~ msgstr "Disk partitions"
#~ msgid "tesseract version"
#~ msgstr "tesseract version"
#~ msgid "not found"
#~ msgstr "not found"
#~ msgid "error getting version"
#~ msgstr "error getting version"
#~ msgid "unpaper version"
#~ msgstr "unpaper version"
#~ msgid "pdftotext version"
#~ msgstr "pdftotext version"
#~ msgid "Mayan EDMS"
#~ msgstr "Mayan EDMS version"
#~ msgid "Mayan EDMS version"
#~ msgstr "Mayan EDMS version"
#~ msgid "Git repository"
#~ msgstr "Running from a Git repository"
#~ msgid "Running from a Git repository"
#~ msgstr "Running from a Git repository"
#~ msgid "Repository remotes"
#~ msgstr "Repository remotes"
#~ msgid "Repository remotes URLs"
#~ msgstr "Repository remotes URLs"
#~ msgid "Branch"
#~ msgstr "Branch"
#~ msgid "HEAD commit hex SHA"
#~ msgstr "HEAD commit hex SHA"
#~ msgid "HEAD commit author"
#~ msgstr "HEAD commit author"
#~ msgid "HEAD commit authored date"
#~ msgstr "HEAD commit authored date"
#~ msgid "HEAD commit committer"
#~ msgstr "HEAD commit committer"
#~ msgid "HEAD commit committed date"
#~ msgstr "HEAD commit committed date"
#~ msgid "HEAD commit message"
#~ msgstr "HEAD commit message"
#~ msgid "Installed via fabfile"
#~ msgstr "Installed via fabfile"
#~ msgid "Installation environment details"
#~ msgstr "Installation environment details"

View File

@@ -1,170 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-27 14:13-0400\n"
"PO-Revision-Date: 2015-08-20 19:11+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/"
"language/id/)\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: apps.py:16 permissions.py:7
msgid "Installation"
msgstr ""
#: apps.py:22 apps.py:29
msgid "Label"
msgstr ""
#: apps.py:25
msgid "Items"
msgstr ""
#: apps.py:30
msgid "Value"
msgstr ""
#: apps.py:41
msgid "VirtualEnv"
msgstr ""
#: apps.py:46
msgid "pip not found."
msgstr ""
#: links.py:12
msgid "Installation details"
msgstr ""
#: links.py:15
msgid "Details"
msgstr "Detail"
#: links.py:20 views.py:13
msgid "Installation property namespaces"
msgstr ""
#: permissions.py:10
msgid "View installation environment details"
msgstr ""
#: views.py:27
#, python-format
msgid "Installation namespace details for: %s"
msgstr ""
#~ msgid "LSB OS"
#~ msgstr "LSB OS"
#~ msgid "Distributor ID"
#~ msgstr "Distributor ID"
#~ msgid "Description"
#~ msgstr "Description"
#~ msgid "Release"
#~ msgstr "Release"
#~ msgid "Codename"
#~ msgstr "Codename"
#~ msgid "System info"
#~ msgstr "System info"
#~ msgid "OS architecture"
#~ msgstr "OS architecture"
#~ msgid "Python version"
#~ msgstr "Python version"
#~ msgid "Hostname"
#~ msgstr "Hostname"
#~ msgid "Platform"
#~ msgstr "Platform"
#~ msgid "Machine"
#~ msgstr "Machine"
#~ msgid "Processor"
#~ msgstr "Processor"
#~ msgid "Number of CPUs"
#~ msgstr "Number of CPUs"
#~ msgid "Total physical memory"
#~ msgstr "Total physical memory"
#~ msgid "Disk partitions"
#~ msgstr "Disk partitions"
#~ msgid "tesseract version"
#~ msgstr "tesseract version"
#~ msgid "not found"
#~ msgstr "not found"
#~ msgid "error getting version"
#~ msgstr "error getting version"
#~ msgid "unpaper version"
#~ msgstr "unpaper version"
#~ msgid "pdftotext version"
#~ msgstr "pdftotext version"
#~ msgid "Mayan EDMS"
#~ msgstr "Mayan EDMS version"
#~ msgid "Mayan EDMS version"
#~ msgstr "Mayan EDMS version"
#~ msgid "Git repository"
#~ msgstr "Running from a Git repository"
#~ msgid "Running from a Git repository"
#~ msgstr "Running from a Git repository"
#~ msgid "Repository remotes"
#~ msgstr "Repository remotes"
#~ msgid "Repository remotes URLs"
#~ msgstr "Repository remotes URLs"
#~ msgid "Branch"
#~ msgstr "Branch"
#~ msgid "HEAD commit hex SHA"
#~ msgstr "HEAD commit hex SHA"
#~ msgid "HEAD commit author"
#~ msgstr "HEAD commit author"
#~ msgid "HEAD commit authored date"
#~ msgstr "HEAD commit authored date"
#~ msgid "HEAD commit committer"
#~ msgstr "HEAD commit committer"
#~ msgid "HEAD commit committed date"
#~ msgstr "HEAD commit committed date"
#~ msgid "HEAD commit message"
#~ msgstr "HEAD commit message"
#~ msgid "Installed via fabfile"
#~ msgstr "Installed via fabfile"
#~ msgid "Installation environment details"
#~ msgstr "Installation environment details"

View File

@@ -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"

View File

@@ -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"

View File

@@ -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 <doublemiu@gmail.com>, 2015
# mic <winterfall24@gmail.com>, 2013,2015
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 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 <w.warczakowski@gmail.com>\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"

View File

@@ -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ó <vfigueiro@gmail.com>, 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"

View File

@@ -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 <rogerio@falconeit.com.br>, 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"

View File

@@ -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 <gcbadea@gmail.com>, 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"

View File

@@ -1,172 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mayan EDMS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-27 14:13-0400\n"
"PO-Revision-Date: 2016-03-21 21:05+0000\n"
"Last-Translator: Roberto Rosario\n"
"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/"
"language/ru/)\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
"%100>=11 && n%100<=14)? 2 : 3);\n"
#: apps.py:16 permissions.py:7
msgid "Installation"
msgstr "установка"
#: apps.py:22 apps.py:29
msgid "Label"
msgstr ""
#: apps.py:25
msgid "Items"
msgstr ""
#: apps.py:30
msgid "Value"
msgstr "Значение"
#: apps.py:41
msgid "VirtualEnv"
msgstr ""
#: apps.py:46
msgid "pip not found."
msgstr ""
#: links.py:12
msgid "Installation details"
msgstr ""
#: links.py:15
msgid "Details"
msgstr "Детали"
#: links.py:20 views.py:13
msgid "Installation property namespaces"
msgstr ""
#: permissions.py:10
msgid "View installation environment details"
msgstr "Подробности среды установки"
#: views.py:27
#, python-format
msgid "Installation namespace details for: %s"
msgstr ""
#~ msgid "LSB OS"
#~ msgstr "LSB OS"
#~ msgid "Distributor ID"
#~ msgstr "Distributor ID"
#~ msgid "Description"
#~ msgstr "Description"
#~ msgid "Release"
#~ msgstr "Release"
#~ msgid "Codename"
#~ msgstr "Codename"
#~ msgid "System info"
#~ msgstr "System info"
#~ msgid "OS architecture"
#~ msgstr "OS architecture"
#~ msgid "Python version"
#~ msgstr "Python version"
#~ msgid "Hostname"
#~ msgstr "Hostname"
#~ msgid "Platform"
#~ msgstr "Platform"
#~ msgid "Machine"
#~ msgstr "Machine"
#~ msgid "Processor"
#~ msgstr "Processor"
#~ msgid "Number of CPUs"
#~ msgstr "Number of CPUs"
#~ msgid "Total physical memory"
#~ msgstr "Total physical memory"
#~ msgid "Disk partitions"
#~ msgstr "Disk partitions"
#~ msgid "tesseract version"
#~ msgstr "tesseract version"
#~ msgid "not found"
#~ msgstr "not found"
#~ msgid "error getting version"
#~ msgstr "error getting version"
#~ msgid "unpaper version"
#~ msgstr "unpaper version"
#~ msgid "pdftotext version"
#~ msgstr "pdftotext version"
#~ msgid "Mayan EDMS"
#~ msgstr "Mayan EDMS version"
#~ msgid "Mayan EDMS version"
#~ msgstr "Mayan EDMS version"
#~ msgid "Git repository"
#~ msgstr "Running from a Git repository"
#~ msgid "Running from a Git repository"
#~ msgstr "Running from a Git repository"
#~ msgid "Repository remotes"
#~ msgstr "Repository remotes"
#~ msgid "Repository remotes URLs"
#~ msgstr "Repository remotes URLs"
#~ msgid "Branch"
#~ msgstr "Branch"
#~ msgid "HEAD commit hex SHA"
#~ msgstr "HEAD commit hex SHA"
#~ msgid "HEAD commit author"
#~ msgstr "HEAD commit author"
#~ msgid "HEAD commit authored date"
#~ msgstr "HEAD commit authored date"
#~ msgid "HEAD commit committer"
#~ msgstr "HEAD commit committer"
#~ msgid "HEAD commit committed date"
#~ msgstr "HEAD commit committed date"
#~ msgid "HEAD commit message"
#~ msgstr "HEAD commit message"
#~ msgid "Installed via fabfile"
#~ msgstr "Installed via fabfile"
#~ msgid "Installation environment details"
#~ msgstr "Installation environment details"

View File

@@ -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"

View File

@@ -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"

View File

@@ -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 <agile.guo@gmail.com>, 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"

View File

@@ -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')
)

View File

@@ -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<namespace_id>\w+)/details/$', NamespaceDetailView.as_view(),
name='namespace_details'
),
)

View File

@@ -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()

View File

@@ -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
)

View File

@@ -86,7 +86,6 @@ INSTALLED_APPS = (
'documents',
'events',
'folders',
'installation',
'linking',
'mailer',
'metadata',