diff --git a/MANIFEST.in b/MANIFEST.in index 6cd10b511cf..c864492136d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,18 +1,13 @@ -include rpminstall_sh.txt # TODO do we need this file ? +graft debian +graft doc +graft install +graft openerp +graft tests +graft win32 include README include LICENSE include MANIFEST.in -include setup.nsi -include setup.cfg -#include openerp/server.cert -#include openerp/server.pkey -#include openerp/gpl.txt -include man/openerp-server.1 -include man/openerp_serverrc.5 -recursive-include pixmaps *bmp *ico *png -recursive-include win32 *.py *.bat -recursive-include openerp *css *csv *html *png *po *pot -recursive-include openerp *rml *rng *sql *sxw *xml *xsl *yml -graft debian -graft doc +include gunicorn.conf.py +include openerp-server +include setup* global-exclude *pyc *~ # Exclude possible garbage from previous graft. diff --git a/README b/README index 5725ce9f866..a6fe10c8ffb 100644 --- a/README +++ b/README @@ -1,17 +1,138 @@ -About OpenERP ---------------- - -OpenERP is a free Enterprise Resource Planning and Customer Relationship -Management software. It is mainly developed to meet changing needs. - -The main functional features are: CRM & SRM, analytic and financial accounting, -double-entry stock management, sales and purchases management, tasks automation, -help desk, marketing campaign, ... and vertical modules for very specific -businesses. - -Technical features include a distributed server, flexible workflows, an object -database, dynamic GUIs, customizable reports, NET-RPC and XML-RPC interfaces, ... - -For more information, please visit: -http://www.openerp.com - +About OpenERP +------------- + +OpenERP is a free Enterprise Resource Planning and Customer Relationship +Management software. It is mainly developed to meet changing needs. + +The main functional features are: CRM & SRM, analytic and financial accounting, +double-entry stock management, sales and purchases management, tasks automation, +help desk, marketing campaign, ... and vertical modules for very specific +businesses. + +Technical features include a distributed server, flexible workflows, an object +database, dynamic GUIs, customizable reports, NET-RPC and XML-RPC interfaces, ... + +For more information, please visit: +http://www.openerp.com + +OpenERP Quick Installation Guide +--------------------------------- + +This file contains a quick guide to configure and install the OpenERP server. + +Required dependencies: +--------------------- + +You need the following software installed: + + * Python 2.5 or 2.6 + * Postgresql 8.2 or above + * Psycopg2 python module + * Reportlab pdf generation library for python + * lxml python module + * pytz python module + * PyYaml python module (install with: easy_install PyYaml) + +Some dependencies are only required for specific purposes: + +for rendering workflows graphs, you need: + * graphviz + * pyparsing + +For Luxembourg localization, you also need: + * pdftk (http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/) + +for generating reports using non .jpg images, you need: + * Python Imaging Library for python + +For Debian-based distributions, the required packages can be installed with the +following command: + + #> apt-get install -y postgresql graphviz python-psycopg2 python-lxml python-tz python-imaging + +For Fedora +if they are not installed, install: +python and postgresql + +uses yum or you can recover required packages on fedora web site in "core" or "extra" repository : +postgresql-python +python-lxml +python-imaging +python-psycopg2 +python-reportlab +graphviz +You can find pyparsing at http://pyparsing.sourceforge.net/ + +1. Check that all the required dependencies are installed. + +2. Launch the program "python ./bin/openerp-server.py -r db_user -w db_password --db_host 127.0.0.1". +See the man page for more information about options. + +3. Connect to the server using the GUI client. And follow the instructions to create a new database. + +Installation Steps +------------------ + +1. Check that all the required dependencies are installed. + +2. Create a postgresql database. + +The default database name is "terp". If you want to use another name, you +will need to provide it when launching the server (by using the commandline +option --database). + +To create a postgresql database named "terp" using the following command: + $ createdb --encoding=UNICODE terp + +If it is the first time you use postgresql you might need to create a new user +to the postgres system using the following commands (where myusername is your +unix user name): + + $ su - + # su - postgres + $ createuser openerp + Shall the new user be allowed to create databases? (y/n) y + Shall the new user be allowed to create more new users? (y/n) y + CREATE USER + $ logout + # logout + +3. Launch service daemon by "service openerp-server start". + +The first time it is run, the server will initialise the database with all the default values. + +4. Connect to the server using the GUI client. + +There are two accounts by default: + * login: admin, password:admin + * login: demo, password:demo + +Some instructions to use setup.py for a user-install. +This file should/will be moved on a proper documentation place later. + + +- Possibly clean any left-over of the previous build. + > rm -rf dist openerp_server.egg-info + +- Possibly copy the addons in the server if we want them to be packaged + together: + > rsync -av --delete \ + --exclude .bzr/ \ + --exclude .bzrignore \ + --exclude /__init__.py \ + --exclude /base \ + --exclude /base_quality_interrogation.py \ + openerp/addons + +- Create the user-local directory where we want the package to be installed: + > mkdir -p /home/openerp/openerp-tmp/lib/python2.6/site-packages/ + +- Use --prefix to specify where the package is installed and include that + place in PYTHONPATH: + > PYTHONPATH=/home/openerp/openerp-tmp/lib/python2.6/site-packages/ \ + python setup.py install --prefix=/home/openerp/openerp-tmp + +- Run the main script, again specifying the PYTHONPATH: + > PYTHONPATH=/home/openerp/openerp-tmp/lib/python2.6/site-packages/ \ + /home/openerp/openerp-tmp/bin/openerp-server + diff --git a/debian/README.source b/debian/README.source deleted file mode 100644 index 18b6b245bf0..00000000000 --- a/debian/README.source +++ /dev/null @@ -1,37 +0,0 @@ -Package Repositories --------------------- - -Backports for the current stable debian distribution as well as snapshots of -unreleased versions may be available in repositories listed on the maintainers -homepage. The current URL of the maintainer homepage can be seen in -debian/copyright. - - -Source Access -------------- - -You can obtain the sources of this package with: - - $ apt-get source ${PACKAGE} - -whereas '${PACKAGE}' has to be replaced with the actual name of the package. - -This package is maintained with the Git version control system. The current git -source tree can be obtained with: - - $ git clone ${GIT_URI} - -whereas '${GIT_URI}' has to be replaced with the actual URI for the Git -repository. The current Git URI can be seen in debian/control in the extracted -package sources. - -More information about Git can be found in the git-core package. - -This package may use the Quilt patch system to manage all modifications to the -upstream source. Changes, if any, are stored in the source package as diffs in -debian/diff and are applied during the build. Current modifications can be -applied to the source tree with: - - $ QUILT_PATCHES=debian/patches quilt push -a - -More information about Quilt can be found in the quilt package. diff --git a/debian/changelog b/debian/changelog index f9a2355cf62..0ee8e0e3295 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +openerp (6.1-1) testing; urgency=low + + * New major version, new packaging. + + -- Antony Lesuisse Sat, 01 Oct 2011 12:31:00 +0100 + openerp-server (6.0.2-1) testing; urgency=low * Using upstream version 6.0.2 diff --git a/debian/control b/debian/control index 11c98536526..3165879fa3f 100644 --- a/debian/control +++ b/debian/control @@ -1,40 +1,49 @@ -Source: openerp-server +Source: openerp Section: net Priority: optional -Maintainer: OpenERP SA. -Uploaders: Xrg -Build-Depends: debhelper (>= 7.0.50~), python -Build-Depends-Indep: - python-libxslt1, python-lxml, python-pychart, python-pydot, python-psycopg2, - python-reportlab +Maintainer: OpenERP SA +Build-Depends: debhelper (>= 7.0.50~), python, rsync Standards-Version: 3.9.1 Homepage: http://www.openerp.com/ -Vcs-Browser: http://git.hellug.gr/?p=xrg/openobject-server;a=summary -Vcs-Git: http://members.hellug.gr/xrg/repos/openobject-server -Vcs-Bzr: https://code.launchpad.net/openobject-server +Vcs-Bzr: https://launchpad.net/openobject -Package: openerp-server +Package: openerp Section: net Architecture: all Depends: - ${misc:Depends}, adduser, python, python-dateutil, python-libxslt1, - python-lxml, python-psycopg2, python-pydot, python-pychart, python-reportlab, - python-tz, python-pyparsing, python-yaml, python-mako, - postgresql-client (>=8.2) -Conflicts: tinyerp-server -Replaces: tinyerp-server + ${misc:Depends}, + adduser, + python, + postgresql-client, + python-dateutil, + python-gdata, + python-ldap, + python-libxslt1, + python-lxml, + python-mako, + python-openid, + python-psycopg2, + python-pybabel, + python-pychart, + python-pydot, + python-pyparsing, + python-reportlab, + python-simplejson, + python-tz, + python-vobject, + python-webdav, + python-werkzeug, + python-yaml, + python-zsi +Conflicts: tinyerp-server, openerp-server, openerp-web +Replaces: tinyerp-server, openerp-server, openerp-web Recommends: - graphviz, ghostscript, postgresql, python-imaging, - python-matplotlib -Suggests: openerp-client -Description: Enterprise Resource Management (server) - Open ERP, previously known as TinyERP, is a complete ERP and CRM. The main + graphviz, ghostscript, postgresql, python-imaging, python-matplotlib +Description: OpenERP Enterprise Resource Management + OpenERP, previously known as TinyERP, is a complete ERP and CRM. The main features are accounting (analytic and financial), stock management, sales and purchases management, tasks automation, marketing campaigns, help desk, POS, etc. Technical features include a distributed server, flexible workflows, an object database, a dynamic GUI, customizable reports, and NET-RPC and XML-RPC interfaces. - . - This package contains the Open ERP server, install openerp-client package for - the client. diff --git a/debian/local/openerp-server.conf b/debian/local/openerp-server.conf deleted file mode 100644 index ffb6ed49db3..00000000000 --- a/debian/local/openerp-server.conf +++ /dev/null @@ -1,55 +0,0 @@ -# /etc/openerp-server.conf(5) - configuration file for openerp-server(1) - -[options] -# Enable the debugging mode (default False). -verbose = False -debug_mode = False - -# The file where the server pid will be stored (default False). -#pidfile = /var/run/openerp.pid - -# The file where the server log will be stored (default False). -logfile = /var/log/openerp-server.log - -# The unix account on behalf openerp is running. -process_user = openerp - -# The IP address on which the server will bind. -# If empty, it will bind on all interfaces (default empty). -interface = localhost - -# The TCP port on which the server will listen (default 8069). -#port = 8070 - -# Enable debug mode (default False). -debug_mode = False - -# Launch server over https instead of http (default False). -secure = False - -# Specify the SMTP server for sending email (default localhost). -smtp_server = localhost - -# Specify the SMTP user for sending email (default False). -smtp_user = False - -# Specify the SMTP password for sending email (default False). -smtp_password = False - -# Specify the database name. -#db_name = openerp - -# Specify the database user name (default None). -db_user = openerp - -# Specify the database password for db_user (default None). -db_password = - -# Specify the database host (default localhost). -db_host = - -# Specify the database port (default None). -db_port = 5432 - -# Specify the price accuracy. -#price_accuracy = diff --git a/debian/openerp-server.config b/debian/openerp-server.config deleted file mode 100644 index cf081ab3861..00000000000 --- a/debian/openerp-server.config +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -set -e - -. /usr/share/debconf/confmodule - -db_input low openerp-server/username || true -db_go - -db_stop diff --git a/debian/openerp-server.docs b/debian/openerp-server.docs deleted file mode 100644 index d5ad552bfce..00000000000 --- a/debian/openerp-server.docs +++ /dev/null @@ -1,2 +0,0 @@ -doc/migrate -doc/tests diff --git a/debian/openerp-server.examples b/debian/openerp-server.examples deleted file mode 100644 index c7f075ec127..00000000000 --- a/debian/openerp-server.examples +++ /dev/null @@ -1 +0,0 @@ -debian/openerp-server.preseed diff --git a/debian/openerp-server.install b/debian/openerp-server.install deleted file mode 100644 index 78a4a648a06..00000000000 --- a/debian/openerp-server.install +++ /dev/null @@ -1 +0,0 @@ -doc/openerp-server.conf /etc diff --git a/debian/openerp-server.links b/debian/openerp-server.links deleted file mode 100644 index 67620d22397..00000000000 --- a/debian/openerp-server.links +++ /dev/null @@ -1,2 +0,0 @@ -/usr/share/man/man5/openerp_serverrc.5.gz /usr/share/man/man5/openerp-server.conf.5.gz -/var/lib/openerp-server/filestore /usr/lib/openerp-server/filestore diff --git a/debian/openerp-server.lintian-overrides b/debian/openerp-server.lintian-overrides deleted file mode 100644 index 25b1165c4be..00000000000 --- a/debian/openerp-server.lintian-overrides +++ /dev/null @@ -1,7 +0,0 @@ -# Add-on directories needs data directories, and sometimes they are -# (intentionally) empty, hence overriting the lintian warning. -openerp-server: package-contains-empty-directory -# Add-on directoires contain images sometimes, but it's nothing that is -# worthwile to be splittet out to /usr/share as it's all manual work for each -# release. -openerp-server: image-file-in-usr-lib diff --git a/debian/openerp-server.postinst b/debian/openerp-server.postinst deleted file mode 100644 index a1e5317b8fc..00000000000 --- a/debian/openerp-server.postinst +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/sh - -set -e - -. /usr/share/debconf/confmodule - -CONFFILE="/etc/openerp-server.conf" -LOGFILE="/var/log/openerp-server.log" - -case "${1}" in - configure) - db_version 2.0 - - db_get openerp-server/username - _USERNAME="${RET:-openerp}" - - db_stop - - if ! getent passwd | grep -q "^${_USERNAME}" - then - adduser --system --no-create-home --quiet --gecos 'Open ERP server' --group ${_USERNAME} - else - echo "Open ERP user (${_USERNAME}) already exists, doing nothing." - fi - - sed -i -e "s|^process_user.*$|process_user = ${_USERNAME}|" ${CONFFILE} - - # Creating log file - touch ${LOGFILE} - chown ${_USERNAME}:adm ${LOGFILE} - chmod 0640 ${LOGFILE} - - # Creating local storage directory - mkdir -p /var/lib/openerp-server/filestore - - # Setting ownership and permissions - chmod 0640 ${CONFFILE} - chown ${_USERNAME}:${_USERNAME} ${CONFFILE} - chown ${_USERNAME}:${_USERNAME} /var/lib/openerp-server -R - - echo - echo "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *" - echo "* Open ERP uses a PostgreSQL database to store its data. With the first *" - echo "* generation of packages, you have to setup this database manually. *" - echo "* Please read /usr/share/doc/openerp-server/README.Debian how to do it. *" - echo "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *" - echo - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`{$1}'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 diff --git a/debian/openerp-server.postrm b/debian/openerp-server.postrm deleted file mode 100644 index 02b3d0a6817..00000000000 --- a/debian/openerp-server.postrm +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -set -e - -case "${1}" in - remove) - _USERNAME="openerp" - _GROUPNAME="openerp" - - if [ -x /usr/sbin/deluser ] - then - deluser --quiet --system ${_USERNAME} - fi - - if [ -x /usr/sbin/delgroup ] - then - delgroup --quiet --system --only-if-empty ${_GROUPNAME} || true - fi - - rm -f /usr/lib/openerp-server/addons/__init__.pyc - rmdir --ignore-fail-on-non-empty /usr/lib/openerp-server/addons || true - rmdir --ignore-fail-on-non-empty /usr/lib/openerp-server || true - ;; - - purge) - rm -rf /var/lib/openerp-server - ;; - - upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - - ;; - - *) - echo "postrm called with unknown argument \`${1}'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 diff --git a/debian/openerp-server.preseed b/debian/openerp-server.preseed deleted file mode 100644 index 66d1a4ab95d..00000000000 --- a/debian/openerp-server.preseed +++ /dev/null @@ -1,5 +0,0 @@ -################################################################################ -## openerp-server - -#openerp-server openerp-server/username string openerp -################################################################################ diff --git a/debian/openerp-server.templates b/debian/openerp-server.templates deleted file mode 100644 index 985bd24abd9..00000000000 --- a/debian/openerp-server.templates +++ /dev/null @@ -1,9 +0,0 @@ -Template: openerp-server/username -Type: string -Default: openerp -_Description: Dedicated system account for the Open ERP server: - The Open ERP server must use a dedicated account for its operation so that - the system's security is not compromised by running it with superuser - privileges. - . - Please choose that account's username. diff --git a/debian/openerp-server.README.Debian b/debian/openerp.README.Debian similarity index 100% rename from debian/openerp-server.README.Debian rename to debian/openerp.README.Debian diff --git a/debian/openerp-server.init b/debian/openerp.init similarity index 97% rename from debian/openerp-server.init rename to debian/openerp.init index ad8cbecb07c..6abb6f10ed6 100644 --- a/debian/openerp-server.init +++ b/debian/openerp.init @@ -16,7 +16,7 @@ PATH=/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/bin/openerp-server NAME=openerp-server DESC=openerp-server -CONFIG=/etc/openerp-server.conf +CONFIG=/etc/openerp/openerp-server.conf LOGFILE=/var/log/openerp-server.log USER=openerp diff --git a/debian/openerp.install b/debian/openerp.install new file mode 100644 index 00000000000..511075fb7c9 --- /dev/null +++ b/debian/openerp.install @@ -0,0 +1 @@ +install/openerp-server.conf /etc/openerp diff --git a/debian/openerp.postinst b/debian/openerp.postinst new file mode 100644 index 00000000000..f8f653397fe --- /dev/null +++ b/debian/openerp.postinst @@ -0,0 +1,28 @@ +#!/bin/sh + +set -e + +case "${1}" in + configure) + if ! getent passwd | grep -q "^openerp"; then + adduser --system --no-create-home --quiet --gecos 'OpenERP' --group openerp + fi + # Register "openerp" as a postgres superuser + su - postgres -c "createuser -s openerp" 2> /dev/null || true + chown openerp:openerp /etc/openerp/openerp-server.conf + chmod 0640 /etc/openerp/openerp-server.conf + # Creating log file + touch /var/log/openerp-server.log + chown openerp:openerp /var/log/openerp-server.log + chmod 0640 /var/log/openerp-server.log + # Creating local storage directory + mkdir -p /var/lib/openerp/filestore + chown openerp:openerp -R /var/lib/openerp + ;; + *) + ;; +esac + +#DEBHELPER# + +exit 0 diff --git a/debian/openerp.postrm b/debian/openerp.postrm new file mode 100644 index 00000000000..0e5014dc9c8 --- /dev/null +++ b/debian/openerp.postrm @@ -0,0 +1,26 @@ +#!/bin/sh + +set -e + +case "${1}" in + remove) + deluser --quiet --system "openerp" || true + delgroup --quiet --system --only-if-empty "openerp" || true + ;; + + purge) + rm -rf /var/lib/openerp-server + ;; + + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 diff --git a/debian/po/bg.po b/debian/po/bg.po index 664882e1034..c4a52d31048 100644 --- a/debian/po/bg.po +++ b/debian/po/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/ca.po b/debian/po/ca.po index 7c0cbad994a..d83dad535b9 100644 --- a/debian/po/ca.po +++ b/debian/po/ca.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/cs.po b/debian/po/cs.po index 1e01a82c214..8b8f9f0e943 100644 --- a/debian/po/cs.po +++ b/debian/po/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/da.po b/debian/po/da.po new file mode 100644 index 00000000000..b656e329af0 --- /dev/null +++ b/debian/po/da.po @@ -0,0 +1,42 @@ +# Danish translation for openobject-server +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-server package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-server\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-08-24 22:41+0300\n" +"PO-Revision-Date: 2011-07-22 14:15+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:1001 +msgid "Dedicated system account for the Open ERP server:" +msgstr "Dedikeret system konto til Open ERP serveren" + +#. Type: string +#. Description +#: ../openerp-server.templates:1001 +msgid "" +"The Open ERP server must use a dedicated account for its operation so that " +"the system's security is not compromised by running it with superuser " +"privileges." +msgstr "" +"Open ERP serveren skal bruge en dedikeret konto til sine operationer, så " +"systemets sikkerhed ikke bliver kompromitteret ved at køre serveren med " +"superbruger privilegier" + +#. Type: string +#. Description +#: ../openerp-server.templates:1001 +msgid "Please choose that account's username." +msgstr "Vælg kontoens brugernavn" diff --git a/debian/po/de.po b/debian/po/de.po index 5cfe8d9d7fa..3079de41243 100644 --- a/debian/po/de.po +++ b/debian/po/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/el.po b/debian/po/el.po index d117f515aad..a95226b6bb1 100644 --- a/debian/po/el.po +++ b/debian/po/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/en_GB.po b/debian/po/en_GB.po index 5092197883c..4188564ceb0 100644 --- a/debian/po/en_GB.po +++ b/debian/po/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/es.po b/debian/po/es.po index d9eb83615bc..5025a67b192 100644 --- a/debian/po/es.po +++ b/debian/po/es.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/es_CL.po b/debian/po/es_CL.po index 2cc55b1c818..9da94b6ce29 100644 --- a/debian/po/es_CL.po +++ b/debian/po/es_CL.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-24 22:41+0300\n" -"PO-Revision-Date: 2011-01-19 14:33+0000\n" -"Last-Translator: Juan Pizarro \n" +"PO-Revision-Date: 2011-10-03 16:05+0000\n" +"Last-Translator: doingit.cl \n" "Language-Team: Spanish (Chile) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-10-04 05:01+0000\n" +"X-Generator: Launchpad (build 14071)\n" #. Type: string #. Description #: ../openerp-server.templates:1001 msgid "Dedicated system account for the Open ERP server:" -msgstr "" +msgstr "Cuenta del sistema dedicada para el servidor OpenERP" #. Type: string #. Description @@ -31,9 +31,12 @@ msgid "" "the system's security is not compromised by running it with superuser " "privileges." msgstr "" +"El servidor OpenERP debe utilizar una cuenta dedicada para su " +"funcionamiento, de tal modo que la seguridad del sistema no se vea " +"comprometida por su utilización con privilegios de administración." #. Type: string #. Description #: ../openerp-server.templates:1001 msgid "Please choose that account's username." -msgstr "" +msgstr "Elija un Nombre de Usuario para la cuenta" diff --git a/debian/po/es_EC.po b/debian/po/es_EC.po index 311ccc49a10..4e221ba2c73 100644 --- a/debian/po/es_EC.po +++ b/debian/po/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/fa.po b/debian/po/fa.po index 09ea0d83eda..74c7d386521 100644 --- a/debian/po/fa.po +++ b/debian/po/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/fi.po b/debian/po/fi.po index 16b500b10d0..4af4f533ddf 100644 --- a/debian/po/fi.po +++ b/debian/po/fi.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/fr.po b/debian/po/fr.po index f44e0d7e81f..50f4bd33d56 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" "POT-Creation-Date: 2009-08-24 22:41+0300\n" "PO-Revision-Date: 2010-10-13 07:40+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/gl.po b/debian/po/gl.po index b8510d961dd..7b091419269 100644 --- a/debian/po/gl.po +++ b/debian/po/gl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/he.po b/debian/po/he.po index 50dd3c2b883..935838ebb97 100644 --- a/debian/po/he.po +++ b/debian/po/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/hr.po b/debian/po/hr.po index 62c81f52c56..83457705987 100644 --- a/debian/po/hr.po +++ b/debian/po/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/hu.po b/debian/po/hu.po index 6db4d67bea4..9455447a512 100644 --- a/debian/po/hu.po +++ b/debian/po/hu.po @@ -9,13 +9,14 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-24 22:41+0300\n" "PO-Revision-Date: 2011-01-12 09:45+0000\n" -"Last-Translator: NOVOTRADE RENDSZERHÁZ \n" +"Last-Translator: NOVOTRADE RENDSZERHÁZ ( novotrade.hu ) " +"\n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/it.po b/debian/po/it.po index 8e5372bd037..e4e70cddcc7 100644 --- a/debian/po/it.po +++ b/debian/po/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/ja.po b/debian/po/ja.po index bf96d93bcbb..b060104d807 100644 --- a/debian/po/ja.po +++ b/debian/po/ja.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/ko.po b/debian/po/ko.po index f1a07767e55..a080f159ee6 100644 --- a/debian/po/ko.po +++ b/debian/po/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/lv.po b/debian/po/lv.po index 852bf1b9928..2470ad8d487 100644 --- a/debian/po/lv.po +++ b/debian/po/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/mn.po b/debian/po/mn.po index 9d50a9e737b..eee8600609c 100644 --- a/debian/po/mn.po +++ b/debian/po/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/nb.po b/debian/po/nb.po index e6c6aca696f..488baaf8e03 100644 --- a/debian/po/nb.po +++ b/debian/po/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description @@ -38,4 +38,4 @@ msgstr "" #. Description #: ../openerp-server.templates:1001 msgid "Please choose that account's username." -msgstr "" +msgstr "Vennligst velg et brukernavn til kontoen." diff --git a/debian/po/nl.po b/debian/po/nl.po index 1690b5becc8..3b9fc417eba 100644 --- a/debian/po/nl.po +++ b/debian/po/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/pl.po b/debian/po/pl.po index 8f5233a9ffc..6d9211b41a5 100644 --- a/debian/po/pl.po +++ b/debian/po/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/pt.po b/debian/po/pt.po index 1981a87f8e9..e055d3f059f 100644 --- a/debian/po/pt.po +++ b/debian/po/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po index 9908b9dab06..941b61931d1 100644 --- a/debian/po/pt_BR.po +++ b/debian/po/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/ro.po b/debian/po/ro.po index cc8e901cd85..da6babe8c10 100644 --- a/debian/po/ro.po +++ b/debian/po/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/ru.po b/debian/po/ru.po index 8dbf7c8f8d0..61b4a0b0858 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po @@ -14,14 +14,14 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description #: ../openerp-server.templates:1001 msgid "Dedicated system account for the Open ERP server:" -msgstr "Специально выделенная системная учётная запись для Open ERP службы:" +msgstr "Выделенная в системе учётная запись для сервера OpenERP:" #. Type: string #. Description diff --git a/debian/po/sk.po b/debian/po/sk.po index ec27b8de8ee..1702240e85a 100644 --- a/debian/po/sk.po +++ b/debian/po/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description @@ -40,3270 +40,3 @@ msgstr "" #: ../openerp-server.templates:1001 msgid "Please choose that account's username." msgstr "Prosím vyberte používateľské meno účtu." - -#~ msgid "Saint Helena" -#~ msgstr "Svätá Helena" - -#~ msgid "SMS - Gateway: clickatell" -#~ msgstr "SMS - brána: clickatell" - -#~ msgid "%j - Day of the year as a decimal number [001,366]." -#~ msgstr "%j - Deň v roku ako desatinné číslo [001,366]." - -#~ msgid "Metadata" -#~ msgstr "Metadáta" - -#~ msgid "View Architecture" -#~ msgstr "Zobraziť architektúru" - -#~ msgid "You can not create this kind of document! (%s)" -#~ msgstr "Nemôžete vytvoriť tento typ dokumentu! (%s)" - -#~ msgid "Code (eg:en__US)" -#~ msgstr "Kód (napr.: en__US)" - -#~ msgid "Workflow" -#~ msgstr "Workflow" - -#~ msgid "To browse official translations, you can visit this link: " -#~ msgstr "" -#~ "Ak si chcete prezrieť oficiálne preklady, môžete navštíviť tento odkaz: " - -#~ msgid "Hungarian / Magyar" -#~ msgstr "Maďarčina / Magyar" - -#~ msgid "Workflow On" -#~ msgstr "Na workflow" - -#~ msgid "Created Views" -#~ msgstr "Vytvorené pohľady" - -#~ msgid "Outgoing transitions" -#~ msgstr "Odchádzajúce prechody" - -#~ msgid "Yearly" -#~ msgstr "Ročný" - -#~ msgid "Target Window" -#~ msgstr "Cieľové okno" - -#~ msgid "" -#~ "Choose between the \"Simplified Interface\" or the extended one.\n" -#~ "If you are testing or using OpenERP for the first time, we suggest you to " -#~ "use\n" -#~ "the simplified interface, which has less options and fields but is easier " -#~ "to\n" -#~ "understand. You will be able to switch to the extended view later.\n" -#~ " " -#~ msgstr "" -#~ "Vyberte si medzi \"Zjednodušeným rozhraním\" alebo rozšíreným.\n" -#~ "Ak testujete alebo používate OpenERP prvý krát, odporúčame aby ste použili\n" -#~ "zjednodušené prostredie, ktoré má menej možností a polí, ale je " -#~ "jednoduchšie\n" -#~ "na pochopenie. Rozšírené prostredie môžte aktivovať neskôr.\n" -#~ " " - -#~ msgid "Operand" -#~ msgstr "Operand" - -#~ msgid "South Korea" -#~ msgstr "Južná Kórea" - -#~ msgid "Transitions" -#~ msgstr "Prechody" - -#~ msgid "ir.ui.view.custom" -#~ msgstr "ir.ui.view.custom" - -#~ msgid "Swaziland" -#~ msgstr "Svazijsko" - -#~ msgid "ir.actions.report.custom" -#~ msgstr "ir.actions.report.custom" - -#~ msgid "STOCK_CANCEL" -#~ msgstr "STOCK_CANCEL" - -#~ msgid "Sorted By" -#~ msgstr "Zoradené podľa" - -#~ msgid "Increment Number" -#~ msgstr "Zvýšenie čísla" - -#~ msgid "Company's Structure" -#~ msgstr "Štruktúra firmy" - -#~ msgid "ir.report.custom.fields" -#~ msgstr "ir.report.custom.fields" - -#~ msgid "Search Partner" -#~ msgstr "Hľadať partnera" - -#~ msgid "new" -#~ msgstr "nový" - -#~ msgid "STOCK_GOTO_TOP" -#~ msgstr "STOCK_GOTO_TOP" - -#~ msgid "Number of Modules" -#~ msgstr "Počet modulov" - -#~ msgid "Max. Size" -#~ msgstr "Max. veľkosť" - -#~ msgid "Contact Name" -#~ msgstr "Názov kontaktu" - -#~ msgid "" -#~ "Save this document to a %s file and edit it with a specific software or a " -#~ "text editor. The file encoding is UTF-8." -#~ msgstr "" -#~ "Uložiť tento dokument do súboru %s a upraviť ho v inom programe alebo " -#~ "textovom editore. Kódovanie súboru je UTF-8." - -#~ msgid "STOCK_DELETE" -#~ msgstr "STOCK_DELETE" - -#~ msgid "Password mismatch !" -#~ msgstr "Heslo nesúhlasí !" - -#~ msgid "This url '%s' must provide an html file with links to zip modules" -#~ msgstr "" -#~ "Toto url '% s' musí poskytnúť html súbor s odkazom na zipované moduly" - -#~ msgid "active" -#~ msgstr "aktívny" - -#~ msgid "Wizard Name" -#~ msgstr "Názov sprievodcu" - -#~ msgid "%y - Year without century as a decimal number [00,99]." -#~ msgstr "%y - Rok bez storočia ako desatinné číslo [00,99]." - -#~ msgid "STOCK_GOTO_FIRST" -#~ msgstr "STOCK_GOTO_FIRST" - -#~ msgid "The rule is satisfied if at least one test is True" -#~ msgstr "Pravidlo je splnené ak platí aspoň jedna z podmienok." - -#~ msgid "Default limit for the list view" -#~ msgstr "Predvolený limit pre zobrazenie zoznamu" - -#~ msgid "Update Date" -#~ msgstr "Dátum aktualizácie" - -#~ msgid "Source Object" -#~ msgstr "Zdroj objektu" - -#~ msgid "Config Wizard Steps" -#~ msgstr "Nastavenie krokov sprievodcu" - -#~ msgid "ir.ui.view_sc" -#~ msgstr "ir.ui.view_sc" - -#~ msgid "Group" -#~ msgstr "Skupina" - -#~ msgid "Field Name" -#~ msgstr "Názov poľa" - -#~ msgid "Uninstalled modules" -#~ msgstr "Nenainštalované moduly" - -#~ msgid "txt" -#~ msgstr "txt" - -#~ msgid "Select Action Type" -#~ msgstr "Vyberte typ akcie" - -#~ msgid "Configure" -#~ msgstr "Nastaviť" - -#~ msgid "Tuvalu" -#~ msgstr "Tuvalu" - -#~ msgid "Custom Object" -#~ msgstr "Vlastný objekt" - -#~ msgid "Date Format" -#~ msgstr "Formát dátumu" - -#~ msgid "E-Mail" -#~ msgstr "E-Mail" - -#~ msgid "Netherlands Antilles" -#~ msgstr "Holandské Antily" - -#~ msgid "French Guyana" -#~ msgstr "Francúzka Gyuana" - -#~ msgid "Original View" -#~ msgstr "Zobraziť originál" - -#~ msgid "Bosnian / bosanski jezik" -#~ msgstr "Bosniačtina / banski jezik" - -#~ msgid "This ISO code is the name of po files to use for translations" -#~ msgstr "Tento ISO kód je meno PO súborov použitých pre preklady" - -#~ msgid "STOCK_MEDIA_REWIND" -#~ msgstr "STOCK_MEDIA_REWIND" - -#~ msgid "Text" -#~ msgstr "Text" - -#~ msgid "Country Name" -#~ msgstr "Názov krajiny" - -#~ msgid "Colombia" -#~ msgstr "Kolumbia" - -#~ msgid "Schedule Upgrade" -#~ msgstr "Aktualizácia rozvrhu" - -#~ msgid "" -#~ "The ISO country code in two chars.\n" -#~ "You can use this field for quick search." -#~ msgstr "" -#~ "ISO kód krajiny v dvoch znakoch.\n" -#~ "Môžete použiť toto pole pre rýchle vyhľadávanie." - -#~ msgid "Xor" -#~ msgstr "Xor" - -#~ msgid "Sales & Purchases" -#~ msgstr "Predaj a nákup" - -#~ msgid "Wizard" -#~ msgstr "Sprievodca" - -#~ msgid "STOCK_CUT" -#~ msgstr "STOCK_CUT" - -#~ msgid "Wizards" -#~ msgstr "Sprievodcovia" - -#~ msgid "Extended Interface" -#~ msgstr "Interfejs rozšírenia" - -#~ msgid "Custom fields must have a name that starts with 'x_' !" -#~ msgstr "Vlastné pole musí mať názov, ktoré začína 'x_'!" - -#~ msgid "Export done" -#~ msgstr "Export dokončený" - -#~ msgid "Model Description" -#~ msgstr "Popis modelu" - -#~ msgid "Jordan" -#~ msgstr "Jordánsko" - -#~ msgid "You can not remove the model '%s' !" -#~ msgstr "Nemôžete odstrániť model '%s' !" - -#~ msgid "Eritrea" -#~ msgstr "Eritrea" - -#~ msgid "Configure simple view" -#~ msgstr "Nastaviť jednoduchý pohľad" - -#~ msgid "Bulgarian / български" -#~ msgstr "Bulgarian / български" - -#~ msgid "ir.actions.actions" -#~ msgstr "ir.actions.actions" - -#~ msgid "Custom Report" -#~ msgstr "Vlastný výstup" - -#~ msgid "Bar Chart" -#~ msgstr "Stĺpcový graf" - -#~ msgid "STOCK_DIALOG_ERROR" -#~ msgstr "STOCK_DIALOG_ERROR" - -#~ msgid "STOCK_INDEX" -#~ msgstr "STOCK_INDEX" - -#~ msgid "Serbia" -#~ msgstr "Srbsko" - -#~ msgid "Wizard View" -#~ msgstr "Zobrazenie sprievodcu" - -#~ msgid "Cambodia, Kingdom of" -#~ msgstr "Kambodža, kráľovstvo" - -#~ msgid "Sequences" -#~ msgstr "Sekvencie" - -#~ msgid "STOCK_DIALOG_QUESTION" -#~ msgstr "STOCK_DIALOG_QUESTION" - -#~ msgid "Papua New Guinea" -#~ msgstr "Papua Nová Guinea" - -#~ msgid "Basic Partner" -#~ msgstr "Základný partner" - -#~ msgid "," -#~ msgstr "," - -#~ msgid "My Partners" -#~ msgstr "Moji partneri" - -#~ msgid "Spain" -#~ msgstr "Španielsko" - -#~ msgid "Mobile" -#~ msgstr "Mobil" - -#~ msgid "Oman" -#~ msgstr "Omán" - -#~ msgid "Payment term" -#~ msgstr "Platobné obdobie" - -#~ msgid "Niue" -#~ msgstr "Niue" - -#~ msgid "Work Days" -#~ msgstr "Pracovné dni" - -#~ msgid "This field is not used, it only helps you to select the right action." -#~ msgstr "Toto pole sa nepoužíva, iba vám pomôže vybrať správne kroky." - -#~ msgid "Create Menu" -#~ msgstr "Vytvorenie menu" - -#~ msgid "India" -#~ msgstr "India" - -#~ msgid "maintenance contract modules" -#~ msgstr "moduly servisnej zmluvy" - -#~ msgid "client_action_multi, client_action_relate" -#~ msgstr "client_action_multi, client_action_relate" - -#~ msgid "Andorra, Principality of" -#~ msgstr "Andorra, kniežatstvo" - -#~ msgid "Child Categories" -#~ msgstr "Podkategórie" - -#~ msgid "TGZ Archive" -#~ msgstr "TGZ Archív" - -#~ msgid "Factor" -#~ msgstr "Faktor" - -#~ msgid "%B - Full month name." -#~ msgstr "%B - Plný názov mesiaca." - -#~ msgid "Type" -#~ msgstr "Typ" - -#~ msgid "STOCK_FILE" -#~ msgstr "STOCK_FILE" - -#~ msgid "Guam (USA)" -#~ msgstr "Guam (USA)" - -#~ msgid "Objects Security Grid" -#~ msgstr "Pole prístupov k objektom" - -#~ msgid "STOCK_GO_DOWN" -#~ msgstr "STOCK_GO_DOWN" - -#~ msgid "STOCK_OK" -#~ msgstr "STOCK_OK" - -#~ msgid "Dummy" -#~ msgstr "Maketa" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Neplatný XML pre zobrazenie architektúry!" - -#~ msgid "Cayman Islands" -#~ msgstr "Kajmanské Ostrovy" - -#~ msgid "Iran" -#~ msgstr "Irán" - -#~ msgid "My Requests" -#~ msgstr "Moje požiadavky" - -#~ msgid "Sequence Name" -#~ msgstr "Názov sekvencie" - -#~ msgid "Chad" -#~ msgstr "Čad" - -#~ msgid "Spanish (AR) / Español (AR)" -#~ msgstr "Španielsky (AR) / Español (AR)" - -#~ msgid "Uganda" -#~ msgstr "Uganda" - -#~ msgid "Niger" -#~ msgstr "Nigéria" - -#~ msgid "Bosnia-Herzegovina" -#~ msgstr "Bosna a Hercegovina" - -#~ msgid "Alignment" -#~ msgstr "Zarovnanie" - -#~ msgid ">=" -#~ msgstr ">=" - -#~ msgid "" -#~ "%W - Week number of the year (Monday as the first day of the week) as a " -#~ "decimal number [00,53]. All days in a new year preceding the first Monday " -#~ "are considered to be in week 0." -#~ msgstr "" -#~ "%W - týždeň v roku (Pondelok je prvý deň v týždni) ako celé číslo [00,53]. " -#~ "Všetky dni v novom roku pred prvým pondelkom sú považované za týždeň 0." - -#~ msgid "Planned Cost" -#~ msgstr "Plánované náklady" - -#~ msgid "ir.model.config" -#~ msgstr "ir.model.config" - -#~ msgid "Website" -#~ msgstr "Webová stránka" - -#~ msgid "Tests" -#~ msgstr "Testy" - -#~ msgid "Repository" -#~ msgstr "Repozitár" - -#~ msgid "S. Georgia & S. Sandwich Isls." -#~ msgstr "Južná Georgia a Južné Sandwichove ostrovy" - -#~ msgid "Action URL" -#~ msgstr "Aktívne URL" - -#~ msgid "STOCK_JUSTIFY_FILL" -#~ msgstr "STOCK_JUSTIFY_FILL" - -#~ msgid "Marshall Islands" -#~ msgstr "Maršalové ostrovy" - -#~ msgid "Haiti" -#~ msgstr "Haity" - -#~ msgid "RML" -#~ msgstr "RML" - -#~ msgid "Search" -#~ msgstr "Hľadať" - -#~ msgid "Pie charts need exactly two fields" -#~ msgstr "Koláčové grafy potrebujú presne dve polia" - -#~ msgid "To export a new language, do not select a language." -#~ msgstr "Ak chcete exportovať nový jazyk, nevyberajte jazyk." - -#~ msgid "Moldavia" -#~ msgstr "Moldavia" - -#~ msgid "Features" -#~ msgstr "Funkcie" - -#~ msgid "Frequency" -#~ msgstr "Frekvencia" - -#~ msgid "Relation" -#~ msgstr "Vzťah" - -#~ msgid "Read Access" -#~ msgstr "Právo čítať" - -#~ msgid "ir.exports" -#~ msgstr "ir.exports" - -#~ msgid "STOCK_MISSING_IMAGE" -#~ msgstr "STOCK_MISSING_IMAGE" - -#~ msgid "Define New Users" -#~ msgstr "Definovať nových používateľov" - -#~ msgid "STOCK_REMOVE" -#~ msgstr "STOCK_REMOVE" - -#~ msgid "raw" -#~ msgstr "raw" - -#~ msgid "" -#~ "Provides the fields that will be used to fetch the email address, e.g. when " -#~ "you select the invoice, then `object.invoice_address_id.email` is the field " -#~ "which gives the correct address" -#~ msgstr "" -#~ "Stanovuje oblasti, ktoré budú použité, aby preniesol e-mailovú adresu, " -#~ "napríklad ak vyberiete faktúru, potom `object.invoice_address_id.email` je " -#~ "pole, ktoré vracia správne adresy" - -#~ msgid "Role Name" -#~ msgstr "Názov role" - -#~ msgid "Dedicated Salesman" -#~ msgstr "Priradený obchodník" - -#~ msgid "-" -#~ msgstr "-" - -#~ msgid "Payment Term (short name)" -#~ msgstr "Platobné podmienky (skrátený názov)" - -#~ msgid "Bank" -#~ msgstr "Banka" - -#~ msgid "Examples" -#~ msgstr "Príklady" - -#~ msgid "Reports" -#~ msgstr "Výkazy" - -#~ msgid "On Create" -#~ msgstr "Vytvoril" - -#~ msgid "Please give your module .ZIP file to import." -#~ msgstr "Uveďte prosím, modul so .ZIP súborom na import." - -#~ msgid "Default Value" -#~ msgstr "Predvolená hodnota" - -#~ msgid "Login" -#~ msgstr "Prihlásiť" - -#~ msgid "Covered Modules" -#~ msgstr "Skryté moduly" - -#~ msgid "STOCK_COPY" -#~ msgstr "STOCK_COPY" - -#~ msgid "Model %s Does not Exist !" -#~ msgstr "Model %s neexistuje!" - -#~ msgid "" -#~ "You try to install the module '%s' that depends on the module:'%s'.\n" -#~ "But this module is not available in your system." -#~ msgstr "" -#~ "Pokúšate sa inštalovať modul '%s', ktorý zývisí na module:'%s'.\n" -#~ "Ale tento modul nieje dostupný vo vašaom systéme." - -#~ msgid "res.request.link" -#~ msgstr "res.request.link" - -#~ msgid "Check new modules" -#~ msgstr "Kontrola nových modulov" - -#~ msgid "Comoros" -#~ msgstr "Komory" - -#~ msgid "Server Actions" -#~ msgstr "Akcie servera" - -#~ msgid "East Timor" -#~ msgstr "Východný Timor" - -#~ msgid "Simple domain setup" -#~ msgstr "Jednoduché nastavenie domény" - -#~ msgid "Computational Accuracy" -#~ msgstr "Presnosť výpočtu" - -#~ msgid "Kyrgyz Republic (Kyrgyzstan)" -#~ msgstr "Kirgizská republika (Kirgizsko)" - -#~ msgid "wizard.ir.model.menu.create.line" -#~ msgstr "wizard.ir.model.menu.create.line" - -#~ msgid "Day: %(day)s" -#~ msgstr "Deň: %(day)s" - -#~ msgid "You can not read this document! (%s)" -#~ msgstr "Nedá sa prečítať tento dokument! (%s)" - -#~ msgid "STOCK_FIND_AND_REPLACE" -#~ msgstr "STOCK_FIND_AND_REPLACE" - -#~ msgid "Maldives" -#~ msgstr "Maledivy" - -#~ msgid "ir.rule" -#~ msgstr "Copy text \t ir.rule" - -#~ msgid "Days" -#~ msgstr "Dní" - -#~ msgid "Fixed Width" -#~ msgstr "Pevná šírka" - -#~ msgid "terp-calendar" -#~ msgstr "terp-calendar" - -#~ msgid "STOCK_YES" -#~ msgstr "STOCK_YES" - -#~ msgid "Report Custom" -#~ msgstr "Vlastné výkazy" - -#~ msgid " (copy)" -#~ msgstr " (kopírovať)" - -#~ msgid "Year without century: %(y)s" -#~ msgstr "Rok bez storočia: %(y)" - -#~ msgid "7. %H:%M:%S ==> 18:25:20" -#~ msgstr "7. %H:%M:%S ==> 18:25:20" - -#~ msgid "The company this user is currently working on." -#~ msgstr "Spoločnosť pre ktorú tento používateľ práve pracuje." - -#~ msgid "" -#~ "Specify the message. You can use the fields from the object. e.g. `Dear [[ " -#~ "object.partner_id.name ]]`" -#~ msgstr "" -#~ "Špecifikujte správu. Môžete použiť pole pre objekt. napr.: `Vážený " -#~ "[[object.partner_id.name]]`" - -#~ msgid "Trigger Name" -#~ msgstr "Názov spustenia" - -#~ msgid "ir.model.access" -#~ msgstr "ir.model.access" - -#~ msgid "Priority" -#~ msgstr "Priorita" - -#~ msgid "Source Activity" -#~ msgstr "Zdroj aktivity" - -#~ msgid "Legend (for prefix, suffix)" -#~ msgstr "Legenda (pre predponu, príponu)" - -#~ msgid "Formula" -#~ msgstr "Vzorec" - -#~ msgid "Can not remove root user!" -#~ msgstr "Nemožno odstrániť root/koreňového užívateľa !" - -#~ msgid "STOCK_JUSTIFY_LEFT" -#~ msgstr "STOCK_JUSTIFY_LEFT" - -#~ msgid "Malawi" -#~ msgstr "Malawi" - -#~ msgid "Address Type" -#~ msgstr "Typ adresy" - -#~ msgid "Auto" -#~ msgstr "Automaticky" - -#~ msgid "End of Request" -#~ msgstr "Koniec požiadavky" - -#~ msgid "References" -#~ msgstr "Odporúčania" - -#~ msgid "" -#~ "%U - Week number of the year (Sunday as the first day of the week) as a " -#~ "decimal number [00,53]. All days in a new year preceding the first Sunday " -#~ "are considered to be in week 0." -#~ msgstr "" -#~ "%U - týždeň v roku (Pondelok je prvý deň v týždni) ako celé číslo [00,53]. " -#~ "Všetky dni v novom roku pred prvým pondelkom sú považované za týždeň 0." - -#~ msgid "Note that this operation may take a few minutes." -#~ msgstr "Upozorňujeme, že táto operácia môže trvať aj niekoľko minút." - -#~ msgid "Tree" -#~ msgstr "Stromová štruktúra" - -#~ msgid "Could you check your contract information ?" -#~ msgstr "Mohli by ste skontrolovať informácie na zmluve?" - -#~ msgid "STOCK_CLEAR" -#~ msgstr "STOCK_CLEAR" - -#~ msgid "" -#~ "Keep empty if you don't want the user to be able to connect on the system." -#~ msgstr "" -#~ "Nechajte prázdne, ak nechcete, aby sa používateľ pripojil do systému." - -#~ msgid "View Mode" -#~ msgstr "Režim zobrazenia" - -#~ msgid "Spanish / Español" -#~ msgstr "Španielsky / Español" - -#~ msgid "Logo" -#~ msgstr "Logo" - -#~ msgid "STOCK_PROPERTIES" -#~ msgstr "STOCK_PROPERTIES" - -#~ msgid "Search Contact" -#~ msgstr "Hľadať kontakt" - -#~ msgid "Uninstall (beta)" -#~ msgstr "Odinštalovať (beta)" - -#~ msgid "New Window" -#~ msgstr "Nové okno" - -#~ msgid "Bahamas" -#~ msgstr "Bahamy" - -#~ msgid "Commercial Prospect" -#~ msgstr "Obchodné prospekty" - -#~ msgid "" -#~ "Couldn't generate the next id because some partners have an alphabetic id !" -#~ msgstr "" -#~ "Nie je možné vygenerovať nasledovné ID, lebo niektorí partneri majú abecedné " -#~ "ID!" - -#~ msgid "Attachment" -#~ msgstr "Príloha" - -#~ msgid "Ireland" -#~ msgstr "Írsko" - -#~ msgid "Number of modules updated" -#~ msgstr "Počet aktualizovaných modulov" - -#~ msgid "Groups" -#~ msgstr "Skupiny" - -#~ msgid "This user can not connect using this company !" -#~ msgstr "Tento používateľ sa nemôže pripojiť pomocou tejto spoločnosti!" - -#~ msgid "Belize" -#~ msgstr "Belize" - -#~ msgid "Georgia" -#~ msgstr "Georgia" - -#~ msgid "Poland" -#~ msgstr "Poľsko" - -#~ msgid "To be removed" -#~ msgstr "Na odstránenie" - -#~ msgid "Meta Datas" -#~ msgstr "Meta dáta" - -#~ msgid "" -#~ "This wizard will detect new terms in the application so that you can update " -#~ "them manually." -#~ msgstr "" -#~ "Tento sprievodca vám objavil nové termíny v aplikácii, môžete aktualizovať " -#~ "ručne." - -#~ msgid "" -#~ "Enter the field/expression that will return the list. E.g. select the sale " -#~ "order in Object, and you can have loop on the sales order line. Expression = " -#~ "`object.order_line`." -#~ msgstr "" -#~ "Zadajte pole / výraz, ktorý vráti zoznam. Napr.: vyberte príkaz na predaj v " -#~ "objekte, a môžete si vytvoriť slučku na objednávku. Expression = " -#~ "`object.order_line`." - -#~ msgid "Wizard Field" -#~ msgstr "Pole sprievodcu" - -#~ msgid "STOCK_SELECT_COLOR" -#~ msgstr "STOCK_SELECT_COLOR" - -#~ msgid "STOCK_NO" -#~ msgstr "STOCK_NO" - -#~ msgid "Invoice" -#~ msgstr "Faktúra" - -#~ msgid "STOCK_REDO" -#~ msgstr "STOCK_REDO" - -#~ msgid "Barbados" -#~ msgstr "Barbados" - -#~ msgid "Madagascar" -#~ msgstr "Madagaskar" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Názov objektu musí začínať x_ a nesmie obsahovať žiadne špeciálne znaky!" - -#~ msgid "Make the rule global, otherwise it needs to be put on a group" -#~ msgstr "Spraviť pravidlo globálnym, inak je ho nutné pridať do skupiny" - -#~ msgid "Menu" -#~ msgstr "Ponuka" - -#~ msgid "Current Rate" -#~ msgstr "Súčasný kurz" - -#~ msgid "Greek / Ελληνικά" -#~ msgstr "Grécky / Ελληνικά" - -#~ msgid "Action To Launch" -#~ msgstr "Akcia, ktorá má začať" - -#~ msgid "in" -#~ msgstr "v" - -#~ msgid "Action Target" -#~ msgstr "Cieľ akcie" - -#~ msgid "Anguilla" -#~ msgstr "Anguilla" - -#~ msgid "Confirmation" -#~ msgstr "Potvrdenie" - -#~ msgid "Enter at least one field !" -#~ msgstr "Zadajte aspoň jedno pole!" - -#~ msgid "Shortcut Name" -#~ msgstr "Názov skratky" - -#~ msgid "Credit Limit" -#~ msgstr "Limit kreditu" - -#~ msgid "Zimbabwe" -#~ msgstr "Zimbabwe" - -#~ msgid "Import / Export" -#~ msgstr "Import / Export" - -#~ msgid "Configure User" -#~ msgstr "Konfigurácia používateľa" - -#~ msgid "Email Address" -#~ msgstr "E-mailová adresa" - -#~ msgid "French (BE) / Français (BE)" -#~ msgstr "Francúzky (BE) / Français (BE)" - -#~ msgid "You can not write in this document! (%s)" -#~ msgstr "Nemožte zapisovať do tohto dokumentu! (%s)" - -#~ msgid "Server Action" -#~ msgstr "Akcia serveru" - -#~ msgid "Latvia" -#~ msgstr "Lotyšsko" - -#~ msgid "Values" -#~ msgstr "Hodnoty" - -#~ msgid "Field Mappings" -#~ msgstr "Mapovania pola" - -#~ msgid "My Closed Requests" -#~ msgstr "Moje uzatvorené požiadavky" - -#~ msgid "Customization" -#~ msgstr "Kustomizácia" - -#~ msgid "Paraguay" -#~ msgstr "Paraguaj" - -#~ msgid "left" -#~ msgstr "vľavo" - -#~ msgid "ir.actions.act_window_close" -#~ msgstr "ir.actions.act_window_close" - -#~ msgid "Destination" -#~ msgstr "Cieľ" - -#~ msgid "Lithuania" -#~ msgstr "Lotyško" - -#~ msgid "STOCK_PRINT_PREVIEW" -#~ msgstr "STOCK_PRINT_PREVIEW" - -#~ msgid "Slovenia" -#~ msgstr "Slovinsko" - -#~ msgid "Channel" -#~ msgstr "Kanál" - -#~ msgid "%p - Equivalent of either AM or PM." -#~ msgstr "%p - ekvivalent AM alebo PM." - -#~ msgid "Ending Date" -#~ msgstr "Dátum ukončenia" - -#~ msgid "New Zealand" -#~ msgstr "Nový Zéland" - -#~ msgid "Openstuff.net" -#~ msgstr "Openstuff.net" - -#~ msgid "Norfolk Island" -#~ msgstr "Norfolkské ostrovy" - -#~ msgid "STOCK_MEDIA_PLAY" -#~ msgstr "STOCK_MEDIA_PLAY" - -#~ msgid "Operator" -#~ msgstr "Operátor" - -#~ msgid "Installation Done" -#~ msgstr "Nainštalované" - -#~ msgid "STOCK_OPEN" -#~ msgstr "STOCK_OPEN" - -#~ msgid "Client Action" -#~ msgstr "Klientske akcie" - -#~ msgid "right" -#~ msgstr "vpravo" - -#~ msgid "Bangladesh" -#~ msgstr "Bangladéž" - -#~ msgid "Error! You can not create recursive companies." -#~ msgstr "Chyba! Nemôžete vytvárať rekurzívne spoločnosti." - -#~ msgid "Valid" -#~ msgstr "Platný" - -#~ msgid "You can not delete this document! (%s)" -#~ msgstr "Nedá sa odstrániť tento dokument! (%s)" - -#~ msgid "XSL" -#~ msgstr "XSL" - -#~ msgid "Can not upgrade module '%s'. It is not installed." -#~ msgstr "Nie je možné aktualizovať modul '%s'. Nie je nainštalovaný." - -#~ msgid "Cuba" -#~ msgstr "Kuba" - -#~ msgid "%S - Second as a decimal number [00,61]." -#~ msgstr "%S - sekundy ako desatinné číslo [00,61]." - -#~ msgid "Armenia" -#~ msgstr "Arménsko" - -#~ msgid "Year with century: %(year)s" -#~ msgstr "Rok so storočím: %(year)" - -#~ msgid "Daily" -#~ msgstr "Denne" - -#~ msgid "Sweden" -#~ msgstr "Švédsko" - -#~ msgid "Gantt" -#~ msgstr "Gantt" - -#~ msgid "Property" -#~ msgstr "Vlastnosť" - -#~ msgid "Bank Account Type" -#~ msgstr "Typ bankového účtu" - -#~ msgid "terp-project" -#~ msgstr "terp-project" - -#~ msgid "Iteration Action Configuration" -#~ msgstr "Nastavenie iteračnej akcie" - -#~ msgid "Austria" -#~ msgstr "Rakúsko" - -#~ msgid "Calendar" -#~ msgstr "Kalendár" - -#~ msgid "Signal (subflow.*)" -#~ msgstr "Signál (subflow.*)" - -#~ msgid "Module dependency" -#~ msgstr "Závislosť modulu" - -#~ msgid "Draft" -#~ msgstr "Návrh" - -#~ msgid "STOCK_JUSTIFY_CENTER" -#~ msgstr "STOCK_JUSTIFY_CENTER" - -#~ msgid "Report Footer 1" -#~ msgstr "Pätička výkazu 1" - -#~ msgid "Report Footer 2" -#~ msgstr "Pätička výkazu 1" - -#~ msgid "Dependencies" -#~ msgstr "Závislosti" - -#~ msgid "Background Color" -#~ msgstr "Farba pozadia" - -#~ msgid "" -#~ "If you use a formula type, use a python expression using the variable " -#~ "'object'." -#~ msgstr "" -#~ "Ak používate typ vzorec, použite python výraz použitím premennej 'object'." - -#~ msgid "Birthdate" -#~ msgstr "Dátum narodenia" - -#~ msgid "Contact Titles" -#~ msgstr "Oslovenia kontaktu" - -#~ msgid "res.partner.som" -#~ msgstr "res.partner.som" - -#~ msgid "workflow.activity" -#~ msgstr "workflow.activity" - -#~ msgid "Searchable" -#~ msgstr "Prehľadávateľný" - -#~ msgid "Uruguay" -#~ msgstr "Uruguaj" - -#~ msgid "Document Link" -#~ msgstr "Odkaz na dokument" - -#~ msgid "res.partner.title" -#~ msgstr "res.partner.title" - -#~ msgid "Prefix" -#~ msgstr "Predpona" - -#~ msgid "Loop Action" -#~ msgstr "Akcia slučka" - -#~ msgid "German / Deutsch" -#~ msgstr "Nemecky / Deutsch" - -#~ msgid "Select the Signal name that is to be used as the trigger." -#~ msgstr "Vyberte názov signálu ktorý bude použitý ako spúšť" - -#~ msgid "Fields Mapping" -#~ msgstr "Mapovanie polí" - -#~ msgid "Sir" -#~ msgstr "Pán" - -#~ msgid "Start Upgrade" -#~ msgstr "Začať aktualizáciu" - -#~ msgid "ID Ref." -#~ msgstr "ID odkaz" - -#~ msgid "French / Français" -#~ msgstr "Francúzky / Français" - -#~ msgid "Malta" -#~ msgstr "Malta" - -#~ msgid "Field Mappings." -#~ msgstr "Mapovania pola." - -#~ msgid "Module" -#~ msgstr "Modul" - -#~ msgid "Bank List" -#~ msgstr "Zoznam bánk" - -#~ msgid "Description" -#~ msgstr "Popis" - -#~ msgid "Instances" -#~ msgstr "Inštancie" - -#~ msgid "ir.attachment" -#~ msgstr "ir.attachment" - -#~ msgid "Home Action" -#~ msgstr "Úvodná akcia" - -#~ msgid "Separator Format" -#~ msgstr "Formát oddelovača" - -#~ msgid "Export language" -#~ msgstr "Export jazyka" - -#~ msgid "Unvalidated" -#~ msgstr "Neschválený" - -#~ msgid "Database Structure" -#~ msgstr "Štruktúra databázy" - -#~ msgid "Mass Mailing" -#~ msgstr "Hromadný mail" - -#~ msgid "You can also import .po files." -#~ msgstr "Môžete improtovať aj .po súbory" - -#~ msgid "Unable to find a valid contract" -#~ msgstr "Nie je možné nájsť platnú zmluvu" - -#~ msgid "Please specify an action to launch !" -#~ msgstr "Prosím vyberte akciu na spustenie!" - -#~ msgid "STOCK_JUSTIFY_RIGHT" -#~ msgstr "STOCK_JUSTIFY_RIGHT" - -#~ msgid "Function of the contact" -#~ msgstr "Funkcie kontaktu" - -#~ msgid "Modules to be installed, upgraded or removed" -#~ msgstr "Moduly na ištaláciu, aktualizáciu alebo odstránenie" - -#~ msgid "Payment Term" -#~ msgstr "Termín splátky" - -#~ msgid "Report Footer" -#~ msgstr "Pätička výkazu" - -#~ msgid "Right-to-Left" -#~ msgstr "Zprava do ľava" - -#~ msgid "Import language" -#~ msgstr "Import jazyka" - -#~ msgid "Scheduled Actions" -#~ msgstr "Naplánované akcie" - -#~ msgid "Title" -#~ msgstr "Typ" - -#~ msgid "STOCK_SAVE" -#~ msgstr "STOCK_SAVE" - -#~ msgid "terp-account" -#~ msgstr "terp-účet" - -#~ msgid "Recursion error in modules dependencies !" -#~ msgstr "Chyba rekurzie v závislostiach modulov!" - -#~ msgid "Create a Menu" -#~ msgstr "Vytvoriť menu" - -#~ msgid "Categories of Modules" -#~ msgstr "Kategórie modulov" - -#~ msgid "Ukrainian / украї́нська мо́ва" -#~ msgstr "Ukrajinčina / украї́нська мо́ва" - -#~ msgid "Not Started" -#~ msgstr "Nezačaté" - -#~ msgid "Russian Federation" -#~ msgstr "Ruská federácia" - -#~ msgid "Company Name" -#~ msgstr "Názov spoločnosti" - -#~ msgid "Roles" -#~ msgstr "Roly" - -#~ msgid "Countries" -#~ msgstr "Krajiny" - -#~ msgid "Record rules" -#~ msgstr "Pravidlá záznamu" - -#~ msgid "VAT" -#~ msgstr "DPH" - -#~ msgid "12. %w ==> 5 ( Friday is the 6th day)" -#~ msgstr "12. %w ==> 5 ( Piatok je 6. deň)" - -#~ msgid "Error ! You can not create recursive categories." -#~ msgstr "Chyba! Nemožte vytvoriť rekurzívne kategórie." - -#~ msgid "%x - Appropriate date representation." -#~ msgstr "%x - Vhodná reprezentácia dátumu." - -#~ msgid "%M - Minute as a decimal number [00,59]." -#~ msgstr "%M - Minúta ako celé číslo [00,59]." - -#~ msgid "Tajikistan" -#~ msgstr "Tadžikistan" - -#~ msgid "GPL-2 or later version" -#~ msgstr "GPLv2 alebo neskoršia verzia" - -#~ msgid "ir.actions.wizard" -#~ msgstr "ir.actions.wizard" - -#~ msgid "Nauru" -#~ msgstr "Nauru" - -#~ msgid "ir.property" -#~ msgstr "ir.property" - -#~ msgid "Form" -#~ msgstr "Formulár" - -#~ msgid "Montenegro" -#~ msgstr "Montenegro" - -#~ msgid "STOCK_QUIT" -#~ msgstr "STOCK_QUIT" - -#~ msgid "Technical Data" -#~ msgstr "Technické dáta" - -#~ msgid "Categories" -#~ msgstr "Kategórie" - -#~ msgid "Send SMS" -#~ msgstr "Poslať SMS" - -#~ msgid "To be upgraded" -#~ msgstr "Na aktualizáciu" - -#~ msgid "Libya" -#~ msgstr "Líbia" - -#~ msgid "terp-purchase" -#~ msgstr "terp-nákup" - -#~ msgid "Repositories" -#~ msgstr "Repozitáre" - -#~ msgid "Central African Republic" -#~ msgstr "Stredoafrická republicka" - -#~ msgid "Liechtenstein" -#~ msgstr "Lichtenštajnsko" - -#~ msgid "Ltd" -#~ msgstr "Ltd" - -#~ msgid "EAN13" -#~ msgstr "EAN13" - -#~ msgid "Portugal" -#~ msgstr "Portugalsko" - -#~ msgid "Quality Certificate" -#~ msgstr "Certifikát kvality" - -#~ msgid "6. %d, %m ==> 05, 12" -#~ msgstr "6. %d, %m ==> 05, 12" - -#~ msgid "Check this box if the partner is a customer." -#~ msgstr "Zaškrtnite toto pole ak je partner zákazníkom." - -#~ msgid "Languages" -#~ msgstr "Jazyky" - -#~ msgid "Palau" -#~ msgstr "Palau" - -#~ msgid "Ecuador" -#~ msgstr "Ekvádor" - -#~ msgid "Customers" -#~ msgstr "Zákazníci" - -#~ msgid "Australia" -#~ msgstr "Austrália" - -#~ msgid "" -#~ "If the selected language is loaded in the system, all documents related to " -#~ "this partner will be printed in this language. If not, it will be english." -#~ msgstr "" -#~ "Ak je vybratý jazyk nahratý v systéme, všetky dokumenty týkajúce sa tohto " -#~ "partnera budu vytlačené v tomto jazyku.Ak nie, tak budú v angličtine." - -#~ msgid "Menu :" -#~ msgstr "Menu:" - -#~ msgid "Base Field" -#~ msgstr "Zákaldné pole" - -#~ msgid "New modules" -#~ msgstr "Nové moduly" - -#~ msgid "SXW content" -#~ msgstr "SXW obsah" - -#~ msgid "Action to Trigger" -#~ msgstr "Akcia pre súštač" - -#~ msgid "Constraint" -#~ msgstr "Obmedzenie" - -#~ msgid "Default" -#~ msgstr "Predvolené" - -#~ msgid "Required" -#~ msgstr "Vyžadované" - -#~ msgid "Domain" -#~ msgstr "Doména" - -#~ msgid "Summary" -#~ msgstr "Sumár" - -#~ msgid "Header/Footer" -#~ msgstr "Hlavička/Pätička" - -#~ msgid "Lebanon" -#~ msgstr "Libanon" - -#~ msgid "Language name" -#~ msgstr "Názov jazyka" - -#~ msgid "Holy See (Vatican City State)" -#~ msgstr "Vatikán" - -#~ msgid "Module .ZIP file" -#~ msgstr ".ZIP súbor modulu" - -#~ msgid "Children" -#~ msgstr "Potomok" - -#~ msgid "Trigger Object" -#~ msgstr "Objekt spúšte" - -#~ msgid "System Upgrade" -#~ msgstr "Aktualizácia systému" - -#~ msgid "Incoming Transitions" -#~ msgstr "Prichádzajúce prechody" - -#~ msgid "Event Type" -#~ msgstr "Typ udalosti" - -#~ msgid "Bank account" -#~ msgstr "Bankový účet" - -#~ msgid "Sequence Type" -#~ msgstr "Typ sekvencie" - -#~ msgid "Partner Address" -#~ msgstr "Adresa partnera" - -#~ msgid "License" -#~ msgstr "Licencia" - -#~ msgid "Invalid operation" -#~ msgstr "Neplatná operácia" - -#~ msgid "STOCK_SAVE_AS" -#~ msgstr "STOCK_SAVE_AS" - -#~ msgid "Model" -#~ msgstr "Model" - -#~ msgid "View" -#~ msgstr "Pohľad" - -#~ msgid "Open a Window" -#~ msgstr "Otvoriť okno" - -#~ msgid "Module Import" -#~ msgstr "Import modulu" - -#~ msgid "You can not remove the field '%s' !" -#~ msgstr "Nemôžte odstrániť pole '%s'!" - -#~ msgid "Zip" -#~ msgstr "PSČ" - -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgid "FYROM" -#~ msgstr "Macedónsko" - -#~ msgid "STOCK_UNDELETE" -#~ msgstr "STOCK_UNDELETE" - -#~ msgid "Finland / Suomi" -#~ msgstr "Fínština / Suomi" - -#~ msgid "Bolivia" -#~ msgstr "Bolívia" - -#~ msgid "Ghana" -#~ msgstr "Ghana" - -#~ msgid "wizard.module.update_translations" -#~ msgstr "wizard.module.update_translations" - -#~ msgid "Views" -#~ msgstr "Pohľady" - -#~ msgid "Rules" -#~ msgstr "Pravidlá" - -#~ msgid "You try to remove a module that is installed or will be installed" -#~ msgstr "" -#~ "Pokúšate sa odstrániť modul, ktorý je nainštalvaný alebo bude nainštalovaný" - -#~ msgid "STOCK_PASTE" -#~ msgstr "STOCK_PASTE" - -#~ msgid "Guatemala" -#~ msgstr "Guatemala" - -#~ msgid "Configuration Wizard" -#~ msgstr "Sprievodca nastaveným" - -#~ msgid "res.roles" -#~ msgstr "res.roles" - -#~ msgid "" -#~ "0=Very Urgent\n" -#~ "10=Not urgent" -#~ msgstr "" -#~ "0=Veľmi súrne\n" -#~ "10=Nie je súrne" - -#~ msgid "Skip" -#~ msgstr "Preskočiť" - -#~ msgid "Accepted Links in Requests" -#~ msgstr "Prijaté odkazy v požiadavky" - -#~ msgid "Kenya" -#~ msgstr "Keňa" - -#~ msgid "San Marino" -#~ msgstr "San Marino" - -#~ msgid "Bermuda" -#~ msgstr "Bermudy" - -#~ msgid "Peru" -#~ msgstr "Peru" - -#~ msgid "Set NULL" -#~ msgstr "Nastaviť NULL" - -#~ msgid "State of Mind" -#~ msgstr "Stav mysle" - -#~ msgid "Benin" -#~ msgstr "Benin" - -#~ msgid "The rule is satisfied if all test are True (AND)" -#~ msgstr "Podmienka je splená ak platia všetky podmienky (AND)." - -#~ msgid "STOCK_CONNECT" -#~ msgstr "STOCK_CONNECT" - -#~ msgid "Key" -#~ msgstr "Kľúč" - -#~ msgid "Next Call Date" -#~ msgstr "Dátum ďalšieho volania" - -#~ msgid "RML Header" -#~ msgstr "RML hlavička" - -#~ msgid "API ID" -#~ msgstr "API ID" - -#~ msgid "Mauritius" -#~ msgstr "Maurícius" - -#~ msgid "Scan for new modules" -#~ msgstr "Zistiť nové moduly" - -#~ msgid "Module Repository" -#~ msgstr "Repozitár modulov" - -#~ msgid "Security" -#~ msgstr "Bezpečnosť" - -#~ msgid "South Africa" -#~ msgstr "Južná afrika" - -#~ msgid "wizard.module.lang.export" -#~ msgstr "wizard.module.lang.export" - -#~ msgid "Installed" -#~ msgstr "Nainštalované" - -#~ msgid "Senegal" -#~ msgstr "Senegal" - -#~ msgid "Hungary" -#~ msgstr "Maďarsko" - -#~ msgid "res.groups" -#~ msgstr "res.groups" - -#~ msgid "Brazil" -#~ msgstr "Brazília" - -#~ msgid "Next Number" -#~ msgstr "Nasledovné číslo" - -#~ msgid "Rates" -#~ msgstr "Kurzy" - -#~ msgid "Albanian / Shqipëri" -#~ msgstr "Albánčina / Shqipëri" - -#~ msgid "Syria" -#~ msgstr "Sýria" - -#~ msgid "======================================================" -#~ msgstr "======================================================" - -#~ msgid "Field child2" -#~ msgstr "Odvodené pole2" - -#~ msgid "Field Selection" -#~ msgstr "Výber pola" - -#~ msgid "draft" -#~ msgstr "návrh" - -#~ msgid "Date" -#~ msgstr "Dátum" - -#~ msgid "SXW path" -#~ msgstr "SXW cesta" - -#~ msgid "Data" -#~ msgstr "Dáta" - -#~ msgid "Parent Menu" -#~ msgstr "Rodičovské menu" - -#~ msgid "Multi company" -#~ msgstr "Multi spoločnosť" - -#~ msgid "Attached To" -#~ msgstr "Pripojené k" - -#~ msgid "History" -#~ msgstr "História" - -#~ msgid "Creator" -#~ msgstr "Vytvoril" - -#~ msgid "Mexico" -#~ msgstr "Mexiko" - -#~ msgid "Swedish / svenska" -#~ msgstr "Švédčtina / svenska" - -#~ msgid "Child Companies" -#~ msgstr "Dcérske spoločnosti" - -#~ msgid "res.users" -#~ msgstr "res.users" - -#~ msgid "Nicaragua" -#~ msgstr "Nikaragua" - -#~ msgid "General Description" -#~ msgstr "Všeobecný popis" - -#~ msgid "Maintenance contract added !" -#~ msgstr "Servisná zmluva pridaná!" - -#~ msgid "Field" -#~ msgstr "Pole" - -#~ msgid "Venezuela" -#~ msgstr "Venezuela" - -#~ msgid "9. %j ==> 340" -#~ msgstr "9. %j ==> 340" - -#~ msgid "Zambia" -#~ msgstr "Zambia" - -#~ msgid "Report Xml" -#~ msgstr "Výkaz XML" - -#~ msgid "Parent Partner" -#~ msgstr "Rodičovský partner" - -#~ msgid "Cancel Upgrade" -#~ msgstr "Zrušiť aktualizáciu" - -#~ msgid "Ivory Coast (Cote D'Ivoire)" -#~ msgstr "Pobrežie Slonoviny" - -#~ msgid "Kazakhstan" -#~ msgstr "Kazachstan" - -#~ msgid "Name" -#~ msgstr "Meno" - -#~ msgid "Application Terms" -#~ msgstr "Výrazy aplikácie" - -#~ msgid "Calculate Average" -#~ msgstr "Vypočítať priemer" - -#~ msgid "Demo data" -#~ msgstr "Ukážkové dáta" - -#~ msgid "English (UK)" -#~ msgstr "Angličtina (UK)" - -#~ msgid "Antarctica" -#~ msgstr "Anarktída" - -#~ msgid "ir.actions.act_window.view" -#~ msgstr "ir.actions.act_window.view" - -#~ msgid "Web" -#~ msgstr "Web" - -#~ msgid "English (CA)" -#~ msgstr "Angličtina (CA)" - -#~ msgid "Planned Revenue" -#~ msgstr "Plánované príjmy" - -#~ msgid "" -#~ "You have to import a .CSV file wich is encoded in UTF-8. Please check that " -#~ "the first line of your file is one of the following:" -#~ msgstr "" -#~ "Musíte importovať .CSV súborov, ktorý je v kódovaní UTF-8. Prosím " -#~ "skontrolujte či prvý riadok súboru je jeden z nasledujúcich:" - -#~ msgid "Ethiopia" -#~ msgstr "Etiópia" - -#~ msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." -#~ msgstr "%H - Hodina (24-hodinový formát) ako celé číslo [00,23]." - -#~ msgid "Role" -#~ msgstr "Rola" - -#~ msgid "The state code in three chars.\n" -#~ msgstr "Kód štáatu v 3 znakoch.\n" - -#~ msgid "Group By" -#~ msgstr "Zoskupiť podľa" - -#~ msgid "STOCK_DIALOG_WARNING" -#~ msgstr "STOCK_DIALOG_WARNING" - -#~ msgid "STOCK_ZOOM_IN" -#~ msgstr "STOCK_ZOOM_IN" - -#~ msgid "STOCK_ITALIC" -#~ msgstr "STOCK_ITALIC" - -#~ msgid "SMS Configuration" -#~ msgstr "Nastavenie SMS" - -#~ msgid "Bank Type" -#~ msgstr "Typ banky" - -#~ msgid "The name of the group can not start with \"-\"" -#~ msgstr "Názov skupiny sa nemože začínať na \"-\"" - -#~ msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -#~ msgstr "Odporúčame znovu načítať menu (Ctrl+t Ctrl+r)." - -#~ msgid "Shortcut" -#~ msgstr "Skratka" - -#~ msgid "Flow Start" -#~ msgstr "Začiatok toku" - -#~ msgid "Security on Groups" -#~ msgstr "Bezpečnosť na skupinách" - -#~ msgid "Bank Account Owner" -#~ msgstr "Vlastník bankového účtu" - -#~ msgid "Resource Name" -#~ msgstr "Názov zdroja" - -#~ msgid "Hours" -#~ msgstr "Hodiny" - -#~ msgid "Accumulate" -#~ msgstr "Akumulovať" - -#~ msgid "Tree can only be used in tabular reports" -#~ msgstr "Strom može byť použitý iba tabuľkových výkazoch" - -#~ msgid "Directory" -#~ msgstr "Adresár" - -#~ msgid "Menu Name" -#~ msgstr "Názov menu" - -#~ msgid "Report Title" -#~ msgstr "Názov výkazu" - -#~ msgid "Font color" -#~ msgstr "Farba písma" - -#~ msgid "STOCK_SORT_DESCENDING" -#~ msgstr "STOCK_SORT_DESCENDING" - -#~ msgid "Malaysia" -#~ msgstr "Malajzia" - -#~ msgid "res.request.history" -#~ msgstr "res.request.history" - -#~ msgid "Partner Addresses" -#~ msgstr "Adresy partnera" - -#~ msgid "" -#~ "Some installed modules depend on the module you plan to Uninstall :\n" -#~ " %s" -#~ msgstr "" -#~ "Niektoré nainštalované moduly závisia na module, ktorý chcete odinštalovať:\n" -#~ " %s" - -#~ msgid "Events" -#~ msgstr "Udalosti" - -#~ msgid "Roles Structure" -#~ msgstr "Štruktúra rolí" - -#~ msgid "ir.actions.url" -#~ msgstr "ir.actions.url" - -#~ msgid "STOCK_MEDIA_STOP" -#~ msgstr "STOCK_MEDIA_STOP" - -#~ msgid "STOCK_DND_MULTIPLE" -#~ msgstr "STOCK_DND_MULTIPLE" - -#~ msgid "Partner Contacts" -#~ msgstr "Kontakty partnera" - -#~ msgid "Role Required" -#~ msgstr "Vyžadovaná rola" - -#~ msgid "Created Menus" -#~ msgstr "Vytvorené menu" - -#~ msgid "STOCK_DIALOG_AUTHENTICATION" -#~ msgstr "STOCK_DIALOG_AUTHENTICATION" - -#~ msgid "STOCK_ZOOM_OUT" -#~ msgstr "STOCK_ZOOM_OUT" - -#~ msgid "Action" -#~ msgstr "Akcia" - -#~ msgid "Email Configuration" -#~ msgstr "Nastavenia emailu" - -#~ msgid "ir.cron" -#~ msgstr "ir.cron" - -#~ msgid "terp-mrp" -#~ msgstr "terp-mrp" - -#~ msgid "Trigger On" -#~ msgstr "Spúšť povolená" - -#~ msgid "Fiji" -#~ msgstr "Fidži" - -#~ msgid "Size" -#~ msgstr "Veľkosť" - -#~ msgid "Sudan" -#~ msgstr "Sudán" - -#~ msgid "%m - Month as a decimal number [01,12]." -#~ msgstr "%m - Mesiac ako celé číslo [01,12]." - -#~ msgid "Export Data" -#~ msgstr "Export dát" - -#~ msgid "Micronesia" -#~ msgstr "Mikronézia" - -#~ msgid "Request History" -#~ msgstr "História požiadavky" - -#~ msgid "Israel" -#~ msgstr "Izrael" - -#~ msgid "Create Action" -#~ msgstr "Akcia vytvorenia" - -#~ msgid "HTML from HTML" -#~ msgstr "HTML z HTML" - -#~ msgid "html" -#~ msgstr "html" - -#~ msgid "Time Format" -#~ msgstr "Formát času" - -#~ msgid "Your system will be upgraded." -#~ msgstr "Systém bude aktualizovaný." - -#~ msgid "Defined Reports" -#~ msgstr "Definované výkazy" - -#~ msgid "terp-tools" -#~ msgstr "terp-tools" - -#~ msgid "Report xml" -#~ msgstr "Výkaz xml" - -#~ msgid "Modules" -#~ msgstr "Moduly" - -#~ msgid "STOCK_UNDO" -#~ msgstr "STOCK_UNDO" - -#~ msgid "Signal (button Name)" -#~ msgstr "Signál (názov tlačidla)" - -#~ msgid "Banks" -#~ msgstr "Banky" - -#~ msgid "terp-sale" -#~ msgstr "terp-sale" - -#~ msgid "%d - Day of the month as a decimal number [01,31]." -#~ msgstr "%d - Deň v mesiaci ako celé číslo [01,31]." - -#~ msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." -#~ msgstr "%I - Hodina (12 hodinový formát) ako celé číslo [01,12]." - -#~ msgid "Romanian / limba română" -#~ msgstr "Rumunčina / limba română" - -#~ msgid "STOCK_ADD" -#~ msgstr "STOCK_ADD" - -#~ msgid "Repeat Missed" -#~ msgstr "Opakovať zmeškané" - -#~ msgid "Type of the Action that is to be executed" -#~ msgstr "Typ akcie, ktorá sa má vykonať" - -#~ msgid "Object Mapping" -#~ msgstr "Mapovanie objektu" - -#~ msgid "The rate of the currency to the currency of rate 1" -#~ msgstr "Kurz meny k mene s kurzom +" - -#~ msgid "United Kingdom" -#~ msgstr "Spojené kráľovstvo" - -#~ msgid "Create / Write" -#~ msgstr "Vytvoriť / zapisovať" - -#~ msgid "The active field allows you to hide the category without removing it." -#~ msgstr "Aktívne pole umožní schovať kategórie bez jej odstránenia." - -#~ msgid "Object:" -#~ msgstr "Objekt:" - -#~ msgid "Botswana" -#~ msgstr "Botswana" - -#~ msgid "Partner Titles" -#~ msgstr "Partnerov" - -#~ msgid "Service" -#~ msgstr "Servis" - -#~ msgid "Add an auto-refresh on the view" -#~ msgstr "Pridať auto-obnovenie do pohľadu" - -#~ msgid "Modules to download" -#~ msgstr "Moduly na stiahnutie" - -#~ msgid "Advice" -#~ msgstr "Rada" - -#~ msgid "Inherited View" -#~ msgstr "Zdedený pohľad" - -#~ msgid "ir.translation" -#~ msgstr "ir.translation" - -#~ msgid "ir.rule.group" -#~ msgstr "ir.rule.group" - -#~ msgid "Installed modules" -#~ msgstr "Ninštalované modluy" - -#~ msgid "Saint Lucia" -#~ msgstr "Svätá Lucia" - -#~ msgid "Maintenance Contract" -#~ msgstr "Údržbová zmluva" - -#~ msgid "Select the object from the model on which the workflow will executed." -#~ msgstr "Vyberte objekt z modelu nad ktorým sa má spustiť workflow" - -#~ msgid "Manually Created" -#~ msgstr "Ručne vytvorené" - -#~ msgid "Calculate Count" -#~ msgstr "Spočítať počet" - -#~ msgid "Create Access" -#~ msgstr "Právo vytvorenia" - -#~ msgid "Field Mapping" -#~ msgstr "Mapovanie pola" - -#~ msgid "Field Type" -#~ msgstr "Typ pola" - -#~ msgid "State Code" -#~ msgstr "Kód štátu" - -#~ msgid "On delete" -#~ msgstr "Pri vymazaní" - -#~ msgid "Left-to-Right" -#~ msgstr "Zľava doprava" - -#~ msgid "Translatable" -#~ msgstr "Preložiteľné" - -#~ msgid "Vietnam" -#~ msgstr "Vietnam" - -#~ msgid "Signature" -#~ msgstr "Podpis" - -#~ msgid "Full Name" -#~ msgstr "Celý názov" - -#~ msgid "Mozambique" -#~ msgstr "Mozambik" - -#~ msgid "Manage Menus" -#~ msgstr "Spravovať menu" - -#~ msgid "Message" -#~ msgstr "Správa" - -#~ msgid "Contacts" -#~ msgstr "Kontakty" - -#~ msgid "Apply Scheduled Upgrades" -#~ msgstr "Aplikovať naplánované aktualizácie" - -#~ msgid "Maintenance" -#~ msgstr "Údržba" - -#~ msgid "module,type,name,res_id,src,value" -#~ msgstr "module,type,name,res_id,src,value" - -#~ msgid "Modules Management" -#~ msgstr "Správa modulov" - -#~ msgid "Version" -#~ msgstr "Verzia" - -#~ msgid "wizard.ir.model.menu.create" -#~ msgstr "wizard.ir.model.menu.create" - -#~ msgid "Transition" -#~ msgstr "Prechod" - -#~ msgid "Active" -#~ msgstr "Aktívne" - -#~ msgid "Namibia" -#~ msgstr "Namíbia" - -#~ msgid "Mongolia" -#~ msgstr "Mongolsko" - -#~ msgid "Error" -#~ msgstr "Chyba" - -#~ msgid "mdx" -#~ msgstr "mdx" - -#~ msgid "Close" -#~ msgstr "Uzavrieť" - -#~ msgid "This Window" -#~ msgstr "Toto okno" - -#~ msgid "File Format" -#~ msgstr "Formát súboru" - -#~ msgid "ISO code" -#~ msgstr "Kód ISO" - -#~ msgid "res.config.view" -#~ msgstr "res.config.view" - -#~ msgid "STOCK_INDENT" -#~ msgstr "STOCK_INDENT" - -#~ msgid "Password" -#~ msgstr "Heslo" - -#~ msgid "Fields" -#~ msgstr "Polia" - -#~ msgid "Module successfully imported !" -#~ msgstr "Modul bol úspečne importovaný!" - -#~ msgid "RML Internal Header" -#~ msgstr "RML Vnútorná hlavička" - -#~ msgid "Search View Ref." -#~ msgstr "Hľadať odkazy na pohľady" - -#~ msgid "acc_number" -#~ msgstr "acc_number" - -#~ msgid "Chinese (CN) / 简体中文" -#~ msgstr "Čínština (CN) / 简体中文" - -#~ msgid "STOCK_MEDIA_NEXT" -#~ msgstr "STOCK_MEDIA_NEXT" - -#~ msgid "Street" -#~ msgstr "Ulica" - -#~ msgid "Yugoslavia" -#~ msgstr "Juhoslávia" - -#~ msgid "Note that this operation my take a few minutes." -#~ msgstr "Táto operácia môže trvať niekoľko minúť." - -#~ msgid "XML Identifier" -#~ msgstr "XML Identifikátor" - -#~ msgid "Canada" -#~ msgstr "Kanada" - -#~ msgid "Internal Name" -#~ msgstr "Vnutorný názov" - -#~ msgid "Unknown" -#~ msgstr "Neznáme" - -#~ msgid "Change My Preferences" -#~ msgstr "Zmeniť moje nastavenia" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nesprávny názov modeltu v definícii akcie." - -#~ msgid "SMS Message" -#~ msgstr "SMS správa" - -#~ msgid "STOCK_EDIT" -#~ msgstr "STOCK_EDIT" - -#~ msgid "Cameroon" -#~ msgstr "Kamerun" - -#~ msgid "STOCK_MEDIA_FORWARD" -#~ msgstr "STOCK_MEDIA_FORWARD" - -#~ msgid "Skipped" -#~ msgstr "Preskočený" - -#~ msgid "Custom Field" -#~ msgstr "Vlastné pole" - -#~ msgid "User ID" -#~ msgstr "ID používateľa" - -#~ msgid "11. %U or %W ==> 48 (49th week)" -#~ msgstr "11. %U or %W ==> 48 (49. týždeň)" - -#~ msgid "type,name,res_id,src,value" -#~ msgstr "type,name,res_id,src,value" - -#~ msgid "Dutch / Nederlands" -#~ msgstr "Holandčina / Nederlands" - -#~ msgid "Select Report" -#~ msgstr "Vybrať výkaz" - -#~ msgid "condition" -#~ msgstr "podmienka" - -#~ msgid "1cm 28cm 20cm 28cm" -#~ msgstr "1cm 28cm 20cm 28cm" - -#~ msgid "Suffix" -#~ msgstr "Prípona" - -#~ msgid "Labels" -#~ msgstr "Popisky" - -#~ msgid "Sender's email" -#~ msgstr "Email odosielateľa" - -#~ msgid "French (CH) / Français (CH)" -#~ msgstr "Francúzčina (CH) / Français (CH)" - -#~ msgid "STOCK_NEW" -#~ msgstr "STOCK_NEW" - -#~ msgid "None" -#~ msgstr "Žiaden" - -#~ msgid "Report Fields" -#~ msgstr "Polia výkazu" - -#~ msgid "General" -#~ msgstr "Všeobecné" - -#~ msgid "STOCK_SORT_ASCENDING" -#~ msgstr "STOCK_SORT_ASCENDING" - -#~ msgid "STOCK_ABOUT" -#~ msgstr "STOCK_ABOUT" - -#~ msgid "Parent Category" -#~ msgstr "Rodičovská kategória" - -#~ msgid "Finland" -#~ msgstr "Fínsko" - -#~ msgid "Contact" -#~ msgstr "Kontakt" - -#~ msgid "ir.ui.menu" -#~ msgstr "ir.ui.menu" - -#~ msgid "Cancel Uninstall" -#~ msgstr "Zrušiť odinštalovanie" - -#~ msgid "Communication" -#~ msgstr "Komunikácia" - -#~ msgid "ir.server.object.lines" -#~ msgstr "ir.server.object.lines" - -#~ msgid "Kuwait" -#~ msgstr "Kuwait" - -#~ msgid "Instance" -#~ msgstr "Inštancia" - -#~ msgid "Nigeria" -#~ msgstr "Nigéria" - -#~ msgid "res.partner.event" -#~ msgstr "res.partner.event" - -#~ msgid "STOCK_UNDERLINE" -#~ msgstr "STOCK_UNDERLINE" - -#~ msgid "Always Searchable" -#~ msgstr "Vždy vyhľadávateľlný" - -#~ msgid "STOCK_CLOSE" -#~ msgstr "STOCK_CLOSE" - -#~ msgid "Hong Kong" -#~ msgstr "Hong Kong" - -#~ msgid "Scheduler" -#~ msgstr "Plánovač" - -#~ msgid "STOCK_BOLD" -#~ msgstr "STOCK_BOLD" - -#~ msgid "Philippines" -#~ msgstr "Filipíny" - -#~ msgid "terp-graph" -#~ msgstr "terp-graph" - -#~ msgid "2. %a ,%A ==> Fri, Friday" -#~ msgstr "2. %a ,%A ==> Pia, Piatok" - -#~ msgid "" -#~ "The selected language has been successfully installed. You must change the " -#~ "preferences of the user and open a new menu to view changes." -#~ msgstr "" -#~ "Vybraný jazyk bol úspešne nainštalovaný. Musíte zmeniť nastavenia " -#~ "používateľa a otvoriť nové menu na zobrazenie zmien." - -#~ msgid "ir.sequence" -#~ msgstr "ir.sequence" - -#~ msgid "%a - Abbreviated weekday name." -#~ msgstr "%a - Skrátený názov dňa v týždni." - -#~ msgid "Polynesia (French)" -#~ msgstr "Francúzka polynézia" - -#~ msgid "Currency Rate" -#~ msgstr "Kurz meny" - -#~ msgid "Nepal" -#~ msgstr "Nepál" - -#~ msgid "%Y - Year with century as a decimal number." -#~ msgstr "%Y - Rok so storočím ako celé číslo." - -#~ msgid "Pie Chart" -#~ msgstr "Koláčový graf" - -#~ msgid "Code" -#~ msgstr "Kód" - -#~ msgid "" -#~ "Can not create the module file:\n" -#~ " %s" -#~ msgstr "" -#~ "Nie je možné vytvoriť súbor modulu:\n" -#~ " %s" - -#~ msgid "Update Modules List" -#~ msgstr "Aktualizovať" - -#~ msgid "Continue" -#~ msgstr "Pokračovať" - -#~ msgid "Default Properties" -#~ msgstr "Predvolené vlastnosti" - -#~ msgid "Slovenian / slovenščina" -#~ msgstr "Slovninčina / slovenščina" - -#~ msgid "Export a Translation File" -#~ msgstr "Exportovať súbor prekladu" - -#~ msgid "Attachment Name" -#~ msgstr "Názov prílohy" - -#~ msgid "File" -#~ msgstr "Súbor" - -#~ msgid "Add User" -#~ msgstr "Pridať používateľa" - -#~ msgid "%b - Abbreviated month name." -#~ msgstr "%b - Skrátený názov mesiaca." - -#~ msgid "Supplier" -#~ msgstr "Dodávateľ" - -#~ msgid "Multi Actions" -#~ msgstr "Multiakcie" - -#~ msgid "Full" -#~ msgstr "Plôné" - -#~ msgid "Objects" -#~ msgstr "Objekty" - -#~ msgid "Selectable" -#~ msgstr "Vyberateľný" - -#~ msgid "Request Link" -#~ msgstr "Linka odkazu" - -#~ msgid "URL" -#~ msgstr "URL" - -#~ msgid "The full name of the country." -#~ msgstr "Celý názov krajiny." - -#~ msgid "Iteration" -#~ msgstr "Iteration" - -#~ msgid "terp-stock" -#~ msgstr "terp-stock" - -#~ msgid "United Arab Emirates" -#~ msgstr "Spojené arabské emiráty" - -#~ msgid "STOCK_MEDIA_RECORD" -#~ msgstr "STOCK_MEDIA_RECORD" - -#~ msgid "Czech Republic" -#~ msgstr "Česká republika" - -#~ msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -#~ msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" - -#~ msgid "Translations" -#~ msgstr "Preklady" - -#~ msgid "Number padding" -#~ msgstr "Zarovananie čísla" - -#~ msgid "Ukraine" -#~ msgstr "Ukrajina" - -#~ msgid "Module Category" -#~ msgstr "Kategória modulu" - -#~ msgid "United States" -#~ msgstr "USA" - -#~ msgid "Mali" -#~ msgstr "Mali" - -#~ msgid "STOCK_UNINDENT" -#~ msgstr "STOCK_UNINDENT" - -#~ msgid "Partial" -#~ msgstr "Čiastočné" - -#~ msgid "XSL path" -#~ msgstr "XSL cesta" - -#~ msgid "View Type" -#~ msgstr "Typ pohľadu" - -#~ msgid "User Interface" -#~ msgstr "Užívateľské rozhranie" - -#~ msgid "STOCK_DIALOG_INFO" -#~ msgstr "STOCK_DIALOG_INFO" - -#~ msgid "Date Created" -#~ msgstr "Dátum vytvorenia" - -#~ msgid "ir.actions.todo" -#~ msgstr "ir.actions.todo" - -#~ msgid "Get file" -#~ msgstr "Prebrať súbor" - -#~ msgid "Belgium" -#~ msgstr "Belgicko" - -#~ msgid "Language" -#~ msgstr "Jazyk" - -#~ msgid "Gambia" -#~ msgstr "Gambia" - -#~ msgid "Companies" -#~ msgstr "Spoločnosti" - -#~ msgid "Python Code" -#~ msgstr "Python kód" - -#~ msgid "Can not create the module file: %s !" -#~ msgstr "Nie je možné vytvoriť súbor modulu: %s !" - -#~ msgid "The kernel of OpenERP, needed for all installation." -#~ msgstr "Jadro systému OpenERP, potrebné pre všetky inštalácie" - -#~ msgid "Cancel" -#~ msgstr "Zrušiť" - -#~ msgid "PO File" -#~ msgstr "PO súbor" - -#~ msgid "STOCK_SPELL_CHECK" -#~ msgstr "STOCK_SPELL_CHECK" - -#~ msgid "Partners by Categories" -#~ msgstr "Partneri podľa kategórií" - -#~ msgid "Components Supplier" -#~ msgstr "Dodávateľa komponentov" - -#~ msgid "Users" -#~ msgstr "Užívateľa" - -#~ msgid "Published Version" -#~ msgstr "Publikovaná verzia" - -#~ msgid "Iceland" -#~ msgstr "Island" - -#~ msgid "Germany" -#~ msgstr "Nemecko" - -#~ msgid "Week of the year: %(woy)s" -#~ msgstr "Týždeň v roku: %(woy)." - -#~ msgid "Bad customers" -#~ msgstr "Zlí zákazníci" - -#~ msgid "STOCK_HARDDISK" -#~ msgstr "STOCK_HARDDISK" - -#~ msgid "Reports :" -#~ msgstr "Výkazy:" - -#~ msgid "STOCK_APPLY" -#~ msgstr "STOCK_APPLY" - -#~ msgid "GPL-3" -#~ msgstr "GPLv3" - -#~ msgid "GPL-2" -#~ msgstr "GPLv2" - -#~ msgid "Portugese (BR) / português (BR)" -#~ msgstr "Portugalčina (BR) / português (BR)" - -#~ msgid "Honduras" -#~ msgstr "Honduras" - -#~ msgid "Egypt" -#~ msgstr "Egypt" - -#~ msgid "" -#~ "Select the object on which the action will work (read, write, create)." -#~ msgstr "" -#~ "Vyberte objekt na ktorom bude akcia pracovat (čítať, zapisovať, vytvárať)." - -#~ msgid "Fields Description" -#~ msgstr "Popis polí" - -#~ msgid "STOCK_CDROM" -#~ msgstr "STOCK_CDROM" - -#~ msgid "Readonly" -#~ msgstr "Iba na čítanie" - -#~ msgid "Type of Event" -#~ msgstr "Typ udalosti" - -#~ msgid "Sequence Types" -#~ msgstr "Typy sekvencií" - -#~ msgid "To be installed" -#~ msgstr "Na inštaláciu" - -#~ msgid "Base" -#~ msgstr "Základ" - -#~ msgid "Notes" -#~ msgstr "Poznámnky" - -#~ msgid "Value" -#~ msgstr "Hodnota" - -#~ msgid "Update Translations" -#~ msgstr "Akutalizvať preklady" - -#~ msgid "Monaco" -#~ msgstr "Monako" - -#~ msgid "Minutes" -#~ msgstr "Minúty" - -#~ msgid "The modules have been upgraded / installed !" -#~ msgstr "Moduly boli aktualizované / nainštalované!" - -#~ msgid "Help" -#~ msgstr "Pmoc" - -#~ msgid "ir.ui.view" -#~ msgstr "ir.ui.view" - -#~ msgid "Create" -#~ msgstr "Vytvoriť" - -#~ msgid "France" -#~ msgstr "Francúzko" - -#~ msgid "Flow Stop" -#~ msgstr "Zastavenie toku" - -#~ msgid "Argentina" -#~ msgstr "Argentína" - -#~ msgid "Afghanistan, Islamic State of" -#~ msgstr "Afganistan" - -#~ msgid "Error !" -#~ msgstr "Chyba!" - -#~ msgid "Kind" -#~ msgstr "Druh" - -#~ msgid "Manual" -#~ msgstr "Ručne" - -#~ msgid "Fax" -#~ msgstr "Fax" - -#~ msgid "Thousands Separator" -#~ msgstr "Oddelovač tisícov" - -#~ msgid "" -#~ "Select the action that will be executed. Loop action will not be avaliable " -#~ "inside loop." -#~ msgstr "" -#~ "Vyberte akcia, ktorá sa vykjoná. Slučkové akcie nebudú dostupné v slučke." - -#~ msgid "STOCK_GO_UP" -#~ msgstr "STOCK_GO_UP" - -#~ msgid "res.request" -#~ msgstr "res.request" - -#~ msgid "pdf" -#~ msgstr "pdf" - -#~ msgid "Company" -#~ msgstr "Spoločnosť" - -#~ msgid "Panama" -#~ msgstr "Panama" - -#~ msgid "Preview" -#~ msgstr "Náhľad" - -#~ msgid "Skip Step" -#~ msgstr "Preskočiť krok" - -#~ msgid "Multi Company" -#~ msgstr "Multi spoločnosť" - -#~ msgid "Day of the year: %(doy)s" -#~ msgstr "Deň v roku: %(doy)." - -#~ msgid "Neutral Zone" -#~ msgstr "Neutrálna zńa" - -#~ msgid "Properties" -#~ msgstr "Vlastnosti" - -#~ msgid "%A - Full weekday name." -#~ msgstr "%A - Celý názov dňa v týždni." - -#~ msgid "Months" -#~ msgstr "Mesiac" - -#~ msgid "Selection" -#~ msgstr "Výber" - -#~ msgid "Attachments" -#~ msgstr "Prílohy" - -#~ msgid "Other Actions" -#~ msgstr "Iné akcie" - -#~ msgid "Miss" -#~ msgstr "Chýba" - -#~ msgid "City" -#~ msgstr "Mesto" - -#~ msgid "Italy" -#~ msgstr "Taliansko" - -#~ msgid "<>" -#~ msgstr "<>" - -#~ msgid "<=" -#~ msgstr "<=" - -#~ msgid "GPL-3 or later version" -#~ msgstr "GPLv3 alebo neskoršia verzia" - -#~ msgid "HTML from HTML(Mako)" -#~ msgstr "HTML z HTML(Mako)" - -#~ msgid "Address" -#~ msgstr "Adresa" - -#~ msgid "Installed version" -#~ msgstr "Inštalované verzie" - -#~ msgid "Postal Address" -#~ msgstr "Poštová adresa" - -#~ msgid "Parent Company" -#~ msgstr "Rodičovská spoločnosť" - -#~ msgid "Rate" -#~ msgstr "Kurz" - -#~ msgid "Congo" -#~ msgstr "Kongo" - -#~ msgid "ir.exports.line" -#~ msgstr "ir.exports.line" - -#~ msgid "STOCK_MEDIA_PAUSE" -#~ msgstr "STOCK_MEDIA_PAUSE" - -#~ msgid "All Properties" -#~ msgstr "Všetky vlastnosti" - -#~ msgid "Window Actions" -#~ msgstr "Akcie okna" - -#~ msgid "STOCK_HOME" -#~ msgstr "STOCK_HOME" - -#~ msgid "Object Name" -#~ msgstr "Názov objektu" - -#~ msgid "Not Installed" -#~ msgstr "Nie je nainštalované" - -#~ msgid "Outgoing Transitions" -#~ msgstr "Odchádzajúce prechody" - -#~ msgid "Icon" -#~ msgstr "Ikona" - -#~ msgid "Ok" -#~ msgstr "Ok" - -#~ msgid "Requests" -#~ msgstr "Požiadavky" - -#~ msgid "Yemen" -#~ msgstr "Jemen" - -#~ msgid "Or" -#~ msgstr "Alebo" - -#~ msgid "Pakistan" -#~ msgstr "Pakistan" - -#~ msgid "Import module" -#~ msgstr "Import modulu" - -#~ msgid "STOCK_DISCONNECT" -#~ msgstr "STOCK_DISCONNECT" - -#~ msgid "Laos" -#~ msgstr "Laos" - -#~ msgid "Email" -#~ msgstr "Email" - -#~ msgid "Resynchronise Terms" -#~ msgstr "Synchronizácia výrazov" - -#~ msgid "Stop All" -#~ msgstr "Zastaviť všetko" - -#~ msgid "3. %x ,%X ==> 12/05/08, 18:25:20" -#~ msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" - -#~ msgid "Cascade" -#~ msgstr "Kaskáda" - -#~ msgid "Next Configuration Step" -#~ msgstr "Nasledovný krok nastavenia" - -#~ msgid "Comment" -#~ msgstr "Komentár" - -#~ msgid "Romania" -#~ msgstr "Rumunsko" - -#~ msgid "STOCK_PREFERENCES" -#~ msgstr "STOCK_PREFERENCES" - -#~ msgid "State Name" -#~ msgstr "Názov štátu" - -#~ msgid "Timezone" -#~ msgstr "Časová zóna" - -#~ msgid "STOCK_GOTO_LAST" -#~ msgstr "STOCK_GOTO_LAST" - -#~ msgid "ir.actions.report.xml" -#~ msgstr "ir.actions.report.xml" - -#~ msgid "OpenERP Partners" -#~ msgstr "OpenERP partneri" - -#~ msgid "Belarus" -#~ msgstr "Bielorusko" - -#~ msgid "Action Name" -#~ msgstr "Názov akcie" - -#~ msgid "Street2" -#~ msgstr "Ulica2" - -#~ msgid "User" -#~ msgstr "Používateľ" - -#~ msgid "Open Window" -#~ msgstr "Otvoriť okno" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Switzerland" -#~ msgstr "Švajčiarsko" - -#~ msgid "Grenada" -#~ msgstr "Grenada" - -#~ msgid "Trigger Configuration" -#~ msgstr "Nastavenie spúšte" - -#~ msgid "Open Report" -#~ msgstr "Otvoriť výkaz" - -#~ msgid "res.company" -#~ msgstr "res.company" - -#~ msgid "System upgrade done" -#~ msgstr "Aktualizácia systému hotová" - -#~ msgid "STOCK_FLOPPY" -#~ msgstr "STOCK_FLOPPY" - -#~ msgid "SMS" -#~ msgstr "SMS" - -#~ msgid "Costa Rica" -#~ msgstr "Kostarika" - -#~ msgid "Other Partners" -#~ msgstr "Iní partneri" - -#~ msgid "Status" -#~ msgstr "Stav" - -#~ msgid "Currencies" -#~ msgstr "Meny" - -#~ msgid "Hour 00->12: %(h12)s" -#~ msgstr "Hodiny 00->12: %(h12)s" - -#~ msgid "Denmark" -#~ msgstr "Dánsko" - -#~ msgid "Estonia" -#~ msgstr "Estónsko" - -#~ msgid "Netherlands" -#~ msgstr "Holandsko" - -#~ msgid "Low Level Objects" -#~ msgstr "Nízkourovňové objekty" - -#~ msgid "ir.report.custom" -#~ msgstr "ir.report.custom" - -#~ msgid "ir.values" -#~ msgstr "ir.values" - -#~ msgid "STOCK_ZOOM_FIT" -#~ msgstr "STOCK_ZOOM_FIT" - -#~ msgid "Congo, The Democratic Republic of the" -#~ msgstr "Kongo" - -#~ msgid "Request" -#~ msgstr "Požiadavky" - -#~ msgid "Japan" -#~ msgstr "Japonsko" - -#~ msgid "Number of Calls" -#~ msgstr "Počet volaní" - -#~ msgid "Language file loaded." -#~ msgstr "Jazykový súbor nahraný." - -#~ msgid "Modules to update" -#~ msgstr "Moduly na aktualizáciu" - -#~ msgid "STOCK_GOTO_BOTTOM" -#~ msgstr "STOCK_GOTO_BOTTOM" - -#~ msgid "Add RML header" -#~ msgstr "Pridať RML hlavičku" - -#~ msgid "Greece" -#~ msgstr "Grécko" - -#~ msgid "Croatian / hrvatski jezik" -#~ msgstr "Chorváčtina / hrvatski jezik" - -#~ msgid "STOCK_GO_FORWARD" -#~ msgstr "STOCK_GO_FORWARD" - -#~ msgid "Python code to be executed" -#~ msgstr "Python kód na spustenie" - -#~ msgid "Partner Category" -#~ msgstr "Kategória partnera" - -#~ msgid "Trigger" -#~ msgstr "Spúšť" - -#~ msgid "Translate" -#~ msgstr "Preložiť" - -#~ msgid "Body" -#~ msgstr "Telo" - -#~ msgid "Send Email" -#~ msgstr "Poslať email" - -#~ msgid "STOCK_SELECT_FONT" -#~ msgstr "STOCK_SELECT_FONT" - -#~ msgid "Menu Action" -#~ msgstr "Akcia menu" - -#~ msgid "Graph" -#~ msgstr "Graf" - -#~ msgid "Print format" -#~ msgstr "Formát tlače" - -#~ msgid "ir.model.data" -#~ msgstr "ir.model.data" - -#~ msgid "Access Rights" -#~ msgstr "Prístupové práva" - -#~ msgid "Greenland" -#~ msgstr "Grónsko" - -#~ msgid "Function Name" -#~ msgstr "Názov funkcie" - -#~ msgid "Cyprus" -#~ msgstr "Cyprus" - -#~ msgid "Subject" -#~ msgstr "Predmet" - -#~ msgid "From" -#~ msgstr "Od" - -#~ msgid "Next" -#~ msgstr "Nasledujúci" - -#~ msgid "terp-report" -#~ msgstr "terp-report" - -#~ msgid "RML content" -#~ msgstr "RML obsah" - -#~ msgid "Incoming transitions" -#~ msgstr "Prichádzajúce prechody" - -#~ msgid "China" -#~ msgstr "Čína" - -#~ msgid "Password empty !" -#~ msgstr "Heslo je prázdne!" - -#~ msgid "Western Sahara" -#~ msgstr "Západná Sahara" - -#~ msgid "Indonesia" -#~ msgstr "Indonézia" - -#~ msgid "At Once" -#~ msgstr "Naraz" - -#~ msgid "Bulgaria" -#~ msgstr "Bulharsko" - -#~ msgid "Angola" -#~ msgstr "Angola" - -#~ msgid "STOCK_HELP" -#~ msgstr "STOCK_HELP" - -#~ msgid "Currency" -#~ msgstr "Mena" - -#~ msgid "Channel Name" -#~ msgstr "Názov kanálu" - -#~ msgid "5. %y, %Y ==> 08, 2008" -#~ msgstr "5. %y, %Y ==> 08, 2008" - -#~ msgid "Partners" -#~ msgstr "Partneri" - -#~ msgid "Iraq" -#~ msgstr "Irák" - -#~ msgid "Module import" -#~ msgstr "Import modulu" - -#~ msgid "ir.sequence.type" -#~ msgstr "ir.sequence.type" - -#~ msgid "CSV File" -#~ msgstr "CSV súbor" - -#~ msgid "Base Object" -#~ msgstr "Základný objekt" - -#~ msgid "terp-crm" -#~ msgstr "terp-crm" - -#~ msgid "STOCK_STRIKETHROUGH" -#~ msgstr "STOCK_STRIKETHROUGH" - -#~ msgid "(year)=" -#~ msgstr "(rok)=" - -#~ msgid "Dependencies :" -#~ msgstr "Závislosti:" - -#~ msgid "terp-partner" -#~ msgstr "terp-partner" - -#~ msgid "Field Label" -#~ msgstr "Názov pola" - -#~ msgid "Condition" -#~ msgstr "Podmienka" - -#~ msgid "Information" -#~ msgstr "Informácia" - -#~ msgid "RML path" -#~ msgstr "RML path" - -#~ msgid "Next Configuration Wizard" -#~ msgstr "Nasledujúci sprievodca nastavením" - -#~ msgid "Other" -#~ msgstr "Iné" - -#~ msgid "Reply" -#~ msgstr "Odpovedať" - -#~ msgid "Untranslated terms" -#~ msgstr "Nepreložené výrazy" - -#~ msgid "Import New Language" -#~ msgstr "Import nového jazyka" - -#~ msgid "Activities" -#~ msgstr "Aktivity" - -#~ msgid "Auto-Refresh" -#~ msgstr "Auto-Obnovenie" - -#~ msgid "=" -#~ msgstr "=" - -#~ msgid "Access Controls Grid" -#~ msgstr "Pole prístupov" - -#~ msgid "Actions" -#~ msgstr "Akcie" - -#~ msgid "Turkmenistan" -#~ msgstr "Turkmenistan" - -#~ msgid "Document" -#~ msgstr "Dokument" - -#~ msgid "STOCK_REFRESH" -#~ msgstr "STOCK_REFRESH" - -#~ msgid "STOCK_STOP" -#~ msgstr "STOCK_STOP" - -#~ msgid "Update" -#~ msgstr "Aktualizácia" - -#~ msgid "Technical guide" -#~ msgstr "Technický sprievodca" - -#~ msgid "STOCK_CONVERT" -#~ msgstr "STOCK_CONVERT" - -#~ msgid "Tanzania" -#~ msgstr "Tanzánia" - -#~ msgid "STOCK_EXECUTE" -#~ msgstr "STOCK_EXECUTE" - -#~ msgid "Channels" -#~ msgstr "Kanály" - -#~ msgid "Schedule for Installation" -#~ msgstr "Naplánovať na inštaláciu" - -#~ msgid "Advanced Search" -#~ msgstr "Pohročilé hľadanie" - -#~ msgid "Bank Accounts" -#~ msgstr "Bankové účty" - -#~ msgid "Send" -#~ msgstr "Poslať" - -#~ msgid "Internal Header/Footer" -#~ msgstr "Vnutorná hlavička/pätička" - -#~ msgid "Start configuration" -#~ msgstr "Začiatok nastavenia" - -#~ msgid "STOCK_COLOR_PICKER" -#~ msgstr "STOCK_COLOR_PICKER" - -#~ msgid "Destination Instance" -#~ msgstr "Cieľová inštancia" - -#~ msgid "https://translations.launchpad.net/openobject" -#~ msgstr "https://translations.launchpad.net/openobject" - -#~ msgid "XML path" -#~ msgstr "XML cesta" - -#~ msgid "Phone" -#~ msgstr "Telefón" - -#~ msgid "Thailand" -#~ msgstr "Thajsko" - -#~ msgid ">" -#~ msgstr ">" - -#~ msgid "STOCK_PRINT" -#~ msgstr "STOCK_PRINT" - -#~ msgid "<" -#~ msgstr "<" - -#~ msgid "Uzbekistan" -#~ msgstr "Uzbekistan" - -#~ msgid "ir.actions.act_window" -#~ msgstr "ir.actions.act_window" - -#~ msgid "Virgin Islands (USA)" -#~ msgstr "Panenské ostrovy (USA)" - -#~ msgid "Taiwan" -#~ msgstr "Taiwan" - -#~ msgid "Action Usage" -#~ msgstr "Použitie akcie" - -#~ msgid "workflow.workitem" -#~ msgstr "workflow.workitem" - -#~ msgid "View :" -#~ msgstr "Pohľad:" - -#~ msgid "Suppliers" -#~ msgstr "Dodávateľia" - -#~ msgid "Next Wizard" -#~ msgstr "Ďalší sprievodca" - -#~ msgid "Filename" -#~ msgstr "Názov súboru" - -#~ msgid "Access" -#~ msgstr "Prístup" - -#~ msgid "Slovak Republic" -#~ msgstr "Slovenská republika" - -#~ msgid "Weeks" -#~ msgstr "Týždne" - -#~ msgid "Group Name" -#~ msgstr "Názov skupiny" - -#~ msgid "Segmentation" -#~ msgstr "Segmentácia" - -#~ msgid "STOCK_FIND" -#~ msgstr "STOCK_FIND" - -#~ msgid "Limit" -#~ msgstr "Limit" - -#~ msgid "Workflow to be executed on this model." -#~ msgstr "Workflow, ktorý sa má spustiť na tomto modeli." - -#~ msgid "Warning" -#~ msgstr "Varovanie" - -#~ msgid "Arabic / الْعَرَبيّة" -#~ msgstr "Arabčina / الْعَرَبيّة" - -#~ msgid "Gibraltar" -#~ msgstr "Gibraltár" - -#~ msgid "Virgin Islands (British)" -#~ msgstr "Panenské ostrovy (Britské)" - -#~ msgid "STOCK_MEDIA_PREVIOUS" -#~ msgstr "STOCK_MEDIA_PREVIOUS" - -#~ msgid "Czech / Čeština" -#~ msgstr "Čeština/ Čeština" - -#~ msgid "Calculate Sum" -#~ msgstr "Vypočítať sumu" - -#~ msgid "Singapore" -#~ msgstr "Singapúr" - -#~ msgid "STOCK_NETWORK" -#~ msgstr "STOCK_NETWORK" - -#~ msgid "Country" -#~ msgstr "Krajina" - -#~ msgid "Complete Name" -#~ msgstr "Celý názov" - -#~ msgid "Is Object" -#~ msgstr "Je objekt" - -#~ msgid "Category Name" -#~ msgstr "Názov kategórie" - -#~ msgid "Select Groups" -#~ msgstr "Výber skupín" - -#~ msgid "Weight" -#~ msgstr "Váha" - -#~ msgid "%X - Appropriate time representation." -#~ msgstr "%X - Vhodný formát času." - -#~ msgid "Your Logo - Use a size of about 450x150 pixels." -#~ msgstr "Vaše logo - Použite veľkosť okolo 450x150 pixelov." - -#~ msgid "" -#~ "The Separator Format should be like [,n] where 0 < n :starting from Unit " -#~ "digit.-1 will end the separation. e.g. [3,2,-1] will represent 106500 to be " -#~ "1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as " -#~ "106,500. Provided ',' as the thousand separator in each case." -#~ msgstr "" -#~ "Formát oddelovača má byť ako [,n] kde 0 < n :začínajúc od jednotky číslice. -" -#~ "1 ukončí oddelenie. napr: [3,2,-1] bude prestavovať 10650 ako 1,06,500;[1,2,-" -#~ "1] bude 106,50,0;[3] bude 106,500. Pri každom prípade bol použitý oddelovač " -#~ "tisícov '.'." - -#~ msgid "New Partner" -#~ msgstr "Nový partner" - -#~ msgid "Portrait" -#~ msgstr "Portrét" - -#~ msgid "Wizard Button" -#~ msgstr "Tlačidlo sprievodcu" - -#~ msgid "STOCK_DIRECTORY" -#~ msgstr "STOCK_DIRECTORY" - -#~ msgid "Latest version" -#~ msgstr "Posledná verzia" - -#~ msgid "ir.actions.server" -#~ msgstr "ir.actions.server" - -#~ msgid "Record Rules" -#~ msgstr "Pravidlá záznamu" - -#~ msgid "Localisation" -#~ msgstr "Lokalizácia" - -#~ msgid "Simplified Interface" -#~ msgstr "Zjednodušené prostredie" - -#~ msgid "Chile" -#~ msgstr "Čile" - -#~ msgid "STOCK_REVERT_TO_SAVED" -#~ msgstr "STOCK_REVERT_TO_SAVED" - -#~ msgid "Import a Translation File" -#~ msgstr "Import súbor prekladu" - -#~ msgid "Italian / Italiano" -#~ msgstr "Taliančina / Italiano" - -#~ msgid "Croatia" -#~ msgstr "Chorvátsko" - -#~ msgid "Partner Categories" -#~ msgstr "Kategórie partnera" - -#~ msgid "Account Owner" -#~ msgstr "Vlastník objektu" - -#~ msgid "Function" -#~ msgstr "Funkcia" - -#~ msgid "Delivery" -#~ msgstr "doručenie" - -#~ msgid "Corp." -#~ msgstr "Corp." - -#~ msgid "Workflow Instances" -#~ msgstr "Inštancie workflow" - -#~ msgid "Partners: " -#~ msgstr "Partneri: " - -#~ msgid "North Korea" -#~ msgstr "Severná kória" - -#~ msgid "Create Object" -#~ msgstr "Vytvoriť objekt" - -#~ msgid "Polish / Język polski" -#~ msgstr "Polština / Język polski" - -#~ msgid "Export Name" -#~ msgstr "Názov exportu" - -#~ msgid "Choose a language to install:" -#~ msgstr "Vyberte jazyk na inštaláciu:" - -#~ msgid "Sri Lanka" -#~ msgstr "Srí Lanka" - -#~ msgid "Russian / русский язык" -#~ msgstr "Ruština / русский язык" - -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Metóda nie je implementovaná na tento objekt!" - -#~ msgid "Key/value '%s' not found in selection field '%s'" -#~ msgstr "Kľúč / hodnota '%s' nebola nájdená vo výbere poľa '%s'" - -#~ msgid "Id is not the same than existing one: %s" -#~ msgstr "ID nie je to isté, ako existujúce: %s" - -#~ msgid "Attached ID" -#~ msgstr "ID pripojenia" - -#~ msgid "Relation not found: %s on '%s'" -#~ msgstr "Vzťah nenájdený: %s po '%s'" - -#~ msgid "Others Partners" -#~ msgstr "Ostatní partneri" diff --git a/debian/po/sq.po b/debian/po/sq.po index 604519da129..c828018e1db 100644 --- a/debian/po/sq.po +++ b/debian/po/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/sr.po b/debian/po/sr.po index 1bf6b98d2b1..4936cbe6d62 100644 --- a/debian/po/sr.po +++ b/debian/po/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:45+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/sv.po b/debian/po/sv.po index 1abda4c3f78..11787106bc3 100644 --- a/debian/po/sv.po +++ b/debian/po/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" "X-Poedit-Language: Swedish\n" #. Type: string diff --git a/debian/po/tr.po b/debian/po/tr.po index 1037c93b86f..d2c89ae20f7 100644 --- a/debian/po/tr.po +++ b/debian/po/tr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-08-24 22:41+0300\n" -"PO-Revision-Date: 2011-05-17 20:53+0000\n" -"Last-Translator: Ayhan KIZILTAN \n" +"PO-Revision-Date: 2010-01-29 05:27+0000\n" +"Last-Translator: Fabien (Open ERP) \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-05-18 06:22+0000\n" -"X-Generator: Launchpad (build 12959)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/uk.po b/debian/po/uk.po index ec02b0ed450..22b0fc04789 100644 --- a/debian/po/uk.po +++ b/debian/po/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/vi.po b/debian/po/vi.po index 2fc62d4664f..4cc7447aafc 100644 --- a/debian/po/vi.po +++ b/debian/po/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po index 54af64bd9f2..6a16c115e3d 100644 --- a/debian/po/zh_CN.po +++ b/debian/po/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" #. Type: string #. Description diff --git a/debian/po/zh_TW.po b/debian/po/zh_TW.po index 3d5c7ac0a2c..17230e8c04d 100644 --- a/debian/po/zh_TW.po +++ b/debian/po/zh_TW.po @@ -12,8 +12,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-19 04:50+0000\n" -"X-Generator: Launchpad (build 12758)\n" +"X-Launchpad-Export-Date: 2011-09-01 04:46+0000\n" +"X-Generator: Launchpad (build 13827)\n" "X-Poedit-Country: TAIWAN\n" "X-Poedit-Language: Chinese\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/debian/rules b/debian/rules index 30ce14141e4..7d8b210d1ba 100755 --- a/debian/rules +++ b/debian/rules @@ -1,12 +1,18 @@ #!/usr/bin/make -f -EXTRA_MODULES_PATH ?= ../addons - %: dh ${@} -override_dh_installchangelogs: - dh_installchangelogs doc/Changelog +override_dh_pysupport: + echo "rsync" + sh -c "[ -d debian/openerp/usr/lib/python2.6 ] && rsync -av openerp/ debian/openerp/usr/lib/python2.6/dist-packages/openerp/" || true + sh -c "[ -d debian/openerp/usr/lib/python2.7 ] && rsync -av openerp/ debian/openerp/usr/lib/python2.7/dist-packages/openerp/" || true + rm -Rf debian/openerp/usr/openerp debian/openerp/usr/lib/python2.6/dist-packages/tests debian/openerp/usr/lib/python2.7/dist-packages/tests + dh_pysupport + rm -Rf debian/openerp/usr/lib + + override_dh_installinit: dh_installinit --update-rcd-params='defaults 21' + diff --git a/debian/source/format b/debian/source/format deleted file mode 100644 index d3827e75a5c..00000000000 --- a/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -1.0 diff --git a/doc/openerp-server.conf b/doc/openerp-server.conf deleted file mode 100644 index 4f13c8a45c2..00000000000 --- a/doc/openerp-server.conf +++ /dev/null @@ -1,34 +0,0 @@ -[options] -without_demo = True -; This is the password that allows database operations: -; admin_passwd = admin -upgrade = False -verbose = False -netrpc = True -; netrpc_interface = -; netrpc_port = -xmlrpc = True -; xmlrpc_interface = -xmlrpc_port = 8069 -db_host = False -db_port = False -; Please uncomment the following line *after* you have created the -; database. It activates the auto module check on startup. -; db_name = terp -db_user = openerp -db_password = False -; Uncomment these for xml-rpc over SSL -; secure = True -; secure_cert_file = /etc/openerp/server.cert -; secure_pkey_file = /etc/openerp/server.key -root_path = None -soap = False -translate_modules = ['all'] -demo = {} -addons_path = None -reportgz = False - -; Static http parameters -static_http_enable = False -static_http_document_root = /var/www/html -static_http_url_prefix = / \ No newline at end of file diff --git a/gunicorn.conf.py b/gunicorn.conf.py new file mode 100644 index 00000000000..7b117c040f6 --- /dev/null +++ b/gunicorn.conf.py @@ -0,0 +1,17 @@ +import openerp +# Standard OpenERP XML-RPC port. +bind = '127.0.0.1:8069' +pidfile = '.gunicorn.pid' +# This is the big TODO: safely use more than a single worker. +workers = 1 +# Some application-wide initialization is needed. +on_starting = openerp.wsgi.on_starting +when_ready = openerp.wsgi.when_ready +timeout = 240 # openerp request-response cycle can be quite long + +# Setting openerp.conf.xxx will be better than setting +# openerp.tools.config['xxx'] +conf = openerp.tools.config +conf['addons_path'] = '/home/openerp/repos/addons/trunk-xmlrpc' +conf['static_http_document_root'] = '/tmp' +#conf['log_level'] = 10 # 10 is DEBUG diff --git a/doc/Changelog b/history/Changelog similarity index 100% rename from doc/Changelog rename to history/Changelog diff --git a/doc/Changelog-4.x b/history/Changelog-4.x similarity index 100% rename from doc/Changelog-4.x rename to history/Changelog-4.x diff --git a/doc/Changelog-6.x b/history/Changelog-6.x similarity index 100% rename from doc/Changelog-6.x rename to history/Changelog-6.x diff --git a/doc/INSTALL b/history/INSTALL similarity index 100% rename from doc/INSTALL rename to history/INSTALL diff --git a/doc/README.urpmi b/history/README.urpmi similarity index 100% rename from doc/README.urpmi rename to history/README.urpmi diff --git a/doc/README.userchange b/history/README.userchange similarity index 100% rename from doc/README.userchange rename to history/README.userchange diff --git a/tools/change-loglevel.sh b/history/change-loglevel.sh similarity index 100% rename from tools/change-loglevel.sh rename to history/change-loglevel.sh diff --git a/doc/tests/check_profile_l10n_all.py b/history/check_profile_l10n_all.py similarity index 100% rename from doc/tests/check_profile_l10n_all.py rename to history/check_profile_l10n_all.py diff --git a/sql/clean-model.sql b/history/clean-model.sql similarity index 100% rename from sql/clean-model.sql rename to history/clean-model.sql diff --git a/tools/gen_graph.sh b/history/gen_graph.sh similarity index 100% rename from tools/gen_graph.sh rename to history/gen_graph.sh diff --git a/tools/get-srvstats.sh b/history/get-srvstats.sh similarity index 100% rename from tools/get-srvstats.sh rename to history/get-srvstats.sh diff --git a/tools/list-services.sh b/history/list-services.sh similarity index 100% rename from tools/list-services.sh rename to history/list-services.sh diff --git a/doc/migrate/3.3.0-3.4.0/README b/history/migrate/3.3.0-3.4.0/README similarity index 100% rename from doc/migrate/3.3.0-3.4.0/README rename to history/migrate/3.3.0-3.4.0/README diff --git a/doc/migrate/3.3.0-3.4.0/post.py b/history/migrate/3.3.0-3.4.0/post.py similarity index 100% rename from doc/migrate/3.3.0-3.4.0/post.py rename to history/migrate/3.3.0-3.4.0/post.py diff --git a/doc/migrate/3.3.0-3.4.0/pre.py b/history/migrate/3.3.0-3.4.0/pre.py similarity index 100% rename from doc/migrate/3.3.0-3.4.0/pre.py rename to history/migrate/3.3.0-3.4.0/pre.py diff --git a/doc/migrate/3.4.0-4.0.0/README b/history/migrate/3.4.0-4.0.0/README similarity index 100% rename from doc/migrate/3.4.0-4.0.0/README rename to history/migrate/3.4.0-4.0.0/README diff --git a/doc/migrate/3.4.0-4.0.0/post-tiny.py b/history/migrate/3.4.0-4.0.0/post-tiny.py similarity index 100% rename from doc/migrate/3.4.0-4.0.0/post-tiny.py rename to history/migrate/3.4.0-4.0.0/post-tiny.py diff --git a/doc/migrate/3.4.0-4.0.0/post.py b/history/migrate/3.4.0-4.0.0/post.py similarity index 100% rename from doc/migrate/3.4.0-4.0.0/post.py rename to history/migrate/3.4.0-4.0.0/post.py diff --git a/doc/migrate/3.4.0-4.0.0/pre-tiny.py b/history/migrate/3.4.0-4.0.0/pre-tiny.py similarity index 100% rename from doc/migrate/3.4.0-4.0.0/pre-tiny.py rename to history/migrate/3.4.0-4.0.0/pre-tiny.py diff --git a/doc/migrate/3.4.0-4.0.0/pre.py b/history/migrate/3.4.0-4.0.0/pre.py similarity index 100% rename from doc/migrate/3.4.0-4.0.0/pre.py rename to history/migrate/3.4.0-4.0.0/pre.py diff --git a/doc/migrate/4.0.0-4.2.0/pre.py b/history/migrate/4.0.0-4.2.0/pre.py similarity index 100% rename from doc/migrate/4.0.0-4.2.0/pre.py rename to history/migrate/4.0.0-4.2.0/pre.py diff --git a/doc/migrate/4.0.0-4.2.0/tiny/README b/history/migrate/4.0.0-4.2.0/tiny/README similarity index 100% rename from doc/migrate/4.0.0-4.2.0/tiny/README rename to history/migrate/4.0.0-4.2.0/tiny/README diff --git a/doc/migrate/4.0.0-4.2.0/tiny/pre-tiny.py b/history/migrate/4.0.0-4.2.0/tiny/pre-tiny.py similarity index 100% rename from doc/migrate/4.0.0-4.2.0/tiny/pre-tiny.py rename to history/migrate/4.0.0-4.2.0/tiny/pre-tiny.py diff --git a/doc/migrate/4.2.0-4.4.0/pre.py b/history/migrate/4.2.0-4.4.0/pre.py similarity index 100% rename from doc/migrate/4.2.0-4.4.0/pre.py rename to history/migrate/4.2.0-4.4.0/pre.py diff --git a/tools/module_graph.py b/history/module_graph.py similarity index 100% rename from tools/module_graph.py rename to history/module_graph.py diff --git a/tools/xml2yml.py b/history/xml2yml.py similarity index 100% rename from tools/xml2yml.py rename to history/xml2yml.py diff --git a/pixmaps/openerp-header.bmp b/install/openerp-header.bmp similarity index 100% rename from pixmaps/openerp-header.bmp rename to install/openerp-header.bmp diff --git a/pixmaps/openerp-header.png b/install/openerp-header.png similarity index 100% rename from pixmaps/openerp-header.png rename to install/openerp-header.png diff --git a/pixmaps/openerp-icon.ico b/install/openerp-icon.ico similarity index 100% rename from pixmaps/openerp-icon.ico rename to install/openerp-icon.ico diff --git a/pixmaps/openerp-icon.png b/install/openerp-icon.png similarity index 100% rename from pixmaps/openerp-icon.png rename to install/openerp-icon.png diff --git a/man/openerp-server.1 b/install/openerp-server.1 similarity index 100% rename from man/openerp-server.1 rename to install/openerp-server.1 diff --git a/install/openerp-server.conf b/install/openerp-server.conf new file mode 100644 index 00000000000..ead261e5218 --- /dev/null +++ b/install/openerp-server.conf @@ -0,0 +1,7 @@ +[options] +; This is the password that allows database operations: +; admin_passwd = admin +db_host = False +db_port = False +db_user = openerp +db_password = False diff --git a/doc/openerp-server.init b/install/openerp-server.init similarity index 100% rename from doc/openerp-server.init rename to install/openerp-server.init diff --git a/doc/openerp-server.logrotate b/install/openerp-server.logrotate similarity index 100% rename from doc/openerp-server.logrotate rename to install/openerp-server.logrotate diff --git a/pixmaps/openerp.ico b/install/openerp.ico similarity index 100% rename from pixmaps/openerp.ico rename to install/openerp.ico diff --git a/pixmaps/openerp.png b/install/openerp.png similarity index 100% rename from pixmaps/openerp.png rename to install/openerp.png diff --git a/man/openerp_serverrc.5 b/install/openerp_serverrc.5 similarity index 100% rename from man/openerp_serverrc.5 rename to install/openerp_serverrc.5 diff --git a/ssl-cert.cfg b/install/ssl-cert.cfg similarity index 100% rename from ssl-cert.cfg rename to install/ssl-cert.cfg diff --git a/openerp-server b/openerp-server index 3586b11c7d2..52ad49104b1 100755 --- a/openerp-server +++ b/openerp-server @@ -27,12 +27,9 @@ OpenERP is an ERP+CRM program for small and medium businesses. The whole source code is distributed under the terms of the GNU Public Licence. -(c) 2003-TODAY, Fabien Pinckaers - OpenERP s.a. +(c) 2003-TODAY, Fabien Pinckaers - OpenERP SA """ -#---------------------------------------------------------- -# python imports -#---------------------------------------------------------- import logging import os import signal @@ -45,139 +42,127 @@ import openerp __author__ = openerp.release.author __version__ = openerp.release.version -if os.name == 'posix': - import pwd - # We DON't log this using the standard logger, because we might mess - # with the logfile's permissions. Just do a quick exit here. - if pwd.getpwuid(os.getuid())[0] == 'root' : - sys.stderr.write("Attempted to run OpenERP server as root. This is not good, aborting.\n") +def check_root_user(): + """ Exit if the process's user is 'root' (on POSIX system).""" + if os.name == 'posix': + import pwd + if pwd.getpwuid(os.getuid())[0] == 'root' : + sys.stderr.write("Running as user 'root' is a security risk, aborting.\n") + sys.exit(1) + +def check_postgres_user(): + """ Exit if the configured database user is 'postgres'. + + This function assumes the configuration has been initialized. + """ + config = openerp.tools.config + if config['db_user'] == 'postgres': + sys.stderr.write("Using the database user 'postgres' is a security risk, aborting.") sys.exit(1) -#----------------------------------------------------------------------- -# parse the command line -#----------------------------------------------------------------------- -openerp.tools.config.parse_config(sys.argv[1:]) -config = openerp.tools.config +def report_configuration(): + """ Log the server version and some configuration values. -#---------------------------------------------------------- -# get logger -#---------------------------------------------------------- -openerp.netsvc.init_logger() -logger = logging.getLogger('server') + This function assumes the configuration has been initialized. + """ + config = openerp.tools.config + logger = logging.getLogger('server') + logger.info("OpenERP version %s", __version__) + for name, value in [('addons paths', config['addons_path']), + ('database hostname', config['db_host'] or 'localhost'), + ('database port', config['db_port'] or '5432'), + ('database user', config['db_user'])]: + logger.info("%s: %s", name, value) -logger.info("OpenERP version - %s", __version__) -for name, value in [('addons_path', config['addons_path']), - ('database hostname', config['db_host'] or 'localhost'), - ('database port', config['db_port'] or '5432'), - ('database user', config['db_user'])]: - logger.info("%s - %s", name, value) +def setup_pid_file(): + """ Create a file with the process id written in it. -# Don't allow if the connection to PostgreSQL done by postgres user -if config['db_user'] == 'postgres': - logger.error("Connecting to the database as 'postgres' user is forbidden, as it present major security issues. Shutting down.") - sys.exit(1) + This function assumes the configuration has been initialized. + """ + config = openerp.tools.config + if config['pidfile']: + fd = open(config['pidfile'], 'w') + pidtext = "%d" % (os.getpid()) + fd.write(pidtext) + fd.close() -#---------------------------------------------------------- -# init net service -#---------------------------------------------------------- -logger.info('initialising distributed objects services') +def preload_registry(dbname): + """ Preload a registry, and start the cron.""" + try: + db, registry = openerp.pooler.get_db_and_pool(dbname, update_module=config['init'] or config['update'], pooljobs=False) -#---------------------------------------------------------- -# Load and update databases if requested -#---------------------------------------------------------- + # jobs will start to be processed later, when openerp.cron.start_master_thread() is called by openerp.service.start_services() + registry.schedule_cron_jobs() + except Exception: + logging.exception('Failed to initialize database `%s`.', dbname) -if not ( config["stop_after_init"] or \ - config["translate_in"] or \ - config["translate_out"] ): - openerp.osv.osv.start_object_proxy() - openerp.service.web_services.start_web_services() - http_server = openerp.service.http_server - netrpc_server = openerp.service.netrpc_server - http_server.init_servers() - http_server.init_xmlrpc() - http_server.init_static_http() - netrpc_server.init_servers() - -if config['db_name']: - for dbname in config['db_name'].split(','): - db, pool = openerp.pooler.get_db_and_pool(dbname, update_module=config['init'] or config['update'], pooljobs=False) +def run_test_file(dbname, test_file): + """ Preload a registry, possibly run a test file, and start the cron.""" + try: + db, registry = openerp.pooler.get_db_and_pool(dbname, update_module=config['init'] or config['update'], pooljobs=False) cr = db.cursor() - - if config["test_file"]: - logger.info('loading test file %s', config["test_file"]) - openerp.tools.convert_yaml_import(cr, 'base', file(config["test_file"]), {}, 'test', True) - cr.rollback() - - pool.get('ir.cron')._poolJobs(db.dbname) - + logger = logging.getLogger('server') + logger.info('loading test file %s', test_file) + openerp.tools.convert_yaml_import(cr, 'base', file(test_file), {}, 'test', True) + cr.rollback() cr.close() + except Exception: + logging.exception('Failed to initialize database `%s` and run test file `%s`.', dbname, test_file) + + +def export_translation(): + config = openerp.tools.config + dbname = config['db_name'] + logger = logging.getLogger('server') -#---------------------------------------------------------- -# translation stuff -#---------------------------------------------------------- -if config["translate_out"]: if config["language"]: msg = "language %s" % (config["language"],) else: msg = "new language" - logger.info('writing translation file for %s to %s', msg, config["translate_out"]) + logger.info('writing translation file for %s to %s', msg, + config["translate_out"]) fileformat = os.path.splitext(config["translate_out"])[-1][1:].lower() buf = file(config["translate_out"], "w") - dbname = config['db_name'] cr = openerp.pooler.get_db(dbname).cursor() - openerp.tools.trans_export(config["language"], config["translate_modules"] or ["all"], buf, fileformat, cr) + openerp.tools.trans_export(config["language"], + config["translate_modules"] or ["all"], buf, fileformat, cr) cr.close() buf.close() logger.info('translation file written successfully') - sys.exit(0) -if config["translate_in"]: +def import_translation(): + config = openerp.tools.config context = {'overwrite': config["overwrite_existing_translations"]} dbname = config['db_name'] + cr = openerp.pooler.get_db(dbname).cursor() - openerp.tools.trans_load(cr, - config["translate_in"], - config["language"], - context=context) + openerp.tools.trans_load( cr, config["translate_in"], config["language"], + context=context) openerp.tools.trans_update_res_ids(cr) cr.commit() cr.close() - sys.exit(0) - -#---------------------------------------------------------------------------------- -# if we don't want the server to continue to run after initialization, we quit here -#---------------------------------------------------------------------------------- -if config["stop_after_init"]: - sys.exit(0) - -openerp.netsvc.start_agent() - -#---------------------------------------------------------- -# Launch Servers -#---------------------------------------------------------- - -LST_SIGNALS = ['SIGINT', 'SIGTERM'] - -SIGNALS = dict( - [(getattr(signal, sign), sign) for sign in LST_SIGNALS] -) +# Variable keeping track of the number of calls to the signal handler defined +# below. This variable is monitored by ``quit_on_signals()``. quit_signals_received = 0 -def handler(signum, frame): - """ - :param signum: the signal number +def signal_handler(sig, frame): + """ Signal handler: exit ungracefully on the second handled signal. + + :param sig: the signal number :param frame: the interrupted stack frame or None """ global quit_signals_received quit_signals_received += 1 if quit_signals_received > 1: + # logging.shutdown was already called at this point. sys.stderr.write("Forced shutdown.\n") os._exit(0) -def dumpstacks(signum, frame): +def dumpstacks(sig, frame): + """ Signal handler: dump a stack trace for each existing thread.""" # code from http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application#answer-2569696 # modified for python 2.5 compatibility thread_map = dict(threading._active, **threading._limbo) @@ -191,47 +176,82 @@ def dumpstacks(signum, frame): code.append(" %s" % (line.strip())) logging.getLogger('dumpstacks').info("\n".join(code)) -for signum in SIGNALS: - signal.signal(signum, handler) +def setup_signal_handlers(): + """ Register the signal handler defined above. """ + SIGNALS = map(lambda x: getattr(signal, "SIG%s" % x), "INT TERM".split()) + map(lambda sig: signal.signal(sig, signal_handler), SIGNALS) + if os.name == 'posix': + signal.signal(signal.SIGQUIT, dumpstacks) -if os.name == 'posix': - signal.signal(signal.SIGQUIT, dumpstacks) +def quit_on_signals(): + """ Wait for one or two signals then shutdown the server. + + The first SIGINT or SIGTERM signal will initiate a graceful shutdown while + a second one if any will force an immediate exit. + + """ + # Wait for a first signal to be handled. (time.sleep will be interrupted + # by the signal handler.) + while quit_signals_received == 0: + time.sleep(60) -def quit(): - openerp.netsvc.Agent.quit() - openerp.netsvc.Server.quitAll() if config['pidfile']: os.unlink(config['pidfile']) - logger = logging.getLogger('shutdown') - logger.info("Initiating OpenERP Server shutdown") - logger.info("Hit CTRL-C again or send a second signal to immediately terminate the server...") - logging.shutdown() - # manually join() all threads before calling sys.exit() to allow a second signal - # to trigger _force_quit() in case some non-daemon threads won't exit cleanly. - # threading.Thread.join() should not mask signals (at least in python 2.5) - for thread in threading.enumerate(): - if thread != threading.currentThread() and not thread.isDaemon(): - while thread.isAlive(): - # need a busyloop here as thread.join() masks signals - # and would present the forced shutdown - thread.join(0.05) - time.sleep(0.05) + openerp.service.stop_services() sys.exit(0) -if config['pidfile']: - fd = open(config['pidfile'], 'w') - pidtext = "%d" % (os.getpid()) - fd.write(pidtext) - fd.close() +if __name__ == "__main__": -openerp.netsvc.Server.startAll() + os.environ["TZ"] = "UTC" -logger.info('OpenERP server is running, waiting for connections...') + check_root_user() + openerp.tools.config.parse_config(sys.argv[1:]) + check_postgres_user() + openerp.netsvc.init_logger() + report_configuration() -while quit_signals_received == 0: - time.sleep(60) + config = openerp.tools.config -quit() + setup_signal_handlers() + + if config["test_file"]: + run_test_file(config['db_name'], config['test_file']) + sys.exit(0) + + if config["translate_out"]: + export_translation() + sys.exit(0) + + if config["translate_in"]: + import_translation() + sys.exit(0) + + if not config["stop_after_init"]: + # Some module register themselves when they are loaded so we need the + # services to be running before loading any registry. + openerp.service.start_services() + + if config['db_name']: + for dbname in config['db_name'].split(','): + preload_registry(dbname) + + if config["stop_after_init"]: + sys.exit(0) + + for m in openerp.conf.server_wide_modules: + try: + __import__(m) + # Call any post_load hook. + info = openerp.modules.module.load_information_from_description_file(m) + if info['post_load']: + getattr(sys.modules[m], info['post_load'])() + except Exception: + logging.exception('Failed to load server-wide module `%s`', m) + + setup_pid_file() + logger = logging.getLogger('server') + logger.info('OpenERP server is running, waiting for connections...') + quit_on_signals() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/openerp/.apidoc b/openerp/.apidoc new file mode 100644 index 00000000000..9109e4388fe --- /dev/null +++ b/openerp/.apidoc @@ -0,0 +1 @@ +excludes: pychart release openerp-server test run_tests addons/base_quality_interrogation \ No newline at end of file diff --git a/openerp/__init__.py b/openerp/__init__.py index b7b5fc1b533..7e723c41f9d 100644 --- a/openerp/__init__.py +++ b/openerp/__init__.py @@ -22,6 +22,8 @@ """ OpenERP core library. """ +# The hard-coded super-user id (a.k.a. administrator, or root user). +SUPERUSER_ID = 1 import addons import conf @@ -41,6 +43,7 @@ import tiny_socket import tools import wizard import workflow +import wsgi # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/openerp/addons/__init__.py b/openerp/addons/__init__.py index 88a0d113151..1f863eca509 100644 --- a/openerp/addons/__init__.py +++ b/openerp/addons/__init__.py @@ -22,10 +22,15 @@ """ Addons module. -This module only serves to contain OpenERP addons. For the code to -manage those addons, see openerp.modules. This module conveniently -reexports some symbols from openerp.modules. Importing them from here -is deprecated. +This module serves to contain all OpenERP addons, across all configured addons +paths. For the code to manage those addons, see openerp.modules. + +Addons are made available here (i.e. under openerp.addons) after +openerp.tools.config.parse_config() is called (so that the addons paths +are known). + +This module also conveniently reexports some symbols from openerp.modules. +Importing them from here is deprecated. """ diff --git a/openerp/addons/base/__init__.py b/openerp/addons/base/__init__.py index fe483c40602..16a61521fb4 100644 --- a/openerp/addons/base/__init__.py +++ b/openerp/addons/base/__init__.py @@ -23,6 +23,8 @@ import ir import module import res import publisher_warranty +import report +import test # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/openerp/addons/base/__openerp__.py b/openerp/addons/base/__openerp__.py index 75e0a8c56d0..f7981133142 100644 --- a/openerp/addons/base/__openerp__.py +++ b/openerp/addons/base/__openerp__.py @@ -24,7 +24,7 @@ { 'name': 'Base', 'version': '1.3', - 'category': 'Generic Modules/Base', + 'category': 'System', 'description': """The kernel of OpenERP, needed for all installation.""", 'author': 'OpenERP SA', 'maintainer': 'OpenERP SA', @@ -53,29 +53,26 @@ 'module/wizard/base_import_language_view.xml', 'module/wizard/base_module_upgrade_view.xml', 'module/wizard/base_module_configuration_view.xml', - 'module/wizard/base_module_shortcut_data.xml', 'module/wizard/base_export_language_view.xml', 'module/wizard/base_update_translations_view.xml', 'res/res_request_view.xml', 'res/res_lang_view.xml', 'res/res_log_view.xml', - 'res/partner/partner_report.xml', - 'res/partner/partner_view.xml', - 'res/partner/partner_shortcut_data.xml', - 'res/bank_view.xml', - 'res/country_view.xml', + 'res/res_partner_report.xml', + 'res/res_partner_view.xml', + 'res/res_partner_shortcut_data.xml', + 'res/res_bank_view.xml', + 'res/res_country_view.xml', 'res/res_currency_view.xml', - 'res/partner/crm_view.xml', - 'res/partner/wizard/partner_sms_send_view.xml', - 'res/partner/wizard/partner_wizard_spam_view.xml', - 'res/partner/wizard/partner_clear_ids_view.xml', - 'res/partner/wizard/partner_wizard_ean_check_view.xml', - 'res/partner/partner_data.xml', - + 'res/res_partner_event_view.xml', + 'res/wizard/partner_sms_send_view.xml', + 'res/wizard/partner_wizard_massmail_view.xml', + 'res/wizard/partner_clear_ids_view.xml', + 'res/wizard/partner_wizard_ean_check_view.xml', + 'res/res_partner_data.xml', 'res/ir_property_view.xml', 'security/base_security.xml', 'publisher_warranty/publisher_warranty_view.xml', - 'security/ir.model.access.csv', 'res/res_widget_view.xml', 'res/res_widget_data.xml', @@ -83,8 +80,7 @@ ], 'demo_xml': [ 'base_demo.xml', - 'res/partner/partner_demo.xml', - 'res/partner/crm_demo.xml', + 'res/res_partner_demo.xml', 'res/res_widget_demo.xml', ], 'test': [ @@ -94,8 +90,11 @@ 'test/bug_lp541545.xml', 'test/test_osv_expression.yml', 'test/test_ir_rule.yml', # <-- These tests modify/add/delete ir_rules. - 'test/test_config_users.yml', 'test/test_ir_values.yml', + # Commented because this takes some time. + # This must be (un)commented with the corresponding import statement + # in test/__init__.py. + # 'test/test_ir_cron.yml', # <-- These tests perform a roolback. ], 'installable': True, 'active': True, diff --git a/openerp/addons/base/base.sql b/openerp/addons/base/base.sql index 17378061b29..55c4d41aba5 100644 --- a/openerp/addons/base/base.sql +++ b/openerp/addons/base/base.sql @@ -106,6 +106,11 @@ CREATE TABLE ir_act_server ( ) INHERITS (ir_actions); +CREATE TABLE ir_act_client ( + primary key(id) +) +INHERITS (ir_actions); + CREATE TABLE ir_ui_view ( id serial NOT NULL, @@ -285,6 +290,7 @@ CREATE TABLE ir_module_module ( state character varying(16), latest_version character varying(64), shortdesc character varying(256), + complexity character varying(32), category_id integer REFERENCES ir_module_category ON DELETE SET NULL, certificate character varying(64), description text, diff --git a/openerp/addons/base/base_data.xml b/openerp/addons/base/base_data.xml index 3f8208b8ec4..feaac206723 100644 --- a/openerp/addons/base/base_data.xml +++ b/openerp/addons/base/base_data.xml @@ -1002,20 +1002,15 @@ - OpenERP S.A. - + Your Company + + + - Fabien Pinckaers - Chaussee de Namur 40 - 1367 - Gerompont - (+32).81.81.37.00 default - - @@ -1036,22 +1031,16 @@ - OpenERP S.A. + Your Company - Free Business Solutions - Web: http://www.openerp.com - Tel: (+32).81.81.37.00 - Bank: CPH 126-2013269-07 - IBAN: BE74 1262 0132 6907 - SWIFT: CPHBBE75 - VAT: BE0477.472.701 + Company business slogan + Web: www.companyname.com - Tel: +1-212-555-12345 + IBAN: XX12 3456 7890 1234 5678 - SWIFT: SWIFTCODE - VAT: Company vat number - - - OpenERP S.A. - - Administrator - @@ -1085,16 +1074,17 @@ - - VEB - Bs - 2.95 + + + VEF + Bs.F + 0.0001 4 - - 2768.45 - + + 5.864 + @@ -1598,12 +1588,20 @@ 0.01 4 ¢ + 691.3153 - + + + + localhost + localhost + + + MUR diff --git a/openerp/addons/base/base_demo.xml b/openerp/addons/base/base_demo.xml index 73f6fa400a5..3d1eae3c4bc 100644 --- a/openerp/addons/base/base_demo.xml +++ b/openerp/addons/base/base_demo.xml @@ -19,7 +19,6 @@ demo Demo User Mr Demo - diff --git a/openerp/addons/base/base_update.xml b/openerp/addons/base/base_update.xml index 7432018fd94..26f971b8334 100644 --- a/openerp/addons/base/base_update.xml +++ b/openerp/addons/base/base_update.xml @@ -24,6 +24,10 @@ + + @@ -71,31 +75,29 @@ --> - res.users.form.modif + res.users.preferences.form res.users form
- - - - - - - - - - - - - - + + + + + + + + + + + + + + + +
@@ -106,47 +108,46 @@ form
- - - - - + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + - + + + + @@ -175,16 +176,30 @@ - + + + + + + Company Bank Accounts + res.partner.bank + form + tree,form + + Configure your company's bank account and select those that must appear on the report footer. You can reorder bank accounts from the list view. If you use the accounting application of OpenERP, journals and accounts will be created automatically based on these data. + + + res.company.form res.company @@ -192,18 +207,42 @@ - - - + + + + + + + + - - - - - - + + + + + + + + + + + + + + + + + + + + +