From f345da353a844ecf0c681c5f1b33befbe0691fd0 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 23 Sep 2008 18:59:59 +0300 Subject: [PATCH 001/251] Add the old Mandriva RPM-related files bzr revid: p_christ@hol.gr-20080923155959-zrz01lqqx22j63mq --- doc/README.urpmi | 36 ++++++++++ doc/openerp-server.conf | 20 ++++++ doc/openerp-server.init | 134 +++++++++++++++++++++++++++++++++++ doc/openerp-server.logrotate | 5 ++ 4 files changed, 195 insertions(+) create mode 100644 doc/README.urpmi create mode 100644 doc/openerp-server.conf create mode 100644 doc/openerp-server.init create mode 100644 doc/openerp-server.logrotate diff --git a/doc/README.urpmi b/doc/README.urpmi new file mode 100644 index 00000000000..c31e558d5b5 --- /dev/null +++ b/doc/README.urpmi @@ -0,0 +1,36 @@ +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 tinyerp + 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 tinyerp-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 diff --git a/doc/openerp-server.conf b/doc/openerp-server.conf new file mode 100644 index 00000000000..16a00b4251c --- /dev/null +++ b/doc/openerp-server.conf @@ -0,0 +1,20 @@ +[options] +without_demo = False +upgrade = False +verbose = False +xmlrpc = True +db_user = False +db_password = False +root_path = None +soap = False +translate_modules = ['all'] +db_name = terp +netrpc = True +demo = {} +interface = +db_host = False +db_port = False +port = 8069 +addons_path = None +reportgz = False + diff --git a/doc/openerp-server.init b/doc/openerp-server.init new file mode 100644 index 00000000000..0eb3d363875 --- /dev/null +++ b/doc/openerp-server.init @@ -0,0 +1,134 @@ +#!/bin/bash +# tinyerp-server This shell script takes care of starting and stopping +# TinyERP server +# +# chkconfig: 345 95 05 +# description: TinyERP server +# +# pidfile: /var/run/tinyerp-server.pid +# config: /etc/tinyerp-server.conf + +### BEGIN INIT INFO +# Provides: tinyerp-server +# Required-Start: postgresql +# Required-Stop: postgresql +# Should-Start: $network harddrake +# Default-Start: 345 +# Short-Description: Launches the TinyERP server. +# Description: This startup script launches the TinyERP server. +### END INIT INFO + +# Source function library. +. /etc/rc.d/init.d/functions + +PIDFILE=/var/run/tinyerp/tinyerp-server.pid +LOCKFILE=/var/lock/subsys/tinyerp-server +LOGFILE=/var/log/tinyerp/tinyerp-server.log + +OPTS="--pidfile=$PIDFILE --logfile=$LOGFILE" + +prog="tinyerp-server" +desc="TinyERP Server Daemon" + +# check if the tinyerp-server conf file is present, then use it +if [ -f /etc/tinyerp-server.conf ]; then + OPTS="$OPTS -c /etc/tinyerp-server.conf" +fi + +# Source function library +if [ -f /etc/init.d/functions ] ; then + . /etc/init.d/functions +elif [ -f /etc/rc.d/init.d/functions ] ; then + . /etc/rc.d/init.d/functions +else + exit 0 +fi + +# check the existence of the tinyerp-server script +[ -z "/usr/bin/tinyerp-server" ] && exit 0 + +RETVAL=0 + +start() { + echo -n $"Starting $desc ($prog): " + daemon --user tinyerp --check tinyerp-server \ + "/usr/bin/setsid /usr/bin/tinyerp-server \ + -c /etc/tinyerp-server.conf \ + --pidfile=$PIDFILE \ + --logfile=$LOGFILE &" + + RETVAL=$? + echo + [ $RETVAL -eq 0 ] && touch $LOCKFILE + return $RETVAL +} + +stop() { + echo -n $"Stopping $desc ($prog): " + kill -TERM `cat $PIDFILE` > /dev/null 2>&1 + RETVAL=$? + if [ $RETVAL -eq 0 ] ; then + rm -f $LOCKFILE + + echo_success + echo + else + echo_failure + echo + fi + return $RETVAL +} + +restart() { + stop + start +} + +condrestart() { + [ -e $LOCKFILE ] && restart || : +} + +status() { + if [ -f $PIDFILE ] ; then + checkpid `cat $PIDFILE` + RETVAL=$? + if [ $RETVAL -eq 0 ] ; then + echo $"$prog is running..." + else + echo $"$prog is stopped" + fi + else + echo $"$prog is stopped" + fi + return $RETVAL +} + +case "$1" in +start) + start + ;; + +stop) + stop + ;; + +restart|reload) + restart + ;; + +condrestart) + condrestart + ;; + +status) + status + ;; + +probe) + exit 0 + ;; + +*) + echo $"Usage: $0 {start|stop|status|restart|condrestart|reload}" + exit 1 +esac diff --git a/doc/openerp-server.logrotate b/doc/openerp-server.logrotate new file mode 100644 index 00000000000..5d8585fe5d2 --- /dev/null +++ b/doc/openerp-server.logrotate @@ -0,0 +1,5 @@ +/var/log/tinyerp/*.log { + copytruncate + missingok + notifempty +} From 410247285e6c3b6f4e791c3bd3ed70108d6cff63 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 23 Sep 2008 19:01:56 +0300 Subject: [PATCH 002/251] Rename TinyERP to OpenERP in scripts. bzr revid: p_christ@hol.gr-20080923160156-if74p01bs4js0mr6 --- doc/README.urpmi | 2 +- doc/openerp-server.conf | 2 +- doc/openerp-server.init | 42 ++++++++++++++++++------------------ doc/openerp-server.logrotate | 2 +- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/doc/README.urpmi b/doc/README.urpmi index c31e558d5b5..719ac8249f3 100644 --- a/doc/README.urpmi +++ b/doc/README.urpmi @@ -25,7 +25,7 @@ unix user name): $ logout # logout -3. Launch service daemon by "service tinyerp-server start". +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. diff --git a/doc/openerp-server.conf b/doc/openerp-server.conf index 16a00b4251c..0bb48ced4b5 100644 --- a/doc/openerp-server.conf +++ b/doc/openerp-server.conf @@ -1,5 +1,5 @@ [options] -without_demo = False +without_demo = True upgrade = False verbose = False xmlrpc = True diff --git a/doc/openerp-server.init b/doc/openerp-server.init index 0eb3d363875..fa8c6f8abb4 100644 --- a/doc/openerp-server.init +++ b/doc/openerp-server.init @@ -1,38 +1,38 @@ #!/bin/bash -# tinyerp-server This shell script takes care of starting and stopping -# TinyERP server +# openerp-server This shell script takes care of starting and stopping +# OpenERP server # # chkconfig: 345 95 05 -# description: TinyERP server +# description: OpenERP server # -# pidfile: /var/run/tinyerp-server.pid -# config: /etc/tinyerp-server.conf +# pidfile: /var/run/openerp-server.pid +# config: /etc/openerp-server.conf ### BEGIN INIT INFO -# Provides: tinyerp-server +# Provides: openerp-server # Required-Start: postgresql # Required-Stop: postgresql # Should-Start: $network harddrake # Default-Start: 345 -# Short-Description: Launches the TinyERP server. -# Description: This startup script launches the TinyERP server. +# Short-Description: Launches the OpenERP server. +# Description: This startup script launches the OpenERP server. ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions -PIDFILE=/var/run/tinyerp/tinyerp-server.pid -LOCKFILE=/var/lock/subsys/tinyerp-server -LOGFILE=/var/log/tinyerp/tinyerp-server.log +PIDFILE=/var/run/tinyerp/openerp-server.pid +LOCKFILE=/var/lock/subsys/openerp-server +LOGFILE=/var/log/tinyerp/openerp-server.log OPTS="--pidfile=$PIDFILE --logfile=$LOGFILE" -prog="tinyerp-server" -desc="TinyERP Server Daemon" +prog="openerp-server" +desc="OpenERP Server Daemon" -# check if the tinyerp-server conf file is present, then use it -if [ -f /etc/tinyerp-server.conf ]; then - OPTS="$OPTS -c /etc/tinyerp-server.conf" +# check if the openerp-server conf file is present, then use it +if [ -f /etc/openerp-server.conf ]; then + OPTS="$OPTS -c /etc/openerp-server.conf" fi # Source function library @@ -44,16 +44,16 @@ else exit 0 fi -# check the existence of the tinyerp-server script -[ -z "/usr/bin/tinyerp-server" ] && exit 0 +# check the existence of the openerp-server script +[ -z "/usr/bin/openerp-server" ] && exit 0 RETVAL=0 start() { echo -n $"Starting $desc ($prog): " - daemon --user tinyerp --check tinyerp-server \ - "/usr/bin/setsid /usr/bin/tinyerp-server \ - -c /etc/tinyerp-server.conf \ + daemon --user tinyerp --check openerp-server \ + "/usr/bin/setsid /usr/bin/openerp-server \ + -c /etc/openerp-server.conf \ --pidfile=$PIDFILE \ --logfile=$LOGFILE &" diff --git a/doc/openerp-server.logrotate b/doc/openerp-server.logrotate index 5d8585fe5d2..e1f7f803a7d 100644 --- a/doc/openerp-server.logrotate +++ b/doc/openerp-server.logrotate @@ -1,4 +1,4 @@ -/var/log/tinyerp/*.log { +/var/log/openerp/*.log { copytruncate missingok notifempty From 72d7572f742034cc2642bed51f4a55125fa7b33d Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 23 Sep 2008 23:50:34 +0300 Subject: [PATCH 003/251] Fix +x at setup.py bzr revid: p_christ@hol.gr-20080923205034-qg1cj8fx5v6i87zo --- setup.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 setup.py diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 From 7defd6c2c18553d4eb7c470316217c5be56dc331 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 26 Sep 2008 00:32:34 +0300 Subject: [PATCH 004/251] Specify login,name for default user. bzr revid: p_christ@hol.gr-20080925213234-n8zpad6bmw0qctuf --- bin/addons/base/security/base_security.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/addons/base/security/base_security.xml b/bin/addons/base/security/base_security.xml index c72f31418f3..b724ab56cbc 100644 --- a/bin/addons/base/security/base_security.xml +++ b/bin/addons/base/security/base_security.xml @@ -34,6 +34,8 @@ Users --> + Administrator + admin Administrator From 7d9e3b7c1648b290eb56f448e67f2447a5b2b798 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 26 Sep 2008 10:28:27 +0300 Subject: [PATCH 005/251] Reduce fatal exception to a warning for 'eval' If the data xml contains an eval expression that does not compute, the convert procedure would throw an exception all the way up. Now, catch that and only display a warning. Hopefully, this warning will be fixed to contain more useful info about its nature. bzr revid: p_christ@hol.gr-20080926072827-41i7lihw2i9uaisk --- bin/tools/convert.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/tools/convert.py b/bin/tools/convert.py index 0b073127420..24a14c840b1 100644 --- a/bin/tools/convert.py +++ b/bin/tools/convert.py @@ -106,7 +106,12 @@ def _eval_xml(self,node, pool, cr, uid, idref, context=None): all_timezones=[] pytz=pytzclass() idref['pytz'] = pytz - return eval(a_eval, idref) + try: + return eval(a_eval, idref) + except: + logger = netsvc.Logger() + logger.notifyChannel("init", netsvc.LOG_WARNING, 'could eval(%s) for %s in %s, please get back and fix it!' % (a_eval,node.getAttribute('name'),context)) + return "" if t == 'xml': def _process(s, idref): m = re.findall('[^%]%\((.*?)\)[ds]', s) From d3766694a7d694e9279c6d9e3700fcfe79a572e8 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 26 Sep 2008 10:49:33 +0300 Subject: [PATCH 006/251] Fix hardcoded paths in initscript bzr revid: p_christ@hol.gr-20080926074933-mnqm3zwtbxvfrgku --- doc/openerp-server.init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/openerp-server.init b/doc/openerp-server.init index fa8c6f8abb4..01d2b7b6b33 100644 --- a/doc/openerp-server.init +++ b/doc/openerp-server.init @@ -21,9 +21,9 @@ # Source function library. . /etc/rc.d/init.d/functions -PIDFILE=/var/run/tinyerp/openerp-server.pid +PIDFILE=/var/run/openerp/openerp-server.pid LOCKFILE=/var/lock/subsys/openerp-server -LOGFILE=/var/log/tinyerp/openerp-server.log +LOGFILE=/var/log/openerp/openerp-server.log OPTS="--pidfile=$PIDFILE --logfile=$LOGFILE" From c97ce70ba7220e3a5652043ea9ce111d1b137d33 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 28 Sep 2008 19:33:34 +0300 Subject: [PATCH 007/251] Fix logger issues. First, we have to import logger.handlers. Second, the logic behind enabling the colors was reversed, so that escapes don't show up in the file. bzr revid: p_christ@hol.gr-20080928163334-pibi94nvkan0xr9e --- bin/netsvc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index e67fcea9c58..968958d5e10 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -35,6 +35,7 @@ import SimpleXMLRPCServer, signal, sys, xmlrpclib import SocketServer import socket import logging +import logging.handlers import os _service = {} @@ -177,7 +178,7 @@ def init_logger(): logging.getLogger().addHandler(handler) logging.getLogger().setLevel(logging.INFO) - if isinstance(handler, logging.StreamHandler) and os.name != 'nt': + if (not isinstance(handler, logging.FileHandler)) and os.name != 'nt': # change color of level names # uses of ANSI color codes # see http://pueblo.sourceforge.net/doc/manual/ansi_color_codes.html From f303913a054cd85f25686789d64149f08a066847 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 29 Sep 2008 23:01:57 +0300 Subject: [PATCH 008/251] Use tools.config['ssl*'] to specify ssl files. bzr revid: p_christ@hol.gr-20080929200157-fybifyfr533scxaq --- bin/ssl/SecureXMLRPCServer.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/bin/ssl/SecureXMLRPCServer.py b/bin/ssl/SecureXMLRPCServer.py index 689715d70ea..13f37cd5860 100644 --- a/bin/ssl/SecureXMLRPCServer.py +++ b/bin/ssl/SecureXMLRPCServer.py @@ -42,6 +42,10 @@ import SocketServer import os, socket, sys import SimpleXMLRPCServer from OpenSSL import SSL +import tools +import netsvc + +logger = netsvc.Logger() class SSLBugFix: @@ -104,8 +108,14 @@ class SecureTCPServer(SocketServer.TCPServer): ctx.set_options(SSL.OP_NO_SSLv2) dir = os.path.join(os.getcwd(), os.path.dirname(sys.argv[0])) - ctx.use_privatekey_file (os.path.join(dir, 'server.pkey')) - ctx.use_certificate_file(os.path.join(dir, 'server.cert')) + sslkeyname = tools.config.get('sslkey',os.path.join(dir, 'server.pkey')) + sslcertname = tools.config.get('sslcert',os.path.join(dir, 'server.cert')) + try: + ctx.use_privatekey_file (sslkeyname) + ctx.use_certificate_file(sslcertname) + except: + logger.notifyChannel("init", netsvc.LOG_ERROR,"SSL key exception: " + str(sys.exc_info())) + raise Exception, "No ssl keys found in %s, %s" % (sslcertname,sslkeyname) self.socket = SSLBugFix(SSL.Connection(ctx, socket.socket(self.address_family, self.socket_type))) From df41f43f20c8e9110ba81905658b586007c3ffc9 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 29 Sep 2008 23:41:15 +0300 Subject: [PATCH 009/251] When importing .po files, drop the fuzzy entries. bzr revid: p_christ@hol.gr-20080929204115-rf704z1m9ugikz3w --- bin/tools/translate.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 28c8667b569..eab982b2b87 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -95,6 +95,7 @@ class TinyPoFile(object): else: tmp_tnrs = [] line = None + fuzzy = False while not line: if 0 == len(self.lines): raise StopIteration() @@ -103,6 +104,8 @@ class TinyPoFile(object): while line.startswith('#'): if line.startswith('#:'): tmp_tnrs.append( line[2:].strip().split(':') ) + elif line.startswith('#,') and (line[2:].strip() == 'fuzzy'): + fuzzy = True line = self.lines.pop(0).strip() if not line.startswith('msgid'): raise Exception("malformed file") @@ -129,12 +132,15 @@ class TinyPoFile(object): trad += unquote(line) line = self.lines.pop(0).strip() - if tmp_tnrs: + if tmp_tnrs and not fuzzy: type, name, res_id = tmp_tnrs.pop(0) for t, n, r in tmp_tnrs: self.tnrs.append((t, n, r, source, trad)) self.first = False + + if name == None: + return self.next() return type, name, res_id, source, trad def write_infos(self, modules): From aa652a1d822c210c020df35287d1935994a8f129 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 8 Oct 2008 12:26:07 +0300 Subject: [PATCH 010/251] Revert "test change" This reverts commit bc1c5864d6fe2301d5e5303f2026ce86890f2c61. bzr revid: p_christ@hol.gr-20081008092607-zrib1mephk9r716w --- setup.py | 1 - 1 file changed, 1 deletion(-) mode change 100644 => 100755 setup.py diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 0ae3383ad4c..c81a06e2f18 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- - ############################################################################## # # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved. From 7a139b8a4ff886a65980116970daa8fc7a8cb9ae Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 9 Oct 2008 13:20:53 +0300 Subject: [PATCH 011/251] Add the 'model' field in ir.actions.report.xml form bzr revid: p_christ@hol.gr-20081009102053-ljn6tntfqbn83uuq --- bin/addons/base/ir/ir.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/addons/base/ir/ir.xml b/bin/addons/base/ir/ir.xml index 8d0cdbca54e..116f1998b12 100644 --- a/bin/addons/base/ir/ir.xml +++ b/bin/addons/base/ir/ir.xml @@ -203,6 +203,7 @@
+ From e266b37a6890c2ac850899789342c12cf8c8c926 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 9 Oct 2008 13:22:12 +0300 Subject: [PATCH 012/251] Fix the tsum count in printscreen bzr revid: p_christ@hol.gr-20081009102212-58h0wfyevwghsxty --- bin/report/printscreen/ps_list.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/report/printscreen/ps_list.py b/bin/report/printscreen/ps_list.py index 0187b681e56..1c501d42f3a 100644 --- a/bin/report/printscreen/ps_list.py +++ b/bin/report/printscreen/ps_list.py @@ -179,7 +179,8 @@ class report_printscreen_list(report_int): node_line = new_doc.createElement("row") lines.appendChild(node_line) node_line = new_doc.createElement("row") - for f in range(0,count+1): + count = len(tsum) + for f in range(0,count): col = new_doc.createElement("col") col.setAttribute('para','yes') col.setAttribute('tree','no') From d85b9a74faa6d33eb9449af34c84a6651b34638f Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 10 Oct 2008 12:18:05 +0300 Subject: [PATCH 013/251] Behave better at exceptions (l10n, __getitem__() ) bzr revid: p_christ@hol.gr-20081010091805-93a1el2izcfdc5an --- bin/osv/orm.py | 2 +- bin/tools/translate.py | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 0fb4fdfcbf2..d69e05b02d3 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -140,7 +140,7 @@ class browse_record(object): col = self._table._columns[name] elif name in self._table._inherit_fields: col = self._table._inherit_fields[name][2] - elif hasattr(self._table, name): + elif hasattr(self._table, str(name)): if isinstance(getattr(self._table, name), (types.MethodType, types.LambdaType, types.FunctionType)): return lambda *args, **argv: getattr(self._table, name)(self._cr, self._uid, [self._id], *args, **argv) else: diff --git a/bin/tools/translate.py b/bin/tools/translate.py index cd89cebaf05..a2e487fda79 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -63,9 +63,12 @@ class GettextAlias(object): def __call__(self, source): frame = inspect.stack()[1][0] cr = frame.f_locals.get('cr') - lang = frame.f_locals.get('context', {}).get('lang', False) - if not (lang and cr): - return source + try: + lang = frame.f_locals.get('context', {}).get('lang', False) + if not (lang and cr): + return source + except: + return source return translate(cr, None, 'code', lang, source) or source _ = GettextAlias() From 97e946c466d1dce6cb62c52ac627a2be0721cd63 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 14 Oct 2008 15:40:44 +0300 Subject: [PATCH 014/251] Allow field/domain to be imported from xml. bzr revid: p_christ@hol.gr-20081014124044-5ocjjyrbyp5pqktv --- bin/import_xml.rng | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/import_xml.rng b/bin/import_xml.rng index 91b3a9554e5..d1aa67fcb5b 100644 --- a/bin/import_xml.rng +++ b/bin/import_xml.rng @@ -116,6 +116,7 @@ + From ee881fa7e05fc0bb7b7de37579f8f23a50dc8f9e Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 15 Nov 2008 10:58:54 +0200 Subject: [PATCH 015/251] Armor the export lang wizard against faulty model fields. Sometimes objects or field definitions in db may have some errors (especially in dev setups). The export translation algorithm should just skip those fields and try to continue, instead of raising an exception. These errors can still be logged, of course. bzr revid: p_christ@hol.gr-20081115085854-2xpnypbas4sxt15u --- .../base/module/wizard/wizard_export_lang.py | 3 ++- bin/osv/orm.py | 3 +++ bin/tools/translate.py | 17 ++++++++++++++--- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/bin/addons/base/module/wizard/wizard_export_lang.py b/bin/addons/base/module/wizard/wizard_export_lang.py index 2e9751e55e5..c6ce9f75e19 100644 --- a/bin/addons/base/module/wizard/wizard_export_lang.py +++ b/bin/addons/base/module/wizard/wizard_export_lang.py @@ -81,7 +81,8 @@ class wizard_export_lang(osv.osv_memory): ('get','get'), # get the file ) ), } - _defaults = { 'state': lambda *a: 'choose', + _defaults = { 'state': lambda *a: 'choose', + 'name': lambda *a: 'lang.tar.gz' } wizard_export_lang() diff --git a/bin/osv/orm.py b/bin/osv/orm.py index b40e486e174..0571bbbd99e 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -196,6 +196,9 @@ class browse_record(object): elif f._type in ('one2many', 'many2many') and len(data[n]): data[n] = self._list_class([browse_record(self._cr, self._uid, id, self._table.pool.get(f._obj), self._cache, context=self._context, list_class=self._list_class, fields_process=self._fields_process) for id in data[n]], self._context) self._data[data['id']].update(data) + if not name in self._data[self._id]: + #how did this happen? + raise AttributeError(_('Unknown attribute % in % ') % (name,self._id)) return self._data[self._id][name] def __getattr__(self, name): diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 7e382ce99bb..bb59aca11e8 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -359,7 +359,11 @@ def trans_generate(lang, modules, dbname=None): push_translation(module, 'view', obj.model, 0, t) elif model=='ir.actions.wizard': service_name = 'wizard.'+obj.wiz_name - obj2 = netsvc._service[service_name] + try: + obj2 = netsvc._service[service_name] + except KeyError, exc: + logger.notifyChannel("db", netsvc.LOG_ERROR, "key error in %s: %s" % (xml_name,str(exc))) + continue for state_name, state_def in obj2.states.iteritems(): if 'result' in state_def: result = state_def['result'] @@ -389,7 +393,11 @@ def trans_generate(lang, modules, dbname=None): push_translation(module, 'wizard_button', res_name, 0, button_label) elif model=='ir.model.fields': - field_name = obj.name + try: + field_name = obj.name + except AttributeError, exc: + logger.notifyChannel("db", netsvc.LOG_ERROR, "name error in %s: %s" % (xml_name,str(exc))) + continue objmodel = pool.get(obj.model) if not objmodel or not field_name in objmodel._columns: continue @@ -446,7 +454,10 @@ def trans_generate(lang, modules, dbname=None): for field_name,field_def in pool.get(model)._columns.items(): if field_def.translate: name = model + "," + field_name - trad = getattr(obj, field_name) or '' + try: + trad = getattr(obj, field_name) or '' + except: + trad = '' push_translation(module, 'model', name, xml_name, trad) # parse source code for _() calls From 4b8471236360381db8c68eb86e95e5156abbc871 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 17 Nov 2008 11:23:39 +0200 Subject: [PATCH 016/251] Fix SSL server, conf samples bzr revid: p_christ@hol.gr-20081117092339-652ppsxbhzc3nzik --- bin/ssl/SecureXMLRPCServer.py | 2 + bin/ssl/cert.cfg | 89 +++++++++++++++++++++++++++++++++++ doc/openerp-server.conf | 4 ++ 3 files changed, 95 insertions(+) create mode 100644 bin/ssl/cert.cfg diff --git a/bin/ssl/SecureXMLRPCServer.py b/bin/ssl/SecureXMLRPCServer.py index 540065b4824..8ff96989748 100644 --- a/bin/ssl/SecureXMLRPCServer.py +++ b/bin/ssl/SecureXMLRPCServer.py @@ -129,6 +129,8 @@ class SecureXMLRPCRequestHandler(SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): class SecureXMLRPCServer(SimpleXMLRPCServer.SimpleXMLRPCServer, SecureTCPServer): + encoding = None + allow_none = False def __init__(self, addr, requestHandler=SecureXMLRPCRequestHandler, logRequests=1): diff --git a/bin/ssl/cert.cfg b/bin/ssl/cert.cfg new file mode 100644 index 00000000000..8cab1eeb4ca --- /dev/null +++ b/bin/ssl/cert.cfg @@ -0,0 +1,89 @@ +# X.509 Certificate options +# +# DN options + +# The organization of the subject. +organization = "Acme inc." + +# The organizational unit of the subject. +unit = "dept." + +# The locality of the subject. +# locality = + +# The state of the certificate owner. +state = "Attiki" + +# The country of the subject. Two letter code. +country = GR + +# The common name of the certificate owner. +cn = "Some company" + +# A user id of the certificate owner. +#uid = "clauper" + +# If the supported DN OIDs are not adequate you can set +# any OID here. +# For example set the X.520 Title and the X.520 Pseudonym +# by using OID and string pairs. +#dn_oid = "2.5.4.12" "Dr." "2.5.4.65" "jackal" + +# This is deprecated and should not be used in new +# certificates. +# pkcs9_email = "none@none.org" + +# The serial number of the certificate +serial = 001 + +# In how many days, counting from today, this certificate will expire. +expiration_days = 700 + +# X.509 v3 extensions + +# A dnsname in case of a WWW server. +#dns_name = "www.none.org" +#dns_name = "www.morethanone.org" + +# An IP address in case of a server. +#ip_address = "192.168.1.1" + +# An email in case of a person +email = "none@none.org" + +# An URL that has CRLs (certificate revocation lists) +# available. Needed in CA certificates. +#crl_dist_points = "http://www.getcrl.crl/getcrl/" + +# Whether this is a CA certificate or not +#ca + +# Whether this certificate will be used for a TLS client +#tls_www_client + +# Whether this certificate will be used for a TLS server +tls_www_server + +# Whether this certificate will be used to sign data (needed +# in TLS DHE ciphersuites). +#signing_key + +# Whether this certificate will be used to encrypt data (needed +# in TLS RSA ciphersuites). Note that it is prefered to use different +# keys for encryption and signing. +encryption_key + +# Whether this key will be used to sign other certificates. +#cert_signing_key + +# Whether this key will be used to sign CRLs. +#crl_signing_key + +# Whether this key will be used to sign code. +#code_signing_key + +# Whether this key will be used to sign OCSP data. +#ocsp_signing_key + +# Whether this key will be used for time stamping. +#time_stamping_key diff --git a/doc/openerp-server.conf b/doc/openerp-server.conf index 0bb48ced4b5..bdc90a8a074 100644 --- a/doc/openerp-server.conf +++ b/doc/openerp-server.conf @@ -5,6 +5,10 @@ verbose = False xmlrpc = True db_user = False db_password = False +; Uncomment these for xml-rpc over SSL +; secure = True +; sslcert = /etc/openerp/server.cert +; sslkey = /etc/openerp/server.key root_path = None soap = False translate_modules = ['all'] From 4e4c02351f9bc600632f2f5def0b83c30bd48d39 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 18 Nov 2008 16:33:18 +0200 Subject: [PATCH 017/251] Orm: model fields may be a subset of the views. When the view asks more fields than the OM has, the result may have less ones. Iterate through the smallest set. bzr revid: p_christ@hol.gr-20081118143318-vvns3suey0g4e3x6 --- bin/osv/orm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 0571bbbd99e..385812e37ea 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -852,7 +852,7 @@ class orm_template(object): arch = node.toxml(encoding="utf-8").replace('\t', '') fields = self.fields_get(cr, user, fields_def.keys(), context) - for field in fields_def: + for field in fields: fields[field].update(fields_def[field]) return arch, fields From ba195ed72dff12257aa79fb935772c2ba590b3c6 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 18 Nov 2008 17:34:47 +0200 Subject: [PATCH 018/251] orm optimization: don't compute all fields for view. Some fields may not be requested by the view DOM. Don't try to fetch their information. This is an experimental optimization. Testing pending. bzr revid: p_christ@hol.gr-20081118153447-5reuu322ikudppr8 --- bin/osv/orm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 385812e37ea..3fa9ab2ea3f 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -694,6 +694,8 @@ class orm_template(object): res.update(self.pool.get(parent).fields_get(cr, user, fields, context)) for f in self._columns.keys(): + if fields and f not in fields: + continue res[f] = {'type': self._columns[f]._type} for arg in ('string', 'readonly', 'states', 'size', 'required', 'change_default', 'translate', 'help', 'select'): From 1485c9a4508fe6e7cb577b2af646ed0878f72fd1 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 18 Nov 2008 21:11:48 +0200 Subject: [PATCH 019/251] Attempt to instrument SecureXMLRPCServer bzr revid: p_christ@hol.gr-20081118191148-c6oc2syudyvy6ohm --- bin/ssl/SecureXMLRPCServer.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/bin/ssl/SecureXMLRPCServer.py b/bin/ssl/SecureXMLRPCServer.py index 8ff96989748..6b754db59f8 100644 --- a/bin/ssl/SecureXMLRPCServer.py +++ b/bin/ssl/SecureXMLRPCServer.py @@ -83,8 +83,10 @@ class SSLBugFix: Since servers create new sockets, we have to infect them with our magic. :) """ + sys.stderr.write("accept\n") c, a = self.__dict__["conn"].accept() return (SSLBugFix(c), a) + #def close() @@ -114,6 +116,12 @@ class SecureTCPServer(SocketServer.TCPServer): self.socket_type))) self.server_bind() self.server_activate() + def handle_error(self, request, client_address): + """ Override the error handler + """ + import traceback + logger.notifyChannel("init", netsvc.LOG_ERROR,"SSL Server error in request from %s: %s" % + (client_address,traceback.format_exc())) class SecureXMLRPCRequestHandler(SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): @@ -123,6 +131,7 @@ class SecureXMLRPCRequestHandler(SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): doesn't have a 'dup'. Not exactly sure WHY this is, but this is backed up by comments in socket.py and SSL/connection.c """ + sys.stderr.write("rhandler setup\n") self.connection = self.request # for doPOST self.rfile = socket._fileobject(self.request, "rb", self.rbufsize) self.wfile = socket._fileobject(self.request, "wb", self.wbufsize) @@ -144,6 +153,13 @@ class SecureXMLRPCServer(SimpleXMLRPCServer.SimpleXMLRPCServer, SecureTCPServer) self.instance = None SecureTCPServer.__init__(self, addr, requestHandler) + def handle_error(self, request, client_address): + """ Override the error handler + """ + import traceback + logger.notifyChannel("init", netsvc.LOG_ERROR,"SSL Server error in request from %s: %s" % + (client_address,traceback.format_exc())) + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From b1b23473908f460d8f8c5eb0723232ca502a9876 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 18 Nov 2008 22:00:36 +0200 Subject: [PATCH 020/251] Bugfix for SSL.Connection.recv(), do retry. Also, improve/remove some instrumentation of the class. bzr revid: p_christ@hol.gr-20081118200036-ww97lm3odedvkjy3 --- bin/ssl/SecureXMLRPCServer.py | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/bin/ssl/SecureXMLRPCServer.py b/bin/ssl/SecureXMLRPCServer.py index 6b754db59f8..a658884acdb 100644 --- a/bin/ssl/SecureXMLRPCServer.py +++ b/bin/ssl/SecureXMLRPCServer.py @@ -69,6 +69,19 @@ class SSLBugFix: # """ # self.__dict__["conn"].send(data) + def recv(self, bufsize): + """ Another bugfix: SSL's recv() may raise + recoverable exceptions, which simply need us to retry + the call + """ + while True: + try: + return self.__dict__["conn"].recv(bufsize) + except SSL.WantReadError: + pass + except SSL.WantWriteError: + pass + def shutdown(self, how=1): """ This isn't part of the bugfix. SimpleXMLRpcServer.doPOST @@ -83,11 +96,9 @@ class SSLBugFix: Since servers create new sockets, we have to infect them with our magic. :) """ - sys.stderr.write("accept\n") c, a = self.__dict__["conn"].accept() return (SSLBugFix(c), a) - #def close() - + class SecureTCPServer(SocketServer.TCPServer): @@ -116,13 +127,14 @@ class SecureTCPServer(SocketServer.TCPServer): self.socket_type))) self.server_bind() self.server_activate() + def handle_error(self, request, client_address): """ Override the error handler """ import traceback - logger.notifyChannel("init", netsvc.LOG_ERROR,"SSL Server error in request from %s: %s" % + logger.notifyChannel("init", netsvc.LOG_ERROR,"SSL Server error in request from %s:\n%s" % (client_address,traceback.format_exc())) - + class SecureXMLRPCRequestHandler(SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): def setup(self): @@ -131,7 +143,6 @@ class SecureXMLRPCRequestHandler(SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): doesn't have a 'dup'. Not exactly sure WHY this is, but this is backed up by comments in socket.py and SSL/connection.c """ - sys.stderr.write("rhandler setup\n") self.connection = self.request # for doPOST self.rfile = socket._fileobject(self.request, "rb", self.rbufsize) self.wfile = socket._fileobject(self.request, "wb", self.wbufsize) @@ -156,10 +167,10 @@ class SecureXMLRPCServer(SimpleXMLRPCServer.SimpleXMLRPCServer, SecureTCPServer) def handle_error(self, request, client_address): """ Override the error handler """ - import traceback - logger.notifyChannel("init", netsvc.LOG_ERROR,"SSL Server error in request from %s: %s" % - (client_address,traceback.format_exc())) + import traceback + e_type, e_value, e_traceback = sys.exc_info() + logger.notifyChannel("init", netsvc.LOG_ERROR,"SSL Request handler error in request from %s: %s\n%s" % + (client_address,str(e_type),traceback.format_exc())) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - From 7f3ee0107edf89c64f5500017f250d9d918453ba Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 24 Nov 2008 17:18:09 +0200 Subject: [PATCH 021/251] Instrument missing tag exception. bzr revid: p_christ@hol.gr-20081124151809-ydhawyy1map7wd7y --- bin/osv/orm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 3fa9ab2ea3f..32565f7df9e 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -958,7 +958,7 @@ class orm_template(object): if attr != 'position' ]) tag = "<%s%s>" % (node2.localName, attrs) - raise AttributeError(_("Couldn't find tag '%s' in parent view !") % tag) + raise AttributeError(_("Couldn't find tag '%s' in parent view !\n%s") % (tag,src)) return doc_src.toxml(encoding="utf-8").replace('\t', '') result = {'type': view_type, 'model': self._name} From 1b69658f888b2ccfc0a00e1628488e56e8b1bb62 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 24 Nov 2008 17:18:31 +0200 Subject: [PATCH 022/251] render/simple.py: Restore command-line mode. bzr revid: p_christ@hol.gr-20081124151831-r2hck7h2zs714jgg --- bin/report/render/simple.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bin/report/render/simple.py b/bin/report/render/simple.py index 5096413b1c8..302402d7631 100644 --- a/bin/report/render/simple.py +++ b/bin/report/render/simple.py @@ -68,7 +68,8 @@ class simple(render.render): if __name__=='__main__': import time - s = simple(''' + s = simple() + s.xml = ''' Fabien Pinckaers @@ -80,8 +81,9 @@ if __name__=='__main__': No other - ''') - print s.render() + ''' + if s.render(): + print s.get() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From 5ffd2657b6d77bcc2694b75b8cac3bf986fe6d62 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 24 Nov 2008 17:20:22 +0200 Subject: [PATCH 023/251] Add .gitignore bzr revid: p_christ@hol.gr-20081124152022-6t37e0c27871vfux --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000000..0d20b6487c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc From 101afd1a4ff2e26ce00ee508b02c4f727cddbcfc Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 10 Dec 2008 22:49:49 +0200 Subject: [PATCH 024/251] Rearrange the server config file. bzr revid: p_christ@hol.gr-20081210204949-pujfjpa1ebv7w91d --- doc/openerp-server.conf | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/doc/openerp-server.conf b/doc/openerp-server.conf index bdc90a8a074..d103e948abf 100644 --- a/doc/openerp-server.conf +++ b/doc/openerp-server.conf @@ -1,9 +1,17 @@ [options] without_demo = True +; This is the password that allows database operations: +; admin_passwd = admin upgrade = False verbose = False +netrpc = True xmlrpc = True -db_user = False +port = 8069 +interface = +db_host = False +db_port = False +db_name = terp +db_user = tinyerp db_password = False ; Uncomment these for xml-rpc over SSL ; secure = True @@ -12,13 +20,6 @@ db_password = False root_path = None soap = False translate_modules = ['all'] -db_name = terp -netrpc = True demo = {} -interface = -db_host = False -db_port = False -port = 8069 addons_path = None reportgz = False - From 77a1e920d98da0628426f928a1e24cb9a4bd35f9 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 11 Dec 2008 19:59:36 +0200 Subject: [PATCH 025/251] Try to print line no at malformed .po. bzr revid: p_christ@hol.gr-20081211175936-642lc4ytppjhmkve --- bin/tools/translate.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 821755c7480..2f78e5c4695 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -77,6 +77,7 @@ class TinyPoFile(object): def __iter__(self): self.buffer.seek(0) self.lines = self._get_lines() + self.lines_count = len(self.lines); self.first = True self.tnrs= [] @@ -91,6 +92,9 @@ class TinyPoFile(object): lines.append('') # ensure that the file ends with at least an empty line return lines + def cur_line(self): + return (self.lines_count - len(self.lines)) + def next(self): def unquote(str): return str[1:-1].replace("\\n", "\n") \ @@ -133,7 +137,7 @@ class TinyPoFile(object): while not line.startswith('msgstr'): if not line: - raise Exception('malformed file') + raise Exception('malformed file at %d'% self.cur_line()) source += unquote(line) line = self.lines.pop(0).strip() From 05b73164910d9f3ac2af5f6226ae149483fe1677 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 11 Dec 2008 20:00:10 +0200 Subject: [PATCH 026/251] One more fix when ir_model_data won't produce result. bzr revid: p_christ@hol.gr-20081211180010-5ka9n0kl3z0j8asd --- bin/osv/orm.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 356e9ddc167..3676a22d1f7 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -503,8 +503,10 @@ class orm_template(object): module, xml_id = current_module, line[i] ir_model_data_obj = self.pool.get('ir.model.data') id = ir_model_data_obj._get_id(cr, uid, module, xml_id) - res_id = ir_model_data_obj.read(cr, uid, [id], - ['res_id'])[0]['res_id'] + res_res_id = ir_model_data_obj.read(cr, uid, [id], + ['res_id']) + if res_res_id: + res_id = res_res_id[0]['res_id'] row[field[0][:-3]] = res_id or False continue if (len(field) == len(prefix)+1) and \ From 09866d0444473bf822fa106a929819745b813a5b Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 13 Dec 2008 00:27:08 +0200 Subject: [PATCH 027/251] Initial support for rml2txt This is a crude version: not all elements are supported, and text may slip bzr revid: p_christ@hol.gr-20081212222708-10d44qddjwwlh59e --- bin/report/render/rml2txt/__init__.py | 26 ++ bin/report/render/rml2txt/rml2txt.py | 523 ++++++++++++++++++++++++++ bin/report/render/rml2txt/utils.py | 75 ++++ 3 files changed, 624 insertions(+) create mode 100644 bin/report/render/rml2txt/__init__.py create mode 100755 bin/report/render/rml2txt/rml2txt.py create mode 100644 bin/report/render/rml2txt/utils.py diff --git a/bin/report/render/rml2txt/__init__.py b/bin/report/render/rml2txt/__init__.py new file mode 100644 index 00000000000..b37936ae9d3 --- /dev/null +++ b/bin/report/render/rml2txt/__init__.py @@ -0,0 +1,26 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +from rml2txt import parseString + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + diff --git a/bin/report/render/rml2txt/rml2txt.py b/bin/report/render/rml2txt/rml2txt.py new file mode 100755 index 00000000000..ed99a3df215 --- /dev/null +++ b/bin/report/render/rml2txt/rml2txt.py @@ -0,0 +1,523 @@ +#!/bin/env python +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +# Copyright (C) 2005, Fabien Pinckaers, UCL, FSA +# Copyright (C) 2008, P. Christeas +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +import sys +import StringIO +import xml.dom.minidom +import copy + +import utils + +Font_size= 10.0 + +def verbose(text): + sys.stderr.write(text+"\n"); + +class textbox(): + """A box containing plain text. + It can have an offset, in chars. + Lines can be either text strings, or textbox'es, recursively. + """ + def __init__(self,x=0, y=0): + self.posx = x + self.posy = y + self.lines = [] + self.curline = '' + self.endspace = False + + def newline(self): + if isinstance(self.curline, textbox): + self.lines.extend(self.curline.renderlines()) + else: + self.lines.append(self.curline) + self.curline = '' + + def fline(self): + if isinstance(self.curline, textbox): + self.lines.extend(self.curline.renderlines()) + elif len(self.curline): + self.lines.append(self.curline) + self.curline = '' + + def appendtxt(self,txt): + """Append some text to the current line. + Mimic the HTML behaviour, where all whitespace evaluates to + a single space """ + bs = es = False + if txt[0].isspace(): + bs = True + if txt[len(txt)-1].isspace(): + es = True + if bs and not self.endspace: + self.curline += " " + self.curline += txt.strip().replace("\n"," ").replace("\t"," ") + if es: + self.curline += " " + self.endspace = es + + def rendertxt(self,xoffset=0): + result = '' + lineoff = "" + for i in range(self.posy): + result +="\n" + for i in range(self.posx+xoffset): + lineoff+=" " + for l in self.lines: + result+= lineoff+ l +"\n" + return result + + def renderlines(self,pad=0): + """Returns a list of lines, from the current object + pad: all lines must be at least pad characters. + """ + result = [] + lineoff = "" + for i in range(self.posx): + lineoff+=" " + for l in self.lines: + lpad = "" + if pad and len(l) < pad : + for i in range(pad - len(l)): + lpad += " " + #elif pad and len(l) > pad ? + result.append(lineoff+ l+lpad) + return result + + + def haplines(self,arr,offset,cc= ''): + """ Horizontaly append lines + """ + while (len(self.lines) < len(arr)): + self.lines.append("") + + for i in range(len(self.lines)): + while (len(self.lines[i]) < offset): + self.lines[i] += " " + for i in range(len(arr)): + self.lines[i] += cc +arr[i] + + +class _flowable(object): + def __init__(self, template, doc): + self._tags = { + '1title': self._tag_title, + '1spacer': self._tag_spacer, + 'para': self._tag_para, + 'font': self._tag_font, + 'section': self._tag_section, + '1nextFrame': self._tag_next_frame, + 'blockTable': self._tag_table, + '1pageBreak': self._tag_page_break, + '1setNextTemplate': self._tag_next_template, + } + self.template = template + self.doc = doc + self.nitags = [] + self.tbox = None + + def warn_nitag(self,tag): + if tag not in self.nitags: + verbose("Unknown tag \"%s\", please implement it." % tag) + self.nitags.append(tag) + + def _tag_page_break(self, node): + return "\f" + + def _tag_next_template(self, node): + return '' + + def _tag_next_frame(self, node): + result=self.template.frame_stop() + result+='\n' + result+=self.template.frame_start() + return result + + def _tag_title(self, node): + node.tagName='h1' + return node.toxml() + + def _tag_spacer(self, node): + length = 1+int(utils.unit_get(node.getAttribute('length')))/35 + return "\n"*length + + def _tag_table(self, node): + self.tb.fline() + saved_tb = self.tb + self.tb = None + sizes = None + if node.hasAttribute('colWidths'): + sizes = map(lambda x: utils.unit_get(x), node.getAttribute('colWidths').split(',')) + trs = [] + for n in node.childNodes: + if n.nodeType == node.ELEMENT_NODE and n.localName == 'tr': + tds = [] + for m in n.childNodes: + if m.nodeType == node.ELEMENT_NODE and m.localName == 'td': + self.tb = textbox() + self.rec_render_cnodes(m) + tds.append(self.tb) + self.tb = None + if len(tds): + trs.append(tds) + + if not sizes: + verbose("computing table sizes..") + for tds in trs: + trt = textbox() + off=0 + for i in range(len(tds)): + p = int(sizes[i]/Font_size) + trl = tds[i].renderlines(pad=p) + trt.haplines(trl,off) + off += sizes[i]/Font_size + saved_tb.curline = trt + saved_tb.fline() + + self.tb = saved_tb + return + + def _tag_para(self, node): + #TODO: styles + self.rec_render_cnodes(node) + self.tb.newline() + + def _tag_section(self, node): + #TODO: styles + self.rec_render_cnodes(node) + self.tb.newline() + + def _tag_font(self, node): + """We do ignore fonts..""" + self.rec_render_cnodes(node) + + def rec_render_cnodes(self,node): + for n in node.childNodes: + self.rec_render(n) + + def rec_render(self,node): + """ Recursive render: fill outarr with text of current node + """ + if node.nodeType == node.TEXT_NODE: + self.tb.appendtxt(node.data) + elif node.nodeType==node.ELEMENT_NODE: + if node.localName in self._tags: + self._tags[node.localName](node) + else: + self.warn_nitag(node.localName) + else: + verbose("Unknown nodeType: %d" % node.nodeType) + + def render(self, node): + self.tb= textbox() + #result = self.template.start() + #result += self.template.frame_start() + self.rec_render_cnodes(node) + #result += self.template.frame_stop() + #result += self.template.end() + result = self.tb.rendertxt() + del self.tb + return result + +class _rml_tmpl_tag(object): + def __init__(self, *args): + pass + def tag_start(self): + return '' + def tag_end(self): + return False + def tag_stop(self): + return '' + def tag_mergeable(self): + return True + +class _rml_tmpl_frame(_rml_tmpl_tag): + def __init__(self, posx, width): + self.width = width + self.posx = posx + def tag_start(self): + return "frame start" + return '
 ' % (self.width+self.posx,self.posx) + def tag_end(self): + return True + def tag_stop(self): + return "frame stop" + return '

' + def tag_mergeable(self): + return False + + # An awfull workaround since I don't really understand the semantic behind merge. + def merge(self, frame): + pass + +class _rml_tmpl_draw_string(_rml_tmpl_tag): + def __init__(self, node, style): + self.posx = utils.unit_get(node.getAttribute('x')) + self.posy = utils.unit_get(node.getAttribute('y')) + aligns = { + 'drawString': 'left', + 'drawRightString': 'right', + 'drawCentredString': 'center' + } + align = aligns[node.localName] + self.pos = [(self.posx, self.posy, align, utils.text_get(node), style.get('td'), style.font_size_get('td'))] + + def tag_start(self): + return "draw string \"%s\" @(%d,%d)..\n" %("txt",self.posx,self.posy) + self.pos.sort() + res = '\\table ...' + posx = 0 + i = 0 + for (x,y,align,txt, style, fs) in self.pos: + if align=="left": + pos2 = len(txt)*fs + res+='%s' % (x - posx, style, pos2, txt) + posx = x+pos2 + if align=="right": + res+='%s' % (x - posx, style, txt) + posx = x + if align=="center": + res+='%s' % ((x - posx)*2, style, txt) + posx = 2*x-posx + i+=1 + res+='\\table end' + return res + def merge(self, ds): + self.pos+=ds.pos + +class _rml_tmpl_draw_lines(_rml_tmpl_tag): + def __init__(self, node, style): + coord = [utils.unit_get(x) for x in utils.text_get(node).split(' ')] + self.ok = False + self.posx = coord[0] + self.posy = coord[1] + self.width = coord[2]-coord[0] + self.ok = coord[1]==coord[3] + self.style = style + self.style = style.get('hr') + + def tag_start(self): + return "draw lines..\n" + if self.ok: + return '

' % (self.posx+self.width,self.posx,self.style) + else: + return '' + +class _rml_stylesheet(object): + def __init__(self, stylesheet, doc): + self.doc = doc + self.attrs = {} + self._tags = { + 'fontSize': lambda x: ('font-size',str(utils.unit_get(x))+'px'), + 'alignment': lambda x: ('text-align',str(x)) + } + result = '' + for ps in stylesheet.getElementsByTagName('paraStyle'): + attr = {} + attrs = ps.attributes + for i in range(attrs.length): + name = attrs.item(i).localName + attr[name] = ps.getAttribute(name) + attrs = [] + for a in attr: + if a in self._tags: + attrs.append("%s:%s" % self._tags[a](attr[a])) + if len(attrs): + result += "p."+attr['name']+" {"+'; '.join(attrs)+"}\n" + self.result = result + + def render(self): + return '' + +class _rml_draw_style(object): + def __init__(self): + self.style = {} + self._styles = { + 'fill': lambda x: {'td': {'color':x.getAttribute('color')}}, + 'setFont': lambda x: {'td': {'font-size':x.getAttribute('size')+'px'}}, + 'stroke': lambda x: {'hr': {'color':x.getAttribute('color')}}, + } + def update(self, node): + if node.localName in self._styles: + result = self._styles[node.localName](node) + for key in result: + if key in self.style: + self.style[key].update(result[key]) + else: + self.style[key] = result[key] + def font_size_get(self,tag): + size = utils.unit_get(self.style.get('td', {}).get('font-size','16')) + return size + + def get(self,tag): + if not tag in self.style: + return "" + return ';'.join(['%s:%s' % (x[0],x[1]) for x in self.style[tag].items()]) + +class _rml_template(object): + def __init__(self, template): + self.frame_pos = -1 + self.frames = [] + self.template_order = [] + self.page_template = {} + self.loop = 0 + self._tags = { + 'drawString': _rml_tmpl_draw_string, + 'drawRightString': _rml_tmpl_draw_string, + 'drawCentredString': _rml_tmpl_draw_string, + 'lines': _rml_tmpl_draw_lines + } + self.style = _rml_draw_style() + for pt in template.getElementsByTagName('pageTemplate'): + frames = {} + id = pt.getAttribute('id') + self.template_order.append(id) + for tmpl in pt.getElementsByTagName('frame'): + posy = int(utils.unit_get(tmpl.getAttribute('y1'))) #+utils.unit_get(tmpl.getAttribute('height'))) + posx = int(utils.unit_get(tmpl.getAttribute('x1'))) + frames[(posy,posx,tmpl.getAttribute('id'))] = _rml_tmpl_frame(posx, utils.unit_get(tmpl.getAttribute('width'))) + for tmpl in template.getElementsByTagName('pageGraphics'): + for n in tmpl.childNodes: + if n.nodeType==n.ELEMENT_NODE: + if n.localName in self._tags: + t = self._tags[n.localName](n, self.style) + frames[(t.posy,t.posx,n.localName)] = t + else: + self.style.update(n) + keys = frames.keys() + keys.sort() + keys.reverse() + self.page_template[id] = [] + for key in range(len(keys)): + if key>0 and keys[key-1][0] == keys[key][0]: + if type(self.page_template[id][-1]) == type(frames[keys[key]]): + if self.page_template[id][-1].tag_mergeable(): + self.page_template[id][-1].merge(frames[keys[key]]) + continue + self.page_template[id].append(frames[keys[key]]) + self.template = self.template_order[0] + + def _get_style(self): + return self.style + + def set_next_template(self): + self.template = self.template_order[(self.template_order.index(name)+1) % self.template_order] + self.frame_pos = -1 + + def set_template(self, name): + self.template = name + self.frame_pos = -1 + + def frame_start(self): + result = '' + frames = self.page_template[self.template] + ok = True + while ok: + self.frame_pos += 1 + if self.frame_pos>=len(frames): + self.frame_pos=0 + self.loop=1 + ok = False + continue + f = frames[self.frame_pos] + result+=f.tag_start() + ok = not f.tag_end() + if ok: + result+=f.tag_stop() + return result + + def frame_stop(self): + frames = self.page_template[self.template] + f = frames[self.frame_pos] + result=f.tag_stop() + return result + + def start(self): + return '' + + def end(self): + return "template end\n" + result = '' + while not self.loop: + result += self.frame_start() + result += self.frame_stop() + return result + +class _rml_doc(object): + def __init__(self, data): + self.dom = xml.dom.minidom.parseString(data) + self.filename = self.dom.documentElement.getAttribute('filename') + self.result = '' + + def render(self, out): + template = _rml_template(self.dom.documentElement.getElementsByTagName('template')[0]) + f = _flowable(template, self.dom) + self.result += f.render(self.dom.documentElement.getElementsByTagName('story')[0]) + del f + self.result += '\n' + out.write( self.result) + +def parseString(data, fout=None): + r = _rml_doc(data) + if fout: + fp = file(fout,'wb') + r.render(fp) + fp.close() + return fout + else: + fp = StringIO.StringIO() + r.render(fp) + return fp.getvalue() + +def trml2pdf_help(): + print 'Usage: rml2txt input.rml >output.html' + print 'Render the standard input (RML) and output an TXT file' + sys.exit(0) + +if __name__=="__main__": + if len(sys.argv)>1: + if sys.argv[1]=='--help': + trml2pdf_help() + print parseString(file(sys.argv[1], 'r').read()).encode('iso8859-7') + else: + print 'Usage: trml2txt input.rml >output.pdf' + print 'Try \'trml2txt --help\' for more information.' + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + diff --git a/bin/report/render/rml2txt/utils.py b/bin/report/render/rml2txt/utils.py new file mode 100644 index 00000000000..7186cc13fff --- /dev/null +++ b/bin/report/render/rml2txt/utils.py @@ -0,0 +1,75 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +import re +import reportlab +import reportlab.lib.units + +def text_get(node): + rc = '' + for node in node.childNodes: + if node.nodeType == node.TEXT_NODE: + rc = rc + node.data + return rc + +units = [ + (re.compile('^(-?[0-9\.]+)\s*in$'), reportlab.lib.units.inch), + (re.compile('^(-?[0-9\.]+)\s*cm$'), reportlab.lib.units.cm), + (re.compile('^(-?[0-9\.]+)\s*mm$'), reportlab.lib.units.mm), + (re.compile('^(-?[0-9\.]+)\s*px$'), 0.7), + (re.compile('^(-?[0-9\.]+)\s*$'), 1) +] + +def unit_get(size): + global units + for unit in units: + res = unit[0].search(size, 0) + if res: + return int(unit[1]*float(res.group(1))*1.3) + return False + +def tuple_int_get(node, attr_name, default=None): + if not node.hasAttribute(attr_name): + return default + res = [int(x) for x in node.getAttribute(attr_name).split(',')] + return res + +def bool_get(value): + return (str(value)=="1") or (value.lower()=='yes') + +def attr_get(node, attrs, dict={}): + res = {} + for name in attrs: + if node.hasAttribute(name): + res[name] = unit_get(node.getAttribute(name)) + for key in dict: + if node.hasAttribute(key): + if dict[key]=='str': + res[key] = str(node.getAttribute(key)) + elif dict[key]=='bool': + res[key] = bool_get(node.getAttribute(key)) + elif dict[key]=='int': + res[key] = int(node.getAttribute(key)) + return res + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + From a52ccd2c3f342106d2d0c720c685a56975689cef Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 13 Dec 2008 01:16:18 +0200 Subject: [PATCH 028/251] Use the txt report in the OpenObject server Activate that report type, so that the server can use it. bzr revid: p_christ@hol.gr-20081212231618-fkk5wd7bja0dih45 --- bin/addons/base/ir/ir_actions.py | 1 + bin/report/interface.py | 11 ++++++++--- bin/report/render/__init__.py | 2 +- bin/report/render/rml.py | 10 ++++++++++ 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/bin/addons/base/ir/ir_actions.py b/bin/addons/base/ir/ir_actions.py index 41ebe76ba51..a0550e6ff93 100644 --- a/bin/addons/base/ir/ir_actions.py +++ b/bin/addons/base/ir/ir_actions.py @@ -119,6 +119,7 @@ class report_xml(osv.osv): ('html', 'html'), ('raw', 'raw'), ('sxw', 'sxw'), + ('txt', 'txt'), ], string='Type', required=True), 'groups_id': fields.many2many('res.groups', 'res_groups_report_rel', 'uid', 'gid', 'Groups'), 'attachment': fields.char('Save As Attachment Prefix', size=32, help='This is the prefix of the file name the print will be saved as attachement. Keep empty to not save the printed reports') diff --git a/bin/report/interface.py b/bin/report/interface.py index eb82025cd19..3623efbd4e2 100644 --- a/bin/report/interface.py +++ b/bin/report/interface.py @@ -81,15 +81,16 @@ class report_rml(report_int): 'html': self.create_html, 'raw': self.create_raw, 'sxw': self.create_sxw, + 'txt': self.create_txt, } def create(self, cr, uid, ids, datas, context): xml = self.create_xml(cr, uid, ids, datas, context) -# file('/tmp/terp.xml','wb+').write(xml) + #file('/tmp/terp.xml','wb+').write(xml) if datas.get('report_type', 'pdf') == 'raw': return xml rml = self.create_rml(cr, xml, uid, context) -# file('/tmp/terp.rml','wb+').write(rml) + #file('/tmp/terp.rml','wb+').write(rml) pool = pooler.get_pool(cr.dbname) ir_actions_report_xml_obj = pool.get('ir.actions.report.xml') try: @@ -208,6 +209,11 @@ class report_rml(report_int): obj.render() return obj.get() + def create_txt(self, xml, logo=None, title=None): + obj = render.rml2txt(xml, self.bin_datas) + obj.render() + return obj.get().encode('utf-8') + def create_raw(self, xml, logo=None, title=None): return xml @@ -235,4 +241,3 @@ def register_all(db): # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/bin/report/render/__init__.py b/bin/report/render/__init__.py index 210b41fbbb5..d38064cc585 100644 --- a/bin/report/render/__init__.py +++ b/bin/report/render/__init__.py @@ -21,7 +21,7 @@ ############################################################################## from simple import simple -from rml import rml, rml2html +from rml import rml, rml2html, rml2txt from render import render diff --git a/bin/report/render/rml.py b/bin/report/render/rml.py index 587b0f243c9..5036954d605 100644 --- a/bin/report/render/rml.py +++ b/bin/report/render/rml.py @@ -23,6 +23,7 @@ import render import rml2pdf import rml2html as htmlizer +import rml2txt as txtizer class rml(render.render): def __init__(self, xml, datas={}, path='.',title=None): @@ -44,5 +45,14 @@ class rml2html(render.render): def _render(self): return htmlizer.parseString(self.xml) +class rml2txt(render.render): + def __init__(self, xml, datas={}): + super(rml2txt, self).__init__(datas) + self.xml = xml + self.output_type = 'txt' + + def _render(self): + return txtizer.parseString(self.xml) + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From 54ab22281e7b389e25729363ae67c0f00820efa0 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 15 Dec 2008 23:52:12 +0200 Subject: [PATCH 029/251] ORM: debug corrupt object model If model_data contains invalid references, ORM would fail (again) with absolutely cryptic errors. Try to locate the real cause of them. bzr revid: p_christ@hol.gr-20081215215212-qgsfx91r3motmzjy --- bin/osv/orm.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 3e1395b9fd2..7920326b695 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -179,6 +179,9 @@ class browse_record(object): d[n].set_value(d[n], self, f) + if not datas: + # Where did those ids come from? Perhaps old entries in ir_model_data? + raise except_orm('NoDataError', 'Field %s in %s%s'%(name,self._table_name,str(ids))) # create browse records for 'remote' objects for data in datas: for n, f in ffields: @@ -201,7 +204,10 @@ class browse_record(object): self._data[data['id']].update(data) if not name in self._data[self._id]: #how did this happen? - raise AttributeError(_('Unknown attribute % in % ') % (name,self._id)) + logger = netsvc.Logger() + logger.notifyChannel("browse_record", netsvc.LOG_ERROR,"Ffields: %s, datas: %s"%(str(fffields),str(datas))) + logger.notifyChannel("browse_record", netsvc.LOG_ERROR,"Data: %s, Table: %s"%(str(self._data[self._id]),str(self._table))) + raise AttributeError(_('Unknown attribute %s in %s ') % (str(name),self._table_name)) return self._data[self._id][name] def __getattr__(self, name): @@ -716,8 +722,8 @@ class orm_template(object): for parent in self._inherits: res.update(self.pool.get(parent).fields_get(cr, user, fields, context)) for f in self._columns.keys(): - if fields and f not in fields: - continue + if fields and f not in fields: + continue res[f] = {'type': self._columns[f]._type} for arg in ('string', 'readonly', 'states', 'size', 'required', 'change_default', 'translate', 'help', 'select'): From 08615bbbc13b7fc0957a0bbd1eacbd60b4cac6c3 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 16 Dec 2008 00:06:06 +0200 Subject: [PATCH 030/251] If some SQL query fails, log the whole query. bzr revid: p_christ@hol.gr-20081215220606-l9mncs9qnyy0v7tv --- bin/sql_db.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/sql_db.py b/bin/sql_db.py index 3f4e23cc392..ad3068a08e2 100644 --- a/bin/sql_db.py +++ b/bin/sql_db.py @@ -118,7 +118,12 @@ class Cursor(object): if self.sql_log: now = mdt.now() - res = self._obj.execute(query, p or None) + try: + res = self._obj.execute(query, p or None) + except psycopg2.ProgrammingError, pe: + logger= netsvc.Logger() + logger.notifyChannel('sql_db', netsvc.LOG_ERROR, "Programming error: %s, in query %s" % (pe, query)) + raise if self.sql_log: log("query: %s" % self._obj.query) From a18d38347c4858fa49d17b153f6b722f387468f4 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 16 Dec 2008 01:16:07 +0200 Subject: [PATCH 031/251] Bring back the python code in server actions. bzr revid: p_christ@hol.gr-20081215231607-0c851uad60e4ru2v --- bin/addons/base/ir/ir_actions.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bin/addons/base/ir/ir_actions.py b/bin/addons/base/ir/ir_actions.py index 7021104078c..a4608de167c 100644 --- a/bin/addons/base/ir/ir_actions.py +++ b/bin/addons/base/ir/ir_actions.py @@ -398,6 +398,7 @@ class actions_server(osv.osv): ('object_write','Write Object'), ('other','Multi Actions'), ], 'Action State', required=True, size=32), + 'code': fields.text('Python Code'), 'sequence': fields.integer('Sequence'), 'model_id': fields.many2one('ir.model', 'Object', required=True), 'action_id': fields.many2one('ir.actions.actions', 'Client Action'), @@ -419,6 +420,15 @@ class actions_server(osv.osv): 'state': lambda *a: 'dummy', 'type': lambda *a: 'ir.actions.server', 'sequence': lambda *a: 5, + 'code': lambda *a: """# You can use the following variables +# - object +# - object2 +# - time +# - cr +# - uid +# - ids +# If you plan to return an action, assign: saction = {...} +""", } From 66df224068eee395c24e3caff13cd606ac708361 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 16 Dec 2008 12:58:03 +0200 Subject: [PATCH 032/251] Handle reports correctly, when they contain unicode data. bzr revid: p_christ@hol.gr-20081216105803-zndsvjwqprqmvxl1 --- bin/report/report_sxw.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/bin/report/report_sxw.py b/bin/report/report_sxw.py index 501dd285f27..d1c049c2f15 100644 --- a/bin/report/report_sxw.py +++ b/bin/report/report_sxw.py @@ -469,12 +469,16 @@ class rml_parse(object): if isinstance(newtext, list): todo.append((key, newtext)) else: - #if not isinstance(newtext, basestring): - newtext = str(newtext) + if not isinstance(newtext, basestring): + newtext = str(newtext) + elif isinstance(newtext,unicode): + pass + elif isinstance(newtext,str): + newtext = newtext.decode('utf8') # if there are two [[]] blocks the same, it will replace both # but it's ok because it should evaluate to the same thing # anyway - text = text.replace('[['+key+']]', newtext.decode('utf8')) + text = text.replace('[['+key+']]', newtext) self._node.data = text if len(todo): for key, newtext in todo: From da83d3fb9bad4d2496716989c92c00384cf8ef2f Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 18 Dec 2008 21:19:51 +0200 Subject: [PATCH 033/251] Rml2txt: include it in the installation bzr revid: p_christ@hol.gr-20081218191951-l3ubmartvjrzinyf --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index d7de94a7850..647fc8b41dc 100755 --- a/setup.py +++ b/setup.py @@ -163,6 +163,7 @@ setup(name = name, 'openerp-server.report.render', 'openerp-server.report.render.rml2pdf', 'openerp-server.report.render.rml2html', + 'openerp-server.report.render.rml2txt', 'openerp-server.wizard', 'openerp-server.workflow'] + \ list(find_addons()), From fce9ac4d329d4239f1c234beb3f2cf2e9daa37b1 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 20 Dec 2008 15:47:49 +0200 Subject: [PATCH 034/251] Allow buttons in inherited forms bzr revid: p_christ@hol.gr-20081220134749-j1sa9sn8wi9iapoh --- bin/addons/base/rng/view.rng | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/addons/base/rng/view.rng b/bin/addons/base/rng/view.rng index e40f178d69f..5f3b7db904d 100644 --- a/bin/addons/base/rng/view.rng +++ b/bin/addons/base/rng/view.rng @@ -198,6 +198,7 @@ + From 68c880cc4f14f058680cd22695f8d689d24bb8a3 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 21 Dec 2008 12:44:54 +0200 Subject: [PATCH 035/251] Conf: don't define the db_name, fix crash on new startup. bzr revid: p_christ@hol.gr-20081221104454-awuvhajofafadcr4 --- doc/openerp-server.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/openerp-server.conf b/doc/openerp-server.conf index d103e948abf..1c9bdcb77ca 100644 --- a/doc/openerp-server.conf +++ b/doc/openerp-server.conf @@ -10,7 +10,9 @@ port = 8069 interface = db_host = False db_port = False -db_name = terp +; Please uncomment the following line *after* you have created the +; database. It activates the auto module check on startup. +; db_name = terp db_user = tinyerp db_password = False ; Uncomment these for xml-rpc over SSL From 2c93807e19f36f244d9be9fea415c3d142c2507f Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 21 Dec 2008 12:45:30 +0200 Subject: [PATCH 036/251] RNG: allow report_type to be imported from xml bzr revid: p_christ@hol.gr-20081221104530-fn165qyk8m5ilqdm --- bin/import_xml.rng | 1 + bin/tools/convert.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/bin/import_xml.rng b/bin/import_xml.rng index 27c2f959cab..5072df581de 100644 --- a/bin/import_xml.rng +++ b/bin/import_xml.rng @@ -96,6 +96,7 @@ + diff --git a/bin/tools/convert.py b/bin/tools/convert.py index 0efac6ed082..c855b566ad0 100644 --- a/bin/tools/convert.py +++ b/bin/tools/convert.py @@ -270,6 +270,8 @@ form: module.record_id""" % (xml_id,) res['report_sxw_content'] = sxw_content if rec.hasAttribute('header'): res['header'] = eval(rec.getAttribute('header')) + if rec.hasAttribute('report_type'): + res['report_type'] = rec.getAttribute('report_type') res['multi'] = rec.hasAttribute('multi') and eval(rec.getAttribute('multi')) xml_id = rec.getAttribute('id').encode('utf8') self._test_xml_id(xml_id) From 0a91836a8e1926f5ec5323bbacb761a7d1a48abe Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 23 Dec 2008 10:18:33 +0200 Subject: [PATCH 037/251] Don't allow the server to run as root. bzr revid: p_christ@hol.gr-20081223081833-q3x6y72cjx3heftn --- bin/openerp-server.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/openerp-server.py b/bin/openerp-server.py index f52d8415d6d..a1a14d1f8ce 100644 --- a/bin/openerp-server.py +++ b/bin/openerp-server.py @@ -34,7 +34,7 @@ GNU Public Licence. #---------------------------------------------------------- # python imports #---------------------------------------------------------- -import sys, os, signal +import sys, os, signal,pwd #---------------------------------------------------------- # ubuntu 8.04 has obsoleted `pyxml` package and installs here. # the path needs to be updated before any `import xml` @@ -49,6 +49,12 @@ import release __author__ = release.author __version__ = release.version +# 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") + sys.exit(1) + #---------------------------------------------------------- # get logger #---------------------------------------------------------- From a89ae314d25cd47b527cb50dbdc18dc44ad79213 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 23 Dec 2008 18:18:23 +0200 Subject: [PATCH 038/251] Bring the changes from SecureXMLRPCServer.py bzr revid: p_christ@hol.gr-20081223161823-xq6npt18t19hegri --- bin/netsvc.py | 34 ++++++++++++++++++++++++++++++++++ bin/tools/config.py | 9 ++++----- 2 files changed, 38 insertions(+), 5 deletions(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 8eb7023bd90..56bccf3bf03 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -318,6 +318,7 @@ class SSLSocket(object): ctx = SSL.Context(SSL.SSLv23_METHOD) ctx.use_privatekey_file(tools.config['secure_pkey_file']) ctx.use_certificate_file(tools.config['secure_cert_file']) + self.socket = SSL.Connection(ctx, socket) else: self.socket = socket @@ -327,6 +328,21 @@ class SSLSocket(object): def __getattr__(self, name): return getattr(self.socket, name) + +class doesitgohere(): + def recv(self, bufsize): + """ Another bugfix: SSL's recv() may raise + recoverable exceptions, which simply need us to retry + the call + """ + while True: + try: + return self.socket.recv(bufsize) + except SSL.WantReadError: + pass + except SSL.WantWriteError: + pass + class SimpleXMLRPCRequestHandler(GenericXMLRPCRequestHandler, SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): rpc_paths = map(lambda s: '/xmlrpc/%s' % s, _service) @@ -338,10 +354,20 @@ class SecureXMLRPCRequestHandler(SimpleXMLRPCRequestHandler): self.wfile = socket._fileobject(self.request, "wb", self.wbufsize) class SimpleThreadedXMLRPCServer(SocketServer.ThreadingMixIn, SimpleXMLRPCServer.SimpleXMLRPCServer): + encoding = None + allow_none = False + def server_bind(self): self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) SimpleXMLRPCServer.SimpleXMLRPCServer.server_bind(self) + def handle_error(self, request, client_address): + """ Override the error handler + """ + import traceback + Logger().notifyChannel("init", LOG_ERROR,"Server error in request from %s:\n%s" % + (client_address,traceback.format_exc())) + class SecureThreadedXMLRPCServer(SimpleThreadedXMLRPCServer): def __init__(self, server_address, HandlerClass, logRequests=1): SimpleThreadedXMLRPCServer.__init__(self, server_address, HandlerClass, logRequests) @@ -349,6 +375,14 @@ class SecureThreadedXMLRPCServer(SimpleThreadedXMLRPCServer): self.server_bind() self.server_activate() + def handle_error(self, request, client_address): + """ Override the error handler + """ + import traceback + e_type, e_value, e_traceback = sys.exc_info() + Logger().notifyChannel("init", LOG_ERROR,"SSL Request handler error in request from %s: %s\n%s" % + (client_address,str(e_type),traceback.format_exc())) + class HttpDaemon(threading.Thread): def __init__(self, interface, port, secure=False): threading.Thread.__init__(self) diff --git a/bin/tools/config.py b/bin/tools/config.py index 3717f0b6a5e..81c9f57aa55 100644 --- a/bin/tools/config.py +++ b/bin/tools/config.py @@ -191,20 +191,19 @@ class configmanager(object): keys = ['interface', 'port', 'db_name', 'db_user', 'db_password', 'db_host', 'db_port', 'logfile', 'pidfile', 'smtp_port', 'email_from', 'smtp_server', 'smtp_user', 'smtp_password', 'price_accuracy', - 'netinterface', 'netport', 'db_maxconn', 'import_partial', 'addons_path'] + 'netinterface', 'netport', 'db_maxconn', 'import_partial', 'addons_path', + 'netrpc', 'xmlrpc', 'syslog', 'without_demo'] if hasSSL: keys.extend(['smtp_ssl', 'secure_cert_file', 'secure_pkey_file']) + keys.append('secure') for arg in keys: if getattr(opt, arg): self.options[arg] = getattr(opt, arg) keys = ['language', 'translate_out', 'translate_in', 'upgrade', 'debug_mode', - 'stop_after_init', 'without_demo', 'netrpc', 'xmlrpc', 'syslog'] - - if hasSSL: - keys.append('secure') + 'stop_after_init'] for arg in keys: self.options[arg] = getattr(opt, arg) From 9fe209a7f1ea4fe07d10eedc62fdb78ae1b2de1d Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 23 Dec 2008 19:57:40 +0200 Subject: [PATCH 039/251] Add Greek translation. bzr revid: p_christ@hol.gr-20081223175740-mwbj9gvl9nau5wi6 --- bin/addons/base/i18n/el_GR.po | 5929 +++++++++++++++++++++++++++++++++ 1 file changed, 5929 insertions(+) create mode 100644 bin/addons/base/i18n/el_GR.po diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po new file mode 100644 index 00000000000..e0293f86d35 --- /dev/null +++ b/bin/addons/base/i18n/el_GR.po @@ -0,0 +1,5929 @@ +# translation of el_GR.po to Ellhnika +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base +# +# natasje , 2008. +# P. Christeas , 2008. +msgid "" +msgstr "" +"Project-Id-Version: el_GR\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-15 08:33:16+0000\n" +"PO-Revision-Date: 2008-12-23 19:50GMT\n" +"Last-Translator: P. Christeas \n" +"Language-Team: Ellhnika \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: KBabel 1.11.4\n" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act +#: model:ir.ui.menu,name:base.menu_ir_cron_act +#: view:ir.cron:0 +msgid "Scheduled Actions" +msgstr "Προγραμματισμένες ενέργειες" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Internal Name" +msgstr "Εσωτερικό όνομα" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +#, fuzzy +msgid "SMS - Gateway: clickatell" +msgstr "SMS Πύλη (gateway)" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Monthly" +msgstr "Μηνιαίο " + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Unknown" +msgstr "Άγνωστο" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "Αυτός ο αυτοματισμός θα ανιχνεύσει τους νέους όρους στην εφαρμογή έτσι ώστε μπορείτε να τους ενημερώσετε με το χέρι." + +#. module: base +#: field:workflow.activity,out_transitions:0 +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "Εξερχόμενες μεταβάσεις" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" +msgstr "Αλλαγή προτιμήσεων" + +#. module: base +#: field:res.partner.function,name:0 +msgid "Function name" +msgstr "Όνομα λειτουργίας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-account" +msgstr "" + +#. module: base +#: field:res.partner.address,title:0 +#: field:res.partner,title:0 +#: field:res.partner.title,name:0 +msgid "Title" +msgstr "Τίτλος" + +#. module: base +#: wizard_field:res.partner.sms_send,init,text:0 +msgid "SMS Message" +msgstr "Μήνυμα SMS" + +#. module: base +#: field:ir.actions.server,otype:0 +msgid "Create Model" +msgstr "Δημιουργήστε πρότυπο" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_som-act +#: model:ir.ui.menu,name:base.menu_res_partner_som-act +msgid "States of mind" +msgstr "Ψυχικές διαθέσεις" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_ASCENDING" +msgstr "" + +#. module: base +#: view:res.groups:0 +#: view:ir.model:0 +msgid "Access Rules" +msgstr "Κανόνες πρόσβασης" + +#. module: base +#: field:ir.ui.view,arch:0 +#: field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "Αρχιτεκτονική άποψη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Skipped" +msgstr "Παραβλέποντα " + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "You can not create this kind of document! (%s)" +msgstr "Δεν μπορείτε να δημιουργήσετε αυτό το είδος εγγράφου! (%s)" + +#. module: base +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "Κώδικας (eg:en__US)" + +#. module: base +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "Γονέας" + +#. module: base +#: field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +#: view:workflow:0 +msgid "Workflow" +msgstr "Ροή Εργασιών" + +#. module: base +#: field:ir.actions.report.custom,model:0 +#: field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 +#: field:ir.default,field_tbl:0 +#: field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 +#: field:ir.model.grid,name:0 +#: field:ir.report.custom,model_id:0 +#: field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 +#: field:ir.ui.view,model:0 +#: field:ir.values,model:0 +#: field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +#: view:ir.model:0 +msgid "Object" +msgstr "Αντικείμενο" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " +msgstr "Για να κοιτάξετε τις επίσημες μεταφράσεις, μπορείτε να επισκεφτείτε αυτήν την σύνδεση:" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_category_tree +#: model:ir.ui.menu,name:base.menu_action_module_category_tree +msgid "Categories of Modules" +msgstr "Κατηγορίες ενοτήτων" + +#. module: base +#: model:ir.model,name:base.model_ir_default +#, fuzzy +msgid "ir.default" +msgstr "προκαθορισμένο" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Not Started" +msgstr "Δεν έχει αρχίσει " + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_ZOOM_100" +msgstr "100" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "Πεδία τύπων τράπεζας" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "τύπος, όνομα, res_id, src, αξία" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "confirmation" +msgstr "επιβεβαίωση" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "Εξαγωγή Αρχείου μεταφράσεων" + +#. module: base +#: field:res.partner.event.type,key:0 +msgid "Key" +msgstr "Κλειδί" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles_form +#: field:res.users,roles_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_roles_form +#: view:res.roles:0 +#: view:res.users:0 +msgid "Roles" +msgstr "Ρόλοι" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country +#: model:ir.ui.menu,name:base.menu_country_partner +msgid "Countries" +msgstr "Χώρες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HELP" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Λήψη μέγιστου " + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "Δημιουργημένες απόψεις" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "Κανονικό" + +#. module: base +#: field:workflow.activity,in_transitions:0 +#: view:workflow.activity:0 +msgid "Incoming transitions" +msgstr "Εισερχόμενες μεταβάσεις" + +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "Χρήστης παρ." + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import new language" +msgstr "Εισαγωγή νέας γλώσσας " + +#. module: base +#: wizard_field:server.action.create,step_1,report:0 +#: wizard_view:server.action.create,step_1:0 +msgid "Select Report" +msgstr "Επιλέξτε την αναφορά" + +#. module: base +#: field:ir.report.custom.fields,fc1_condition:0 +#: field:ir.report.custom.fields,fc2_condition:0 +#: field:ir.report.custom.fields,fc3_condition:0 +msgid "condition" +msgstr "όρος" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "Ετήσια" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "Χαρτογράφηση τομέων" + +#. module: base +#: field:ir.sequence,suffix:0 +msgid "Suffix" +msgstr "Επίθημα" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The unlink method is not implemented on this object !" +msgstr "Η μέθοδος αυτή δεν εφαρμόζεται σε αυτό το αντικείμενο!" + +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "Ετικέτες" + +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "Παράθυρο στόχων" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" +msgstr "Απλή οργάνωση περιοχών" + +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "Ηλεκτρονικό ταχυδρομείο αποστολέα " + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Συνοπτικός" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_activity_form +#: model:ir.ui.menu,name:base.menu_workflow_activity +msgid "Activites" +msgstr "δραστηριότητες" + +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "Έναρξη" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "Οδηγός αναφοράς" + +#. module: base +#: model:ir.model,name:base.model_res_partner +#: field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 +#: field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 +#: selection:res.partner.title,domain:0 +msgid "Partner" +msgstr "Συνέταιρος" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Μεταβάσεις" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +#, fuzzy +msgid "GPL-2 or later version" +msgstr "GPL ή έκδοση" + +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "Παύση όλων " + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_NEW" +msgstr "ΝΕΟ" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_custom +#: selection:ir.ui.menu,action:0 +#, fuzzy +msgid "ir.actions.report.custom" +msgstr "έκθεση / αναφορά" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CANCEL" +msgstr "Ακύρωση αποθέματος " + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Επαφή προοπτικής" + +#. module: base +#: constraint:ir.ui.view:0 +#, fuzzy +msgid "Invalid XML for View Architecture!" +msgstr "Άκυρο XML για Προβολή!" + +#. module: base +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "Ταξινόμηση κατά " + +#. module: base +#: field:ir.actions.report.custom,type:0 +#: field:ir.actions.report.xml,type:0 +#: field:ir.actions.server,type:0 +#: field:ir.report.custom,type:0 +msgid "Report Type" +msgstr "Τύπος αναφοράς " + +#. module: base +#: field:ir.actions.todo,state:0 +#: field:ir.module.module.dependency,state:0 +#: field:ir.module.module,state:0 +#: field:ir.report.custom,state:0 +#: field:res.bank,state:0 +#: field:res.partner.address,state_id:0 +#: field:res.partner.bank,state_id:0 +#: field:res.request,state:0 +#: field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +#: view:res.country.state:0 +msgid "State" +msgstr "Κατάσταση Λογαριασμού" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_tree +#: model:ir.ui.menu,name:base.menu_action_res_company_tree +msgid "Company's Structure" +msgstr "Δομή επιχείρησης" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "Άλλη ιδιοκτησία" + +#. module: base +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" +msgstr "Ηλεκτρονικό ταχυδρομείο/κινητό" + +#. module: base +#: field:res.partner,comment:0 +#: view:res.groups:0 +#: view:ir.model:0 +#: view:res.partner:0 +msgid "Notes" +msgstr "Σημειώσεις" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" +msgstr "Όλοι οι όροι" + +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "Προεπιλεγμένο Ηλεκτρονικό Ταχυδρομείο" + +#. module: base +#: view:res.partner:0 +msgid "General" +msgstr "Γενικό" + +#. module: base +#: field:ir.actions.wizard,name:0 +#, fuzzy +msgid "Wizard info" +msgstr "Αυτόματος Οδηγός πληροφορίες" + +#. module: base +#: model:ir.model,name:base.model_ir_property +#, fuzzy +msgid "ir.property" +msgstr "ιδιότητα" + +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Form" +msgstr "Μορφή" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Can not define a column %s. Reserved keyword !" +msgstr "Δεν μπορείτε να καθορίσετε στήλη '%s' . Κρατημένη λέξη " + +#. module: base +#: help:ir.ui.menu,groups_id:0 +msgid "If you put groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." +msgstr "Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον χρήστη. " + +#. module: base +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" +msgstr "Δραστηριότητα προορισμού" + +#. module: base +#: view:ir.actions.server:0 +msgid "Other Actions" +msgstr "Άλλες ενέργειες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_QUIT" +msgstr "ΑΠΟΘΕΜΑ_ ΕΓΚΑΤΑΛΕΙΠΕΤΑΙ" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The name_search method is not implemented on this object !" +msgstr "Η μέθοδος αναζήτησης ονόματος δεν εφαρμόζεται σε αυτό το αντικείμενο!" + +#. module: base +#: selection:res.request,state:0 +msgid "waiting" +msgstr "αναμονή" + +#. module: base +#: field:res.country,name:0 +msgid "Country Name" +msgstr "Όνομα χώρας" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "Σύνδεση" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Web:" +msgstr "Ιστός:" + +#. module: base +#, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "new" +msgstr "νέος" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_GOTO_TOP" +msgstr "TOP" + +#. module: base +#: field:ir.actions.report.custom,multi:0 +#: field:ir.actions.report.xml,multi:0 +#: field:ir.actions.act_window.view,multi:0 +msgid "On multiple doc." +msgstr "Σε πολλαπλά έγγραφα" + +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "ωθήσεις ροής της δουλειάς" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "Αναφορά εκθέσεων" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "Μέγιστο μέγεθος" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +#: selection:ir.module.module,state:0 +msgid "To be upgraded" +msgstr "Για να αναβαθμιστεί" + +#. module: base +#: field:ir.module.category,child_ids:0 +#: field:ir.module.category,parent_id:0 +#: field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "Βασική κατηγορία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-purchase" +msgstr "" + +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "Όνομα Επαφής" + +#. module: base +#, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +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 "Αποθηκεύστε το έγγραφο σε ένα αρχείο '%s' και επεξεργαστείτε το με ειδικό λογισμικό ή έναν συντάκτη κειμένων. Η κωδικοποίηση αρχείων είναι utf-8. " + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule Upgrade" +msgstr "Προγραμματισμένη αναβάθμιση " + +#. module: base +#: wizard_field:module.module.update,init,repositories:0 +msgid "Repositories" +msgstr "Χώροι αποθήκευσης" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Password mismatch !" +msgstr "Κακός συνδυασμός κωδικού πρόσβασης!" + +#. module: base +#: selection:res.partner.address,type:0 +#: selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "Στοιχεία επικοινωνίας" + +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "This url '%s' must provide an html file with links to zip modules" +msgstr "Αυτό το url '%s' πρέπει να παρέχει σε ένα αρχείο HTML στις συνδέσεις με τις ενότητες Zip" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_15 +#: view:ir.property:0 +#: view:ir.model.fields:0 +#: view:ir.model:0 +msgid "Properties" +msgstr "Ιδιότητες" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "ConcurrencyException" +msgstr "Εξαίρεση συναγωνισμού" + +#. module: base +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "Άποψη παρ." + +#. module: base +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "μετάβαση ροής της δουλειάς" + +#. module: base +#: field:res.partner,ean13:0 +msgid "EAN13" +msgstr "EAN13" + +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: model:ir.ui.menu,name:base.menu_module_repository_tree +#: view:ir.module.repository:0 +msgid "Repository list" +msgstr "Κατάλογος αποθηκών" + +#. module: base +#: help:ir.rule.group,rules:0 +msgid "The rule is satisfied if at least one test is True" +msgstr "Ο κανόνας ικανοποιείται εάν τουλάχιστον μια είναι επιλεγμένη" + +#. module: base +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "Επιγραφή αναφοράς" + +#. module: base +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "Εάν δεν επέμβετε θα χρησιμοποιηθεί απλή οργάνωση " + +#. module: base +#: field:ir.actions.url,type:0 +#: field:ir.actions.act_window,type:0 +#: field:ir.actions.actions,type:0 +#: field:ir.actions.act_window_close,type:0 +msgid "Action Type" +msgstr "Τύπος δράσης" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "Όριο προεπιλογής για την διαμόρφωση καταλόγων" + +#. module: base +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "Αντικείμενο πηγής" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +msgstr "Τύποι πεδίων " + +#. module: base +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 +msgid "Config Wizard Steps" +msgstr "Διαμόρφωση βημάτων" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "" + +#. module: base +#: field:ir.model.access,group_id:0 +#: field:ir.rule,rule_group:0 +msgid "Group" +msgstr "Ομάδα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "" + +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Υπογραφή" + +#. module: base +#: field:ir.actions.server,sms:0 +#: selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "SMS" + +#. module: base +#: field:ir.actions.server,state:0 +msgid "Action State" +msgstr "Κατάσταση δράσης" + +#. module: base +#: field:ir.translation,name:0 +msgid "Field Name" +msgstr "Ονομασία Πεδίου" + +#. module: base +#: model:ir.actions.act_window,name:base.res_lang_act_window +#: model:ir.ui.menu,name:base.menu_res_lang_act_window +#: view:res.lang:0 +msgid "Languages" +msgstr "Γλώσσες" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "Αποεγκατεστημένες ενότητες" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category, without removing it." +msgstr "Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι απαραίτητη η αφαίρεση του." + +#. module: base +#: selection:wizard.module.lang.export,format:0 +#, fuzzy +msgid "PO File" +msgstr "Αρχείο" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event +#, fuzzy +msgid "res.partner.event" +msgstr "γεγονός" + +#. module: base +#: wizard_field:server.action.create,init,type:0 +#: wizard_view:server.action.create,init:0 +msgid "Select Action Type" +msgstr "Επιλέξτε τον τύπο δράσης" + +#. module: base +#, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." +msgstr "Αποθηκεύστε το παρόν έγγραφο σε ένα .CSV αρχείο και ανοίξτε το με το λογισμικό φύλλο (spreadsheet) σας. Η κωδικοποίηση αρχείων είναι utf-8. Πρέπει να μετατρέψετε την πιο πρόσφατη στήλη πριν κάνετε επανεισαγωγή." + +#. module: base +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form +#: view:res.currency:0 +msgid "Currencies" +msgstr "Νομίσματα" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Configure" +msgstr "Διαμορφώστε" + +#. module: base +#: help:res.partner,lang:0 +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 "Εάν η επιλεγμένη γλώσσα υπάρχει στο σύστημα, όλα τα έγγραφα σχετικά με αυτόν τον συνεργάτη θα τυπωθούν σε αυτήν την γλώσσα. Εάν όχι, θα είναι αγγλικά." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "" + +#. module: base +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "Παραμετροποιημένο αντικείμενο" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "Πάντα προς αναζήτηση " + +#. module: base +#: selection:ir.model.fields,state:0 +#, fuzzy +msgid "Base Field" +msgstr "Βάση Πεδίο" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "Ταυτότητα χρήστη" + +#. module: base +#: view:ir.rule:0 +msgid "Test" +msgstr "Έλεγχος" + +#. module: base +#, python-format +#: code:addons/base/res/res_user.py:0 +msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" +msgstr "Δεν μπορείτε να διαγράψετε το χρήστη admin γιατί χρησιμοποιείται εσωτερικά για τους πόρους που δημιουργούνται από OpenERP (αναπροσαρμογές, εγκατάσταση ενότητας,…)" + +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Νέες ενότητες" + +#. module: base +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" +msgstr "" + +#. module: base +#: field:ir.default,ref_id:0 +#, fuzzy +msgid "ID Ref." +msgstr "ID Κωδ." + +#. module: base +#: help:res.partner.address,active:0 +#, fuzzy +msgid "Uncheck the active field to hide the contact." +msgstr "στο." + +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +#, fuzzy +msgid "Scheduler" +msgstr "Προγραμματιστής χρόνου" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,fc0_operande:0 +#: field:ir.report.custom.fields,fc1_operande:0 +#: field:ir.report.custom.fields,fc2_operande:0 +#: field:ir.report.custom.fields,fc3_operande:0 +#: selection:ir.translation,type:0 +#, fuzzy +msgid "Constraint" +msgstr "Περιορισμός" + +#. module: base +#: selection:res.partner.address,type:0 +#, fuzzy +msgid "Default" +msgstr "Εξ ορισμού" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +#, fuzzy +msgid "Custom" +msgstr "Προσαρμοσμένο" + +#. module: base +#: field:ir.model.fields,required:0 +#: field:res.partner.bank.type.field,required:0 +msgid "Required" +msgstr "Απαιτείται" + +#. module: base +#: field:res.country,code:0 +#, fuzzy +msgid "Country Code" +msgstr "Χώρα Κώδικας" + +#. module: base +#: field:res.request.history,name:0 +#, fuzzy +msgid "Summary" +msgstr "Περίληψη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-graph" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +#, fuzzy +msgid "Bank type" +msgstr "Τραπ είδος" + +#. module: base +#, python-format +#: code:osv/fields.py:0 +#, fuzzy +msgid "undefined get method !" +msgstr "ακαθόριστο λήψη!" + +#. module: base +#: view:res.company:0 +#, fuzzy +msgid "Header/Footer" +msgstr "Κεφαλίδα/Υποσέλιδο" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "The read method is not implemented on this object !" +msgstr "διαβασμένο είναι όχι!" + +#. module: base +#: view:res.request.history:0 +#, fuzzy +msgid "Request History" +msgstr "Ζήτηση Ιστορικό" + +#. module: base +#: view:res.users:0 +#, fuzzy +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "στο διαθέσιμα ~κατά." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 +#: view:res.partner.event:0 +#, fuzzy +msgid "Partner Events" +msgstr "Συνεργάτης Γεγονότα" + +#. module: base +#: field:ir.actions.todo,note:0 +#, fuzzy +msgid "Text" +msgstr "Κείμενο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +#, fuzzy +msgid "Introspection report on objects" +msgstr "έκθεση / αναφορά" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" +msgstr "" + +#. module: base +#: selection:res.config.view,view:0 +#, fuzzy +msgid "Extended Interface" +msgstr "Περιβάλλον" + +#. module: base +#: field:res.company,name:0 +#, fuzzy +msgid "Company Name" +msgstr "Όνομα εταιρίας" + +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +#, fuzzy +msgid "Module .ZIP file" +msgstr "Άρθρωμα αρχείο" + +#. module: base +#: wizard_button:res.partner.sms_send,init,send:0 +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +#, fuzzy +msgid "Send SMS" +msgstr "Αποστολή &SMS" + +#. module: base +#: field:ir.actions.report.custom,report_id:0 +#, fuzzy +msgid "Report Ref." +msgstr "Αναφορά Κωδ." + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +#, fuzzy +msgid "Partner contacts" +msgstr "Επαφές συνεργάτη" + +#. module: base +#: field:workflow.transition,trigger_model:0 +#, fuzzy +msgid "Trigger Object" +msgstr "Έναυσμα Αντικείμενο" + +#. module: base +#: help:res.country,code:0 +#, fuzzy +msgid "" +"The ISO country code in two chars.\n" +"You can use this field for quick search." +msgstr "ISO χώρα σε δύο για." + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Subscribed" +msgstr "" + +#. module: base +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: field:wizard.ir.model.menu.create.line,wizard_id:0 +#: model:ir.ui.menu,name:base.menu_ir_action_wizard +#: view:ir.actions.wizard:0 +msgid "Wizard" +msgstr "Αυτόματος Οδηγός" + +#. module: base +#: wizard_view:module.lang.install,init:0 +#: wizard_view:module.upgrade,next:0 +#, fuzzy +msgid "System Upgrade" +msgstr "Σύστημα Αναβάθμιση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_REVERT_TO_SAVED" +msgstr "ΕΩΣ" + +#. module: base +#: field:res.partner.event,event_ical_id:0 +#, fuzzy +msgid "iCal id" +msgstr "id" + +#. module: base +#: wizard_field:module.lang.import,init,name:0 +#, fuzzy +msgid "Language name" +msgstr "Γλώσσα όνομα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_ZOOM_IN" +msgstr "ΕΣΟΔΑ" + +#. module: base +#: field:ir.ui.menu,parent_id:0 +#: field:wizard.ir.model.menu.create,menu_id:0 +#, fuzzy +msgid "Parent Menu" +msgstr "Γονέας Μενού" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Προσαρμοσμένο a όνομα με x!" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "Unknown attribute % in % (table %)" +msgstr "Άγνωστο ιδιότητα σε πίνακας" + +#. module: base +#: field:res.partner.event,planned_cost:0 +#, fuzzy +msgid "Planned Cost" +msgstr "Κόστος" + +#. module: base +#: field:res.partner.event.type,name:0 +#: view:res.partner.event.type:0 +#, fuzzy +msgid "Event Type" +msgstr "Γεγονός Τύπος" + +#. module: base +#: field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +#, fuzzy +msgid "View Type" +msgstr "Τύπος προβολής" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom +#, fuzzy +msgid "ir.report.custom" +msgstr "έκθεση / αναφορά" + +#. module: base +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "" + +#. module: base +#: view:ir.model:0 +#, fuzzy +msgid "Model Description" +msgstr "Μοντέλο Περιγραφή" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +#, fuzzy +msgid "Bulk SMS send" +msgstr "SMS" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +#, fuzzy +msgid "get" +msgstr "λήψη" + +#. module: base +#: view:ir.report.custom.fields:0 +#, fuzzy +msgid "Report Fields" +msgstr "Αναφορά Πεδία" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +#, fuzzy +msgid "Pie Chart" +msgstr "Πίτα Διάγραμμα" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +#, fuzzy +msgid "Trigger Expression" +msgstr "Έναυσμα Παράσταση" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "Wrong ID for the browse record, got %s, expected an integer." +msgstr "ID για εγγραφή s αναμένεται ακέραιος." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "" + +#. module: base +#: view:ir.sequence.type:0 +#, fuzzy +msgid "Sequence Type" +msgstr "Τύπος" + +#. module: base +#: field:ir.report.custom.fields,field_child2:0 +msgid "field child2" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child3:0 +msgid "field child3" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child0:0 +msgid "field child0" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +#, fuzzy +msgid "Update Modules List" +msgstr "Ενημέρωση Αρθρώματα Λίστα" + +#. module: base +#: field:ir.attachment,datas_fname:0 +#, fuzzy +msgid "Data Filename" +msgstr "Δεδομένα Όνομα αρχείου" + +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "Ρύθμιση απλής προβολής" + +#. module: base +#: field:ir.module.module,license:0 +msgid "License" +msgstr "Άδεια" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "" + +#. module: base +#: field:ir.module.repository,url:0 +#, fuzzy +msgid "Url" +msgstr "Url" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" +msgstr "Ενέργειες" + +#. module: base +#: field:res.request,body:0 +#: field:res.request.history,req_id:0 +#: view:res.request:0 +msgid "Request" +msgstr "Αίτημα" + +#. module: base +#: field:ir.actions.act_window,view_mode:0 +msgid "Mode of view" +msgstr "Κατάσταση προβολής" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" +msgstr "Πορτραίτο" + +#. module: base +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" +msgstr "Μοντέλο" + +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." +msgstr "Εσείς στο εγκατάσταση a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο είναι όχι διαθέσιμα σε." + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" +msgstr "Ημερολόγιο" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +msgstr "Το αρχείο γλώσσας φορτώθηκε" + +#. module: base +#: model:ir.actions.act_window,name:base.action_ui_view +#: field:ir.actions.act_window.view,view_id:0 +#: field:ir.default,page:0 +#: selection:ir.translation,type:0 +#: field:wizard.ir.model.menu.create.line,view_id:0 +#: model:ir.ui.menu,name:base.menu_action_ui_view +msgid "View" +msgstr "Προβολή" + +#. module: base +#: wizard_field:module.upgrade,next,module_info:0 +#: wizard_view:module.upgrade,next:0 +#, fuzzy +msgid "Modules to update" +msgstr "Αρθρώματα στο ενημέρωση" + +#. module: base +#: model:ir.actions.act_window,name:base.action2 +#, fuzzy +msgid "Company Architecture" +msgstr "Εταιρία" + +#. module: base +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_INDEX" +msgstr "ΕΥΡΕΤΗΡΙΟ" + +#. module: base +#: field:ir.report.custom,print_orientation:0 +#, fuzzy +msgid "Print orientation" +msgstr "Εκτύπωση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,header:0 +#, fuzzy +msgid "Add RML header" +msgstr "Προσθήκη" + +#. module: base +#: field:ir.attachment,name:0 +msgid "Attachment Name" +msgstr "Όνομα Συνημμένου" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "Τοπίο" + +#. module: base +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "Αρχείο" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +#: view:ir.sequence:0 +msgid "Sequences" +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "Unknown position in inherited view %s !" +msgstr "Άγνωστο θέση σε s!" + +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "Προσθήκη Χρήστη" + +#. module: base +#: field:res.request,trigger_date:0 +#, fuzzy +msgid "Trigger Date" +msgstr "Έναυσμα Ημερομηνία" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" + +#. module: base +#: view:res.partner.bank:0 +msgid "Bank account" +msgstr "Τραπεζικός λογαριασμός" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Warning: using a relation field which uses an unknown object" +msgstr "Προειδοποίηση a άγνωστο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "" + +#. module: base +#: field:res.bank,zip:0 +#: field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "" + +#. module: base +#: field:ir.module.module,author:0 +msgid "Author" +msgstr "Συγγραφέας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDELETE" +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_QUESTION" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +#: view:ir.actions.server:0 +#, fuzzy +msgid "Trigger" +msgstr "Έναυσμα" + +#. module: base +#: field:res.partner,supplier:0 +msgid "Supplier" +msgstr "" + +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "Μετάφραση" + +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "Σώμα" + +#. module: base +#: field:res.lang,direction:0 +msgid "Direction" +msgstr "Κατεύθυνση" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_update_translations +#, fuzzy +msgid "wizard.module.update_translations" +msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο ενημέρωση" + +#. module: base +#: field:ir.actions.act_window,view_ids:0 +#: field:ir.actions.act_window,views:0 +#: field:ir.module.module,views_by_module:0 +#: field:wizard.ir.model.menu.create,view_ids:0 +#: view:wizard.ir.model.menu.create:0 +#: view:ir.actions.act_window:0 +msgid "Views" +msgstr "Προβολές" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "Αποστολή Email" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "You try to remove a module that is installed or will be installed" +msgstr "Εσείς στο a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο είναι ή" + +#. module: base +#: rml:ir.module.reference:0 +msgid "," +msgstr "," + +#. module: base +#: field:res.users,menu_id:0 +#, fuzzy +msgid "Menu Action" +msgstr "Μενού Ενέργεια" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PASTE" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" +msgstr "Αντικείμενα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "Can not create the module file:\n %s" +msgstr "" +"όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο\n" +" s" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflows" +msgstr "" + +#. module: base +#: field:ir.model.fields,model_id:0 +#, fuzzy +msgid "Object id" +msgstr "Αντικείμενο id" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "<" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_wizard_form +#: model:ir.ui.menu,name:base.menu_config_module +#, fuzzy +msgid "Configuration Wizard" +msgstr "Αυτόματος οδηγός ρύθμισης" + +#. module: base +#: view:res.request.link:0 +#, fuzzy +msgid "Request Link" +msgstr "Ζήτηση Δεσμός" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Μορφή αρχείου" + +#. module: base +#: field:ir.module.module,url:0 +msgid "URL" +msgstr "URL" + +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +#, fuzzy +msgid "Manualy Created" +msgstr "Δημιουργήθηκε" + +#. module: base +#: field:ir.report.custom,print_format:0 +#, fuzzy +msgid "Print format" +msgstr "Εκτύπωση" + +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +#: view:res.payterm:0 +#, fuzzy +msgid "Payment term" +msgstr "Πληρωμή" + +#. module: base +#: field:res.request,ref_doc2:0 +#, fuzzy +msgid "Document Ref 2" +msgstr "Έγγραφο Κωδ 2" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "terp-calendar" +msgstr "ημερολόγιο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +#, fuzzy +msgid "Work Days" +msgstr "Εργασία Ημέρες" + +#. module: base +#: model:ir.model,name:base.model_res_roles +msgid "res.roles" +msgstr "" + +#. module: base +#: help:ir.cron,priority:0 +#, fuzzy +msgid "" +"0=Very Urgent\n" +"10=Not urgent" +msgstr "Επείγον Not" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "" + +#. module: base +#: view:ir.ui.view:0 +#, fuzzy +msgid "User Interface - Views" +msgstr "Χρήστης Περιβάλλον Προβολές" + +#. module: base +#: view:res.groups:0 +#: view:ir.model:0 +#, fuzzy +msgid "Access Rights" +msgstr "Πρόσβαση" + +#. module: base +#: help:ir.actions.report.xml,report_rml:0 +#, fuzzy +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "διαδρομή από αρχείο ή είναι σε έκθεση / αναφορά" + +#. module: base +#: view:res.users:0 +msgid "Skip" +msgstr "Παράβλεψη" + +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" +msgstr "Δημιουργία Μενού" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "" + +#. module: base +#: view:res.partner.address:0 +#, fuzzy +msgid "Partner Address" +msgstr "Συνεργάτης Διεύθυνση" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "You can not remove the model '%s' !" +msgstr "Εσείς όχι s!" + +#. module: base +#: field:res.partner.category,name:0 +msgid "Category Name" +msgstr "Όνομα κατηγορίας" + +#. module: base +#: field:ir.report.custom.fields,field_child1:0 +msgid "field child1" +msgstr "" + +#. module: base +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Θέμα" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "The write method is not implemented on this object !" +msgstr "είναι όχι!" + +#. module: base +#: field:ir.rule.group,global:0 +msgid "Global" +msgstr "Καθολικό" + +#. module: base +#: field:res.request,act_from:0 +#: field:res.request.history,act_from:0 +msgid "From" +msgstr "Από" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "" + +#. module: base +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "Επόμενο" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_11 +#, fuzzy +msgid "Configuration Wizards" +msgstr "Ρυθμίσεις" + +#. module: base +#: field:res.request,ref_doc1:0 +#, fuzzy +msgid "Document Ref 1" +msgstr "Έγγραφο Κωδ 1" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "terp-report" +msgstr "έκθεση / αναφορά" + +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +#, fuzzy +msgid "State of Mind" +msgstr "Κατάσταση από" + +#. module: base +#: field:ir.actions.report.xml,report_type:0 +#: field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 +#: field:ir.translation,type:0 +#: field:ir.values,key:0 +#: view:res.partner:0 +msgid "Type" +msgstr "Είδος ημερολογίου" + +#. module: base +#: view:ir.module.module:0 +#, fuzzy +msgid "Defined Reports" +msgstr "Αναφορές" + +#. module: base +#: field:workflow.transition,act_from:0 +#, fuzzy +msgid "Source Activity" +msgstr "Πηγή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_FILE" +msgstr "ΑΡΧΕΙΟ" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "The copy method is not implemented on this object !" +msgstr "αντιγραφή είναι όχι!" + +#. module: base +#: view:ir.rule.group:0 +#, fuzzy +msgid "The rule is satisfied if all test are True (AND)" +msgstr "είναι όλα Αληθές ΚΑΙ" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#, fuzzy +msgid "Note that this operation my take a few minutes." +msgstr "Σημείωση a λεπτά." + +#. module: base +#: selection:res.lang,direction:0 +#, fuzzy +msgid "Left-to-right" +msgstr "Αριστερά στο δεξιά" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation +#: view:ir.translation:0 +msgid "Translations" +msgstr "Μεταφράσεις" + +#. module: base +#: field:ir.actions.report.xml,report_rml_content:0 +#: field:ir.actions.report.xml,report_rml_content_data:0 +msgid "RML content" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_grid +#, fuzzy +msgid "Objects Security Grid" +msgstr "Αντικείμενα Ασφάλεια Πλέγμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONNECT" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE_AS" +msgstr "" + +#. module: base +#: help:res.partner,supplier:0 +#, fuzzy +msgid "Check this box if the partner if a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." +msgstr "Έλεγχος a s όχι όχι κωδικοποίηση a." + +#. module: base +#: selection:ir.model.fields,select_level:0 +#, fuzzy +msgid "Not Searchable" +msgstr "Not" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "" + +#. module: base +#: field:ir.sequence,padding:0 +#, fuzzy +msgid "Number padding" +msgstr "Αριθμός" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_OK" +msgstr "Εντάξει" + +#. module: base +#, python-format +#: code:report/report_sxw.py:0 +msgid "print" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Password empty !" +msgstr "Κωδικός πρόσβασης κενός!" + +#. module: base +#: field:res.company,rml_header:0 +#, fuzzy +msgid "RML Header" +msgstr "Κεφαλίδα" + +#. module: base +#: selection:ir.actions.server,state:0 +#: selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "None" +msgstr "Κανένα" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "You can not write in this document! (%s)" +msgstr "Εσείς όχι σε s" + +#. module: base +#: model:ir.model,name:base.model_workflow +msgid "workflow" +msgstr "" + +#. module: base +#: wizard_field:res.partner.sms_send,init,app_id:0 +#, fuzzy +msgid "API ID" +msgstr "ID" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category +#: view:ir.module.category:0 +#, fuzzy +msgid "Module Category" +msgstr "Άρθρωμα Κατηγορία" + +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" +msgstr "" + +#. module: base +#: wizard_view:module.module.update,init:0 +#, fuzzy +msgid "Scan for new modules" +msgstr "Ανίχνευση για νέο Επιλογές - δυνατότητες - λειτουργίες" + +#. module: base +#: model:ir.model,name:base.model_ir_module_repository +#, fuzzy +msgid "Module Repository" +msgstr "Άρθρωμα Χώρος Απόθεσης" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_security +msgid "Security" +msgstr "Ασφάλεια" + +#. module: base +#: selection:ir.actions.server,state:0 +#, fuzzy +msgid "Write Object" +msgstr "Εγγραφή Αντικείμενο" + +#. module: base +#: field:res.bank,street:0 +#: field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" +msgstr "Οδός" + +#. module: base +#: field:ir.cron,interval_number:0 +#, fuzzy +msgid "Interval Number" +msgstr "Μεσοδιάστημα Αριθμός" + +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "Χώρος Απόθεσης" + +#. module: base +#: field:res.users,action_id:0 +#, fuzzy +msgid "Home Action" +msgstr "Αρχή Ενέργεια" + +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Χαμηλή" + +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "Recursion error in modules dependencies !" +msgstr "Αναδρομή σφάλμα σε Επιλογές - δυνατότητες - λειτουργίες εξαρτήσεις!" + +#. module: base +#: view:ir.rule:0 +#, fuzzy +msgid "Manual domain setup" +msgstr "Χειροκίνητη" + +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +#, fuzzy +msgid "XSL path" +msgstr "διαδρομή" + +#. module: base +#: field:res.groups,model_access:0 +#: model:ir.ui.menu,name:base.menu_security_access +#: view:ir.model.access:0 +#: view:res.groups:0 +msgid "Access Controls" +msgstr "Έλεγχοι Πρόσβασης" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_lang_export +#, fuzzy +msgid "wizard.module.lang.export" +msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +#: selection:ir.module.module,state:0 +msgid "Installed" +msgstr "Εγκατεστημένο" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +#, fuzzy +msgid "Partner Functions" +msgstr "Συνεργάτης Συναρτήσεις" + +#. module: base +#: model:ir.model,name:base.model_res_currency +#: field:res.company,currency_id:0 +#: field:res.currency,name:0 +#: field:res.currency.rate,currency_id:0 +#: view:res.currency:0 +msgid "Currency" +msgstr "Νόμισμα" + +#. module: base +#: field:res.partner.canal,name:0 +#, fuzzy +msgid "Channel Name" +msgstr "Κανάλι Όνομα" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" +msgstr "Συνέχεια" + +#. module: base +#: selection:res.config.view,view:0 +#, fuzzy +msgid "Simplified Interface" +msgstr "Περιβάλλον" + +#. module: base +#: field:res.bank,street2:0 +#: field:res.partner.address,street2:0 +msgid "Street2" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "Στοίχιση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr ">=" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_administration +msgid "Administration" +msgstr "Διαχείριση" + +#. module: base +#: field:ir.sequence,number_next:0 +#, fuzzy +msgid "Next Number" +msgstr "Επόμενο Αριθμός" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "Πάρτε το αρχείο" + +#. module: base +#: wizard_view:module.module.update,init:0 +#, fuzzy +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "συνάρτηση Έλεγχος για νέο Επιλογές - δυνατότητες - λειτουργίες σε διαδρομή και άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο:" + +#. module: base +#: selection:ir.rule,operator:0 +#, fuzzy +msgid "child_of" +msgstr "παιδί από" + +#. module: base +#: field:res.currency,rate_ids:0 +#: view:res.currency:0 +msgid "Rates" +msgstr "Ποσοστά" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_GO_BACK" +msgstr "ΠΗΓΑΙΝΕ" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +#: code:osv/orm.py:0 +msgid "AccessError" +msgstr "Σφάλμα πρόσβασης" + +#. module: base +#: view:res.request:0 +msgid "Reply" +msgstr "Απάντηση" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "Ιστόγραμμα" + +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" +msgstr "" + +#. module: base +#: field:ir.module.module,website:0 +#: field:res.partner,website:0 +msgid "Website" +msgstr "Ιστοχώρος" + +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Field Selection" +msgstr "Επιλογή τομέων" + +#. module: base +#: field:ir.rule.group,rules:0 +msgid "Tests" +msgstr "Δοκιμές" + +#. module: base +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "Αριθμός αύξησης" + +#. module: base +#: field:ir.report.custom.fields,operation:0 +#: field:ir.ui.menu,icon_pict:0 +#: field:wizard.module.lang.export,state:0 +msgid "unknown" +msgstr "άγνωστο" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "The create method is not implemented on this object !" +msgstr "είναι όχι!" + +#. module: base +#: field:ir.ui.view_sc,res_id:0 +#, fuzzy +msgid "Resource Ref." +msgstr "Πόρος Κωδ." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "draft" +msgstr "σχέδιο" + +#. module: base +#: field:res.currency.rate,name:0 +#: field:res.partner,date:0 +#: field:res.partner.event,date:0 +#: field:res.request,date_sent:0 +msgid "Date" +msgstr "Ημερομηνία" + +#. module: base +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" +msgstr "Πορεία SXW" + +#. module: base +#: selection:ir.translation,type:0 +msgid "RML" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_DIALOG_ERROR" +msgstr "ΣΦΑΛΜΑ" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +#, fuzzy +msgid "Partners by Categories" +msgstr "Συνεργάτες ανά Κατηγορίες" + +#. module: base +#: wizard_field:module.lang.install,init,lang:0 +#: field:ir.translation,lang:0 +#: field:res.partner,lang:0 +#: field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "Γλώσσα" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "" + +#. module: base +#: field:ir.module.module,demo:0 +msgid "Demo data" +msgstr "Επίδεικτικά στοιχεία" + +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Εισαγωγή ενότητας" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form +#: view:res.company:0 +msgid "Companies" +msgstr "Επιχειρήσεις" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_supplier_form +#: model:ir.ui.menu,name:base.menu_partner_supplier_form +msgid "Suppliers Partners" +msgstr "Συνεργάτες προμηθευτών" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +#, fuzzy +msgid "ir.sequence.type" +msgstr "είδος" + +#. module: base +#: field:ir.actions.wizard,type:0 +#, fuzzy +msgid "Action type" +msgstr "Ενέργεια είδος" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +#, fuzzy +msgid "CSV File" +msgstr "CSV Αρχείο" + +#. module: base +#: field:res.company,parent_id:0 +#, fuzzy +msgid "Parent Company" +msgstr "Γονέας Εταιρία" + +#. module: base +#: view:res.request:0 +msgid "Send" +msgstr "Στείλετε" + +#. module: base +#: field:ir.module.category,module_nr:0 +#, fuzzy +msgid "# of Modules" +msgstr "από Αρθρώματα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" +msgstr "" + +#. module: base +#: field:ir.model.data,date_init:0 +#, fuzzy +msgid "Init Date" +msgstr "Ημερομηνία" + +#. module: base +#: field:res.company,rml_header2:0 +#, fuzzy +msgid "RML Internal Header" +msgstr "Κεφαλίδα" + +#. module: base +#: selection:ir.model,state:0 +#, fuzzy +msgid "Base Object" +msgstr "Βάση Αντικείμενο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-crm" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STRIKETHROUGH" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#, fuzzy +msgid "(year)=" +msgstr "έτος" + +#. module: base +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Κωδικός" + +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "Χαρακτηριστικά γνωρίσματα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-partner" +msgstr "" + +#. module: base +#, python-format +#: code:osv/fields.py:0 +#, fuzzy +msgid "Not implemented get_memory method !" +msgstr "Not λήψη!" + +#. module: base +#: field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +#: view:ir.actions.server:0 +msgid "Python Code" +msgstr "Κώδικας Python" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Bad query." +msgstr "" + +#. module: base +#: field:ir.model.fields,field_description:0 +msgid "Field Label" +msgstr "Ετικέτα τομέων" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "You try to bypass an access rule (Document type: %s)." +msgstr "Εσείς στο Έγγραφο είδος s." + +#. module: base +#: field:ir.actions.url,url:0 +#, fuzzy +msgid "Action Url" +msgstr "Ενέργεια Url" + +#. module: base +#: field:ir.report.custom,frequency:0 +msgid "Frequency" +msgstr "Συχνότητα" + +#. module: base +#: field:ir.report.custom.fields,fc0_op:0 +#: field:ir.report.custom.fields,fc1_op:0 +#: field:ir.report.custom.fields,fc2_op:0 +#: field:ir.report.custom.fields,fc3_op:0 +msgid "Relation" +msgstr "Σχέση" + +#. module: base +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:workflow.transition,condition:0 +msgid "Condition" +msgstr "Όρος" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.ui.menu,name:base.menu_partner_customer_form +msgid "Customers Partners" +msgstr "Συνεργάτες πελατών" + +#. module: base +#: wizard_button:res.partner.spam_send,init,end:0 +#: wizard_button:res.partner.sms_send,init,end:0 +#: wizard_button:base.module.import,init,end:0 +#: wizard_button:module.lang.import,init,end:0 +#: wizard_button:module.lang.install,init,end:0 +#: wizard_button:module.module.update,init,end:0 +#: wizard_button:module.upgrade,next,end:0 +#: selection:ir.actions.todo,state:0 +#: view:wizard.ir.model.menu.create:0 +#: view:wizard.module.lang.export:0 +#: view:wizard.module.update_translations:0 +msgid "Cancel" +msgstr "Ακύρωση" + +#. module: base +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_management +msgid "Modules Management" +msgstr "Διαχείριση ενοτήτων" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "" + +#. module: base +#: field:ir.model.data,res_id:0 +#: field:ir.translation,res_id:0 +#: field:ir.values,res_id:0 +#: field:workflow.instance,res_id:0 +#: field:workflow.triggers,res_id:0 +#, fuzzy +msgid "Resource ID" +msgstr "Πόρος ID" + +#. module: base +#: field:ir.model,info:0 +msgid "Information" +msgstr "Πληροφορίες" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" +msgstr "" + +#. module: base +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "Έναρξη ροής" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_MISSING_IMAGE" +msgstr "ΛΕΙΠΕΙ" + +#. module: base +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "Χρώμα υποβάθρου" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_rml:0 +#, fuzzy +msgid "RML path" +msgstr "διαδρομή" + +#. module: base +#: field:ir.actions.configuration.wizard,item_id:0 +#, fuzzy +msgid "Next Configuration Wizard" +msgstr "Επόμενο Ρυθμίσεις Αυτόματος Οδηγός" + +#. module: base +#: field:workflow.workitem,inst_id:0 +msgid "Instance" +msgstr "Περίπτωση" + +#. module: base +#: field:ir.values,meta:0 +#: field:ir.values,meta_unpickle:0 +#, fuzzy +msgid "Meta Datas" +msgstr "Μετά-ρύθμιση" + +#. module: base +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +#, fuzzy +msgid "The rate of the currency to the currency of rate 1" +msgstr "από στο από 1" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/res/partner/partner.py:0 +msgid "Partners: " +msgstr "Συνεργάτες:" + +#. module: base +#: selection:ir.actions.todo,type:0 +#: selection:res.partner.address,type:0 +msgid "Other" +msgstr "Άλλος" + +#. module: base +#: field:ir.ui.view,field_parent:0 +#, fuzzy +msgid "Childs Field" +msgstr "Πεδίο" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_configuration_step +#, fuzzy +msgid "ir.module.module.configuration.step" +msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_configuration_wizard +#, fuzzy +msgid "ir.module.module.configuration.wizard" +msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο" + +#. module: base +#, python-format +#: code:addons/base/res/res_user.py:0 +#, fuzzy +msgid "Can not remove root user!" +msgstr "όχι root!" + +#. module: base +#: field:ir.module.module,installed_version:0 +msgid "Installed version" +msgstr "Εγκατεστημένη έκδοση" + +#. module: base +#: field:workflow,activities:0 +#: view:workflow:0 +msgid "Activities" +msgstr "Δραστηριότητες" + +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "διορισμένος πωλητής" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users +#: field:ir.actions.todo,users_id:0 +#: field:ir.default,uid:0 +#: field:ir.rule.group,users:0 +#: field:res.groups,users:0 +#: field:res.roles,users:0 +#: model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users +#: view:res.groups:0 +#: view:res.users:0 +msgid "Users" +msgstr "Χρήστες" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "Εξάγετε ένα αρχείο μεταφράσεων" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +#, fuzzy +msgid "Report Xml" +msgstr "Αναφορά" + +#. module: base +#: help:res.partner,user_id:0 +#, fuzzy +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "είναι σε από με κάθε." + +#. module: base +#: selection:ir.translation,type:0 +#, fuzzy +msgid "Wizard View" +msgstr "Αυτόματος Οδηγός Προβολή" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Upgrade" +msgstr "Ακυρώστε τη βελτίωση" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "The search method is not implemented on this object !" +msgstr "είναι όχι!" + +#. module: base +#: field:ir.actions.report.xml,attachment:0 +#, fuzzy +msgid "Save As Attachment Prefix" +msgstr "Αποθήκευση Συνημμένο Πρόθεμα" + +#. module: base +#: field:ir.cron,nextcall:0 +msgid "Next call date" +msgstr "Επόμενη ημερομηνία κλήσης" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Cumulate" +msgstr "Συσσωρεύστε" + +#. module: base +#: model:ir.model,name:base.model_res_lang +msgid "res.lang" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Pie charts need exactly two fields" +msgstr "Πίτα δύο" + +#. module: base +#: model:ir.model,name:base.model_res_bank +#: field:res.partner.bank,bank:0 +#: view:res.bank:0 +msgid "Bank" +msgstr "Τράπεζα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "" + +#. module: base +#: selection:ir.actions.server,otype:0 +#, fuzzy +msgid "Create in Same Model" +msgstr "Δημιουργία σε Ίδιο Μοντέλο" + +#. module: base +#: field:ir.actions.report.xml,name:0 +#: field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 +#: field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 +#: field:ir.module.category,name:0 +#: field:ir.module.module.dependency,name:0 +#: field:ir.module.module,name:0 +#: field:ir.module.repository,name:0 +#: field:ir.property,name:0 +#: field:ir.report.custom.fields,name:0 +#: field:ir.rule.group,name:0 +#: field:ir.values,name:0 +#: field:res.bank,name:0 +#: field:res.config.view,name:0 +#: field:res.lang,name:0 +#: field:res.partner.bank.type,name:0 +#: field:res.partner.category,complete_name:0 +#: field:res.partner,name:0 +#: field:res.request.link,name:0 +#: field:res.users,name:0 +#: field:workflow.activity,name:0 +#: field:workflow,name:0 +msgid "Name" +msgstr "Ονομασία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "" + +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "Αναφορές" + +#. module: base +#: field:workflow,on_create:0 +#, fuzzy +msgid "On Create" +msgstr "Ανοιχτό Δημιουργία" + +#. module: base +#: wizard_view:base.module.import,init:0 +#, fuzzy +msgid "Please give your module .ZIP file to import." +msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο στο." + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_CLOSE" +msgstr "ΚΛΕΙΣΤΟ" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 +msgid "Error !" +msgstr "Σφάλμα" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 +#: field:res.users,login:0 +#, fuzzy +msgid "Login" +msgstr "Σύνδεση" + +#. module: base +#: selection:ir.module.module,license:0 +#, fuzzy +msgid "GPL-2" +msgstr "GPL 2" + +#. module: base +#: help:ir.module.repository,filter:0 +#, fuzzy +msgid "" +"Regexp to search module on the repository webpage:\n" +"- The first parenthesis must match the name of the module.\n" +"- The second parenthesis must match all the version number.\n" +"- The last parenthesis must match the extension of the module." +msgstr "στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο Ταιριάζω όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n δευτερόλεπτο Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο." + +#. module: base +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "Φ.Π.Α." + +#. module: base +#: help:wizard.module.lang.export,lang:0 +#, fuzzy +msgid "To export a new language, do not select a language." +msgstr "Προς a νέο όχι επιλογή a." + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "Όροι εφαρμογής" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Average" +msgstr "Υπολογίστε το μέσο όρο" + +#. module: base +#: field:res.users,context_tz:0 +#, fuzzy +msgid "Timezone" +msgstr "Ζώνη ώρας" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_grid_security +#: model:ir.ui.menu,name:base.menu_ir_access_grid +msgid "Access Controls Grid" +msgstr "Πλέγμα ελέγχων προσπέλασης" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 +#: field:ir.module.module.dependency,module_id:0 +#: view:ir.module.module:0 +#, fuzzy +msgid "Module" +msgstr "Άρθρωμα" + +#. module: base +#: selection:res.request,priority:0 +msgid "High" +msgstr "Υψηλή" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_instance_form +#: model:ir.ui.menu,name:base.menu_workflow_instance +msgid "Instances" +msgstr "Περιπτώσεις" + +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Όνομα ρόλου" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "" + +#. module: base +#: wizard_button:module.upgrade,start,config:0 +#: wizard_button:module.upgrade,end,config:0 +msgid "Start configuration" +msgstr "Έναρξη Διαμόρφωσης" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Reload an Official Translation" +msgstr "Ξαναφορτώστε μια επίσημη μετάφραση" + +#. module: base +#: model:ir.model,name:base.model_res_request_link +#, fuzzy +msgid "res.request.link" +msgstr "σύνδεσμος" + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "Νέες ενότητες ελέγχου" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "" + +#. module: base +#, python-format +#: code:tools/translate.py:0 +msgid "Bad file format" +msgstr "Κακή μορφή αρχείου" + +#. module: base +#: help:res.bank,bic:0 +msgid "Bank Identifier Code" +msgstr "Κώδικας προσδιοριστικών τράπεζας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" +msgstr "" + +#. module: base +#: field:workflow.activity,action:0 +#, fuzzy +msgid "Python Action" +msgstr "Python Ενέργεια" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_DIRECTORY" +msgstr "ΚΑΤΑΛΟΓΟΣ" + +#. module: base +#: field:res.partner.event,planned_revenue:0 +msgid "Planned Revenue" +msgstr "Προγραμματισμένο εισόδημα" + +#. module: base +#: view:ir.rule.group:0 +msgid "Record rules" +msgstr "Κανόνες αρχείων" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group by" +msgstr "Ομαδοποίηση κατά" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "Μόνο για ανάγνωση" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "You can not remove the field '%s' !" +msgstr "Εσείς όχι s!" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,header:0 +#, fuzzy +msgid "Add or not the coporate RML header" +msgstr "Προσθήκη ή όχι" + +#. module: base +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" +msgstr "Υπολογιστική ακρίβεια" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "" + +#. module: base +#: field:res.partner.event,document:0 +msgid "Document" +msgstr "Έγγραφο" + +#. module: base +#: field:res.partner.event,type:0 +#, fuzzy +msgid "Type of Event" +msgstr "Τύπος από Γεγονός" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REFRESH" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "Τύποι ακολουθίας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STOP" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" +msgstr "s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Αριθμός λογαριασμού" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +#, fuzzy +msgid "wizard.ir.model.menu.create.line" +msgstr "γραμμή" + +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "Συνημμένη ταυτότητα" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "Προσφορά αγορών" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +#: selection:ir.module.module,state:0 +msgid "To be installed" +msgstr "Για να εγκατασταθεί" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update" +msgstr "Αναπροσαρμογή" + +#. module: base +#: view:ir.sequence:0 +#, fuzzy +msgid "Day: %(day)s" +msgstr "Ημέρα ημέρα s" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "You can not read this document! (%s)" +msgstr "Δεν μπορείτε να διαβάσετε το παρόν έγγραφο! (%s)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_FIND_AND_REPLACE" +msgstr "ΚΑΙ" + +#. module: base +#: field:res.request,history:0 +#: view:res.request:0 +#: view:res.partner:0 +msgid "History" +msgstr "Ιστορικό" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_DIALOG_WARNING" +msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ" + +#. module: base +#: model:ir.actions.report.xml,name:base.ir_module_reference_print +msgid "Technical guide" +msgstr "Τεχνικός οδηγός" + +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "Προορισμός" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "κλειστό" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONVERT" +msgstr "" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export name" +msgstr "Όνομα εξαγωγής" + +#. module: base +#: help:ir.model.fields,on_delete:0 +#, fuzzy +msgid "On delete property for many2one fields" +msgstr "Ανοιχτό ιδιότητα για" + +#. module: base +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "Ημέρες" + +#. module: base +#: field:ir.property,value:0 +#: selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 +#: field:ir.values,key2:0 +#: field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "Αξία" + +#. module: base +#: field:ir.default,field_name:0 +msgid "Object field" +msgstr "Τομέας αντικειμένου" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "Μεταφράσεις αναπροσαρμογών" + +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" +msgstr "Σταθερό πλάτος" + +#. module: base +#: view:ir.actions.server:0 +msgid "Other Actions Configuration" +msgstr "Άλλη διαμόρφωση ενεργειών" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EXECUTE" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "Πρακτικά" + +#. module: base +#: wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +#, fuzzy +msgid "The modules have been upgraded / installed !" +msgstr "Επιλογές - δυνατότητες - λειτουργίες!" + +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "Αξία περιοχών" + +#. module: base +#: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 +msgid "Help" +msgstr "Βοήθεια" + +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +msgstr "" +"Κάποια προβλήματα Επιλογές - δυνατότητες - λειτουργίες εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο στο\n" +" s" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "Αποδεκτές συνδέσεις στα αιτήματα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "" + +#. module: base +#: selection:ir.actions.server,otype:0 +msgid "Create in Other Model" +msgstr "Δημιουργήστε σε άλλο πρότυπο" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_canal-act +#: model:ir.model,name:base.model_res_partner_canal +#: model:ir.ui.menu,name:base.menu_res_partner_canal-act +msgid "Channels" +msgstr "Κανάλια" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "Κατάλογος ελέγχων προσπέλασης" + +#. module: base +#: help:ir.rule.group,global:0 +#, fuzzy +msgid "Make the rule global or it needs to be put on a group or user" +msgstr "Make ή στο a ομάδα ή" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +#, fuzzy +msgid "Wizard name" +msgstr "Αυτόματος Οδηγός όνομα" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +#, fuzzy +msgid "Report Custom" +msgstr "Αναφορά Προσαρμοσμένο" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule for Installation" +msgstr "Σχέδιο για την εγκατάσταση" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Προηγμένη αναζήτηση" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form +#: view:res.partner:0 +msgid "Partners" +msgstr "Συνεργάτες" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory:" +msgstr "Κατάλογος:" + +#. module: base +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "Συνημμένο πρότυπο" + +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "Όνομα ώθησης" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "Δημιουργήστε" + +#. module: base +#, python-format +#: code:addons/base/res/res_user.py:0 +msgid "The name of the group can not start with \"-\"" +msgstr "Το όνομα της ομάδας δεν μπορεί να αρχίσει με \"-\"" + +#. module: base +#: wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "Προτείνουμε να ξαναφορτώσετε την ετικέττα επιλογών (Ctrl+t Ctrl+r)." + +#. module: base +#: field:res.partner.title,shortcut:0 +#: view:ir.ui.view_sc:0 +msgid "Shortcut" +msgstr "Συντόμευση" + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" +msgstr "" + +#. module: base +#: field:ir.cron,priority:0 +#: field:ir.ui.view,priority:0 +#: field:res.request.link,priority:0 +#: field:res.request,priority:0 +msgid "Priority" +msgstr "Προτεραιότητα" + +#. module: base +#: field:ir.translation,src:0 +msgid "Source" +msgstr "Πηγή" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contacts Titles" +msgstr "Τίτλοι επαφών" + +#. module: base +#: help:res.partner.address,partner_id:0 +#, fuzzy +msgid "Keep empty for a private address, not related to partner." +msgstr "Διατήρηση κενό για a ιδιωτικό διεύθυνση όχι στο." + +#. module: base +#: selection:ir.translation,type:0 +#, fuzzy +msgid "Wizard Button" +msgstr "Αυτόματος Οδηγός Κουμπί" + +#. module: base +#: view:ir.sequence:0 +#, fuzzy +msgid "Legend (for prefix, suffix)" +msgstr "Λεζάντα για" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" +msgstr "Στάση ροής" + +#. module: base +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "Τύπος" + +#. module: base +#: view:res.company:0 +msgid "Internal Header/Footer" +msgstr "Εσωτερική επιγραφή/υποσημείωση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" +msgstr "" + +#. module: base +#: view:res.partner.bank:0 +msgid "Bank account owner" +msgstr "Ιδιοκτήτης τραπεζικού λογαριασμού" + +#. module: base +#: field:ir.ui.view,name:0 +#, fuzzy +msgid "View Name" +msgstr "Προβολή Όνομα" + +#. module: base +#: field:ir.ui.view_sc,resource:0 +msgid "Resource Name" +msgstr "Όνομα των πόρων" + +#. module: base +#, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, fuzzy +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "Αποθήκευση στο a αρχείο Αρχείο s και Μάιος στο." + +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "Τύπος διευθύνσεων" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "Αυτόματο" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export Id" +msgstr "Ταυτότητα εξαγωγής" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Hours" +msgstr "Ώρες" + +#. module: base +#: field:ir.translation,value:0 +msgid "Translation Value" +msgstr "Αξία μεταφράσεων" + +#. module: base +#: field:ir.cron,interval_type:0 +#, fuzzy +msgid "Interval Unit" +msgstr "Μεσοδιάστημα Μονάδα" + +#. module: base +#: view:res.request:0 +msgid "End of Request" +msgstr "Τέλος του αιτήματος" + +#. module: base +#: view:res.request:0 +msgid "References" +msgstr "Αναφορές" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "This record was modified in the meanwhile" +msgstr "Αυτό το αρχείο τροποποιήθηκε εν τω μεταξύ" + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "Σημειώστε ότι αυτή η λειτουργία μπορεί να πάρει λεπτά." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COLOR_PICKER" +msgstr "" + +#. module: base +#: field:res.request,act_to:0 +#: field:res.request.history,act_to:0 +msgid "To" +msgstr "Προς" + +#. module: base +#: field:workflow.activity,kind:0 +msgid "Kind" +msgstr "Είδος" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "This method does not exist anymore" +msgstr "Αυτή η μέθοδος δεν υπάρχει άλλο" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Tree can only be used in tabular reports" +msgstr "Το δέντρο μπορεί μόνο να χρησιμοποιηθεί στις συνοπτικές αναφορές" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "Χειρωνακτικός" + +#. module: base +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Τραπεζικοί λογαριασμοί" + +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Tree" +msgstr "Δέντρο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Bar charts need at least two fields" +msgstr "Ράβδος σε δύο" + +#. module: base +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Διαβασμένη πρόσβαση" + +#. module: base +#: selection:ir.report.custom,type:0 +#, fuzzy +msgid "Line Plot" +msgstr "Γραμμή Γράφημα" + +#. module: base +#: field:wizard.ir.model.menu.create,name:0 +msgid "Menu Name" +msgstr "Όνομα επιλογών" + +#. module: base +#: selection:ir.model.fields,state:0 +#, fuzzy +msgid "Custom Field" +msgstr "Προσαρμοσμένο Πεδίο" + +#. module: base +#: field:ir.model.fields,relation_field:0 +#, fuzzy +msgid "Relation Field" +msgstr "Σχέση, Πίνακας Πεδίο" + +#. module: base +#, python-format +#: code:osv/fields.py:0 +#, fuzzy +msgid "Not implemented search_memory method !" +msgstr "Not!" + +#. module: base +#: field:ir.report.custom.fields,fontcolor:0 +msgid "Font color" +msgstr "Χρώμα πηγών" + +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: model:ir.ui.menu,name:base.menu_server_action +#: view:ir.actions.server:0 +msgid "Server Actions" +msgstr "Ενέργειες κεντρικών υπολογιστών" + +#. module: base +#: field:ir.model.fields,view_load:0 +#, fuzzy +msgid "View Auto-Load" +msgstr "Προβολή Αυτόματο Φόρτωμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_GO_UP" +msgstr "ΠΗΓΑΙΝΕ" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_DESCENDING" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" +msgstr "" + +#. module: base +#: field:res.groups,rule_groups:0 +#: field:res.users,rules_id:0 +#: view:res.groups:0 +msgid "Rules" +msgstr "Κανόνες" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title +#: model:ir.ui.menu,name:base.menu_partner_title +msgid "Titles" +msgstr "Τίτλοι" + +#. module: base +#: wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +msgid "System upgrade done" +msgstr "Έγινα Βελτίωση συστημάτων" + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 +#, fuzzy +msgid "Type of view" +msgstr "Τύπος από" + +#. module: base +#, python-format +#: code:report/custom.py:0 +#, fuzzy +msgid "The sum of the data (2nd field) is null.\nWe can draw a pie chart !" +msgstr "από 2η είναι a!" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "" + +#. module: base +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" +msgstr "Μέρα έναρξης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.model,name:base.model_res_partner_address +#: view:res.partner.address:0 +msgid "Partner Addresses" +msgstr "Διευθύνσεις συνεργατών" + +#. module: base +#: field:ir.actions.report.xml,report_xml:0 +#, fuzzy +msgid "XML path" +msgstr "XML διαδρομή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +#, fuzzy +msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." +msgstr "από όλα άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Τε(τάρτη) σε σύνδεση στο όλα." + +#. module: base +#: model:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Grant access to menu" +msgstr "Πρόσβαση επιχορήγησης στις επιλογές" + +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "Περιεκτικότητα σε αρχεία" + +#. module: base +#: view:ir.module.module:0 +#, fuzzy +msgid "Uninstall (beta)" +msgstr "Απεγκατάσταση" + +#. module: base +#: selection:ir.actions.url,target:0 +#: selection:ir.actions.act_window,target:0 +msgid "New Window" +msgstr "Νέο παράθυρο" + +#. module: base +#: help:res.partner,customer:0 +msgid "Check this box if the partner if a customer." +msgstr "Ελέγξτε αυτό το κιβώτιο εάν είναι συνεργάτης ή πελάτης." + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Second field should be figures" +msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμοί" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "" + +#. module: base +#: field:ir.actions.actions,parent_id:0 +#, fuzzy +msgid "Parent Action" +msgstr "Γονέας Ενέργεια" + +#. module: base +#, python-format +#: code:addons/base/res/partner/partner.py:0 +#, fuzzy +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "t id μερικές id!" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "Διαγραμμένος από τη συνδρομή" + +#. module: base +#: wizard_field:module.module.update,update,update:0 +#, fuzzy +msgid "Number of modules updated" +msgstr "Αριθμός από Επιλογές - δυνατότητες - λειτουργίες" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +#, fuzzy +msgid "Skip Step" +msgstr "Παράβλεψη Βήμα" + +#. module: base +#: model:ir.actions.act_window,name:base.act_res_partner_event +#: field:res.partner.event,name:0 +#: field:res.partner,events:0 +msgid "Events" +msgstr "Γεγονότα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles +#: model:ir.ui.menu,name:base.menu_action_res_roles +#, fuzzy +msgid "Roles Structure" +msgstr "Δομή" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.url" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_STOP" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +#, fuzzy +msgid "Active Partner Events" +msgstr "Ενεργό Συνεργάτης Γεγονότα" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "Error occured while validating the field(s) %s: %s" +msgstr "Σφάλμα s s s" + +#. module: base +#: view:res.users:0 +#, fuzzy +msgid "Define New Users" +msgstr "Ορισμός Νέο Χρήστες" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" +msgstr "Κανόνες αρχείων" + +#. module: base +#: field:res.config.view,view:0 +#, fuzzy +msgid "View Mode" +msgstr "Προβολή Κατάσταση" + +#. module: base +#: wizard_field:module.module.update,update,add:0 +#, fuzzy +msgid "Number of modules added" +msgstr "Αριθμός από Επιλογές - δυνατότητες - λειτουργίες" + +#. module: base +#: field:res.bank,phone:0 +#: field:res.partner.address,phone:0 +msgid "Phone" +msgstr "Τηλέφωνο" + +#. module: base +#: help:ir.actions.wizard,multi:0 +#, fuzzy +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." +msgstr "στο αληθές όχι δεξιά από a." + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Ρόλος που απαιτείται" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.report.xml,groups_id:0 +#: field:ir.actions.act_window,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 +#: field:ir.actions.todo,groups_id:0 +#: field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 +#: field:ir.ui.menu,groups_id:0 +#: field:res.users,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups +#: view:res.groups:0 +#: view:res.users:0 +msgid "Groups" +msgstr "Ομάδες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "" + +#. module: base +#: field:ir.actions.todo,active:0 +#: field:ir.cron,active:0 +#: field:ir.module.repository,active:0 +#: field:ir.sequence,active:0 +#: field:res.bank,active:0 +#: field:res.currency,active:0 +#: field:res.lang,active:0 +#: field:res.partner,active:0 +#: field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 +#: field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 +#: field:res.request,active:0 +#: field:res.users,active:0 +msgid "Active" +msgstr "Ενεργός" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Δημιουργημένες επιλογές" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Orignal View" +msgstr "Αρχική Άποψη" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "Ευκαιρία πώλησης" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid ">" +msgstr ">" + +#. module: base +#: field:workflow.triggers,workitem_id:0 +msgid "Workitem" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "ΠΙΣΤΟΠΟΙΗΣΗ" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Ανοίξτε ένα παράθυρο" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Μήνες" + +#. module: base +#: field:workflow.activity,signal_send:0 +#, fuzzy +msgid "Signal (subflow.*)" +msgstr "Σήμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_ZOOM_OUT" +msgstr "ΕΞΟΔΑ" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +#: selection:ir.module.module,state:0 +msgid "To be removed" +msgstr "Για να αφαιρεθεί" + +#. module: base +#: field:res.partner.category,child_ids:0 +#, fuzzy +msgid "Childs Category" +msgstr "Κατηγορία" + +#. module: base +#: field:ir.model.fields,model:0 +#: field:ir.model,model:0 +#: field:ir.model.grid,model:0 +#: field:ir.model,name:0 +#, fuzzy +msgid "Object Name" +msgstr "Όνομα αντικειμένου" + +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: view:ir.actions.actions:0 +msgid "Action" +msgstr "Ενέργεια" + +#. module: base +#: field:ir.rule,domain_force:0 +#, fuzzy +msgid "Force Domain" +msgstr "Εξαναγκασμός Τομέας" + +#. module: base +#: view:ir.actions.server:0 +#, fuzzy +msgid "Email Configuration" +msgstr "Email Ρυθμίσεις" + +#. module: base +#: model:ir.model,name:base.model_ir_cron +msgid "ir.cron" +msgstr "" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "And" +msgstr "και" + +#. module: base +#: field:ir.model.fields,relation:0 +msgid "Object Relation" +msgstr "Σχέση αντικειμένου" + +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: model:ir.ui.menu,name:base.menu_action_attachment +#: view:ir.attachment:0 +msgid "Attachments" +msgstr "Συνδέσεις" + +#. module: base +#: field:ir.rule,field_id:0 +#: selection:ir.translation,type:0 +msgid "Field" +msgstr "Πεδίο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,multi:0 +#, fuzzy +msgid "Action on multiple doc." +msgstr "Ενέργεια." + +#. module: base +#: field:res.partner,child_ids:0 +#: field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "Εταιρική Αναφ." + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom_fields +#, fuzzy +msgid "ir.report.custom.fields" +msgstr "έκθεση / αναφορά" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Uninstall" +msgstr "Ακυρώστε την απεγκατάσταση" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "Έγινε" + +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +#, fuzzy +msgid "Trigger On" +msgstr "Έναυσμα Ανοιχτό" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" +msgstr "Τιμολόγιο" + +#. module: base +#: help:ir.actions.report.custom,multi:0 +#: help:ir.actions.report.xml,multi:0 +#: help:ir.actions.act_window.view,multi:0 +#, fuzzy +msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgstr "στο αληθές όχι δεξιά από a." + +#. module: base +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level" +msgstr "Χαμηλό επλιπεδο " + +#. module: base +#: wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +#, fuzzy +msgid "You may have to reinstall some language pack." +msgstr "Εσείς Μάιος στο επανεγκατάσταση μερικές." + +#. module: base +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "Ποσοστό νομίσματος" + +#. module: base +#: field:ir.model.access,perm_write:0 +#, fuzzy +msgid "Write Access" +msgstr "Εγγραφή Πρόσβαση" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "Η Εξαγωγή έγινε " + +#. module: base +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Μέγεθος" + +#. module: base +#: field:res.bank,city:0 +#: field:res.partner.address,city:0 +#: field:res.partner.bank,city:0 +#: field:res.partner,city:0 +msgid "City" +msgstr "Πόλη" + +#. module: base +#: field:res.company,child_ids:0 +#, fuzzy +msgid "Childs Company" +msgstr "Εταιρία" + +#. module: base +#: constraint:ir.model:0 +#, fuzzy +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Αντικείμενο όνομα με x και όχι κάθε!" + +#. module: base +#: rml:ir.module.reference:0 +#, fuzzy +msgid "Module:" +msgstr "Άρθρωμα:" + +#. module: base +#: field:ir.actions.configuration.wizard,name:0 +#, fuzzy +msgid "Next Wizard" +msgstr "Επόμενο Αυτόματος Οδηγός" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "<>" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 +#: field:ir.ui.menu,name:0 +#: view:ir.ui.menu:0 +#, fuzzy +msgid "Menu" +msgstr "Μενού" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" +msgstr "<=" + +#. module: base +#: view:wizard.module.lang.export:0 +#, fuzzy +msgid "Export Data" +msgstr "Εξαγωγή Δεδομένα" + +#. module: base +#: field:workflow.triggers,instance_id:0 +#, fuzzy +msgid "Destination Instance" +msgstr "Προορισμός Στιγμή, Στιγμιότυπο" + +#. module: base +#: wizard_view:module.lang.install,start:0 +#, fuzzy +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 "Εσείς αλλαγή από και a νέο στο." + +#. module: base +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +#, fuzzy +msgid "Menus" +msgstr "Μενού" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 +#, fuzzy +msgid "in" +msgstr "σε" + +#. module: base +#: field:ir.actions.url,target:0 +#, fuzzy +msgid "Action Target" +msgstr "Ενέργεια Στόχος/Προορισμός" + +#. module: base +#: field:ir.report.custom,field_parent:0 +#, fuzzy +msgid "Child Field" +msgstr "Παιδί Πεδίο" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "https://translations.launchpad.net/openobject" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +#, fuzzy +msgid "GPL-3 or later version" +msgstr "GPL ή έκδοση" + +#. module: base +#: field:ir.actions.report.custom,usage:0 +#: field:ir.actions.report.xml,usage:0 +#: field:ir.actions.server,usage:0 +#: field:ir.actions.act_window,usage:0 +#: field:ir.actions.actions,usage:0 +#, fuzzy +msgid "Action Usage" +msgstr "Ενέργεια Χρήση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_HOME" +msgstr "ΑΡΧΙΚΗ" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Enter at least one field !" +msgstr "Εισαγωγή σε!" + +#. module: base +#: field:ir.actions.server,child_ids:0 +#: selection:ir.actions.server,state:0 +#, fuzzy +msgid "Others Actions" +msgstr "Άλλα Ενέργειες" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +#, fuzzy +msgid "Create Action" +msgstr "Δημιουργία Ενέργεια" + +#. module: base +#: model:ir.model,name:base.model_workflow_workitem +msgid "workflow.workitem" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,name:0 +#, fuzzy +msgid "Shortcut Name" +msgstr "Συντόμευση Όνομα" + +#. module: base +#: selection:ir.module.module,state:0 +#, fuzzy +msgid "Not Installable" +msgstr "Not" + +#. module: base +#: field:res.partner.event,probability:0 +#, fuzzy +msgid "Probability (0.50)" +msgstr "Πιθανότητα" + +#. module: base +#: field:res.partner.address,mobile:0 +#, fuzzy +msgid "Mobile" +msgstr "Κινητό" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "" + +#. module: base +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" +msgstr "Επαναλάβετε την επιγραφή" + +#. module: base +#: field:res.users,address_id:0 +msgid "Address" +msgstr "Διεύθυνση" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Your system will be upgraded." +msgstr "Το σύστημά σας θα αναβαθμιστεί." + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +#, fuzzy +msgid "Configure User" +msgstr "Ρύθμιση Χρήστη" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Name:" +msgstr "Όνομα:" + +#. module: base +#: help:res.country,name:0 +#, fuzzy +msgid "The full name of the country." +msgstr "όνομα από χώρα." + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_JUMP_TO" +msgstr "ΕΩΣ" + +#. module: base +#: field:ir.ui.menu,child_id:0 +#, fuzzy +msgid "Child ids" +msgstr "Παιδί" + +#. module: base +#: field:ir.actions.todo,end_date:0 +#, fuzzy +msgid "End Date" +msgstr "Ημερομηνία λήξης" + +#. module: base +#: field:ir.exports,resource:0 +#: field:ir.property,res_id:0 +#, fuzzy +msgid "Resource" +msgstr "Πόρος" + +#. module: base +#: field:ir.model.data,date_update:0 +#, fuzzy +msgid "Update Date" +msgstr "Ενημέρωση Ημερομηνία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-tools" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +#, fuzzy +msgid "Python code" +msgstr "Python" + +#. module: base +#: view:ir.actions.report.xml:0 +#, fuzzy +msgid "Report xml" +msgstr "Αναφορά" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_open_categ +#: model:ir.actions.act_window,name:base.open_module_tree +#: field:wizard.module.lang.export,modules:0 +#: model:ir.ui.menu,name:base.menu_module_tree +#: view:ir.module.module:0 +#, fuzzy +msgid "Modules" +msgstr "Αρθρώματα" + +#. module: base +#: selection:workflow.activity,kind:0 +#: field:workflow.activity,subflow_id:0 +#: field:workflow.workitem,subflow_id:0 +msgid "Subflow" +msgstr "" + +#. module: base +#: help:res.partner,vat:0 +#, fuzzy +msgid "Value Added Tax number" +msgstr "Τιμή Προστέθηκε Φόρος" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form +#: model:ir.ui.menu,name:base.menu_values_form +#: view:ir.values:0 +#, fuzzy +msgid "Values" +msgstr "Τιμές" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_INFO" +msgstr "" + +#. module: base +#: field:workflow.transition,signal:0 +#, fuzzy +msgid "Signal (button Name)" +msgstr "Σήμα Όνομα" + +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "Λογότυπο" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: field:res.partner,bank_ids:0 +#: model:ir.ui.menu,name:base.menu_action_res_bank_form +#: view:res.bank:0 +msgid "Banks" +msgstr "Τράπεζες" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of calls" +msgstr "Αριθμός κλήσεων" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-sale" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +#, fuzzy +msgid "Field Mappings" +msgstr "Πεδίο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" +msgstr "" + +#. module: base +#: view:ir.model.fields:0 +#: view:ir.model:0 +#, fuzzy +msgid "Security on Groups" +msgstr "Ασφάλεια Ομάδες" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "κέντρο" + +#. module: base +#, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, fuzzy +msgid "Can not create the module file: %s !" +msgstr "όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο s!" + +#. module: base +#: field:ir.server.object.lines,server_id:0 +#, fuzzy +msgid "Object Mapping" +msgstr "Αντικείμενο Αντιστοίχηση" + +#. module: base +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "Δημοσιευμένη έκδοση" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +#, fuzzy +msgid "Auto-Refresh" +msgstr "Αυτόματο Ανανέωση" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country_state +#: model:ir.ui.menu,name:base.menu_country_state_partner +msgid "States" +msgstr "Κράτη" + +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "Ποσοστό" + +#. module: base +#: selection:res.lang,direction:0 +#, fuzzy +msgid "Right-to-left" +msgstr "Δεξιά στο αριστερά" + +#. module: base +#: view:ir.actions.server:0 +#, fuzzy +msgid "Create / Write" +msgstr "Δημιουργία Εγγραφή" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +#, fuzzy +msgid "ir.exports.line" +msgstr "γραμμή" + +#. module: base +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Πιστωτικό όριο" + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Προκαθορισμένη αξία" + +#. module: base +#: rml:ir.module.reference:0 +#, fuzzy +msgid "Object:" +msgstr "Αντικείμενο:" + +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "Κράτος χώρας" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "Όλες οι ιδιότητες" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "αριστερό" + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "Κατηγορία" + +#. module: base +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Θέση" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_window +#: model:ir.ui.menu,name:base.menu_ir_action_window +#, fuzzy +msgid "Window Actions" +msgstr "Παράθυρο Ενέργειες" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "Υπηρεσία" + +#. module: base +#: help:ir.actions.act_window,auto_refresh:0 +#, fuzzy +msgid "Add an auto-refresh on the view" +msgstr "Προσθήκη αυτόματο" + +#. module: base +#: field:wizard.module.lang.export,name:0 +#, fuzzy +msgid "Filename" +msgstr "Όνομα αρχείου" + +#. module: base +#: field:ir.model,access_ids:0 +msgid "Access" +msgstr "Πρόσβαση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "STOCK_GO_DOWN" +msgstr "ΠΗΓΑΙΝΕ" + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report title" +msgstr "Τίτλος εκθέσεων" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Weeks" +msgstr "Εβδομάδες" + +#. module: base +#: field:res.groups,name:0 +msgid "Group Name" +msgstr "Όνομα ομάδας" + +#. module: base +#: wizard_field:module.upgrade,next,module_download:0 +#: wizard_view:module.upgrade,next:0 +#, fuzzy +msgid "Modules to download" +msgstr "Αρθρώματα στο" + +#. module: base +#: field:res.bank,fax:0 +#: field:res.partner.address,fax:0 +#, fuzzy +msgid "Fax" +msgstr "Φαξ" + +#. module: base +#: view:res.users:0 +#, fuzzy +msgid "Groups are used to defined access rights on each screen and menu." +msgstr "Ομάδες στο οθόνη και." + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_workitem_form +#: model:ir.ui.menu,name:base.menu_workflow_workitem +msgid "Workitems" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT_PREVIEW" +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "The perm_read method is not implemented on this object !" +msgstr "διαβασμένο είναι όχι!" + +#. module: base +#: field:ir.default,company_id:0 +#: field:ir.property,company_id:0 +#: field:ir.values,company_id:0 +#: field:res.users,company_id:0 +#: view:res.company:0 +msgid "Company" +msgstr "Εταιρεία" + +#. module: base +#: view:ir.actions.server:0 +#, fuzzy +msgid "Access all the fields related to the current object easily just by defining name of the attribute, i.e. [[partner_id.name]] for Invoice Object" +msgstr "Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο Αντικείμενο" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created date" +msgstr "Ημερομηνία δημιουργείας " + +#. module: base +#: view:ir.actions.server:0 +#, fuzzy +msgid "Email / SMS" +msgstr "Email SMS" + +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +#: selection:ir.module.module,state:0 +#, fuzzy +msgid "Not Installed" +msgstr "Μη εγκατεστημένη" + +#. module: base +#: field:res.partner.event,canal_id:0 +#: view:res.partner.canal:0 +#, fuzzy +msgid "Channel" +msgstr "Κανάλι" + +#. module: base +#: field:ir.ui.menu,icon:0 +msgid "Icon" +msgstr "Εικονίδιο" + +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +#, fuzzy +msgid "Ok" +msgstr "Εντάξει" + +#. module: base +#: field:ir.cron,doall:0 +#, fuzzy +msgid "Repeat missed" +msgstr "Επανάληψη" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "Couldn't find tag '%s' in parent view !" +msgstr "t ετικέτα s σε!" + +#. module: base +#: field:ir.ui.view,inherit_id:0 +#, fuzzy +msgid "Inherited View" +msgstr "Προβολή" + +#. module: base +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,limit:0 +#: field:ir.report.custom,limitt:0 +msgid "Limit" +msgstr "Όριο" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +#: model:ir.ui.menu,name:base.next_id_12 +#: view:res.request:0 +msgid "Requests" +msgstr "Αιτήματα" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "ή" + +#. module: base +#: model:ir.model,name:base.model_ir_rule_group +#, fuzzy +msgid "ir.rule.group" +msgstr "ομάδα" + +#. module: base +#: field:res.roles,child_id:0 +msgid "Childs" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "Επιλογή" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 +msgid "=" +msgstr "=" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_install +#: model:ir.ui.menu,name:base.menu_module_tree_install +#, fuzzy +msgid "Installed modules" +msgstr "Εγκατεστημένο Επιλογές - δυνατότητες - λειτουργίες" + +#. module: base +#, python-format +#: code:addons/base/res/partner/partner.py:0 +#, fuzzy +msgid "Warning" +msgstr "Προειδοποίηση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "" + +#. module: base +#: field:ir.rule,operator:0 +#, fuzzy +msgid "Operator" +msgstr "Τελεστής" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "ValidateError" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +#, fuzzy +msgid "Client Action" +msgstr "Πελάτης Ενέργεια" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +#, fuzzy +msgid "right" +msgstr "δεξιά" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "" + +#. module: base +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +#, fuzzy +msgid "Import module" +msgstr "Εισαγωγή άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Version:" +msgstr "Έκδοση:" + +#. module: base +#: view:ir.actions.server:0 +#, fuzzy +msgid "Trigger Configuration" +msgstr "Έναυσμα Ρυθμίσεις" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "" + +#. module: base +#: field:res.company,rml_footer1:0 +#, fuzzy +msgid "Report Footer 1" +msgstr "Αναφορά Υποσέλιδο 1" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "You can not delete this document! (%s)" +msgstr "Εσείς όχι s" + +#. module: base +#: model:ir.actions.act_window,name:base.action_report_custom +#: view:ir.report.custom:0 +#, fuzzy +msgid "Custom Report" +msgstr "Προσαρμοσμένο Αναφορά" + +#. module: base +#: selection:ir.actions.server,state:0 +#, fuzzy +msgid "Email" +msgstr "Email" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +#, fuzzy +msgid "Resynchronise Terms" +msgstr "Όροι" + +#. module: base +#: field:ir.model.access,perm_create:0 +#, fuzzy +msgid "Create Access" +msgstr "Δημιουργία Πρόσβαση" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +#: model:ir.ui.menu,name:base.menu_partner_other_form +#, fuzzy +msgid "Others Partners" +msgstr "Άλλοι συνεργάτες" + +#. module: base +#: field:ir.model.data,noupdate:0 +msgid "Non Updatable" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Printed:" +msgstr "Τυπωμένο:" + +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "όχι αναβάθμιση άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s είναι όχι." + +#. module: base +#, python-format +#: code:osv/fields.py:0 +#, fuzzy +msgid "Not implemented set_memory method !" +msgstr "Not!" + +#. module: base +#: selection:ir.actions.act_window,target:0 +#, fuzzy +msgid "Current Window" +msgstr "Τρέχον παράθυρο" + +#. module: base +#: view:res.partner.category:0 +#, fuzzy +msgid "Partner category" +msgstr "Συνεργάτης" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NETWORK" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields +#: model:ir.model,name:base.model_ir_model_fields +#: field:ir.model,field_id:0 +#: field:ir.property,fields_id:0 +#: field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +#: view:ir.model.fields:0 +#: view:ir.model:0 +msgid "Fields" +msgstr "Πεδία" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "Interface" +msgstr "Διεπαφή" + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: view:ir.sequence:0 +#: view:res.company:0 +msgid "Configuration" +msgstr "Διαμόρφωση" + +#. module: base +#: field:ir.model.fields,ttype:0 +#: view:ir.model:0 +msgid "Field Type" +msgstr "Τύπος πεδίων " + +#. module: base +#: field:ir.model.fields,complete_name:0 +#: field:ir.ui.menu,complete_name:0 +msgid "Complete Name" +msgstr "Πλήρες όνομα" + +#. module: base +#: field:res.country.state,code:0 +#, fuzzy +msgid "State Code" +msgstr "Κατάσταση Κώδικας" + +#. module: base +#: field:ir.model.fields,on_delete:0 +#, fuzzy +msgid "On delete" +msgstr "Ανοιχτό" + +#. module: base +#: view:ir.report.custom:0 +#, fuzzy +msgid "Subscribe Report" +msgstr "Εγγραφή συνδρομητή Αναφορά" + +#. module: base +#: field:ir.values,object:0 +#, fuzzy +msgid "Is Object" +msgstr "Είναι Αντικείμενο" + +#. module: base +#: field:res.lang,translatable:0 +msgid "Translatable" +msgstr "Μεταφράσιμο " + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Daily" +msgstr "Καθημερινά" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +#, fuzzy +msgid "Cascade" +msgstr "Διαδοχική" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Field %d should be a figure" +msgstr "Πεδίο a" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +#, fuzzy +msgid "Gantt" +msgstr "Gantt" + +#. module: base +#, python-format +#: code:osv/fields.py:0 +msgid "Not Implemented" +msgstr "Μη εφαρμοσμένο" + +#. module: base +#: view:ir.property:0 +msgid "Property" +msgstr "Ιδιοκτησία" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type +#: view:res.partner.bank.type:0 +#, fuzzy +msgid "Bank Account Type" +msgstr "Τραπ Λογαριασμός Τύπος" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +#, fuzzy +msgid "Next Configuration Step" +msgstr "Επόμενο Ρυθμίσεις Βήμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "terp-project" +msgstr "έργο/προβολή" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "Σχόλιο" + +#. module: base +#: field:ir.model.fields,domain:0 +#: field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "Τομέας" + +#. module: base +#: view:res.config.view:0 +#, fuzzy +msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." +msgstr "Επιλογή για πρώτο διάρκεια επιλογές ή κρυμμένος Εσείς στο αλλαγή Διαχείριση." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "" + +#. module: base +#: field:ir.module.module,shortdesc:0 +#, fuzzy +msgid "Short description" +msgstr "Μικρή περιγραφή" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +#, fuzzy +msgid "This is the prefix of the file name the print will be saved as attachement. Keep empty to not save the printed reports" +msgstr "είναι από αρχείο όνομα Διατήρηση κενό στο όχι" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "'Ονομα κατάστασης " + +#. module: base +#: view:res.company:0 +#, fuzzy +msgid "Your Logo - Use a size of about 450x150 pixels." +msgstr "Λογότυπο Χρήση a μέγεθος από εικονοστοιχεία." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + +#. module: base +#: field:workflow.activity,join_mode:0 +#, fuzzy +msgid "Join Mode" +msgstr "Σύζευξη/Συνένωση Κατάσταση" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a5" +msgstr "" + +#. module: base +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Μήνυμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +#, fuzzy +msgid "ir.actions.report.xml" +msgstr "έκθεση / αναφορά" + +#. module: base +#: view:wizard.module.lang.export:0 +#, fuzzy +msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." +msgstr "Προς μερικές από από από για άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο όλα σε." + +#. module: base +#: view:res.users:0 +#, fuzzy +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "σημείωση στο και αλλαγή κωδικός πρόσβασης." + +#. module: base +#: field:res.partner,address:0 +#: view:res.partner.address:0 +msgid "Contacts" +msgstr "Επαφές" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +#, fuzzy +msgid "Graph" +msgstr "Γράφος, Γράφημα" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Latest version" +msgstr "Πιό πρόσφατη έκδοση" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "'Εναρξη Εγκατάστασης" + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "Περιγραφή πεδίων " + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +#, fuzzy +msgid "Module dependency" +msgstr "Άρθρωμα εξάρτηση" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "The name_get method is not implemented on this object !" +msgstr "όνομα λήψη είναι όχι!" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_upgrade +#: model:ir.ui.menu,name:base.menu_wizard_upgrade +#, fuzzy +msgid "Apply Scheduled Upgrades" +msgstr "Εφαρμογή Προγραμματισμένο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" +msgstr "" + +#. module: base +#: view:res.config.view:0 +#, fuzzy +msgid "Choose Your Mode" +msgstr "Επιλογή Κατάσταση" + +#. module: base +#: view:ir.actions.report.custom:0 +#, fuzzy +msgid "Report custom" +msgstr "Αναφορά" + +#. module: base +#: field:workflow.activity,action_id:0 +#: view:ir.actions.server:0 +#, fuzzy +msgid "Server Action" +msgstr "Εξυπηρετητής Ενέργεια" + +#. module: base +#: selection:ir.module.module,license:0 +#, fuzzy +msgid "GPL-3" +msgstr "GPL 3" + +#. module: base +#: view:ir.sequence:0 +#, fuzzy +msgid "Year: %(year)s" +msgstr "Έτος έτος s" + +#. module: base +#: field:ir.actions.server,name:0 +#: field:ir.actions.url,name:0 +#: field:ir.actions.act_window,name:0 +#: field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 +#, fuzzy +msgid "Action Name" +msgstr "Όνομα Ενέργειας" + +#. module: base +#: field:ir.actions.configuration.wizard,progress:0 +#, fuzzy +msgid "Configuration Progress" +msgstr "Ρυθμίσεις Πρόοδος" + +#. module: base +#: field:res.company,rml_footer2:0 +#, fuzzy +msgid "Report Footer 2" +msgstr "Αναφορά Υποσέλιδο 2" + +#. module: base +#: field:res.bank,email:0 +msgid "E-Mail" +msgstr "Ηλεκτρονικό ταχυδρομείο" + +#. module: base +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "" + +#. module: base +#: field:workflow.activity,split_mode:0 +#, fuzzy +msgid "Split Mode" +msgstr "Χωρισμός Κατάσταση" + +#. module: base +#: model:ir.ui.menu,name:base.menu_localisation +msgid "Localisation" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +#, fuzzy +msgid "Calculate Count" +msgstr "Υπολογισμός Μέτρηση" + +#. module: base +#: field:ir.module.module,dependencies_id:0 +#: view:ir.module.module:0 +msgid "Dependencies" +msgstr "" + +#. module: base +#: field:ir.cron,user_id:0 +#: field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 +#: field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "Χρήστης" + +#. module: base +#: field:res.partner,parent_id:0 +#, fuzzy +msgid "Main Company" +msgstr "Κύριο Εταιρία" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +#, fuzzy +msgid "Default properties" +msgstr "Εξ ορισμού ιδιότητες" + +#. module: base +#: field:res.request.history,date_sent:0 +msgid "Date sent" +msgstr "Ημερομηνία που στέλνεται" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +#, fuzzy +msgid "Import a Translation File" +msgstr "Εισαγωγή a Μετάφραση Αρχείο" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +#, fuzzy +msgid "Please specify the Partner Email address !" +msgstr "Συνεργάτης Email διεύθυνση!" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +#, fuzzy +msgid "Partners Titles" +msgstr "Τίτλοι" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation_untrans +#: model:ir.ui.menu,name:base.menu_action_translation_untrans +#, fuzzy +msgid "Untranslated terms" +msgstr "Αμετάφραστοι όροι" + +#. module: base +#: view:ir.actions.act_window:0 +#, fuzzy +msgid "Open Window" +msgstr "Άνοιγμα Παράθυρο" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" + +#. module: base +#: view:workflow.transition:0 +#, fuzzy +msgid "Transition" +msgstr "Μετάβαση" + +#. module: base +#: wizard_view:module.lang.import,init:0 +#, fuzzy +msgid "You have to import a .CSV file wich is encoded in UTF-8. Please check that the first line of your file is:" +msgstr "Εσείς στο a CSV αρχείο είναι σε Έλεγχος πρώτο γραμμή από αρχείο είναι:" + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "Ημερομηνία γεννήσεως" + +#. module: base +#: field:ir.module.repository,filter:0 +msgid "Filter" +msgstr "Φίλτρο" + +#. module: base +#: field:res.groups,menu_access:0 +#, fuzzy +msgid "Access Menu" +msgstr "Πρόσβαση Μενού" + +#. module: base +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/module/module.py:0 +#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_user.py:0 +msgid "Error" +msgstr "Σφάλμα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +#, fuzzy +msgid "Partner Categories" +msgstr "Κατηγορίες Συνεργατών" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "" + +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +#, fuzzy +msgid "Sequence Code" +msgstr "Κώδικας" + +#. module: base +#: selection:res.request,state:0 +msgid "active" +msgstr "" + +#. module: base +#: field:res.currency,rounding:0 +#, fuzzy +msgid "Rounding factor" +msgstr "Στρογγυλοποίηση αναλογία" + +#. module: base +#: selection:ir.translation,type:0 +#, fuzzy +msgid "Wizard Field" +msgstr "Αυτόματος Οδηγός Πεδίο" + +#. module: base +#: view:ir.model:0 +#, fuzzy +msgid "Create a Menu" +msgstr "Δημιουργία a Μενού" + +#. module: base +#: view:ir.cron:0 +#, fuzzy +msgid "Action to trigger" +msgstr "Ενέργεια στο" + +#. module: base +#: field:ir.model.fields,select_level:0 +msgid "Searchable" +msgstr "" + +#. module: base +#: view:res.partner.event:0 +#, fuzzy +msgid "Document Link" +msgstr "Έγγραφο Δεσμός" + +#. module: base +#: view:res.partner.som:0 +#, fuzzy +msgid "Partner State of Mind" +msgstr "Συνεργάτης Κατάσταση από" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank +#, fuzzy +msgid "Bank Accounts" +msgstr "Τραπεζικοί Λογαριασμοί" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +#, fuzzy +msgid "TGZ Archive" +msgstr "Αρχειοθήκη" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +#, fuzzy +msgid "res.partner.title" +msgstr "τίτλος" + +#. module: base +#: view:res.company:0 +#: view:res.partner:0 +#, fuzzy +msgid "General Information" +msgstr "Γενικές πληροφορίες" + +#. module: base +#: field:ir.sequence,prefix:0 +#, fuzzy +msgid "Prefix" +msgstr "Πρόθεμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +#, fuzzy +msgid "terp-product" +msgstr "προϊόν" + +#. module: base +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "" + +#. module: base +#: field:ir.actions.server,fields_lines:0 +#: view:ir.actions.server:0 +#, fuzzy +msgid "Fields Mapping" +msgstr "Πεδία Αντιστοίχηση" + +#. module: base +#: field:ir.default,ref_table:0 +#, fuzzy +msgid "Table Ref." +msgstr "Πίνακας Κωδ." + +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:server.action.create,step_1,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:module.upgrade,end,end:0 +#: view:wizard.module.lang.export:0 +#, fuzzy +msgid "Close" +msgstr "Κλείσιμο" + +#. module: base +#: field:ir.sequence,name:0 +#: field:ir.sequence.type,name:0 +#, fuzzy +msgid "Sequence Name" +msgstr "Όνομα" + +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" +msgstr "" + +#. module: base +#: constraint:res.partner:0 +#, fuzzy +msgid "The VAT doesn't seem to be correct." +msgstr "ΦΠΑ t στο σωστό." + +#. module: base +#: field:res.currency,rate:0 +#, fuzzy +msgid "Current rate" +msgstr "Τρέχον" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_simple_view_form +#, fuzzy +msgid "Configure Simple View" +msgstr "Ρύθμιση Απλή Προβολή" + +#. module: base +#: wizard_button:module.upgrade,next,start:0 +#, fuzzy +msgid "Start Upgrade" +msgstr "Εκκίνηση Αναβάθμιση" + +#. module: base +#: field:res.partner.som,factor:0 +#, fuzzy +msgid "Factor" +msgstr "Παράγοντας" + +#. module: base +#: field:res.partner,category_id:0 +#: view:res.partner:0 +msgid "Categories" +msgstr "Κατηγορίες" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +#, fuzzy +msgid "Calculate Sum" +msgstr "Υπολογισμός Άθροισμα" + +#. module: base +#: field:ir.cron,args:0 +msgid "Arguments" +msgstr "Ορίσματα" + +#. module: base +#: field:workflow.instance,res_type:0 +#: field:workflow,osv:0 +#, fuzzy +msgid "Resource Object" +msgstr "Πόρος Αντικείμενο" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "sxw" +msgstr "" + +#. module: base +#: selection:ir.actions.url,target:0 +#, fuzzy +msgid "This Window" +msgstr "Παράθυρο" + +#. module: base +#: field:res.payterm,name:0 +#, fuzzy +msgid "Payment term (short name)" +msgstr "Πληρωμή όνομα" + +#. module: base +#: field:ir.cron,function:0 +#: field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +#, fuzzy +msgid "Function" +msgstr "Συνάρτηση" + +#. module: base +#: constraint:res.company:0 +#, fuzzy +msgid "Error! You can not create recursive companies." +msgstr "Σφάλμα Εσείς όχι αναδρομικά." + +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "" + +#. module: base +#: field:ir.attachment,description:0 +#: field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 +#: field:res.partner.event,description:0 +#: view:res.partner.event:0 +#: view:res.request:0 +#: view:ir.attachment:0 +msgid "Description" +msgstr "Περιγραφή" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Invalid operation" +msgstr "Άκυρο" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +#, fuzzy +msgid "Import / Export" +msgstr "Εισαγωγή Εξαγωγή" + +#. module: base +#: field:res.partner.bank,owner_name:0 +#, fuzzy +msgid "Account owner" +msgstr "Λογαριασμός ιδιοκτήτης" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "" + +#. module: base +#: field:ir.exports.line,name:0 +#: field:res.partner.bank.type.field,name:0 +#, fuzzy +msgid "Field name" +msgstr "Όνομα πεδίου" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_attachment +#, fuzzy +msgid "ir.attachment" +msgstr "συνημμένο" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "τιμή s για s είναι όχι σε" + +#. module: base +#: field:ir.actions.report.xml,auto:0 +#, fuzzy +msgid "Automatic XSL:RML" +msgstr "Αυτόματα" + +#. module: base +#: view:workflow.workitem:0 +#, fuzzy +msgid "Workflow Workitems" +msgstr "Ροή των Εργασιών" + +#. module: base +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:ir.model.config,password:0 +#: field:res.users,password:0 +#, fuzzy +msgid "Password" +msgstr "Κωδικός πρόσβασης" + +#. module: base +#: view:res.roles:0 +#, fuzzy +msgid "Role" +msgstr "Ρόλος" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "Εξαγωγή γλώσσας" + +#. module: base +#: field:res.partner,customer:0 +#: selection:res.partner.event,partner_type:0 +#, fuzzy +msgid "Customer" +msgstr "Πελάτης" + +#. module: base +#: view:ir.rule.group:0 +#, fuzzy +msgid "Multiple rules on same objects are joined using operator OR" +msgstr "Πολλαπλάσιο Ή" + +#. module: base +#: field:ir.model.access,perm_unlink:0 +#, fuzzy +msgid "Delete Permission" +msgstr "Διαγραφή Δικαίωμα" + +#. module: base +#: field:ir.actions.report.custom,name:0 +#: field:ir.report.custom,name:0 +#, fuzzy +msgid "Report Name" +msgstr "Αναφορά Όνομα" + +#. module: base +#: view:workflow.instance:0 +#, fuzzy +msgid "Workflow Instances" +msgstr "Ροή των Εργασιών Αντίγραφα" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_9 +#, fuzzy +msgid "Database Structure" +msgstr "Βάση δεδομένων Δομή" + +#. module: base +#: wizard_view:res.partner.spam_send,init:0 +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +msgid "Mass Mailing" +msgstr "Μαζική αποστολή" + +#. module: base +#: model:ir.model,name:base.model_res_country +#: field:res.bank,country:0 +#: field:res.country.state,country_id:0 +#: field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 +#: field:res.partner,country:0 +#: view:res.country:0 +msgid "Country" +msgstr "Χώρα" + +#. module: base +#: wizard_view:base.module.import,import:0 +#, fuzzy +msgid "Module successfully imported !" +msgstr "Άρθρωμα!" + +#. module: base +#: field:res.partner.event,partner_type:0 +#, fuzzy +msgid "Partner Relation" +msgstr "Συνεργάτης Σχέση, Πίνακας" + +#. module: base +#: field:ir.actions.act_window,context:0 +#, fuzzy +msgid "Context Value" +msgstr "Σχετιζόμενο Τιμή" + +#. module: base +#: view:ir.report.custom:0 +#, fuzzy +msgid "Unsubscribe Report" +msgstr "Αποχώρηση συνδρομητή Αναφορά" + +#. module: base +#: selection:ir.actions.server,state:0 +#, fuzzy +msgid "Create Object" +msgstr "Δημιουργία Αντικείμενο" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +#: model:ir.ui.menu,name:base.menu_partner_customer_form_new +#, fuzzy +msgid "New Partner" +msgstr "Νέος Συνεργάτης" + +#. module: base +#: wizard_view:module.lang.install,start:0 +#, fuzzy +msgid "Installation done" +msgstr "Εγκατάσταση έτοιμο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_function +#, fuzzy +msgid "Function of the contact" +msgstr "Συνάρτηση από" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_upgrade +#: model:ir.ui.menu,name:base.menu_module_tree_upgrade +#, fuzzy +msgid "Modules to be installed, upgraded or removed" +msgstr "Αρθρώματα στο ή" + +#. module: base +#: view:ir.sequence:0 +#, fuzzy +msgid "Month: %(month)s" +msgstr "Μήνας s" + +#. module: base +#: model:ir.ui.menu,name:base.menu_partner_address_form +#, fuzzy +msgid "Addresses" +msgstr "Διευθύνσεις" + +#. module: base +#: field:ir.actions.server,sequence:0 +#: field:ir.actions.act_window.view,sequence:0 +#: field:ir.actions.todo,sequence:0 +#: field:ir.module.repository,sequence:0 +#: field:ir.report.custom.fields,sequence:0 +#: field:ir.ui.menu,sequence:0 +#: field:ir.ui.view_sc,sequence:0 +#: field:res.partner.bank,sequence:0 +#: field:wizard.ir.model.menu.create.line,sequence:0 +msgid "Sequence" +msgstr "Ακολουθία" + +#. module: base +#: help:res.partner.address,type:0 +#, fuzzy +msgid "Used to select automatically the right address according to the context in sales and purchases documents." +msgstr "Σε χρήση στο επιλογή δεξιά διεύθυνση στο σε και έγγραφα." + +#. module: base +#: help:ir.cron,numbercall:0 +#, fuzzy +msgid "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" +msgstr "Αριθμός από διάρκεια συνάρτηση είναι συνάρτηση πάντα" + +#. module: base +#: field:ir.report.custom,footer:0 +#, fuzzy +msgid "Report Footer" +msgstr "Υποσέλιδο αναφοράς" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_NEXT" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,init:0 +#, fuzzy +msgid "Choose a language to install:" +msgstr "Επιλογή a στο εγκατάσταση:" + +#. module: base +#: view:res.partner.event:0 +msgid "General Description" +msgstr "Γενική περιγραφή" + +#. module: base +#: view:ir.module.module:0 +#, fuzzy +msgid "Cancel Install" +msgstr "Ακύρωση Εγκατάσταση" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +#, fuzzy +msgid "Please check that all your lines have %d columns." +msgstr "Έλεγχος όλα στήλες." + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "Γλώσσα εισαγωγών" + +#. module: base +#: field:ir.model.data,name:0 +#, fuzzy +msgid "XML Identifier" +msgstr "XML Αναγνωριστικό" + From cab8da6ddb6fa8e29c297324861b29c32670a263 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 23 Dec 2008 20:19:28 +0200 Subject: [PATCH 040/251] Fix iteration over broken wizards wrt. translation bzr revid: p_christ@hol.gr-20081223181928-ngmp9hkhz6fnmsz0 --- bin/tools/translate.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 21add6df4ef..636c739138f 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -389,7 +389,10 @@ def trans_generate(lang, modules, dbname=None): def_params = { 'string': ('wizard_field', lambda s: [encode(s)]), - 'selection': ('selection', lambda s: [encode(e[1]) for e in (callable(s) and s(None, cr, uid, {}) or s)]), + 'selection': ('selection', lambda s: [encode(e[1]) for e in + (not callable(s) and s) or + (callable(s) and s(None, cr, uid, {})) + or [] ]), 'help': ('help', lambda s: [encode(s)]), } From f6b7415a90ecc0209d4c9f819c31ed2acf958d1b Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 23 Dec 2008 20:20:05 +0200 Subject: [PATCH 041/251] One bad el_GR message. bzr revid: p_christ@hol.gr-20081223182005-t9lpxur1teo1z3n2 --- bin/addons/base/i18n/el_GR.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index e0293f86d35..9b2aae4a2d9 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: el_GR\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2008-11-15 08:33:16+0000\n" -"PO-Revision-Date: 2008-12-23 19:50GMT\n" +"PO-Revision-Date: 2008-12-23 20:09GMT\n" "Last-Translator: P. Christeas \n" "Language-Team: Ellhnika \n" "MIME-Version: 1.0\n" @@ -3175,7 +3175,7 @@ msgstr "Τομέας αντικειμένου" #. module: base #: view:wizard.module.update_translations:0 msgid "Update Translations" -msgstr "Μεταφράσεις αναπροσαρμογών" +msgstr "Αναπροσαρμογή Μεταφράσεων" #. module: base #: view:res.config.view:0 From d60e23965cdf037814bb8d99163a4dfccfd8130a Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 2 Jan 2009 12:04:01 +0200 Subject: [PATCH 042/251] Replace the deprecate Set class with set (py2.6). bzr revid: p_christ@hol.gr-20090102100401-ocj5ulrp7cw4kbzg --- bin/addons/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index 45b96c49d6f..d9306464d4e 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -23,7 +23,7 @@ import os, sys, imp from os.path import join as opj import itertools -from sets import Set +# from sets import Set import zipimport import osv @@ -65,7 +65,7 @@ class Graph(dict): def __iter__(self): level = 0 - done = Set(self.keys()) + done = set(self.keys()) while done: level_modules = [(name, module) for name, module in self.items() if module.depth==level] for name, module in level_modules: @@ -225,7 +225,7 @@ def create_graph(module_list, force=None): packages.append((module, info.get('depends', []), info)) dependencies = dict([(p, deps) for p, deps, data in packages]) - current, later = Set([p for p, dep, data in packages]), Set() + current, later = set([p for p, dep, data in packages]), set() while packages and current > later: package, deps, data = packages[0] From 7168a11f6824a90cb64eef66de5eba87ea6d4739 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 6 Jan 2009 11:36:06 +0200 Subject: [PATCH 043/251] Fix reading the log_level config setting. bzr revid: p_christ@hol.gr-20090106093606-er3cioflqjccebg5 --- bin/netsvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 770be34aaeb..e3981d149fa 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -188,7 +188,7 @@ def init_logger(): # add the handler to the root logger logger.addHandler(handler) - logger.setLevel(tools.config['log_level'] or '0') + logger.setLevel(int(tools.config['log_level'] or '0')) if (not isinstance(handler, logging.FileHandler)) and os.name != 'nt': # change color of level names From 5d7e61fef8b818720a43783b177d821700197b3a Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 6 Jan 2009 11:37:43 +0200 Subject: [PATCH 044/251] ORM browse: return None when sth is wrong, not False bzr revid: p_christ@hol.gr-20090106093743-m9jt71o3jfekp1ls --- bin/osv/orm.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index b5e5e827ac2..d1c267e77c2 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -81,10 +81,10 @@ class browse_null(object): self.id = False def __getitem__(self, name): - return False + return None def __getattr__(self, name): - return False # XXX: return self ? + return None # XXX: return self ? def __int__(self): return False @@ -156,7 +156,7 @@ class browse_record(object): else: logger = netsvc.Logger() logger.notifyChannel('orm', netsvc.LOG_ERROR, "Programming error: field '%s' does not exist in object '%s' !" % (name, self._table._name)) - return False + return None # if the field is a classic one or a many2one, we'll fetch all classic and many2one fields if col._classic_write: From 3487f659ec80bda2855885c432af6d71586b3ff5 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 6 Jan 2009 15:17:46 +0200 Subject: [PATCH 045/251] Always print SQL counters. bzr revid: p_christ@hol.gr-20090106131746-mwdgfx2l1z9hd02b --- bin/sql_db.py | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/bin/sql_db.py b/bin/sql_db.py index 30b4df1e2b8..042c41940a3 100644 --- a/bin/sql_db.py +++ b/bin/sql_db.py @@ -59,6 +59,8 @@ def log(msg, lvl=netsvc.LOG_DEBUG): logger = netsvc.Logger() logger.notifyChannel('sql', lvl, msg) +sql_counter = 0 + class Cursor(object): IN_MAX = 1000 sql_from_log = {} @@ -72,7 +74,7 @@ class Cursor(object): @wraps(f) def wrapper(self, *args, **kwargs): if not hasattr(self, '_obj'): - raise psycopg2.ProgrammingError('Unable to use the cursor after having closing it') + raise psycopg2.ProgrammingError('Unable to use the cursor after having closed it') return f(self, *args, **kwargs) return wrapper @@ -104,7 +106,7 @@ class Cursor(object): self.count+=1 if '%d' in query or '%f' in query: log(query, netsvc.LOG_WARNING) - log("SQL queries mustn't containt %d or %f anymore. Use only %s", netsvc.LOG_WARNING) + log("SQL queries cannot contain %d or %f anymore. Use only %s", netsvc.LOG_WARNING) if params: query = query.replace('%d', '%s').replace('%f', '%s') @@ -134,19 +136,20 @@ class Cursor(object): return res def print_log(self): + global sql_counter + sql_counter += self.count def process(type): sqllogs = {'from':self.sql_from_log, 'into':self.sql_into_log} - if not sqllogs[type]: - return - sqllogitems = sqllogs[type].items() - sqllogitems.sort(key=lambda k: k[1][1]) sum = 0 - log("SQL LOG %s:" % (type,)) - for r in sqllogitems: - log("table: %s: %s/%s" %(r[0], str(r[1][1]), r[1][0])) - sum+= r[1][1] - log("SUM:%s/%d" % (sum, self.count)) - sqllogs[type].clear() + if sqllogs[type]: + sqllogitems = sqllogs[type].items() + sqllogitems.sort(key=lambda k: k[1][1]) + log("SQL LOG %s:" % (type,)) + for r in sqllogitems: + log("table: %s: %s/%s" %(r[0], str(r[1][1]), r[1][0])) + sum+= r[1][1] + sqllogs[type].clear() + log("SUM:%s/%d [%d]" % (sum, self.count,sql_counter)) process('from') process('into') self.count = 0 From 74611d01a462d75644f5d5ea90d9c9488c036ca8 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 14 Jan 2009 10:02:17 +0200 Subject: [PATCH 046/251] Workaround broken set request in many2many. bzr revid: p_christ@hol.gr-20090114080217-y62dhs9bnge9aqge --- bin/osv/fields.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/osv/fields.py b/bin/osv/fields.py index e1f98532527..802d6ccb5a4 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -515,6 +515,9 @@ class many2many(_column): return obj = obj.pool.get(self._obj) for act in values: + if not isinstance(act,tuple): + print("incorrect values passed in many2many.set:",values) + return if act[0] == 0: idnew = obj.create(cr, user, act[2]) cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s,%s)', (id, idnew)) From 50b323cc67b1d9bbb17e2aa9105e9aea3d1a730a Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 14 Jan 2009 10:02:56 +0200 Subject: [PATCH 047/251] Instrument exceptions on ir_cron. bzr revid: p_christ@hol.gr-20090114080256-7yzhck5hxze1i1nw --- bin/addons/base/ir/ir_cron.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/addons/base/ir/ir_cron.py b/bin/addons/base/ir/ir_cron.py index 1510173fdae..b1c957c909f 100644 --- a/bin/addons/base/ir/ir_cron.py +++ b/bin/addons/base/ir/ir_cron.py @@ -103,14 +103,18 @@ class ir_cron(osv.osv, netsvc.Agent): addsql = ', active=False' cr.execute("update ir_cron set nextcall=%s, numbercall=%s"+addsql+" where id=%s", (nextcall.strftime('%Y-%m-%d %H:%M:%S'), numbercall, job['id'])) cr.commit() + except: + print "Exception!" finally: cr.close() - # + # # Can be improved to do at the min(min(nextcalls), time()+next_wait) # But is this an improvement ? # if not check: self.setAlarm(self._poolJobs, int(time.time())+next_wait, [db_name]) + return None + ir_cron() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From f97bae5c3e98ae91a30397a1927144c3f22f4d80 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 14 Jan 2009 10:03:35 +0200 Subject: [PATCH 048/251] SQL: help script to clean after missing ref data.. In devel environments, db elements get messy. Clean some. bzr revid: p_christ@hol.gr-20090114080335-xtfb13e3qcekh7fr --- sql/clean-model.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 sql/clean-model.sql diff --git a/sql/clean-model.sql b/sql/clean-model.sql new file mode 100644 index 00000000000..7328f6b4909 --- /dev/null +++ b/sql/clean-model.sql @@ -0,0 +1,4 @@ + +SELECT model, res_id, module FROM ir_model_data + WHERE model = 'ir.actions.act_window' + AND NOT EXISTS (SELECT 1 FROM ir_act_window WHERE id = ir_model_data.res_id); \ No newline at end of file From 114872c3d74749377097df4ac5974989a3606288 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 16 Jan 2009 10:53:14 +0200 Subject: [PATCH 049/251] Some more example queries for SQL data clean. bzr revid: p_christ@hol.gr-20090116085314-xktvy3v7i5y5a0z6 --- sql/clean-model.sql | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sql/clean-model.sql b/sql/clean-model.sql index 7328f6b4909..9d1f2a8fb79 100644 --- a/sql/clean-model.sql +++ b/sql/clean-model.sql @@ -1,4 +1,9 @@ SELECT model, res_id, module FROM ir_model_data WHERE model = 'ir.actions.act_window' - AND NOT EXISTS (SELECT 1 FROM ir_act_window WHERE id = ir_model_data.res_id); \ No newline at end of file + AND NOT EXISTS (SELECT 1 FROM ir_act_window WHERE id = ir_model_data.res_id); + + +-- Other cleanups: +-- DELETE from ir_model_data where module = 'audittrail' AND model = 'ir.ui.view' AND NOT EXISTS( SELECT 1 FROM ir_ui_view WHERE ir_ui_view.id = ir_model_data.res_id); +-- DELETE from ir_model_data where module = 'audittrail' AND model = 'ir.ui.menu' AND NOT EXISTS( SELECT 1 FROM ir_ui_menu WHERE id = ir_model_data.res_id); \ No newline at end of file From 69bdb830a49c022776ea49b1f1acbd4a18b8ac88 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 16 Jan 2009 10:54:26 +0200 Subject: [PATCH 050/251] [Under-the-carpet-FIX] Silently ignore missing fields in views. This solved the problem where no CRM lines were found in some board. Since the board would be launched on startup, client couldn't login at all. bzr revid: p_christ@hol.gr-20090116085426-f5yf8k1hg6hbq39x --- bin/osv/orm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index ffe808b639b..58467e83343 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -894,7 +894,8 @@ class orm_template(object): arch = node.toxml(encoding="utf-8").replace('\t', '') fields = self.fields_get(cr, user, fields_def.keys(), context) for field in fields: - fields[field].update(fields_def[field]) + if field in fields_def: + fields[field].update(fields_def[field]) return arch, fields def __get_default_calendar_view(self): From 3b59f2eed07b9dac16dc01c789215fc03c445c25 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 26 Jan 2009 22:27:21 +0200 Subject: [PATCH 051/251] Better sql cleaners. bzr revid: p_christ@hol.gr-20090126202721-txt4sh40tbid59ae --- sql/clean-model.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/sql/clean-model.sql b/sql/clean-model.sql index 9d1f2a8fb79..59b492aab2d 100644 --- a/sql/clean-model.sql +++ b/sql/clean-model.sql @@ -4,6 +4,21 @@ SELECT model, res_id, module FROM ir_model_data AND NOT EXISTS (SELECT 1 FROM ir_act_window WHERE id = ir_model_data.res_id); +SELECT model, res_id, module FROM ir_model_data + WHERE model = 'ir.ui.menu' + AND NOT EXISTS (SELECT 1 FROM ir_ui_menu WHERE id = ir_model_data.res_id); + +SELECT model, res_id, module FROM ir_model_data + WHERE model = 'ir.ui.view' + AND NOT EXISTS (SELECT 1 FROM ir_ui_view WHERE id = ir_model_data.res_id); + +DONT DELETE FROM ir_model_data + WHERE model = 'ir.actions.act_window' + AND NOT EXISTS (SELECT 1 FROM ir_act_window WHERE id = ir_model_data.res_id); + +DONT DELETE FROM ir_model_data + WHERE model = 'ir.ui.menu' + AND NOT EXISTS (SELECT 1 FROM ir_ui_menu WHERE id = ir_model_data.res_id); -- Other cleanups: -- DELETE from ir_model_data where module = 'audittrail' AND model = 'ir.ui.view' AND NOT EXISTS( SELECT 1 FROM ir_ui_view WHERE ir_ui_view.id = ir_model_data.res_id); -- DELETE from ir_model_data where module = 'audittrail' AND model = 'ir.ui.menu' AND NOT EXISTS( SELECT 1 FROM ir_ui_menu WHERE id = ir_model_data.res_id); \ No newline at end of file From 9c741294196dadfd88be07d3ee85e4cb801b2e4f Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 26 Jan 2009 22:27:51 +0200 Subject: [PATCH 052/251] Module unload: workaround missing models. If module unload asks to remove objects from missing models, just warn. bzr revid: p_christ@hol.gr-20090126202751-721lgjp2lhvlh19e --- bin/addons/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index 93a729f05e9..c1ff2e2abbe 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -700,7 +700,11 @@ def load_modules(db, force_demo=False, status=None, update_module=False): cr.execute('select model,res_id from ir_model_data where noupdate=%s and module=%s order by id desc', (False, mod_name,)) for rmod, rid in cr.fetchall(): uid = 1 - pool.get(rmod).unlink(cr, uid, [rid]) + rmod_module= pool.get(rmod) + if rmod_module: + rmod_module.unlink(cr, uid, [rid]) + else: + logger.notifyChannel('init', netsvc.LOG_ERROR, 'Could not locate %s to remove res=%d' % (rmod,rid)) cr.execute('delete from ir_model_data where noupdate=%s and module=%s', (False, mod_name,)) cr.commit() # From b46842d3389491fb24334c17b227532df4bc7fcd Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 26 Jan 2009 22:28:57 +0200 Subject: [PATCH 053/251] Instrument empty/broken form xml. If broken (or empty) xml is fed into the view parser, produce some better exception. bzr revid: p_christ@hol.gr-20090126202857-sdhbxa4z48lfd2w8 --- bin/osv/orm.py | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 2580fe43f8a..feb6d4950aa 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -1064,8 +1064,8 @@ class orm_template(object): # otherwise, build some kind of default view if view_type == 'form': res = self.fields_get(cr, user, context=context) - xml = '''''' \ - '''''' % (self._description,) + xml = ' ' \ + '' % (self._description,) for x in res: if res[x]['type'] not in ('one2many', 'many2many'): xml += '' % (x,) @@ -1076,19 +1076,25 @@ class orm_template(object): _rec_name = self._rec_name if _rec_name not in self._columns: _rec_name = self._columns.keys()[0] - xml = '''''' \ - '''''' \ - % (self._description, self._rec_name) + xml = '' \ + '' \ + % (self._description, self._rec_name) elif view_type == 'calendar': xml = self.__get_default_calendar_view() else: - xml = '' + xml = '' # what happens here, graph case? result['arch'] = xml result['name'] = 'default' result['field_parent'] = False result['view_id'] = 0 - doc = dom.minidom.parseString(encode(result['arch'])) + try: + doc = dom.minidom.parseString(encode(result['arch'])) + except Exception, ex: + logger = netsvc.Logger() + logger.notifyChannel('init', netsvc.LOG_DEBUG, 'Wrong arch in %s (%s):\n %s' % (result['name'], view_type, result['arch'] )) + raise except_orm('Error', + ('Invalid xml in view %s(%d) of %s: %s' % (result['name'], result['view_id'], self._name, str(ex)))) xarch, xfields = self.__view_look_dom_arch(cr, user, doc, view_id, context=context) result['arch'] = xarch result['fields'] = xfields From af3f47a3e68b77a96e6761ccb2a358a722136d54 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 28 Jan 2009 09:34:44 +0200 Subject: [PATCH 054/251] Revert "Workaround broken set request in many2many." When setting eg. groups in users, that would break. This reverts commit 0e81aa86fbc0c58a08902556b44e1e1dcc9eddab. bzr revid: p_christ@hol.gr-20090128073444-vufwtd0q79cppqq0 --- bin/osv/fields.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/bin/osv/fields.py b/bin/osv/fields.py index 802d6ccb5a4..e1f98532527 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -515,9 +515,6 @@ class many2many(_column): return obj = obj.pool.get(self._obj) for act in values: - if not isinstance(act,tuple): - print("incorrect values passed in many2many.set:",values) - return if act[0] == 0: idnew = obj.create(cr, user, act[2]) cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s,%s)', (id, idnew)) From 3c8938fdc39b16fac8ae00ef8c7d40d34985b538 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 28 Jan 2009 15:44:53 +0200 Subject: [PATCH 055/251] Improve the language loading, when locales fail. bzr revid: p_christ@hol.gr-20090128134453-cwa212xxqmfowv95 --- bin/tools/translate.py | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index e9841fcc6e1..d840560ef2b 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -555,7 +555,7 @@ def trans_load_data(db_name, fileobj, fileformat, lang, strict=False, lang_name= lc, encoding = locale.getdefaultlocale() if not encoding: encoding = 'UTF-8' - if encoding == 'utf': + if encoding == 'utf' or encoding == 'UTF8': encoding = 'UTF-8' if encoding == 'cp1252': encoding= '1252' @@ -564,6 +564,8 @@ def trans_load_data(db_name, fileobj, fileformat, lang, strict=False, lang_name= if encoding == 'latin1': encoding= 'latin9' + # this block temporarily sets the locale to the requested lang, so that + # some defaults are read from it. try: if os.name == 'nt': locale.setlocale(locale.LC_ALL, str(_LOCALE2WIN32.get(lang, lang) + '.' + encoding)) @@ -571,8 +573,13 @@ def trans_load_data(db_name, fileobj, fileformat, lang, strict=False, lang_name= locale.setlocale(locale.LC_ALL, str(lang + '.' + encoding)) except Exception: netsvc.Logger().notifyChannel(' ', netsvc.LOG_WARNING, - 'unable to set locale "%s"' % (lang)) - + 'unable to set locale "%s"' % (str(lang + '.' + encoding))) + # Now, the default locale is still active, so the values can be + # read from that. + try: + locale.setlocale(locale.LC_ALL, str(lc + '.' + encoding)) + except: + pass if not ids: if not lang_name: @@ -597,7 +604,8 @@ def trans_load_data(db_name, fileobj, fileformat, lang, strict=False, lang_name= 'decimal_point' : str(locale.nl_langinfo(locale.RADIXCHAR)), 'thousands_sep' : str(locale.nl_langinfo(locale.THOUSEP)) }) - locale.resetlocale(locale.LC_ALL) + # Here we try to reset the locale regardless. + locale.setlocale(locale.LC_ALL, str(lc + '.' + encoding)) lang_ids = lang_obj.search(cr, uid, []) langs = lang_obj.read(cr, uid, lang_ids) ls = map(lambda x: (x['code'],x['name']), langs) @@ -691,6 +699,12 @@ def trans_load_data(db_name, fileobj, fileformat, lang, strict=False, lang_name= except IOError: filename = '[lang: %s][format: %s]' % (lang or 'new', fileformat) logger.notifyChannel("init", netsvc.LOG_ERROR, "couldn't read translation file %s" % (filename,)) + cr.commit() + cr.close() + except: + cr.commit() + cr.close() + raise # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From 876e0667e6ecefa81c95a5e077ef58c1ff0c2e91 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 28 Jan 2009 16:51:16 +0200 Subject: [PATCH 056/251] Logger: format the date numerically, avoid locale When loading a translation file (and only then), the locale is set, which affects the date formatting. Then, the logger messages fail to be displayed on the console, because of illegal chars. bzr revid: p_christ@hol.gr-20090128145116-mu2jm5i264afj2vz --- bin/netsvc.py | 2 +- bin/tools/translate.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index f44d0e0f8a0..1f1904ac179 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -92,7 +92,7 @@ def init_logger(): logger = logging.getLogger() # create a format for log messages and dates - formatter = logging.Formatter('[%(asctime)s] %(levelname)s:%(name)s:%(message)s', '%a %b %d %Y %H:%M:%S') + formatter = logging.Formatter('[%(asctime)s] %(levelname)s:%(name)s:%(message)s', '%Y-%m-%d %H:%M:%S') if tools.config['syslog']: # SysLog Handler diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 4345a865ffa..8238180df49 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -606,7 +606,7 @@ def trans_load_data(db_name, fileobj, fileformat, lang, strict=False, lang_name= }) # Here we try to reset the locale regardless. try: - locale.setlocale(locale.LC_ALL, str(lc + '.' + encoding)) + locale.resetlocale(locale.LC_ALL) except: pass lang_ids = lang_obj.search(cr, uid, []) From 313744ee350d98971b181f607d44d66de6966f2d Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 29 Jan 2009 09:35:49 +0200 Subject: [PATCH 057/251] Logger: if unicode fails, try plain str decoding. It is just a second attempt to get the message out instead of raising an exception in the wrong place there. bzr revid: p_christ@hol.gr-20090129073549-voc3eg28xitx6tzt --- bin/netsvc.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 1f1904ac179..36e88add4a2 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -163,7 +163,10 @@ class Logger(object): if isinstance(msg, Exception): msg = tools.exception_to_unicode(msg) - result = tools.ustr(msg).strip().split('\n') + try: + result = tools.ustr(msg).strip().split('\n') + except UnicodeDecodeError: + result = msg.strip().split('\n') if len(result)>1: for idx, s in enumerate(result): level_method('[%02d]: %s' % (idx+1, s,)) From 4f31dfb80857dd72a20f7307e52f83b305fffc8e Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 29 Jan 2009 09:37:17 +0200 Subject: [PATCH 058/251] Fix .po loader for multiple source references Some .po files appeared to have space-separated source references. bzr revid: p_christ@hol.gr-20090129073717-nquq8i09u9bhppfi --- bin/tools/translate.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 8238180df49..24f606f3550 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -118,7 +118,11 @@ class TinyPoFile(object): while line.startswith('#'): if line.startswith('#:'): - tmp_tnrs.append( line[2:].strip().split(':') ) + if ' ' in line[2:].strip(): + for lpart in line[2:].strip().split(' '): + tmp_tnrs.append(lpart.strip().split(':',2)) + else: + tmp_tnrs.append( line[2:].strip().split(':',2) ) elif line.startswith('#,') and (line[2:].strip() == 'fuzzy'): fuzzy = True line = self.lines.pop(0).strip() From e93affa20b1f97e927da52ef0cc262b0e8fe95e6 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 29 Jan 2009 10:27:05 +0200 Subject: [PATCH 059/251] Translation from database bzr revid: p_christ@hol.gr-20090129082705-u06yxeg1915bcot0 --- bin/addons/base/i18n/el_GR.po | 3598 ++++++++++++++++++++++++++++----- 1 file changed, 3053 insertions(+), 545 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 9b2aae4a2d9..edc58f9279c 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -1,7 +1,7 @@ # translation of el_GR.po to Ellhnika # Translation of OpenERP Server. # This file containt the translation of the following modules: -# * base +# * base # # natasje , 2008. # P. Christeas , 2008. @@ -21,8 +21,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act -#: model:ir.ui.menu,name:base.menu_ir_cron_act -#: view:ir.cron:0 +#: model:ir.ui.menu,name:base.menu_ir_cron_act view:ir.cron:0 msgid "Scheduled Actions" msgstr "Προγραμματισμένες ενέργειες" @@ -49,12 +48,15 @@ msgstr "Άγνωστο" #. module: base #: view:wizard.module.update_translations:0 -msgid "This wizard will detect new terms in the application so that you can update them manually." -msgstr "Αυτός ο αυτοματισμός θα ανιχνεύσει τους νέους όρους στην εφαρμογή έτσι ώστε μπορείτε να τους ενημερώσετε με το χέρι." +msgid "" +"This wizard will detect new terms in the application so that you can update " +"them manually." +msgstr "" +"Αυτός ο αυτοματισμός θα ανιχνεύσει τους νέους όρους στην εφαρμογή έτσι ώστε " +"μπορείτε να τους ενημερώσετε με το χέρι." #. module: base -#: field:workflow.activity,out_transitions:0 -#: view:workflow.activity:0 +#: field:workflow.activity,out_transitions:0 view:workflow.activity:0 msgid "Outgoing transitions" msgstr "Εξερχόμενες μεταβάσεις" @@ -79,8 +81,7 @@ msgid "terp-account" msgstr "" #. module: base -#: field:res.partner.address,title:0 -#: field:res.partner,title:0 +#: field:res.partner.address,title:0 field:res.partner,title:0 #: field:res.partner.title,name:0 msgid "Title" msgstr "Τίτλος" @@ -107,14 +108,12 @@ msgid "STOCK_SORT_ASCENDING" msgstr "" #. module: base -#: view:res.groups:0 -#: view:ir.model:0 +#: view:res.groups:0 view:ir.model:0 msgid "Access Rules" msgstr "Κανόνες πρόσβασης" #. module: base -#: field:ir.ui.view,arch:0 -#: field:ir.ui.view.custom,arch:0 +#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 msgid "View Architecture" msgstr "Αρχιτεκτονική άποψη" @@ -129,8 +128,8 @@ msgid "Skipped" msgstr "Παραβλέποντα " #. module: base -#, python-format #: code:addons/base/ir/ir_model.py:0 +#, python-format msgid "You can not create this kind of document! (%s)" msgstr "Δεν μπορείτε να δημιουργήσετε αυτό το είδος εγγράφου! (%s)" @@ -145,39 +144,31 @@ msgid "Parent" msgstr "Γονέας" #. module: base -#: field:workflow.activity,wkf_id:0 -#: field:workflow.instance,wkf_id:0 +#: field:workflow.activity,wkf_id:0 field:workflow.instance,wkf_id:0 #: view:workflow:0 msgid "Workflow" msgstr "Ροή Εργασιών" #. module: base -#: field:ir.actions.report.custom,model:0 -#: field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 -#: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.wizard,model:0 -#: field:ir.cron,model:0 -#: field:ir.default,field_tbl:0 -#: field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 -#: field:ir.model.grid,name:0 -#: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 -#: field:ir.ui.view,model:0 -#: field:ir.values,model:0 -#: field:res.request.link,object:0 +#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 field:ir.actions.act_window,res_model:0 +#: field:ir.actions.wizard,model:0 field:ir.cron,model:0 +#: field:ir.default,field_tbl:0 field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 field:ir.model.grid,name:0 +#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 field:ir.ui.view,model:0 +#: field:ir.values,model:0 field:res.request.link,object:0 #: field:wizard.ir.model.menu.create,model_id:0 -#: field:workflow.triggers,model:0 -#: view:ir.model:0 +#: field:workflow.triggers,model:0 view:ir.model:0 msgid "Object" msgstr "Αντικείμενο" #. module: base #: view:wizard.module.lang.export:0 msgid "To browse official translations, you can visit this link: " -msgstr "Για να κοιτάξετε τις επίσημες μεταφράσεις, μπορείτε να επισκεφτείτε αυτήν την σύνδεση:" +msgstr "" +"Για να κοιτάξετε τις επίσημες μεταφράσεις, μπορείτε να επισκεφτείτε αυτήν " +"την σύνδεση:" #. module: base #: model:ir.actions.act_window,name:base.action_module_category_tree @@ -230,8 +221,7 @@ msgstr "Κλειδί" #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form #: field:res.users,roles_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_roles_form -#: view:res.roles:0 +#: model:ir.ui.menu,name:base.menu_action_res_roles_form view:res.roles:0 #: view:res.users:0 msgid "Roles" msgstr "Ρόλοι" @@ -263,8 +253,7 @@ msgid "Normal" msgstr "Κανονικό" #. module: base -#: field:workflow.activity,in_transitions:0 -#: view:workflow.activity:0 +#: field:workflow.activity,in_transitions:0 view:workflow.activity:0 msgid "Incoming transitions" msgstr "Εισερχόμενες μεταβάσεις" @@ -307,8 +296,8 @@ msgid "Suffix" msgstr "Επίθημα" #. module: base -#, python-format #: code:osv/orm.py:0 +#, python-format msgid "The unlink method is not implemented on this object !" msgstr "Η μέθοδος αυτή δεν εφαρμόζεται σε αυτό το αντικείμενο!" @@ -354,12 +343,9 @@ msgid "Reference Guide" msgstr "Οδηγός αναφοράς" #. module: base -#: model:ir.model,name:base.model_res_partner -#: field:res.company,partner_id:0 -#: field:res.partner.address,partner_id:0 -#: field:res.partner.bank,partner_id:0 -#: field:res.partner.event,partner_id:0 -#: selection:res.partner.title,domain:0 +#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 msgid "Partner" msgstr "Συνέταιρος" @@ -411,9 +397,8 @@ msgstr "Επαφή προοπτικής" #. module: base #: constraint:ir.ui.view:0 -#, fuzzy msgid "Invalid XML for View Architecture!" -msgstr "Άκυρο XML για Προβολή!" +msgstr "Άκυρο XML για αρχιτεκτονική Προβολής!" #. module: base #: field:ir.report.custom,sortby:0 @@ -421,24 +406,17 @@ msgid "Sorted By" msgstr "Ταξινόμηση κατά " #. module: base -#: field:ir.actions.report.custom,type:0 -#: field:ir.actions.report.xml,type:0 -#: field:ir.actions.server,type:0 -#: field:ir.report.custom,type:0 +#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 +#: field:ir.actions.server,type:0 field:ir.report.custom,type:0 msgid "Report Type" msgstr "Τύπος αναφοράς " #. module: base -#: field:ir.actions.todo,state:0 -#: field:ir.module.module.dependency,state:0 -#: field:ir.module.module,state:0 -#: field:ir.report.custom,state:0 -#: field:res.bank,state:0 -#: field:res.partner.address,state_id:0 -#: field:res.partner.bank,state_id:0 -#: field:res.request,state:0 -#: field:workflow.instance,state:0 -#: field:workflow.workitem,state:0 +#: field:ir.actions.todo,state:0 field:ir.module.module.dependency,state:0 +#: field:ir.module.module,state:0 field:ir.report.custom,state:0 +#: field:res.bank,state:0 field:res.partner.address,state_id:0 +#: field:res.partner.bank,state_id:0 field:res.request,state:0 +#: field:workflow.instance,state:0 field:workflow.workitem,state:0 #: view:res.country.state:0 msgid "State" msgstr "Κατάσταση Λογαριασμού" @@ -460,9 +438,7 @@ msgid "Email / Mobile" msgstr "Ηλεκτρονικό ταχυδρομείο/κινητό" #. module: base -#: field:res.partner,comment:0 -#: view:res.groups:0 -#: view:ir.model:0 +#: field:res.partner,comment:0 view:res.groups:0 view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Σημειώσεις" @@ -504,15 +480,22 @@ msgid "Form" msgstr "Μορφή" #. module: base -#, python-format #: code:osv/orm.py:0 +#, python-format msgid "Can not define a column %s. Reserved keyword !" msgstr "Δεν μπορείτε να καθορίσετε στήλη '%s' . Κρατημένη λέξη " #. module: base #: help:ir.ui.menu,groups_id:0 -msgid "If you put groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." -msgstr "Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον χρήστη. " +msgid "" +"If you put groups, the visibility of this menu will be based on these " +"groups. If this field is empty, Open ERP will compute visibility based on " +"the related object's read access." +msgstr "" +"Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές " +"τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη " +"διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον " +"χρήστη. " #. module: base #: field:workflow.transition,act_to:0 @@ -530,8 +513,8 @@ msgid "STOCK_QUIT" msgstr "ΑΠΟΘΕΜΑ_ ΕΓΚΑΤΑΛΕΙΠΕΤΑΙ" #. module: base -#, python-format #: code:osv/orm.py:0 +#, python-format msgid "The name_search method is not implemented on this object !" msgstr "Η μέθοδος αναζήτησης ονόματος δεν εφαρμόζεται σε αυτό το αντικείμενο!" @@ -556,8 +539,8 @@ msgid "Web:" msgstr "Ιστός:" #. module: base -#, python-format #: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format msgid "new" msgstr "νέος" @@ -568,8 +551,7 @@ msgid "STOCK_GOTO_TOP" msgstr "TOP" #. module: base -#: field:ir.actions.report.custom,multi:0 -#: field:ir.actions.report.xml,multi:0 +#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 #: field:ir.actions.act_window.view,multi:0 msgid "On multiple doc." msgstr "Σε πολλαπλά έγγραφα" @@ -606,8 +588,7 @@ msgid "To be upgraded" msgstr "Για να αναβαθμιστεί" #. module: base -#: field:ir.module.category,child_ids:0 -#: field:ir.module.category,parent_id:0 +#: field:ir.module.category,child_ids:0 field:ir.module.category,parent_id:0 #: field:res.partner.category,parent_id:0 msgid "Parent Category" msgstr "Βασική κατηγορία" @@ -623,10 +604,14 @@ msgid "Contact Name" msgstr "Όνομα Επαφής" #. module: base -#, python-format #: code:addons/base/module/wizard/wizard_export_lang.py:0 -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 "Αποθηκεύστε το έγγραφο σε ένα αρχείο '%s' και επεξεργαστείτε το με ειδικό λογισμικό ή έναν συντάκτη κειμένων. Η κωδικοποίηση αρχείων είναι utf-8. " +#, python-format +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 "" +"Αποθηκεύστε το έγγραφο σε ένα αρχείο '%s' και επεξεργαστείτε το με ειδικό " +"λογισμικό ή έναν συντάκτη κειμένων. Η κωδικοποίηση αρχείων είναι utf-8. " #. module: base #: view:ir.module.module:0 @@ -639,28 +624,27 @@ msgid "Repositories" msgstr "Χώροι αποθήκευσης" #. module: base -#, python-format #: code:addons/base/ir/ir_model.py:0 +#, python-format msgid "Password mismatch !" msgstr "Κακός συνδυασμός κωδικού πρόσβασης!" #. module: base -#: selection:res.partner.address,type:0 -#: selection:res.partner.title,domain:0 +#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 msgid "Contact" msgstr "Στοιχεία επικοινωνίας" #. module: base -#, python-format #: code:addons/base/module/module.py:0 +#, python-format msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "Αυτό το url '%s' πρέπει να παρέχει σε ένα αρχείο HTML στις συνδέσεις με τις ενότητες Zip" +msgstr "" +"Αυτό το url '%s' πρέπει να παρέχει σε ένα αρχείο HTML στις συνδέσεις με τις " +"ενότητες Zip" #. module: base -#: model:ir.ui.menu,name:base.next_id_15 -#: view:ir.property:0 -#: view:ir.model.fields:0 -#: view:ir.model:0 +#: model:ir.ui.menu,name:base.next_id_15 view:ir.property:0 +#: view:ir.model.fields:0 view:ir.model:0 msgid "Properties" msgstr "Ιδιότητες" @@ -670,8 +654,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#, python-format #: code:osv/orm.py:0 +#, python-format msgid "ConcurrencyException" msgstr "Εξαίρεση συναγωνισμού" @@ -713,10 +697,8 @@ msgid "If you don't force the domain, it will use the simple domain setup" msgstr "Εάν δεν επέμβετε θα χρησιμοποιηθεί απλή οργάνωση " #. module: base -#: field:ir.actions.url,type:0 -#: field:ir.actions.act_window,type:0 -#: field:ir.actions.actions,type:0 -#: field:ir.actions.act_window_close,type:0 +#: field:ir.actions.url,type:0 field:ir.actions.act_window,type:0 +#: field:ir.actions.actions,type:0 field:ir.actions.act_window_close,type:0 msgid "Action Type" msgstr "Τύπος δράσης" @@ -741,8 +723,7 @@ msgid "Type fields" msgstr "Τύποι πεδίων " #. module: base -#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form -#: view:ir.actions.todo:0 +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Διαμόρφωση βημάτων" @@ -752,8 +733,7 @@ msgid "ir.ui.view_sc" msgstr "" #. module: base -#: field:ir.model.access,group_id:0 -#: field:ir.rule,rule_group:0 +#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 msgid "Group" msgstr "Ομάδα" @@ -768,8 +748,7 @@ msgid "Signature" msgstr "Υπογραφή" #. module: base -#: field:ir.actions.server,sms:0 -#: selection:ir.actions.server,state:0 +#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 msgid "SMS" msgstr "SMS" @@ -785,8 +764,7 @@ msgstr "Ονομασία Πεδίου" #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window -#: model:ir.ui.menu,name:base.menu_res_lang_act_window -#: view:res.lang:0 +#: model:ir.ui.menu,name:base.menu_res_lang_act_window view:res.lang:0 msgid "Languages" msgstr "Γλώσσες" @@ -799,7 +777,9 @@ msgstr "Αποεγκατεστημένες ενότητες" #. module: base #: help:res.partner.category,active:0 msgid "The active field allows you to hide the category, without removing it." -msgstr "Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι απαραίτητη η αφαίρεση του." +msgstr "" +"Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι " +"απαραίτητη η αφαίρεση του." #. module: base #: selection:wizard.module.lang.export,format:0 @@ -820,15 +800,20 @@ msgid "Select Action Type" msgstr "Επιλέξτε τον τύπο δράσης" #. module: base -#, python-format #: code:addons/base/module/wizard/wizard_export_lang.py:0 -msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." -msgstr "Αποθηκεύστε το παρόν έγγραφο σε ένα .CSV αρχείο και ανοίξτε το με το λογισμικό φύλλο (spreadsheet) σας. Η κωδικοποίηση αρχείων είναι utf-8. Πρέπει να μετατρέψετε την πιο πρόσφατη στήλη πριν κάνετε επανεισαγωγή." +#, python-format +msgid "" +"Save this document to a .CSV file and open it with your favourite " +"spreadsheet software. The file encoding is UTF-8. You have to translate the " +"latest column before reimporting it." +msgstr "" +"Αποθηκεύστε το παρόν έγγραφο σε ένα .CSV αρχείο και ανοίξτε το με το " +"λογισμικό φύλλο (spreadsheet) σας. Η κωδικοποίηση αρχείων είναι utf-8. " +"Πρέπει να μετατρέψετε την πιο πρόσφατη στήλη πριν κάνετε επανεισαγωγή." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form -#: view:res.currency:0 +#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 msgid "Currencies" msgstr "Νομίσματα" @@ -839,8 +824,12 @@ msgstr "Διαμορφώστε" #. module: base #: help:res.partner,lang:0 -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 "Εάν η επιλεγμένη γλώσσα υπάρχει στο σύστημα, όλα τα έγγραφα σχετικά με αυτόν τον συνεργάτη θα τυπωθούν σε αυτήν την γλώσσα. Εάν όχι, θα είναι αγγλικά." +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 "" +"Εάν η επιλεγμένη γλώσσα υπάρχει στο σύστημα, όλα τα έγγραφα σχετικά με αυτόν " +"τον συνεργάτη θα τυπωθούν σε αυτήν την γλώσσα. Εάν όχι, θα είναι αγγλικά." #. module: base #: selection:ir.ui.menu,icon:0 @@ -874,10 +863,15 @@ msgid "Test" msgstr "Έλεγχος" #. module: base -#, python-format #: code:addons/base/res/res_user.py:0 -msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" -msgstr "Δεν μπορείτε να διαγράψετε το χρήστη admin γιατί χρησιμοποιείται εσωτερικά για τους πόρους που δημιουργούνται από OpenERP (αναπροσαρμογές, εγκατάσταση ενότητας,…)" +#, python-format +msgid "" +"You can not remove the admin user as it is used internally for resources " +"created by OpenERP (updates, module installation, ...)" +msgstr "" +"Δεν μπορείτε να διαγράψετε το χρήστη admin γιατί χρησιμοποιείται εσωτερικά " +"για τους πόρους που δημιουργούνται από OpenERP (αναπροσαρμογές, εγκατάσταση " +"ενότητας,…)" #. module: base #: wizard_view:module.module.update,update:0 @@ -971,7 +965,6 @@ msgid "Bank type" msgstr "Τραπ είδος" #. module: base -#, python-format #: code:osv/fields.py:0 #, fuzzy msgid "undefined get method !" @@ -984,7 +977,6 @@ msgid "Header/Footer" msgstr "Κεφαλίδα/Υποσέλιδο" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "The read method is not implemented on this object !" @@ -1009,8 +1001,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 -#: view:res.partner.event:0 +#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 #, fuzzy msgid "Partner Events" msgstr "Συνεργάτης Γεγονότα" @@ -1108,14 +1099,12 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard #: field:wizard.ir.model.menu.create.line,wizard_id:0 -#: model:ir.ui.menu,name:base.menu_ir_action_wizard -#: view:ir.actions.wizard:0 +#: model:ir.ui.menu,name:base.menu_ir_action_wizard view:ir.actions.wizard:0 msgid "Wizard" msgstr "Αυτόματος Οδηγός" #. module: base -#: wizard_view:module.lang.install,init:0 -#: wizard_view:module.upgrade,next:0 +#: wizard_view:module.lang.install,init:0 wizard_view:module.upgrade,next:0 #, fuzzy msgid "System Upgrade" msgstr "Σύστημα Αναβάθμιση" @@ -1145,21 +1134,18 @@ msgid "STOCK_ZOOM_IN" msgstr "ΕΣΟΔΑ" #. module: base -#: field:ir.ui.menu,parent_id:0 -#: field:wizard.ir.model.menu.create,menu_id:0 +#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 #, fuzzy msgid "Parent Menu" msgstr "Γονέας Μενού" #. module: base -#, python-format #: code:addons/base/ir/ir_model.py:0 #, fuzzy msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Προσαρμοσμένο a όνομα με x!" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "Unknown attribute % in % (table %)" @@ -1172,15 +1158,13 @@ msgid "Planned Cost" msgstr "Κόστος" #. module: base -#: field:res.partner.event.type,name:0 -#: view:res.partner.event.type:0 +#: field:res.partner.event.type,name:0 view:res.partner.event.type:0 #, fuzzy msgid "Event Type" msgstr "Γεγονός Τύπος" #. module: base -#: field:ir.ui.view,type:0 -#: field:wizard.ir.model.menu.create.line,view_type:0 +#: field:ir.ui.view,type:0 field:wizard.ir.model.menu.create.line,view_type:0 #, fuzzy msgid "View Type" msgstr "Τύπος προβολής" @@ -1238,7 +1222,6 @@ msgid "Trigger Expression" msgstr "Έναυσμα Παράσταση" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "Wrong ID for the browse record, got %s, expected an integer." @@ -1317,8 +1300,7 @@ msgid "Actions" msgstr "Ενέργειες" #. module: base -#: field:res.request,body:0 -#: field:res.request.history,req_id:0 +#: field:res.request,body:0 field:res.request.history,req_id:0 #: view:res.request:0 msgid "Request" msgstr "Αίτημα" @@ -1339,11 +1321,15 @@ msgid "Model" msgstr "Μοντέλο" #. module: base -#, python-format #: code:addons/base/module/module.py:0 #, fuzzy -msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." -msgstr "Εσείς στο εγκατάσταση a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο είναι όχι διαθέσιμα σε." +msgid "" +"You try to install a module that depends on the module: %s.\n" +"But this module is not available in your system." +msgstr "" +"Εσείς στο εγκατάσταση a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο " +"εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s άρθρωμα, μονάδα, " +"υπομονάδα, Δομικό Στοιχείο είναι όχι διαθέσιμα σε." #. module: base #: selection:ir.actions.act_window.view,view_mode:0 @@ -1359,8 +1345,7 @@ msgstr "Το αρχείο γλώσσας φορτώθηκε" #. module: base #: model:ir.actions.act_window,name:base.action_ui_view -#: field:ir.actions.act_window.view,view_id:0 -#: field:ir.default,page:0 +#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 #: selection:ir.translation,type:0 #: field:wizard.ir.model.menu.create.line,view_id:0 #: model:ir.ui.menu,name:base.menu_action_ui_view @@ -1381,8 +1366,7 @@ msgid "Company Architecture" msgstr "Εταιρία" #. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 +#: field:workflow.workitem,act_id:0 view:workflow.activity:0 msgid "Activity" msgstr "" @@ -1428,13 +1412,11 @@ msgstr "Αρχείο" #. module: base #: model:ir.actions.act_window,name:base.ir_sequence_form #: model:ir.ui.menu,name:base.menu_ir_sequence_form -#: model:ir.ui.menu,name:base.next_id_5 -#: view:ir.sequence:0 +#: model:ir.ui.menu,name:base.next_id_5 view:ir.sequence:0 msgid "Sequences" msgstr "" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "Unknown position in inherited view %s !" @@ -1462,7 +1444,6 @@ msgid "Bank account" msgstr "Τραπεζικός λογαριασμός" #. module: base -#, python-format #: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy msgid "Warning: using a relation field which uses an unknown object" @@ -1474,8 +1455,7 @@ msgid "STOCK_GO_FORWARD" msgstr "" #. module: base -#: field:res.bank,zip:0 -#: field:res.partner.address,zip:0 +#: field:res.bank,zip:0 field:res.partner.address,zip:0 #: field:res.partner.bank,zip:0 msgid "Zip" msgstr "" @@ -1506,8 +1486,7 @@ msgid "STOCK_DIALOG_QUESTION" msgstr "" #. module: base -#: selection:ir.actions.server,state:0 -#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 view:ir.actions.server:0 #, fuzzy msgid "Trigger" msgstr "Έναυσμα" @@ -1539,12 +1518,10 @@ msgid "wizard.module.update_translations" msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο ενημέρωση" #. module: base -#: field:ir.actions.act_window,view_ids:0 -#: field:ir.actions.act_window,views:0 +#: field:ir.actions.act_window,view_ids:0 field:ir.actions.act_window,views:0 #: field:ir.module.module,views_by_module:0 #: field:wizard.ir.model.menu.create,view_ids:0 -#: view:wizard.ir.model.menu.create:0 -#: view:ir.actions.act_window:0 +#: view:wizard.ir.model.menu.create:0 view:ir.actions.act_window:0 msgid "Views" msgstr "Προβολές" @@ -1559,7 +1536,6 @@ msgid "STOCK_SELECT_FONT" msgstr "" #. module: base -#, python-format #: code:addons/base/module/module.py:0 #, fuzzy msgid "You try to remove a module that is installed or will be installed" @@ -1594,10 +1570,11 @@ msgid "STOCK_GOTO_FIRST" msgstr "" #. module: base -#, python-format #: code:addons/base/module/module.py:0 #, fuzzy -msgid "Can not create the module file:\n %s" +msgid "" +"Can not create the module file:\n" +" %s" msgstr "" "όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο\n" " s" @@ -1647,8 +1624,7 @@ msgid "URL" msgstr "URL" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 +#: field:ir.model.fields,state:0 field:ir.model,state:0 #, fuzzy msgid "Manualy Created" msgstr "Δημιουργήθηκε" @@ -1661,8 +1637,7 @@ msgstr "Εκτύπωση" #. module: base #: model:ir.actions.act_window,name:base.action_payterm_form -#: model:ir.model,name:base.model_res_payterm -#: view:res.payterm:0 +#: model:ir.model,name:base.model_res_payterm view:res.payterm:0 #, fuzzy msgid "Payment term" msgstr "Πληρωμή" @@ -1715,8 +1690,7 @@ msgid "User Interface - Views" msgstr "Χρήστης Περιβάλλον Προβολές" #. module: base -#: view:res.groups:0 -#: view:ir.model:0 +#: view:res.groups:0 view:ir.model:0 #, fuzzy msgid "Access Rights" msgstr "Πρόσβαση" @@ -1724,7 +1698,8 @@ msgstr "Πρόσβαση" #. module: base #: help:ir.actions.report.xml,report_rml:0 #, fuzzy -msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgid "" +"The .rml path of the file or NULL if the content is in report_rml_content" msgstr "διαδρομή από αρχείο ή είναι σε έκθεση / αναφορά" #. module: base @@ -1750,7 +1725,6 @@ msgid "Partner Address" msgstr "Συνεργάτης Διεύθυνση" #. module: base -#, python-format #: code:addons/base/ir/ir_model.py:0 #, fuzzy msgid "You can not remove the model '%s' !" @@ -1767,13 +1741,11 @@ msgid "field child1" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 +#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 msgid "Subject" msgstr "Θέμα" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "The write method is not implemented on this object !" @@ -1785,8 +1757,7 @@ msgid "Global" msgstr "Καθολικό" #. module: base -#: field:res.request,act_from:0 -#: field:res.request.history,act_from:0 +#: field:res.request,act_from:0 field:res.request.history,act_from:0 msgid "From" msgstr "Από" @@ -1824,19 +1795,15 @@ msgid "terp-report" msgstr "έκθεση / αναφορά" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 +#: field:res.partner.event,som:0 field:res.partner.som,name:0 #, fuzzy msgid "State of Mind" msgstr "Κατάσταση από" #. module: base -#: field:ir.actions.report.xml,report_type:0 -#: field:ir.actions.todo,type:0 -#: field:ir.server.object.lines,type:0 -#: field:ir.translation,type:0 -#: field:ir.values,key:0 -#: view:res.partner:0 +#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 +#: field:ir.values,key:0 view:res.partner:0 msgid "Type" msgstr "Είδος ημερολογίου" @@ -1859,7 +1826,6 @@ msgid "STOCK_FILE" msgstr "ΑΡΧΕΙΟ" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "The copy method is not implemented on this object !" @@ -1884,8 +1850,7 @@ msgid "Left-to-right" msgstr "Αριστερά στο δεξιά" #. module: base -#: model:ir.ui.menu,name:base.menu_translation -#: view:ir.translation:0 +#: model:ir.ui.menu,name:base.menu_translation view:ir.translation:0 msgid "Translations" msgstr "Μεταφράσεις" @@ -1914,7 +1879,9 @@ msgstr "" #. module: base #: help:res.partner,supplier:0 #, fuzzy -msgid "Check this box if the partner if a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." +msgid "" +"Check this box if the partner if a supplier. If it's not checked, purchase " +"people will not see it when encoding a purchase order." msgstr "Έλεγχος a s όχι όχι κωδικοποίηση a." #. module: base @@ -1941,14 +1908,14 @@ msgid "STOCK_OK" msgstr "Εντάξει" #. module: base -#, python-format #: code:report/report_sxw.py:0 +#, python-format msgid "print" msgstr "" #. module: base -#, python-format #: code:addons/base/ir/ir_model.py:0 +#, python-format msgid "Password empty !" msgstr "Κωδικός πρόσβασης κενός!" @@ -1959,8 +1926,7 @@ msgid "RML Header" msgstr "Κεφαλίδα" #. module: base -#: selection:ir.actions.server,state:0 -#: selection:workflow.activity,kind:0 +#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 msgid "Dummy" msgstr "" @@ -1970,7 +1936,6 @@ msgid "None" msgstr "Κανένα" #. module: base -#, python-format #: code:addons/base/ir/ir_model.py:0 #, fuzzy msgid "You can not write in this document! (%s)" @@ -1988,8 +1953,7 @@ msgid "API ID" msgstr "ID" #. module: base -#: model:ir.model,name:base.model_ir_module_category -#: view:ir.module.category:0 +#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 #, fuzzy msgid "Module Category" msgstr "Άρθρωμα Κατηγορία" @@ -2033,8 +1997,7 @@ msgid "Write Object" msgstr "Εγγραφή Αντικείμενο" #. module: base -#: field:res.bank,street:0 -#: field:res.partner.address,street:0 +#: field:res.bank,street:0 field:res.partner.address,street:0 #: field:res.partner.bank,street:0 msgid "Street" msgstr "Οδός" @@ -2062,7 +2025,6 @@ msgid "Low" msgstr "Χαμηλή" #. module: base -#, python-format #: code:addons/base/module/module.py:0 #, fuzzy msgid "Recursion error in modules dependencies !" @@ -2082,8 +2044,7 @@ msgstr "διαδρομή" #. module: base #: field:res.groups,model_access:0 -#: model:ir.ui.menu,name:base.menu_security_access -#: view:ir.model.access:0 +#: model:ir.ui.menu,name:base.menu_security_access view:ir.model.access:0 #: view:res.groups:0 msgid "Access Controls" msgstr "Έλεγχοι Πρόσβασης" @@ -2109,10 +2070,8 @@ msgid "Partner Functions" msgstr "Συνεργάτης Συναρτήσεις" #. module: base -#: model:ir.model,name:base.model_res_currency -#: field:res.company,currency_id:0 -#: field:res.currency,name:0 -#: field:res.currency.rate,currency_id:0 +#: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 +#: field:res.currency,name:0 field:res.currency.rate,currency_id:0 #: view:res.currency:0 msgid "Currency" msgstr "Νόμισμα" @@ -2135,8 +2094,7 @@ msgid "Simplified Interface" msgstr "Περιβάλλον" #. module: base -#: field:res.bank,street2:0 -#: field:res.partner.address,street2:0 +#: field:res.bank,street2:0 field:res.partner.address,street2:0 msgid "Street2" msgstr "" @@ -2179,8 +2137,12 @@ msgstr "Πάρτε το αρχείο" #. module: base #: wizard_view:module.module.update,init:0 #, fuzzy -msgid "This function will check for new modules in the 'addons' path and on module repositories:" -msgstr "συνάρτηση Έλεγχος για νέο Επιλογές - δυνατότητες - λειτουργίες σε διαδρομή και άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο:" +msgid "" +"This function will check for new modules in the 'addons' path and on module " +"repositories:" +msgstr "" +"συνάρτηση Έλεγχος για νέο Επιλογές - δυνατότητες - λειτουργίες σε διαδρομή " +"και άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο:" #. module: base #: selection:ir.rule,operator:0 @@ -2189,8 +2151,7 @@ msgid "child_of" msgstr "παιδί από" #. module: base -#: field:res.currency,rate_ids:0 -#: view:res.currency:0 +#: field:res.currency,rate_ids:0 view:res.currency:0 msgid "Rates" msgstr "Ποσοστά" @@ -2201,9 +2162,8 @@ msgid "STOCK_GO_BACK" msgstr "ΠΗΓΑΙΝΕ" #. module: base +#: code:addons/base/ir/ir_model.py:0 code:osv/orm.py:0 #, python-format -#: code:addons/base/ir/ir_model.py:0 -#: code:osv/orm.py:0 msgid "AccessError" msgstr "Σφάλμα πρόσβασης" @@ -2223,8 +2183,7 @@ msgid "ir.model.config" msgstr "" #. module: base -#: field:ir.module.module,website:0 -#: field:res.partner,website:0 +#: field:ir.module.module,website:0 field:res.partner,website:0 msgid "Website" msgstr "Ιστοχώρος" @@ -2244,14 +2203,12 @@ msgid "Increment Number" msgstr "Αριθμός αύξησης" #. module: base -#: field:ir.report.custom.fields,operation:0 -#: field:ir.ui.menu,icon_pict:0 +#: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 #: field:wizard.module.lang.export,state:0 msgid "unknown" msgstr "άγνωστο" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "The create method is not implemented on this object !" @@ -2274,10 +2231,8 @@ msgid "draft" msgstr "σχέδιο" #. module: base -#: field:res.currency.rate,name:0 -#: field:res.partner,date:0 -#: field:res.partner.event,date:0 -#: field:res.request,date_sent:0 +#: field:res.currency.rate,name:0 field:res.partner,date:0 +#: field:res.partner.event,date:0 field:res.request,date_sent:0 msgid "Date" msgstr "Ημερομηνία" @@ -2305,10 +2260,8 @@ msgid "Partners by Categories" msgstr "Συνεργάτες ανά Κατηγορίες" #. module: base -#: wizard_field:module.lang.install,init,lang:0 -#: field:ir.translation,lang:0 -#: field:res.partner,lang:0 -#: field:res.users,context_lang:0 +#: wizard_field:module.lang.install,init,lang:0 field:ir.translation,lang:0 +#: field:res.partner,lang:0 field:res.users,context_lang:0 #: field:wizard.module.lang.export,lang:0 #: field:wizard.module.update_translations,lang:0 msgid "Language" @@ -2332,8 +2285,7 @@ msgstr "Εισαγωγή ενότητας" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form -#: view:res.company:0 +#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 msgid "Companies" msgstr "Επιχειρήσεις" @@ -2421,12 +2373,9 @@ msgid "(year)=" msgstr "έτος" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 +#: selection:ir.translation,type:0 field:res.bank,code:0 +#: field:res.currency,code:0 field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 #: field:res.partner,ref:0 msgid "Code" msgstr "Κωδικός" @@ -2442,22 +2391,20 @@ msgid "terp-partner" msgstr "" #. module: base -#, python-format #: code:osv/fields.py:0 #, fuzzy msgid "Not implemented get_memory method !" msgstr "Not λήψη!" #. module: base -#: field:ir.actions.server,code:0 -#: selection:ir.actions.server,state:0 +#: field:ir.actions.server,code:0 selection:ir.actions.server,state:0 #: view:ir.actions.server:0 msgid "Python Code" msgstr "Κώδικας Python" #. module: base -#, python-format #: code:osv/orm.py:0 +#, python-format msgid "Bad query." msgstr "" @@ -2467,7 +2414,6 @@ msgid "Field Label" msgstr "Ετικέτα τομέων" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "You try to bypass an access rule (Document type: %s)." @@ -2511,10 +2457,8 @@ msgstr "Συνεργάτες πελατών" #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 #: wizard_button:module.module.update,init,end:0 -#: wizard_button:module.upgrade,next,end:0 -#: selection:ir.actions.todo,state:0 -#: view:wizard.ir.model.menu.create:0 -#: view:wizard.module.lang.export:0 +#: wizard_button:module.upgrade,next,end:0 selection:ir.actions.todo,state:0 +#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 #: view:wizard.module.update_translations:0 msgid "Cancel" msgstr "Ακύρωση" @@ -2535,10 +2479,8 @@ msgid "terp-administration" msgstr "" #. module: base -#: field:ir.model.data,res_id:0 -#: field:ir.translation,res_id:0 -#: field:ir.values,res_id:0 -#: field:workflow.instance,res_id:0 +#: field:ir.model.data,res_id:0 field:ir.translation,res_id:0 +#: field:ir.values,res_id:0 field:workflow.instance,res_id:0 #: field:workflow.triggers,res_id:0 #, fuzzy msgid "Resource ID" @@ -2593,15 +2535,13 @@ msgid "Instance" msgstr "Περίπτωση" #. module: base -#: field:ir.values,meta:0 -#: field:ir.values,meta_unpickle:0 +#: field:ir.values,meta:0 field:ir.values,meta_unpickle:0 #, fuzzy msgid "Meta Datas" msgstr "Μετά-ρύθμιση" #. module: base -#: help:res.currency,rate:0 -#: help:res.currency.rate,rate:0 +#: help:res.currency,rate:0 help:res.currency.rate,rate:0 #, fuzzy msgid "The rate of the currency to the currency of rate 1" msgstr "από στο από 1" @@ -2612,14 +2552,13 @@ msgid "raw" msgstr "" #. module: base -#, python-format #: code:addons/base/res/partner/partner.py:0 +#, python-format msgid "Partners: " msgstr "Συνεργάτες:" #. module: base -#: selection:ir.actions.todo,type:0 -#: selection:res.partner.address,type:0 +#: selection:ir.actions.todo,type:0 selection:res.partner.address,type:0 msgid "Other" msgstr "Άλλος" @@ -2633,16 +2572,19 @@ msgstr "Πεδίο" #: model:ir.model,name:base.model_ir_module_module_configuration_step #, fuzzy msgid "ir.module.module.configuration.step" -msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο" +msgstr "" +"άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο άρθρωμα, μονάδα, υπομονάδα, " +"Δομικό Στοιχείο" #. module: base #: model:ir.model,name:base.model_ir_module_module_configuration_wizard #, fuzzy msgid "ir.module.module.configuration.wizard" -msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο" +msgstr "" +"άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο άρθρωμα, μονάδα, υπομονάδα, " +"Δομικό Στοιχείο" #. module: base -#, python-format #: code:addons/base/res/res_user.py:0 #, fuzzy msgid "Can not remove root user!" @@ -2654,8 +2596,7 @@ msgid "Installed version" msgstr "Εγκατεστημένη έκδοση" #. module: base -#: field:workflow,activities:0 -#: view:workflow:0 +#: field:workflow,activities:0 view:workflow:0 msgid "Activities" msgstr "Δραστηριότητες" @@ -2666,15 +2607,10 @@ msgstr "διορισμένος πωλητής" #. module: base #: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 -#: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 -#: field:res.groups,users:0 -#: field:res.roles,users:0 -#: model:ir.ui.menu,name:base.menu_action_res_users -#: model:ir.ui.menu,name:base.menu_users -#: view:res.groups:0 -#: view:res.users:0 +#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 +#: field:ir.rule.group,users:0 field:res.groups,users:0 +#: field:res.roles,users:0 model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 view:res.users:0 msgid "Users" msgstr "Χρήστες" @@ -2694,7 +2630,9 @@ msgstr "Αναφορά" #. module: base #: help:res.partner,user_id:0 #, fuzzy -msgid "The internal user that is in charge of communicating with this partner if any." +msgid "" +"The internal user that is in charge of communicating with this partner if " +"any." msgstr "είναι σε από με κάθε." #. module: base @@ -2709,7 +2647,6 @@ msgid "Cancel Upgrade" msgstr "Ακυρώστε τη βελτίωση" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "The search method is not implemented on this object !" @@ -2737,15 +2674,13 @@ msgid "res.lang" msgstr "" #. module: base -#, python-format #: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy msgid "Pie charts need exactly two fields" msgstr "Πίτα δύο" #. module: base -#: model:ir.model,name:base.model_res_bank -#: field:res.partner.bank,bank:0 +#: model:ir.model,name:base.model_res_bank field:res.partner.bank,bank:0 #: view:res.bank:0 msgid "Bank" msgstr "Τράπεζα" @@ -2762,29 +2697,17 @@ msgid "Create in Same Model" msgstr "Δημιουργία σε Ίδιο Μοντέλο" #. module: base -#: field:ir.actions.report.xml,name:0 -#: field:ir.actions.todo,name:0 -#: field:ir.cron,name:0 -#: field:ir.model.access,name:0 -#: field:ir.model.fields,name:0 -#: field:ir.module.category,name:0 -#: field:ir.module.module.dependency,name:0 -#: field:ir.module.module,name:0 -#: field:ir.module.repository,name:0 -#: field:ir.property,name:0 -#: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 -#: field:ir.values,name:0 -#: field:res.bank,name:0 -#: field:res.config.view,name:0 -#: field:res.lang,name:0 -#: field:res.partner.bank.type,name:0 -#: field:res.partner.category,complete_name:0 -#: field:res.partner,name:0 -#: field:res.request.link,name:0 -#: field:res.users,name:0 -#: field:workflow.activity,name:0 -#: field:workflow,name:0 +#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 field:ir.module.category,name:0 +#: field:ir.module.module.dependency,name:0 field:ir.module.module,name:0 +#: field:ir.module.repository,name:0 field:ir.property,name:0 +#: field:ir.report.custom.fields,name:0 field:ir.rule.group,name:0 +#: field:ir.values,name:0 field:res.bank,name:0 field:res.config.view,name:0 +#: field:res.lang,name:0 field:res.partner.bank.type,name:0 +#: field:res.partner.category,complete_name:0 field:res.partner,name:0 +#: field:res.request.link,name:0 field:res.users,name:0 +#: field:workflow.activity,name:0 field:workflow,name:0 msgid "Name" msgstr "Ονομασία" @@ -2822,14 +2745,13 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "" #. module: base -#, python-format #: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format msgid "Error !" msgstr "Σφάλμα" #. module: base -#: wizard_field:res.partner.sms_send,init,user:0 -#: field:res.users,login:0 +#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 #, fuzzy msgid "Login" msgstr "Σύνδεση" @@ -2848,7 +2770,11 @@ msgid "" "- The first parenthesis must match the name of the module.\n" "- The second parenthesis must match all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο Ταιριάζω όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n δευτερόλεπτο Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο." +msgstr "" +"στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο Ταιριάζω " +"όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n δευτερόλεπτο " +"Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, μονάδα, υπομονάδα, " +"Δομικό Στοιχείο." #. module: base #: field:res.partner,vat:0 @@ -2885,8 +2811,7 @@ msgstr "Πλέγμα ελέγχων προσπέλασης" #. module: base #: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 -#: field:ir.module.module.dependency,module_id:0 +#: field:ir.model.data,module:0 field:ir.module.module.dependency,module_id:0 #: view:ir.module.module:0 #, fuzzy msgid "Module" @@ -2942,8 +2867,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#, python-format #: code:tools/translate.py:0 +#, python-format msgid "Bad file format" msgstr "Κακή μορφή αρχείου" @@ -2991,7 +2916,6 @@ msgid "Readonly" msgstr "Μόνο για ανάγνωση" #. module: base -#, python-format #: code:addons/base/ir/ir_model.py:0 #, fuzzy msgid "You can not remove the field '%s' !" @@ -3047,11 +2971,14 @@ msgid "STOCK_STOP" msgstr "" #. module: base -#, python-format #: code:addons/base/ir/ir_model.py:0 #, fuzzy -msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" -msgstr "s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" +msgid "" +"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"used to refer to other modules data, as in module.reference_id" +msgstr "" +"s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε " +"άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" #. module: base #: field:res.partner.bank,acc_number:0 @@ -3092,8 +3019,8 @@ msgid "Day: %(day)s" msgstr "Ημέρα ημέρα s" #. module: base -#, python-format #: code:addons/base/ir/ir_model.py:0 +#, python-format msgid "You can not read this document! (%s)" msgstr "Δεν μπορείτε να διαβάσετε το παρόν έγγραφο! (%s)" @@ -3104,9 +3031,7 @@ msgid "STOCK_FIND_AND_REPLACE" msgstr "ΚΑΙ" #. module: base -#: field:res.request,history:0 -#: view:res.request:0 -#: view:res.partner:0 +#: field:res.request,history:0 view:res.request:0 view:res.partner:0 msgid "History" msgstr "Ιστορικό" @@ -3158,12 +3083,9 @@ msgid "Days" msgstr "Ημέρες" #. module: base -#: field:ir.property,value:0 -#: selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 -#: field:ir.values,key2:0 -#: field:ir.values,value:0 -#: field:ir.values,value_unpickle:0 +#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 field:ir.values,key2:0 +#: field:ir.values,value:0 field:ir.values,value_unpickle:0 msgid "Value" msgstr "Αξία" @@ -3203,8 +3125,7 @@ msgid "Minutes" msgstr "Πρακτικά" #. module: base -#: wizard_view:module.upgrade,start:0 -#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 wizard_view:module.upgrade,end:0 #, fuzzy msgid "The modules have been upgraded / installed !" msgstr "Επιλογές - δυνατότητες - λειτουργίες!" @@ -3215,18 +3136,19 @@ msgid "Domain Value" msgstr "Αξία περιοχών" #. module: base -#: selection:ir.translation,type:0 -#: view:wizard.module.lang.export:0 +#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 msgid "Help" msgstr "Βοήθεια" #. module: base -#, python-format #: code:addons/base/module/module.py:0 #, fuzzy -msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +msgid "" +"Some installed modules depends on the module you plan to desinstall :\n" +" %s" msgstr "" -"Κάποια προβλήματα Επιλογές - δυνατότητες - λειτουργίες εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο στο\n" +"Κάποια προβλήματα Επιλογές - δυνατότητες - λειτουργίες εξαρτάται άρθρωμα, " +"μονάδα, υπομονάδα, Δομικό Στοιχείο στο\n" " s" #. module: base @@ -3290,8 +3212,7 @@ msgstr "Προηγμένη αναζήτηση" #. module: base #: model:ir.actions.act_window,name:base.action_partner_form #: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form -#: view:res.partner:0 +#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 msgid "Partners" msgstr "Συνεργάτες" @@ -3316,20 +3237,18 @@ msgid "Create" msgstr "Δημιουργήστε" #. module: base -#, python-format #: code:addons/base/res/res_user.py:0 +#, python-format msgid "The name of the group can not start with \"-\"" msgstr "Το όνομα της ομάδας δεν μπορεί να αρχίσει με \"-\"" #. module: base -#: wizard_view:module.upgrade,start:0 -#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 wizard_view:module.upgrade,end:0 msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." msgstr "Προτείνουμε να ξαναφορτώσετε την ετικέττα επιλογών (Ctrl+t Ctrl+r)." #. module: base -#: field:res.partner.title,shortcut:0 -#: view:ir.ui.view_sc:0 +#: field:res.partner.title,shortcut:0 view:ir.ui.view_sc:0 msgid "Shortcut" msgstr "Συντόμευση" @@ -3339,10 +3258,8 @@ msgid "ir.model.access" msgstr "" #. module: base -#: field:ir.cron,priority:0 -#: field:ir.ui.view,priority:0 -#: field:res.request.link,priority:0 -#: field:res.request,priority:0 +#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 +#: field:res.request.link,priority:0 field:res.request,priority:0 msgid "Priority" msgstr "Προτεραιότητα" @@ -3412,10 +3329,11 @@ msgid "Resource Name" msgstr "Όνομα των πόρων" #. module: base -#, python-format #: code:addons/base/module/wizard/wizard_export_lang.py:0 #, fuzzy -msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgid "" +"Save this document to a .tgz file. This archive containt UTF-8 %s files and " +"may be uploaded to launchpad." msgstr "Αποθήκευση στο a αρχείο Αρχείο s και Μάιος στο." #. module: base @@ -3460,8 +3378,8 @@ msgid "References" msgstr "Αναφορές" #. module: base -#, python-format #: code:osv/orm.py:0 +#, python-format msgid "This record was modified in the meanwhile" msgstr "Αυτό το αρχείο τροποποιήθηκε εν τω μεταξύ" @@ -3476,8 +3394,7 @@ msgid "STOCK_COLOR_PICKER" msgstr "" #. module: base -#: field:res.request,act_to:0 -#: field:res.request.history,act_to:0 +#: field:res.request,act_to:0 field:res.request.history,act_to:0 msgid "To" msgstr "Προς" @@ -3487,14 +3404,14 @@ msgid "Kind" msgstr "Είδος" #. module: base -#, python-format #: code:osv/orm.py:0 +#, python-format msgid "This method does not exist anymore" msgstr "Αυτή η μέθοδος δεν υπάρχει άλλο" #. module: base -#, python-format #: code:addons/base/ir/ir_report_custom.py:0 +#, python-format msgid "Tree can only be used in tabular reports" msgstr "Το δέντρο μπορεί μόνο να χρησιμοποιηθεί στις συνοπτικές αναφορές" @@ -3522,7 +3439,6 @@ msgid "STOCK_CLEAR" msgstr "" #. module: base -#, python-format #: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy msgid "Bar charts need at least two fields" @@ -3557,7 +3473,6 @@ msgid "Relation Field" msgstr "Σχέση, Πίνακας Πεδίο" #. module: base -#, python-format #: code:osv/fields.py:0 #, fuzzy msgid "Not implemented search_memory method !" @@ -3570,8 +3485,7 @@ msgstr "Χρώμα πηγών" #. module: base #: model:ir.actions.act_window,name:base.action_server_action -#: model:ir.ui.menu,name:base.menu_server_action -#: view:ir.actions.server:0 +#: model:ir.ui.menu,name:base.menu_server_action view:ir.actions.server:0 msgid "Server Actions" msgstr "Ενέργειες κεντρικών υπολογιστών" @@ -3598,9 +3512,7 @@ msgid "res.request" msgstr "" #. module: base -#: field:res.groups,rule_groups:0 -#: field:res.users,rules_id:0 -#: view:res.groups:0 +#: field:res.groups,rule_groups:0 field:res.users,rules_id:0 view:res.groups:0 msgid "Rules" msgstr "Κανόνες" @@ -3611,8 +3523,7 @@ msgid "Titles" msgstr "Τίτλοι" #. module: base -#: wizard_view:module.upgrade,start:0 -#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 wizard_view:module.upgrade,end:0 msgid "System upgrade done" msgstr "Έγινα Βελτίωση συστημάτων" @@ -3624,10 +3535,11 @@ msgid "Type of view" msgstr "Τύπος από" #. module: base -#, python-format #: code:report/custom.py:0 #, fuzzy -msgid "The sum of the data (2nd field) is null.\nWe can draw a pie chart !" +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can draw a pie chart !" msgstr "από 2η είναι a!" #. module: base @@ -3666,8 +3578,13 @@ msgstr "" #. module: base #: view:wizard.module.lang.export:0 #, fuzzy -msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." -msgstr "από όλα άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Τε(τάρτη) σε σύνδεση στο όλα." +msgid "" +"The official translations pack of all OpenERP/OpenObjects module are managed " +"through launchpad. We use their online interface to synchronize all " +"translations efforts." +msgstr "" +"από όλα άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Τε(τάρτη) σε σύνδεση στο " +"όλα." #. module: base #: model:ir.actions.act_window,name:base.grant_menu_access @@ -3687,8 +3604,7 @@ msgid "Uninstall (beta)" msgstr "Απεγκατάσταση" #. module: base -#: selection:ir.actions.url,target:0 -#: selection:ir.actions.act_window,target:0 +#: selection:ir.actions.url,target:0 selection:ir.actions.act_window,target:0 msgid "New Window" msgstr "Νέο παράθυρο" @@ -3698,8 +3614,8 @@ msgid "Check this box if the partner if a customer." msgstr "Ελέγξτε αυτό το κιβώτιο εάν είναι συνεργάτης ή πελάτης." #. module: base -#, python-format #: code:addons/base/ir/ir_report_custom.py:0 +#, python-format msgid "Second field should be figures" msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμοί" @@ -3715,10 +3631,10 @@ msgid "Parent Action" msgstr "Γονέας Ενέργεια" #. module: base -#, python-format #: code:addons/base/res/partner/partner.py:0 #, fuzzy -msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgid "" +"Couldn't generate the next id because some partners have an alphabetic id !" msgstr "t id μερικές id!" #. module: base @@ -3740,8 +3656,7 @@ msgstr "Παράβλεψη Βήμα" #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event -#: field:res.partner.event,name:0 -#: field:res.partner,events:0 +#: field:res.partner.event,name:0 field:res.partner,events:0 msgid "Events" msgstr "Γεγονότα" @@ -3753,8 +3668,7 @@ msgid "Roles Structure" msgstr "Δομή" #. module: base -#: model:ir.model,name:base.model_ir_actions_url -#: selection:ir.ui.menu,action:0 +#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3771,7 +3685,6 @@ msgid "Active Partner Events" msgstr "Ενεργό Συνεργάτης Γεγονότα" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "Error occured while validating the field(s) %s: %s" @@ -3802,15 +3715,16 @@ msgid "Number of modules added" msgstr "Αριθμός από Επιλογές - δυνατότητες - λειτουργίες" #. module: base -#: field:res.bank,phone:0 -#: field:res.partner.address,phone:0 +#: field:res.bank,phone:0 field:res.partner.address,phone:0 msgid "Phone" msgstr "Τηλέφωνο" #. module: base #: help:ir.actions.wizard,multi:0 #, fuzzy -msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." +msgid "" +"If set to true, the wizard will not be displayed on the right toolbar of a " +"form views." msgstr "στο αληθές όχι δεξιά από a." #. module: base @@ -3821,15 +3735,11 @@ msgstr "Ρόλος που απαιτείται" #. module: base #: model:ir.actions.act_window,name:base.action_res_groups #: field:ir.actions.report.xml,groups_id:0 -#: field:ir.actions.act_window,groups_id:0 -#: field:ir.actions.wizard,groups_id:0 -#: field:ir.actions.todo,groups_id:0 -#: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 -#: field:ir.ui.menu,groups_id:0 +#: field:ir.actions.act_window,groups_id:0 field:ir.actions.wizard,groups_id:0 +#: field:ir.actions.todo,groups_id:0 field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 #: field:res.users,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups -#: view:res.groups:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 #: view:res.users:0 msgid "Groups" msgstr "Ομάδες" @@ -3840,19 +3750,12 @@ msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base -#: field:ir.actions.todo,active:0 -#: field:ir.cron,active:0 -#: field:ir.module.repository,active:0 -#: field:ir.sequence,active:0 -#: field:res.bank,active:0 -#: field:res.currency,active:0 -#: field:res.lang,active:0 -#: field:res.partner,active:0 -#: field:res.partner.address,active:0 -#: field:res.partner.canal,active:0 -#: field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 -#: field:res.request,active:0 +#: field:ir.actions.todo,active:0 field:ir.cron,active:0 +#: field:ir.module.repository,active:0 field:ir.sequence,active:0 +#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 +#: field:res.partner,active:0 field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 field:res.request,active:0 #: field:res.users,active:0 msgid "Active" msgstr "Ενεργός" @@ -3926,18 +3829,15 @@ msgid "Childs Category" msgstr "Κατηγορία" #. module: base -#: field:ir.model.fields,model:0 -#: field:ir.model,model:0 -#: field:ir.model.grid,model:0 -#: field:ir.model,name:0 +#: field:ir.model.fields,model:0 field:ir.model,model:0 +#: field:ir.model.grid,model:0 field:ir.model,name:0 #, fuzzy msgid "Object Name" msgstr "Όνομα αντικειμένου" #. module: base #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 +#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" msgstr "Ενέργεια" @@ -3972,14 +3872,12 @@ msgstr "Σχέση αντικειμένου" #. module: base #: model:ir.actions.act_window,name:base.action_attachment -#: model:ir.ui.menu,name:base.menu_action_attachment -#: view:ir.attachment:0 +#: model:ir.ui.menu,name:base.menu_action_attachment view:ir.attachment:0 msgid "Attachments" msgstr "Συνδέσεις" #. module: base -#: field:ir.rule,field_id:0 -#: selection:ir.translation,type:0 +#: field:ir.rule,field_id:0 selection:ir.translation,type:0 msgid "Field" msgstr "Πεδίο" @@ -4000,8 +3898,7 @@ msgid "Action on multiple doc." msgstr "Ενέργεια." #. module: base -#: field:res.partner,child_ids:0 -#: field:res.request,ref_partner_id:0 +#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 msgid "Partner Ref." msgstr "Εταιρική Αναφ." @@ -4044,11 +3941,12 @@ msgid "Invoice" msgstr "Τιμολόγιο" #. module: base -#: help:ir.actions.report.custom,multi:0 -#: help:ir.actions.report.xml,multi:0 +#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 #, fuzzy -msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form views." msgstr "στο αληθές όχι δεξιά από a." #. module: base @@ -4057,8 +3955,7 @@ msgid "Low Level" msgstr "Χαμηλό επλιπεδο " #. module: base -#: wizard_view:module.upgrade,start:0 -#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 wizard_view:module.upgrade,end:0 #, fuzzy msgid "You may have to reinstall some language pack." msgstr "Εσείς Μάιος στο επανεγκατάσταση μερικές." @@ -4085,10 +3982,8 @@ msgid "Size" msgstr "Μέγεθος" #. module: base -#: field:res.bank,city:0 -#: field:res.partner.address,city:0 -#: field:res.partner.bank,city:0 -#: field:res.partner,city:0 +#: field:res.bank,city:0 field:res.partner.address,city:0 +#: field:res.partner.bank,city:0 field:res.partner,city:0 msgid "City" msgstr "Πόλη" @@ -4100,9 +3995,11 @@ msgstr "Εταιρία" #. module: base #: constraint:ir.model:0 -#, fuzzy -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Αντικείμενο όνομα με x και όχι κάθε!" +msgid "" +"The Object name must start with x_ and not contain any special character !" +msgstr "" +"Το όνομα αντικειμένου πρέπει να αρχίζει με x_ και να μήν περιέχει ειδικούς " +"χαρακτήρες!" #. module: base #: rml:ir.module.reference:0 @@ -4123,9 +4020,7 @@ msgstr "<>" #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 -#: field:ir.ui.menu,name:0 -#: view:ir.ui.menu:0 +#: field:ir.report.custom,menu_id:0 field:ir.ui.menu,name:0 view:ir.ui.menu:0 #, fuzzy msgid "Menu" msgstr "Μενού" @@ -4150,12 +4045,13 @@ msgstr "Προορισμός Στιγμή, Στιγμιότυπο" #. module: base #: wizard_view:module.lang.install,start:0 #, fuzzy -msgid "The selected language has been successfully installed. You must change the preferences of the user and open a new menu to view changes." +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 "Εσείς αλλαγή από και a νέο στο." #. module: base -#: field:ir.module.module,menus_by_module:0 -#: view:res.groups:0 +#: field:ir.module.module,menus_by_module:0 view:res.groups:0 #, fuzzy msgid "Menus" msgstr "Μενού" @@ -4164,8 +4060,7 @@ msgstr "Μενού" #: selection:ir.report.custom.fields,fc0_op:0 #: selection:ir.report.custom.fields,fc1_op:0 #: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -#: selection:ir.rule,operator:0 +#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 #, fuzzy msgid "in" msgstr "σε" @@ -4199,10 +4094,8 @@ msgid "GPL-3 or later version" msgstr "GPL ή έκδοση" #. module: base -#: field:ir.actions.report.custom,usage:0 -#: field:ir.actions.report.xml,usage:0 -#: field:ir.actions.server,usage:0 -#: field:ir.actions.act_window,usage:0 +#: field:ir.actions.report.custom,usage:0 field:ir.actions.report.xml,usage:0 +#: field:ir.actions.server,usage:0 field:ir.actions.act_window,usage:0 #: field:ir.actions.actions,usage:0 #, fuzzy msgid "Action Usage" @@ -4215,15 +4108,13 @@ msgid "STOCK_HOME" msgstr "ΑΡΧΙΚΗ" #. module: base -#, python-format #: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy msgid "Enter at least one field !" msgstr "Εισαγωγή σε!" #. module: base -#: field:ir.actions.server,child_ids:0 -#: selection:ir.actions.server,state:0 +#: field:ir.actions.server,child_ids:0 selection:ir.actions.server,state:0 #, fuzzy msgid "Others Actions" msgstr "Άλλα Ενέργειες" @@ -4321,8 +4212,7 @@ msgid "End Date" msgstr "Ημερομηνία λήξης" #. module: base -#: field:ir.exports,resource:0 -#: field:ir.property,res_id:0 +#: field:ir.exports,resource:0 field:ir.property,res_id:0 #, fuzzy msgid "Resource" msgstr "Πόρος" @@ -4354,15 +4244,13 @@ msgstr "Αναφορά" #: model:ir.actions.act_window,name:base.action_module_open_categ #: model:ir.actions.act_window,name:base.open_module_tree #: field:wizard.module.lang.export,modules:0 -#: model:ir.ui.menu,name:base.menu_module_tree -#: view:ir.module.module:0 +#: model:ir.ui.menu,name:base.menu_module_tree view:ir.module.module:0 #, fuzzy msgid "Modules" msgstr "Αρθρώματα" #. module: base -#: selection:workflow.activity,kind:0 -#: field:workflow.activity,subflow_id:0 +#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 #: field:workflow.workitem,subflow_id:0 msgid "Subflow" msgstr "" @@ -4375,8 +4263,7 @@ msgstr "Τιμή Προστέθηκε Φόρος" #. module: base #: model:ir.actions.act_window,name:base.act_values_form -#: model:ir.ui.menu,name:base.menu_values_form -#: view:ir.values:0 +#: model:ir.ui.menu,name:base.menu_values_form view:ir.values:0 #, fuzzy msgid "Values" msgstr "Τιμές" @@ -4400,8 +4287,7 @@ msgstr "Λογότυπο" #. module: base #: model:ir.actions.act_window,name:base.action_res_bank_form #: field:res.partner,bank_ids:0 -#: model:ir.ui.menu,name:base.menu_action_res_bank_form -#: view:res.bank:0 +#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 msgid "Banks" msgstr "Τράπεζες" @@ -4427,8 +4313,7 @@ msgid "STOCK_ADD" msgstr "" #. module: base -#: view:ir.model.fields:0 -#: view:ir.model:0 +#: view:ir.model.fields:0 view:ir.model:0 #, fuzzy msgid "Security on Groups" msgstr "Ασφάλεια Ομάδες" @@ -4439,7 +4324,6 @@ msgid "center" msgstr "κέντρο" #. module: base -#, python-format #: code:addons/base/module/wizard/wizard_module_import.py:0 #, fuzzy msgid "Can not create the module file: %s !" @@ -4529,8 +4413,7 @@ msgid "Category" msgstr "Κατηγορία" #. module: base -#: view:res.request:0 -#: view:ir.model:0 +#: view:res.request:0 view:ir.model:0 msgid "Status" msgstr "Θέση" @@ -4597,8 +4480,7 @@ msgid "Modules to download" msgstr "Αρθρώματα στο" #. module: base -#: field:res.bank,fax:0 -#: field:res.partner.address,fax:0 +#: field:res.bank,fax:0 field:res.partner.address,fax:0 #, fuzzy msgid "Fax" msgstr "Φαξ" @@ -4621,17 +4503,14 @@ msgid "STOCK_PRINT_PREVIEW" msgstr "" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "The perm_read method is not implemented on this object !" msgstr "διαβασμένο είναι όχι!" #. module: base -#: field:ir.default,company_id:0 -#: field:ir.property,company_id:0 -#: field:ir.values,company_id:0 -#: field:res.users,company_id:0 +#: field:ir.default,company_id:0 field:ir.property,company_id:0 +#: field:ir.values,company_id:0 field:res.users,company_id:0 #: view:res.company:0 msgid "Company" msgstr "Εταιρεία" @@ -4639,8 +4518,12 @@ msgstr "Εταιρεία" #. module: base #: view:ir.actions.server:0 #, fuzzy -msgid "Access all the fields related to the current object easily just by defining name of the attribute, i.e. [[partner_id.name]] for Invoice Object" -msgstr "Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο Αντικείμενο" +msgid "" +"Access all the fields related to the current object easily just by defining " +"name of the attribute, i.e. [[partner_id.name]] for Invoice Object" +msgstr "" +"Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο " +"Αντικείμενο" #. module: base #: field:res.request,create_date:0 @@ -4671,8 +4554,7 @@ msgid "Not Installed" msgstr "Μη εγκατεστημένη" #. module: base -#: field:res.partner.event,canal_id:0 -#: view:res.partner.canal:0 +#: field:res.partner.event,canal_id:0 view:res.partner.canal:0 #, fuzzy msgid "Channel" msgstr "Κανάλι" @@ -4697,7 +4579,6 @@ msgid "Repeat missed" msgstr "Επανάληψη" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "Couldn't find tag '%s' in parent view !" @@ -4715,16 +4596,14 @@ msgid "ir.translation" msgstr "" #. module: base -#: field:ir.actions.act_window,limit:0 -#: field:ir.report.custom,limitt:0 +#: field:ir.actions.act_window,limit:0 field:ir.report.custom,limitt:0 msgid "Limit" msgstr "Όριο" #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 -#: view:res.request:0 +#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 msgid "Requests" msgstr "Αιτήματα" @@ -4753,8 +4632,7 @@ msgstr "Επιλογή" #: selection:ir.report.custom.fields,fc0_op:0 #: selection:ir.report.custom.fields,fc1_op:0 #: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -#: selection:ir.rule,operator:0 +#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 msgid "=" msgstr "=" @@ -4766,7 +4644,6 @@ msgid "Installed modules" msgstr "Εγκατεστημένο Επιλογές - δυνατότητες - λειτουργίες" #. module: base -#, python-format #: code:addons/base/res/partner/partner.py:0 #, fuzzy msgid "Warning" @@ -4784,8 +4661,8 @@ msgid "Operator" msgstr "Τελεστής" #. module: base -#, python-format #: code:osv/orm.py:0 +#, python-format msgid "ValidateError" msgstr "" @@ -4842,7 +4719,6 @@ msgid "Report Footer 1" msgstr "Αναφορά Υποσέλιδο 1" #. module: base -#, python-format #: code:addons/base/ir/ir_model.py:0 #, fuzzy msgid "You can not delete this document! (%s)" @@ -4892,14 +4768,13 @@ msgid "Printed:" msgstr "Τυπωμένο:" #. module: base -#, python-format #: code:addons/base/module/module.py:0 #, fuzzy msgid "Can not upgrade module '%s'. It is not installed." -msgstr "όχι αναβάθμιση άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s είναι όχι." +msgstr "" +"όχι αναβάθμιση άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s είναι όχι." #. module: base -#, python-format #: code:osv/fields.py:0 #, fuzzy msgid "Not implemented set_memory method !" @@ -4924,12 +4799,9 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_model_fields -#: model:ir.model,name:base.model_ir_model_fields -#: field:ir.model,field_id:0 -#: field:ir.property,fields_id:0 -#: field:ir.report.custom,fields_child0:0 -#: model:ir.ui.menu,name:base.ir_model_model_fields -#: view:ir.model.fields:0 +#: model:ir.model,name:base.model_ir_model_fields field:ir.model,field_id:0 +#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields view:ir.model.fields:0 #: view:ir.model:0 msgid "Fields" msgstr "Πεδία" @@ -4940,21 +4812,18 @@ msgid "Interface" msgstr "Διεπαφή" #. module: base -#: model:ir.ui.menu,name:base.menu_base_config -#: view:ir.sequence:0 +#: model:ir.ui.menu,name:base.menu_base_config view:ir.sequence:0 #: view:res.company:0 msgid "Configuration" msgstr "Διαμόρφωση" #. module: base -#: field:ir.model.fields,ttype:0 -#: view:ir.model:0 +#: field:ir.model.fields,ttype:0 view:ir.model:0 msgid "Field Type" msgstr "Τύπος πεδίων " #. module: base -#: field:ir.model.fields,complete_name:0 -#: field:ir.ui.menu,complete_name:0 +#: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 msgid "Complete Name" msgstr "Πλήρες όνομα" @@ -4999,7 +4868,6 @@ msgid "Cascade" msgstr "Διαδοχική" #. module: base -#, python-format #: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy msgid "Field %d should be a figure" @@ -5014,8 +4882,8 @@ msgid "Gantt" msgstr "Gantt" #. module: base -#, python-format #: code:osv/fields.py:0 +#, python-format msgid "Not Implemented" msgstr "Μη εφαρμοσμένο" @@ -5049,8 +4917,7 @@ msgid "Comment" msgstr "Σχόλιο" #. module: base -#: field:ir.model.fields,domain:0 -#: field:ir.rule,domain:0 +#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 #: field:res.partner.title,domain:0 msgid "Domain" msgstr "Τομέας" @@ -5058,8 +4925,12 @@ msgstr "Τομέας" #. module: base #: view:res.config.view:0 #, fuzzy -msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." -msgstr "Επιλογή για πρώτο διάρκεια επιλογές ή κρυμμένος Εσείς στο αλλαγή Διαχείριση." +msgid "" +"Choose the simplified interface if you are testing OpenERP for the first " +"time. Less used options or fields are automatically hidden. You will be able " +"to change this, later, through the Administration menu." +msgstr "" +"Επιλογή για πρώτο διάρκεια επιλογές ή κρυμμένος Εσείς στο αλλαγή Διαχείριση." #. module: base #: selection:ir.ui.menu,icon:0 @@ -5075,7 +4946,9 @@ msgstr "Μικρή περιγραφή" #. module: base #: help:ir.actions.report.xml,attachment:0 #, fuzzy -msgid "This is the prefix of the file name the print will be saved as attachement. Keep empty to not save the printed reports" +msgid "" +"This is the prefix of the file name the print will be saved as attachement. " +"Keep empty to not save the printed reports" msgstr "είναι από αρχείο όνομα Διατήρηση κενό στο όχι" #. module: base @@ -5126,18 +4999,25 @@ msgstr "έκθεση / αναφορά" #. module: base #: view:wizard.module.lang.export:0 #, fuzzy -msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." -msgstr "Προς μερικές από από από για άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο όλα σε." +msgid "" +"To improve some terms of the official translations of OpenERP, you should " +"modify the terms directly on the launchpad interface. If you made lots of " +"translations for your own module, you can also publish all your translation " +"at once." +msgstr "" +"Προς μερικές από από από για άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο όλα " +"σε." #. module: base #: view:res.users:0 #, fuzzy -msgid "Please note that you will have to logout and relog if you change your password." +msgid "" +"Please note that you will have to logout and relog if you change your " +"password." msgstr "σημείωση στο και αλλαγή κωδικός πρόσβασης." #. module: base -#: field:res.partner,address:0 -#: view:res.partner.address:0 +#: field:res.partner,address:0 view:res.partner.address:0 msgid "Contacts" msgstr "Επαφές" @@ -5176,7 +5056,6 @@ msgid "Module dependency" msgstr "Άρθρωμα εξάρτηση" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "The name_get method is not implemented on this object !" @@ -5207,8 +5086,7 @@ msgid "Report custom" msgstr "Αναφορά" #. module: base -#: field:workflow.activity,action_id:0 -#: view:ir.actions.server:0 +#: field:workflow.activity,action_id:0 view:ir.actions.server:0 #, fuzzy msgid "Server Action" msgstr "Εξυπηρετητής Ενέργεια" @@ -5226,10 +5104,8 @@ msgid "Year: %(year)s" msgstr "Έτος έτος s" #. module: base -#: field:ir.actions.server,name:0 -#: field:ir.actions.url,name:0 -#: field:ir.actions.act_window,name:0 -#: field:ir.actions.act_window_close,name:0 +#: field:ir.actions.server,name:0 field:ir.actions.url,name:0 +#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 #: field:ir.actions.actions,name:0 #, fuzzy msgid "Action Name" @@ -5275,16 +5151,13 @@ msgid "Calculate Count" msgstr "Υπολογισμός Μέτρηση" #. module: base -#: field:ir.module.module,dependencies_id:0 -#: view:ir.module.module:0 +#: field:ir.module.module,dependencies_id:0 view:ir.module.module:0 msgid "Dependencies" msgstr "" #. module: base -#: field:ir.cron,user_id:0 -#: field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 -#: field:res.partner.event,user_id:0 +#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 #: view:res.users:0 msgid "User" msgstr "Χρήστης" @@ -5315,7 +5188,6 @@ msgid "Import a Translation File" msgstr "Εισαγωγή a Μετάφραση Αρχείο" #. module: base -#, python-format #: code:addons/base/ir/ir_actions.py:0 #, fuzzy msgid "Please specify the Partner Email address !" @@ -5356,7 +5228,9 @@ msgstr "Μετάβαση" #. module: base #: wizard_view:module.lang.import,init:0 #, fuzzy -msgid "You have to import a .CSV file wich is encoded in UTF-8. Please check that the first line of your file is:" +msgid "" +"You have to import a .CSV file wich is encoded in UTF-8. Please check that " +"the first line of your file is:" msgstr "Εσείς στο a CSV αρχείο είναι σε Έλεγχος πρώτο γραμμή από αρχείο είναι:" #. module: base @@ -5381,12 +5255,10 @@ msgid "res.partner.som" msgstr "" #. module: base -#, python-format -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/ir/ir_actions.py:0 code:addons/base/ir/ir_model.py:0 +#: code:addons/base/module/module.py:0 code:addons/base/res/res_currency.py:0 #: code:addons/base/res/res_user.py:0 +#, python-format msgid "Error" msgstr "Σφάλμα" @@ -5405,8 +5277,7 @@ msgid "workflow.activity" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 +#: field:ir.sequence,code:0 field:ir.sequence.type,code:0 #, fuzzy msgid "Sequence Code" msgstr "Κώδικας" @@ -5476,8 +5347,7 @@ msgid "res.partner.title" msgstr "τίτλος" #. module: base -#: view:res.company:0 -#: view:res.partner:0 +#: view:res.company:0 view:res.partner:0 #, fuzzy msgid "General Information" msgstr "Γενικές πληροφορίες" @@ -5500,8 +5370,7 @@ msgid "res.company" msgstr "" #. module: base -#: field:ir.actions.server,fields_lines:0 -#: view:ir.actions.server:0 +#: field:ir.actions.server,fields_lines:0 view:ir.actions.server:0 #, fuzzy msgid "Fields Mapping" msgstr "Πεδία Αντιστοίχηση" @@ -5517,15 +5386,13 @@ msgstr "Πίνακας Κωδ." #: wizard_button:server.action.create,step_1,end:0 #: wizard_button:server.action.create,init,end:0 #: wizard_button:module.upgrade,start,end:0 -#: wizard_button:module.upgrade,end,end:0 -#: view:wizard.module.lang.export:0 +#: wizard_button:module.upgrade,end,end:0 view:wizard.module.lang.export:0 #, fuzzy msgid "Close" msgstr "Κλείσιμο" #. module: base -#: field:ir.sequence,name:0 -#: field:ir.sequence.type,name:0 +#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 #, fuzzy msgid "Sequence Name" msgstr "Όνομα" @@ -5566,8 +5433,7 @@ msgid "Factor" msgstr "Παράγοντας" #. module: base -#: field:res.partner,category_id:0 -#: view:res.partner:0 +#: field:res.partner,category_id:0 view:res.partner:0 msgid "Categories" msgstr "Κατηγορίες" @@ -5583,8 +5449,7 @@ msgid "Arguments" msgstr "Ορίσματα" #. module: base -#: field:workflow.instance,res_type:0 -#: field:workflow,osv:0 +#: field:workflow.instance,res_type:0 field:workflow,osv:0 #, fuzzy msgid "Resource Object" msgstr "Πόρος Αντικείμενο" @@ -5607,8 +5472,7 @@ msgid "Payment term (short name)" msgstr "Πληρωμή όνομα" #. module: base -#: field:ir.cron,function:0 -#: field:res.partner.address,function:0 +#: field:ir.cron,function:0 field:res.partner.address,function:0 #: selection:workflow.activity,kind:0 #, fuzzy msgid "Function" @@ -5626,18 +5490,13 @@ msgid "res.config.view" msgstr "" #. module: base -#: field:ir.attachment,description:0 -#: field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 -#: field:res.partner.event,description:0 -#: view:res.partner.event:0 -#: view:res.request:0 -#: view:ir.attachment:0 +#: field:ir.attachment,description:0 field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 field:res.partner.event,description:0 +#: view:res.partner.event:0 view:res.request:0 view:ir.attachment:0 msgid "Description" msgstr "Περιγραφή" #. module: base -#, python-format #: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy msgid "Invalid operation" @@ -5661,8 +5520,7 @@ msgid "STOCK_INDENT" msgstr "" #. module: base -#: field:ir.exports.line,name:0 -#: field:res.partner.bank.type.field,name:0 +#: field:ir.exports.line,name:0 field:res.partner.bank.type.field,name:0 #, fuzzy msgid "Field name" msgstr "Όνομα πεδίου" @@ -5679,7 +5537,6 @@ msgid "ir.attachment" msgstr "συνημμένο" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "The value \"%s\" for the field \"%s\" is not in the selection" @@ -5699,8 +5556,7 @@ msgstr "Ροή των Εργασιών" #. module: base #: wizard_field:res.partner.sms_send,init,password:0 -#: field:ir.model.config,password:0 -#: field:res.users,password:0 +#: field:ir.model.config,password:0 field:res.users,password:0 #, fuzzy msgid "Password" msgstr "Κωδικός πρόσβασης" @@ -5717,8 +5573,7 @@ msgid "Export language" msgstr "Εξαγωγή γλώσσας" #. module: base -#: field:res.partner,customer:0 -#: selection:res.partner.event,partner_type:0 +#: field:res.partner,customer:0 selection:res.partner.event,partner_type:0 #, fuzzy msgid "Customer" msgstr "Πελάτης" @@ -5736,8 +5591,7 @@ msgid "Delete Permission" msgstr "Διαγραφή Δικαίωμα" #. module: base -#: field:ir.actions.report.custom,name:0 -#: field:ir.report.custom,name:0 +#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 #, fuzzy msgid "Report Name" msgstr "Αναφορά Όνομα" @@ -5761,12 +5615,9 @@ msgid "Mass Mailing" msgstr "Μαζική αποστολή" #. module: base -#: model:ir.model,name:base.model_res_country -#: field:res.bank,country:0 -#: field:res.country.state,country_id:0 -#: field:res.partner.address,country_id:0 -#: field:res.partner.bank,country_id:0 -#: field:res.partner,country:0 +#: model:ir.model,name:base.model_res_country field:res.bank,country:0 +#: field:res.country.state,country_id:0 field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 field:res.partner,country:0 #: view:res.country:0 msgid "Country" msgstr "Χώρα" @@ -5852,12 +5703,9 @@ msgstr "Διευθύνσεις" #. module: base #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.actions.todo,sequence:0 -#: field:ir.module.repository,sequence:0 -#: field:ir.report.custom.fields,sequence:0 -#: field:ir.ui.menu,sequence:0 -#: field:ir.ui.view_sc,sequence:0 -#: field:res.partner.bank,sequence:0 +#: field:ir.actions.todo,sequence:0 field:ir.module.repository,sequence:0 +#: field:ir.report.custom.fields,sequence:0 field:ir.ui.menu,sequence:0 +#: field:ir.ui.view_sc,sequence:0 field:res.partner.bank,sequence:0 #: field:wizard.ir.model.menu.create.line,sequence:0 msgid "Sequence" msgstr "Ακολουθία" @@ -5865,7 +5713,9 @@ msgstr "Ακολουθία" #. module: base #: help:res.partner.address,type:0 #, fuzzy -msgid "Used to select automatically the right address according to the context in sales and purchases documents." +msgid "" +"Used to select automatically the right address according to the context in " +"sales and purchases documents." msgstr "Σε χρήση στο επιλογή δεξιά διεύθυνση στο σε και έγγραφα." #. module: base @@ -5910,7 +5760,6 @@ msgid "Cancel Install" msgstr "Ακύρωση Εγκατάσταση" #. module: base -#, python-format #: code:osv/orm.py:0 #, fuzzy msgid "Please check that all your lines have %d columns." @@ -5927,3 +5776,2662 @@ msgstr "Γλώσσα εισαγωγών" msgid "XML Identifier" msgstr "XML Αναγνωριστικό" +#. module: base +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" +msgstr "" + +#. module: base +#: model:res.country,name:base.sh +msgid "Saint Helena" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%j - Day of the year as a decimal number [001,366]." +msgstr "" + +#. module: base +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "" + +#. module: base +#: model:res.country,name:base.cm +msgid "Cameroon" +msgstr "" + +#. module: base +#: model:res.country,name:base.bf +msgid "Burkina Faso" +msgstr "" + +#. module: base +#: model:res.country,name:base.tg +msgid "Togo" +msgstr "" + +#. module: base +#: model:res.country,name:base.cc +msgid "Cocos (Keeling) Islands" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Hungarian / Magyar" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "" + +#. module: base +#: model:res.country,name:base.ru +msgid "Russian Federation" +msgstr "" + +#. module: base +#: field:ir.actions.server,wkf_model_id:0 +msgid "Workflow On" +msgstr "" + +#. module: base +#: model:res.country,name:base.dm +msgid "Dominica" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch / Nederlands" +msgstr "" + +#. module: base +#: model:res.country,name:base.pm +msgid "Saint Pierre and Miquelon" +msgstr "" + +#. module: base +#: model:res.country,name:base.to +msgid "Tonga" +msgstr "" + +#. module: base +#: model:res.country,name:base.vu +msgid "Vanuatu" +msgstr "" + +#. module: base +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "1cm 28cm 20cm 28cm" +msgstr "" + +#. module: base +#: model:res.country,name:base.mo +msgid "Macau" +msgstr "" + +#. module: base +#: model:res.country,name:base.bj +msgid "Benin" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "12. %w ==> 5 ( Friday is the 6th day)" +msgstr "" + +#. module: base +#: constraint:res.partner.category:0 +msgid "Error ! You can not create recursive categories." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%x - Appropriate date representation." +msgstr "" + +#. module: base +#: help:ir.module.repository,filter:0 +msgid "" +"Regexp to search module on the repository webpage:\n" +"- The first parenthesis must match the name of the module.\n" +"- The second parenthesis must match the whole version number.\n" +"- The last parenthesis must match the extension of the module." +msgstr "" + +#. module: base +#: field:ir.default,field_name:0 +msgid "Object Field" +msgstr "" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_simple_view +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 "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_5 +msgid "Gold Partner" +msgstr "" + +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + +#. module: base +#: model:res.country,name:base.tj +msgid "Tajikistan" +msgstr "" + +#. module: base +#: model:res.country,name:base.tr +msgid "Turkey" +msgstr "" + +#. module: base +#: model:res.country,name:base.fk +msgid "Falkland Islands" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form_action +#: model:ir.ui.menu,name:base.menu_values_form_action +msgid "Connect Actions To Client Events" +msgstr "" + +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" +msgstr "" + +#. module: base +#: model:res.country,name:base.nr +msgid "Nauru" +msgstr "" + +#. module: base +#: model:res.country,name:base.no +msgid "Norway" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "4. %b, %B ==> Dec, December" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Load an Official Translation" +msgstr "" + +#. module: base +#: model:res.country,name:base.me +msgid "Montenegro" +msgstr "" + +#. module: base +#: help:ir.actions.server,loop_action:0 +msgid "" +"Select the action that will be executed. Loop action will not be avaliable " +"inside loop." +msgstr "" + +#. module: base +#: model:res.country,name:base.va +msgid "Holy See (Vatican City State)" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Connect Events to Actions" +msgstr "" + +#. module: base +#: model:res.country,name:base.cs +msgid "Serbia and Montenegro" +msgstr "" + +#. module: base +#: field:ir.values,meta_unpickle:0 +msgid "Metadata" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%m - Month as a decimal number [01,12]." +msgstr "" + +#. module: base +#: model:res.country,name:base.id +msgid "Indonesia" +msgstr "" + +#. module: base +#: model:res.country,name:base.ly +msgid "Libya" +msgstr "" + +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" +msgstr "" + +#. module: base +#: model:res.country,name:base.cf +msgid "Central African Republic" +msgstr "" + +#. module: base +#: model:res.country,name:base.li +msgid "Liechtenstein" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_ltd +msgid "Ltd" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +msgid "Wizard Name" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%y - Year without century as a decimal number [00,99]." +msgstr "" + +#. module: base +#: model:res.country,name:base.as +msgid "American Samoa" +msgstr "" + +#. module: base +#: model:res.country,name:base.pt +msgid "Portugal" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_12 +msgid "Segmentation" +msgstr "" + +#. module: base +#: field:ir.module.module,certificate:0 +msgid "Quality Certificate" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "6. %d, %m ==> 05, 12" +msgstr "" + +#. module: base +#: model:res.country,name:base.sm +msgid "San Marino" +msgstr "" + +#. module: base +#: help:res.partner,customer:0 +msgid "Check this box if the partner is a customer." +msgstr "" + +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + +#. module: base +#: model:res.country,name:base.kw +msgid "Kuwait" +msgstr "" + +#. module: base +#: model:res.country,name:base.cr +msgid "Costa Rica" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +msgid "" +"This is the filename of the attachment used to store the printing result. " +"Keep empty to not save the printed reports. You can use a python expression " +"with the object and time variables." +msgstr "" + +#. module: base +#: model:res.country,name:base.ng +msgid "Nigeria" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + +#. module: base +#: model:res.country,name:base.ec +msgid "Ecuador" +msgstr "" + +#. module: base +#: model:res.country,name:base.au +msgid "Australia" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + +#. module: base +#: model:res.country,name:base.zr +msgid "Zaire" +msgstr "" + +#. module: base +#: field:res.lang,date_format:0 +msgid "Date Format" +msgstr "" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export Name" +msgstr "" + +#. module: base +#: model:res.country,name:base.an +msgid "Netherlands Antilles" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + +#. module: base +#: model:res.country,name:base.hk +msgid "Hong Kong" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" + +#. module: base +#: help:ir.actions.server,name:0 +msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" +msgstr "" + +#. module: base +#: field:res.currency,rate:0 +msgid "Current Rate" +msgstr "" + +#. module: base +#: model:res.country,name:base.gf +msgid "French Guyana" +msgstr "" + +#. module: base +#: model:res.country,name:base.dk +msgid "Denmark" +msgstr "" + +#. module: base +#: model:res.country,name:base.ph +msgid "Philippines" +msgstr "" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" +msgstr "" + +#. module: base +#: model:res.country,name:base.ma +msgid "Morocco" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bosnian / bosanski jezik" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "10. %S ==> 20" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,attachment_use:0 +msgid "" +"If you check this, then the second time the user prints with same attachment " +"name, it returns the previous report." +msgstr "" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Partial" +msgstr "" + +#. module: base +#: help:ir.actions.server,subject:0 +msgid "" +"Specify the subject. You can use fields from the object, e.g. `Hello " +"[[ object.partner_id.name ]]`" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "" + +#. module: base +#: model:res.country,name:base.ee +msgid "Estonia" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%a - Abbreviated weekday name." +msgstr "" + +#. module: base +#: model:res.country,name:base.lb +msgid "Lebanon" +msgstr "" + +#. module: base +#: model:res.country,name:base.pf +msgid "Polynesia (French)" +msgstr "" + +#. module: base +#: model:res.country,name:base.co +msgid "Colombia" +msgstr "" + +#. module: base +#: field:res.roles,child_id:0 +msgid "Children" +msgstr "" + +#. module: base +#: model:res.country,name:base.pw +msgid "Palau" +msgstr "" + +#. module: base +#: model:res.country,name:base.ke +msgid "Kenya" +msgstr "" + +#. module: base +#: model:res.country,name:base.np +msgid "Nepal" +msgstr "" + +#. module: base +#: field:workflow.activity,in_transitions:0 +msgid "Incoming Transitions" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "el_GR" +msgstr "" + +#. module: base +#: model:res.country,name:base.sr +msgid "Suriname" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level Objects" +msgstr "" + +#. module: base +#: help:ir.actions.server,action_id:0 +msgid "Select the Action Window, Report, Wizard to be executed." +msgstr "" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field +msgid "acc_number" +msgstr "" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Unvalid" +msgstr "" + +#. module: base +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "" + +#. module: base +#: model:res.country,name:base.jo +msgid "Jordan" +msgstr "" + +#. module: base +#: model:res.country,name:base.md +msgid "Moldavia" +msgstr "" + +#. module: base +#: model:res.country,name:base.er +msgid "Eritrea" +msgstr "" + +#. module: base +#: model:res.country,name:base.cd +msgid "Congo, The Democratic Republic of the" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bulgarian / български" +msgstr "" + +#. module: base +#: model:res.country,name:base.re +msgid "Reunion (French)" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 +msgid "Version" +msgstr "" + +#. module: base +#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 +msgid "Object ID" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +msgid "Default Properties" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Slovenian / slovenščina" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "" + +#. module: base +#: model:res.country,name:base.bv +msgid "Bouvet Island" +msgstr "" + +#. module: base +#: model:res.country,name:base.rs +msgid "Serbia" +msgstr "" + +#. module: base +#: view:res.payterm:0 +msgid "Payment Term" +msgstr "" + +#. module: base +#: help:ir.actions.server,sequence:0 +msgid "" +"Important when you deal with multiple actions, the execution order will be " +"decided based on this, low number is higher priority." +msgstr "" + +#. module: base +#: model:res.country,name:base.cx +msgid "Christmas Island" +msgstr "" + +#. module: base +#: model:res.country,name:base.kh +msgid "Cambodia, Kingdom of" +msgstr "" + +#. module: base +#: model:res.country,name:base.gr +msgid "Greece" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "User Interface" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Croatian / hrvatski jezik" +msgstr "" + +#. module: base +#: model:res.country,name:base.mv +msgid "Maldives" +msgstr "" + +#. module: base +#: help:ir.actions.server,code:0 +msgid "Python code to be executed" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%b - Abbreviated month name." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%c - Appropriate date and time representation." +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,attachment_use:0 +msgid "Reload from Attachment" +msgstr "" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner Category" +msgstr "" + +#. module: base +#: help:ir.actions.server,write_id:0 +msgid "" +"Provide the field name that the record id refers to for the write operation. " +"If it is empty it will refer to the active id of the object." +msgstr "" + +#. module: base +#: model:res.country,name:base.bo +msgid "Bolivia" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e. [[ object.partner_id.name ]]" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Close" +msgstr "" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Full" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_4 +msgid "Basic Partner" +msgstr "" + +#. module: base +#: model:res.country,name:base.gt +msgid "Guatemala" +msgstr "" + +#. module: base +#: model:res.country,name:base.es +msgid "Spain" +msgstr "" + +#. module: base +#: model:res.country,name:base.om +msgid "Oman" +msgstr "" + +#. module: base +#: field:res.lang,time_format:0 +msgid "Time Format" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Iteration" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_low_workflow +msgid "Workflow Items" +msgstr "" + +#. module: base +#: model:res.country,name:base.ga +msgid "Gabon" +msgstr "" + +#. module: base +#: model:res.country,name:base.nu +msgid "Niue" +msgstr "" + +#. module: base +#: model:res.country,name:base.gl +msgid "Greenland" +msgstr "" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account Number" +msgstr "" + +#. module: base +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" +msgstr "" + +#. module: base +#: model:res.country,name:base.in +msgid "India" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "1. %c ==> Fri Dec 5 18:25:20 2008" +msgstr "" + +#. module: base +#: help:ir.ui.menu,groups_id:0 +msgid "" +"If you have groups, the visibility of this menu will be based on these " +"groups. If this field is empty, Open ERP will compute visibility based on " +"the related object's read access." +msgstr "" + +#. module: base +#: model:res.country,name:base.nc +msgid "New Caledonia (French)" +msgstr "" + +#. module: base +#: model:res.country,name:base.ls +msgid "Lesotho" +msgstr "" + +#. module: base +#: field:res.partner.function,name:0 +msgid "Function Name" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Grant Access To Menus" +msgstr "" + +#. module: base +#: model:res.country,name:base.tz +msgid "Tanzania" +msgstr "" + +#. module: base +#: model:res.country,name:base.cz +msgid "Czech Republic" +msgstr "" + +#. module: base +#: model:res.country,name:base.mr +msgid "Mauritania" +msgstr "" + +#. module: base +#: model:res.country,name:base.sb +msgid "Solomon Islands" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + +#. module: base +#: model:res.country,name:base.ad +msgid "Andorra, Principality of" +msgstr "" + +#. module: base +#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 +msgid "Child Categories" +msgstr "" + +#. module: base +#: model:res.country,name:base.bm +msgid "Bermuda" +msgstr "" + +#. module: base +#: model:res.country,name:base.pe +msgid "Peru" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "8. %I:%M:%S %p ==> 06:25:20 PM" +msgstr "" + +#. module: base +#: model:res.country,name:base.mx +msgid "Mexico" +msgstr "" + +#. module: base +#: model:res.country,name:base.gu +msgid "Guam (USA)" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child3:0 +msgid "Field child3" +msgstr "" + +#. module: base +#: model:res.country,name:base.tn +msgid "Tunisia" +msgstr "" + +#. module: base +#: model:res.country,name:base.cn +msgid "China" +msgstr "" + +#. module: base +#: field:ir.cron,nextcall:0 +msgid "Next Call Date" +msgstr "" + +#. module: base +#: model:res.country,name:base.ua +msgid "Ukraine" +msgstr "" + +#. module: base +#: model:res.country,name:base.eh +msgid "Western Sahara" +msgstr "" + +#. module: base +#: model:res.country,name:base.ky +msgid "Cayman Islands" +msgstr "" + +#. module: base +#: model:res.country,name:base.mu +msgid "Mauritius" +msgstr "" + +#. module: base +#: model:res.country,name:base.ml +msgid "Mali" +msgstr "" + +#. module: base +#: model:res.country,name:base.bg +msgid "Bulgaria" +msgstr "" + +#. module: base +#: model:res.country,name:base.ao +msgid "Angola" +msgstr "" + +#. module: base +#: model:res.country,name:base.tf +msgid "French Southern Territories" +msgstr "" + +#. module: base +#: model:res.country,name:base.td +msgid "Chad" +msgstr "" + +#. module: base +#: model:res.country,name:base.za +msgid "South Africa" +msgstr "" + +#. module: base +#: model:res.country,name:base.tk +msgid "Tokelau" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Only one client action will be execute, last " +"clinent action will be consider in case of multiples clients actions" +msgstr "" + +#. module: base +#: model:res.country,name:base.bn +msgid "Brunei Darussalam" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%Y - Year with century as a decimal number." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish (AR) / Español (AR)" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "5. %y, %Y ==> 08, 2008" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + +#. module: base +#: model:res.country,name:base.hu +msgid "Hungary" +msgstr "" + +#. module: base +#: model:res.country,name:base.ne +msgid "Niger" +msgstr "" + +#. module: base +#: model:res.country,name:base.ba +msgid "Bosnia-Herzegovina" +msgstr "" + +#. module: base +#: model:res.country,name:base.br +msgid "Brazil" +msgstr "" + +#. module: base +#: view:res.lang:0 +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 "" + +#. module: base +#: model:res.country,name:base.sy +msgid "Syria" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "======================================================" +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child2:0 +msgid "Field child2" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child0:0 +msgid "Field child0" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child1:0 +msgid "Field child1" +msgstr "" + +#. module: base +#: model:res.country,name:base.ir +msgid "Iran" +msgstr "" + +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "" +"Provide the field name where the record id is stored after the create " +"operations. If it is empty, you can not track the new record." +msgstr "" + +#. module: base +#: model:res.country,name:base.dz +msgid "Algeria" +msgstr "" + +#. module: base +#: model:res.country,name:base.gs +msgid "S. Georgia & S. Sandwich Isls." +msgstr "" + +#. module: base +#: field:ir.actions.url,url:0 +msgid "Action URL" +msgstr "" + +#. module: base +#: model:res.country,name:base.mh +msgid "Marshall Islands" +msgstr "" + +#. module: base +#: model:res.country,name:base.ki +msgid "Kiribati" +msgstr "" + +#. module: base +#: model:res.country,name:base.ht +msgid "Haiti" +msgstr "" + +#. module: base +#: model:res.country,name:base.iq +msgid "Iraq" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: base +#: model:res.country,name:base.cl +msgid "Chile" +msgstr "" + +#. module: base +#: model:res.country,name:base.gm +msgid "Gambia" +msgstr "" + +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" + +#. module: base +#: model:res.country,name:base.be +msgid "Belgium" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: base +#: field:res.lang,decimal_point:0 +msgid "Decimal Separator" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation Done" +msgstr "" + +#. module: base +#: model:res.country,name:base.gq +msgid "Equatorial Guinea" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Swedish / svenska" +msgstr "" + +#. module: base +#: model:res.country,name:base.dj +msgid "Djibouti" +msgstr "" + +#. module: base +#: model:res.country,name:base.ag +msgid "Antigua and Barbuda" +msgstr "" + +#. module: base +#: field:res.company,child_ids:0 +msgid "Child Companies" +msgstr "" + +#. module: base +#: model:res.country,name:base.ni +msgid "Nicaragua" +msgstr "" + +#. module: base +#: model:res.country,name:base.ck +msgid "Cook Islands" +msgstr "" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" +msgstr "" + +#. module: base +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Maintenance contract added !" +msgstr "" + +#. module: base +#: help:ir.actions.server,email:0 +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 "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import New Language" +msgstr "" + +#. module: base +#: model:res.country,name:base.ve +msgid "Venezuela" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "9. %j ==> 340" +msgstr "" + +#. module: base +#: model:res.country,name:base.is +msgid "Iceland" +msgstr "" + +#. module: base +#: model:res.country,name:base.zm +msgid "Zambia" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + +#. module: base +#: model:res.country,name:base.vg +msgid "Virgin Islands (British)" +msgstr "" + +#. module: base +#: model:res.country,name:base.mw +msgid "Malawi" +msgstr "" + +#. module: base +#: model:res.country,name:base.sj +msgid "Svalbard and Jan Mayen Islands" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "" + +#. module: base +#: field:res.payterm,name:0 +msgid "Payment Term (short name)" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + +#. module: base +#: model:res.country,name:base.ms +msgid "Montserrat" +msgstr "" + +#. module: base +#: model:res.country,name:base.gy +msgid "Guyana" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese (BR) / português (BR)" +msgstr "" + +#. module: base +#: field:ir.actions.server,record_id:0 +msgid "Create Id" +msgstr "" + +#. module: base +#: model:res.country,name:base.hn +msgid "Honduras" +msgstr "" + +#. module: base +#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 +msgid "Covered Modules" +msgstr "" + +#. module: base +#: model:res.country,name:base.aq +msgid "Antarctica" +msgstr "" + +#. module: base +#: field:ir.exports.line,export_id:0 +msgid "Export" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" +msgstr "" + +#. module: base +#: model:res.country,name:base.na +msgid "Namibia" +msgstr "" + +#. module: base +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "" + +#. module: base +#: model:res.country,name:base.tp +msgid "East Timor" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Web" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflow Definitions" +msgstr "" + +#. module: base +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +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 "" + +#. module: base +#: model:res.country,name:base.uk +msgid "United Kingdom" +msgstr "" + +#. module: base +#: model:res.country,name:base.et +msgid "Ethiopia" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." +msgstr "" + +#. module: base +#: help:res.country.state,code:0 +msgid "The state code in three chars.\n" +msgstr "" + +#. module: base +#: model:res.country,name:base.kg +msgid "Kyrgyz Republic (Kyrgyzstan)" +msgstr "" + +#. module: base +#: model:res.country,name:base.uz +msgid "Uzbekistan" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_module +msgid "maintenance contract modules" +msgstr "" + +#. module: base +#: model:res.country,name:base.tw +msgid "Taiwan" +msgstr "" + +#. module: base +#: model:res.country,name:base.lr +msgid "Liberia" +msgstr "" + +#. module: base +#: help:ir.values,res_id:0 +msgid "Keep 0 if the action must appear on all resources." +msgstr "" + +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "Select the obect on which the action will work (read, write, create)." +msgstr "" + +#. module: base +#: field:ir.actions.server,write_id:0 +msgid "Write Id" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" + +#. module: base +#: model:res.country,name:base.mc +msgid "Monaco" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" + +#. module: base +#: field:ir.module.category,module_nr:0 +msgid "Number of Modules" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "SMS Configuration" +msgstr "" + +#. module: base +#: model:res.country,name:base.kn +msgid "Saint Kitts & Nevis Anguilla" +msgstr "" + +#. module: base +#: help:ir.actions.server,condition:0 +msgid "" +"Condition that is to be tested before action is executed, e.g. object." +"list_price > object.cost_price" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "7. %H:%M:%S ==> 18:25:20" +msgstr "" + +#. module: base +#: help:ir.actions.server,message:0 +msgid "" +"Specify the message. You can use the fields from the object. e.g. `Dear " +"[[ object.partner_id.name ]]`" +msgstr "" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +msgid "Bank Type" +msgstr "" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export ID" +msgstr "" + +#. module: base +#: model:res.country,name:base.fr +msgid "France" +msgstr "" + +#. module: base +#: view:res.partner.bank:0 +msgid "Bank Account Owner" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form +#: model:ir.ui.menu,name:base.menu_values_form +msgid "Client Actions Connections" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +msgid "Multi Actions" +msgstr "" + +#. module: base +#: model:res.country,name:base.af +msgid "Afghanistan, Islamic State of" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group By" +msgstr "" + +#. module: base +#: model:res.country,name:base.gp +msgid "Guadeloupe (French)" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Catalan / Català" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Accumulate" +msgstr "" + +#. module: base +#: model:res.country,name:base.do +msgid "Dominican Republic" +msgstr "" + +#. module: base +#: view:res.lang:0 +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 "" + +#. module: base +#: model:res.country,name:base.gh +msgid "Ghana" +msgstr "" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of Calls" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Could you check your contract information ?" +msgstr "" + +#. module: base +#: model:res.country,name:base.hm +msgid "Heard and McDonald Islands" +msgstr "" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created Date" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory" +msgstr "" + +#. module: base +#: help:res.partner,supplier:0 +msgid "" +"Check this box if the partner is a supplier. If it's not checked, purchase " +"people will not see it when encoding a purchase order." +msgstr "" + +#. module: base +#: help:res.users,password:0 +msgid "" +"Keep empty if you don't want the user to be able to connect on the system." +msgstr "" + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report Title" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish / Español" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (TW) / 正體字" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,multi:0 +msgid "Action on Multiple Doc." +msgstr "" + +#. module: base +#: model:res.country,name:base.my +msgid "Malaysia" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Client Action Configuration" +msgstr "" + +#. module: base +#: model:res.country,name:base.us +msgid "United States" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "" + +#. module: base +#: model:res.country,name:base.gn +msgid "Guinea" +msgstr "" + +#. module: base +#: model:res.country,name:base.pa +msgid "Panama" +msgstr "" + +#. module: base +#: model:res.country,name:base.lu +msgid "Luxembourg" +msgstr "" + +#. module: base +#: model:res.country,name:base.cv +msgid "Cape Verde" +msgstr "" + +#. module: base +#: model:res.country,name:base.bs +msgid "Bahamas" +msgstr "" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_step_user +msgid "" +"Create your users.\n" +"You will be able to assign groups to users. Groups define the access rights " +"of each users on the different objects of the system.\n" +" " +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: base +#: model:res.country,name:base.ie +msgid "Ireland" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: base +#: model:res.country,name:base.pn +msgid "Pitcairn Island" +msgstr "" + +#. module: base +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "" + +#. module: base +#: model:res.country,name:base.sv +msgid "El Salvador" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French / Français" +msgstr "" + +#. module: base +#: model:res.country,name:base.bz +msgid "Belize" +msgstr "" + +#. module: base +#: model:res.country,name:base.ge +msgid "Georgia" +msgstr "" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry +msgid "country_id" +msgstr "" + +#. module: base +#: model:res.country,name:base.pl +msgid "Poland" +msgstr "" + +#. module: base +#: model:res.country,name:base.ci +msgid "Ivory Coast (Cote D'Ivoire)" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard +msgid "Wizards" +msgstr "" + +#. module: base +#: help:ir.actions.server,expression:0 +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 "" + +#. module: base +#: field:ir.module.module,shortdesc:0 +msgid "Short Description" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +msgstr "" + +#. module: base +#: model:res.country,name:base.sa +msgid "Saudi Arabia" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_wizard +msgid "maintenance.contract.wizard" +msgstr "" + +#. module: base +#: field:workflow.activity,out_transitions:0 +msgid "Outgoing Transitions" +msgstr "" + +#. module: base +#: model:res.country,name:base.vi +msgid "Virgin Islands (USA)" +msgstr "" + +#. module: base +#: help:res.partner,vat:0 +msgid "" +"Value Added Tax number. Check the box if the partner is subjected to the " +"VAT. Used by the VAT legal statement." +msgstr "" + +#. module: base +#: model:res.country,name:base.cy +msgid "Cyprus" +msgstr "" + +#. module: base +#: model:res.country,name:base.bb +msgid "Barbados" +msgstr "" + +#. module: base +#: model:res.country,name:base.mg +msgid "Madagascar" +msgstr "" + +#. module: base +#: model:res.country,name:base.it +msgid "Italy" +msgstr "" + +#. module: base +#: model:res.country,name:base.fm +msgid "Micronesia" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Estonian / Eesti keel" +msgstr "" + +#. module: base +#: help:ir.rule.group,global:0 +msgid "Make the rule global, otherwise it needs to be put on a group or user" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Action To Launch" +msgstr "" + +#. module: base +#: model:res.country,name:base.um +msgid "USA Minor Outlying Islands" +msgstr "" + +#. module: base +#: model:res.country,name:base.ai +msgid "Anguilla" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese / português" +msgstr "" + +#. module: base +#: model:res.country,name:base.il +msgid "Israel" +msgstr "" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "Confirmation" +msgstr "" + +#. module: base +#: model:res.country,name:base.pg +msgid "Papua New Guinea" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" + +#. module: base +#: model:res.country,name:base.vn +msgid "Vietnam" +msgstr "" + +#. module: base +#: field:ir.actions.server,email:0 +msgid "Email Address" +msgstr "" + +#. module: base +#: help:ir.values,action_id:0 +msgid "This field is not used, it only helps you to select the right action." +msgstr "" + +#. module: base +#: model:res.country,name:base.tt +msgid "Trinidad and Tobago" +msgstr "" + +#. module: base +#: field:maintenance.contract,name:0 field:maintenance.contract.wizard,name:0 +msgid "Contract ID" +msgstr "" + +#. module: base +#: model:res.country,name:base.lv +msgid "Latvia" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%d - Day of the month as a decimal number [01,31]." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Romanian / limba română" +msgstr "" + +#. module: base +#: field:ir.cron,doall:0 +msgid "Repeat Missed" +msgstr "" + +#. module: base +#: help:ir.actions.server,state:0 +msgid "Type of the Action that is to be executed" +msgstr "" + +#. module: base +#: model:res.country,name:base.ug +msgid "Uganda" +msgstr "" + +#. module: base +#: model:res.country,name:base.cg +msgid "Congo" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "Examples" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +msgid "Customization" +msgstr "" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category without removing it." +msgstr "" + +#. module: base +#: model:res.country,name:base.py +msgid "Paraguay" +msgstr "" + +#. module: base +#: model:res.country,name:base.st +msgid "Saint Tome (Sao Tome) and Principe" +msgstr "" + +#. module: base +#: model:res.country,name:base.bw +msgid "Botswana" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +msgid "Partner Titles" +msgstr "" + +#. module: base +#: model:res.country,name:base.lt +msgid "Lithuania" +msgstr "" + +#. module: base +#: model:res.country,name:base.sk +msgid "Slovak Republic" +msgstr "" + +#. module: base +#: model:res.country,name:base.aw +msgid "Aruba" +msgstr "" + +#. module: base +#: model:res.country,name:base.ar +msgid "Argentina" +msgstr "" + +#. module: base +#: model:res.country,name:base.ch +msgid "Switzerland" +msgstr "" + +#. module: base +#: model:res.country,name:base.bh +msgid "Bahrain" +msgstr "" + +#. module: base +#: model:res.country,name:base.ye +msgid "Yemen" +msgstr "" + +#. module: base +#: field:wizard.module.lang.export,advice:0 +msgid "Advice" +msgstr "" + +#. module: base +#: model:res.country,name:base.si +msgid "Slovenia" +msgstr "" + +#. module: base +#: model:res.country,name:base.de +msgid "Germany" +msgstr "" + +#. module: base +#: help:ir.actions.server,srcmodel_id:0 +msgid "" +"Object in which you want to create / write the object. If it is empty then " +"refer to the Object field." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Lithuanian / Lietuvių kalba" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_maintenance_contract_add +#: view:maintenance.contract.wizard:0 +msgid "Add Maintenance Contract" +msgstr "" + +#. module: base +#: field:res.lang,grouping:0 +msgid "Separator Format" +msgstr "" + +#. module: base +#: model:res.country,name:base.pk +msgid "Pakistan" +msgstr "" + +#. module: base +#: model:res.country,name:base.mq +msgid "Martinique (French)" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%p - Equivalent of either AM or PM." +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Actions" +msgstr "" + +#. module: base +#: help:ir.actions.server,wkf_model_id:0 +msgid "Workflow to be executed on this model." +msgstr "" + +#. module: base +#: model:res.country,name:base.sn +msgid "Senegal" +msgstr "" + +#. module: base +#: model:res.country,name:base.ws +msgid "Samoa" +msgstr "" + +#. module: base +#: model:res.country,name:base.nz +msgid "New Zealand" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + +#. module: base +#: model:res.country,name:base.jm +msgid "Jamaica" +msgstr "" + +#. module: base +#: model:res.country,name:base.al +msgid "Albania" +msgstr "" + +#. module: base +#: field:maintenance.contract,date_stop:0 +msgid "Ending Date" +msgstr "" + +#. module: base +#: model:res.country,name:base.nf +msgid "Norfolk Island" +msgstr "" + +#. module: base +#: model:res.country,name:base.kz +msgid "Kazakhstan" +msgstr "" + +#. module: base +#: model:res.country,name:base.az +msgid "Azerbaijan" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Your Maintenance Contracts" +msgstr "" + +#. module: base +#: field:ir.ui.menu,child_id:0 +msgid "Child IDs" +msgstr "" + +#. module: base +#: model:res.country,name:base.ae +msgid "United Arab Emirates" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" + +#. module: base +#: model:res.country,name:base.gi +msgid "Gibraltar" +msgstr "" + +#. module: base +#: model:res.country,name:base.bd +msgid "Bangladesh" +msgstr "" + +#. module: base +#: model:res.country,name:base.lc +msgid "Saint Lucia" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Czech / Čeština" +msgstr "" + +#. module: base +#: field:ir.actions.server,loop_action:0 +msgid "Loop Action" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +#: view:maintenance.contract:0 +msgid "Maintenance Contract" +msgstr "" + +#. module: base +#: help:ir.actions.server,trigger_obj_id:0 +msgid "Select the object from the model on which the workflow will executed." +msgstr "" + +#. module: base +#: model:res.country,name:base.la +msgid "Laos" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the week (0:Monday): %(weekday)s" +msgstr "" + +#. module: base +#: help:ir.actions.server,mobile:0 +msgid "" +"Provides fields that be used to fetch the mobile number, e.g. you select the " +"invoice, then `object.invoice_address_id.mobile` is the field which gives " +"the correct mobile number" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "txt" +msgstr "" + +#. module: base +#: model:res.country,name:base.cu +msgid "Cuba" +msgstr "" + +#. module: base +#: field:res.partner.address,state_id:0 +msgid "Fed. State" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%S - Second as a decimal number [00,61]." +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Action Source" +msgstr "" + +#. module: base +#: model:res.country,name:base.yt +msgid "Mayotte" +msgstr "" + +#. module: base +#: model:res.country,name:base.ro +msgid "Romania" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%w - Weekday as a decimal number [0(Sunday),6]." +msgstr "" + +#. module: base +#: model:res.country,name:base.am +msgid "Armenia" +msgstr "" + +#. module: base +#: field:maintenance.contract,date_start:0 +msgid "Starting Date" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Cancel" +msgstr "" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Left-to-Right" +msgstr "" + +#. module: base +#: help:ir.actions.wizard,multi:0 +msgid "" +"If set to true, the wizard will not be displayed on the right toolbar of a " +"form view." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "3. %x ,%X ==> 12/05/08, 18:25:20" +msgstr "" + +#. module: base +#: model:res.country,name:base.se +msgid "Sweden" +msgstr "" + +#. module: base +#: field:res.partner.category,complete_name:0 +msgid "Full Name" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Validate" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%X - Appropriate time representation." +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Action Configuration" +msgstr "" + +#. module: base +#: model:res.country,name:base.qa +msgid "Qatar" +msgstr "" + +#. module: base +#: help:res.lang,grouping:0 +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 "" + +#. module: base +#: model:res.country,name:base.at +msgid "Austria" +msgstr "" + +#. module: base +#: model:res.country,name:base.mz +msgid "Mozambique" +msgstr "" + +#. module: base +#: model:res.country,name:base.tv +msgid "Tuvalu" +msgstr "" + +#. module: base +#: model:res.country,name:base.jp +msgid "Japan" +msgstr "" + +#. module: base +#: field:ir.actions.act_window.view,multi:0 +msgid "On Multiple Doc." +msgstr "" + +#. module: base +#: model:res.country,name:base.nl +msgid "Netherlands" +msgstr "" + +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + +#. module: base +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Draft" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.maintenance +msgid "Maintenance" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + +#. module: base +#: model:res.country,name:base.mp +msgid "Northern Mariana Islands" +msgstr "" + +#. module: base +#: model:res.country,name:base.by +msgid "Belarus" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Action to Launch" +msgstr "" + +#. module: base +#: model:res.country,name:base.pr +msgid "Puerto Rico" +msgstr "" + +#. module: base +#: help:ir.values,model_id:0 +msgid "This field is not used, it only helps you to select a good model." +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"If you use a formula type, use a python expression using the variable " +"'object'." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Italian / Italiano" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contact Titles" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "tlh_TLH" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" + +#. module: base +#: model:res.country,name:base.hr +msgid "Croatia" +msgstr "" + +#. module: base +#: model:res.country,name:base.mn +msgid "Mongolia" +msgstr "" + +#. module: base +#: field:ir.actions.server,mobile:0 +msgid "Mobile No" +msgstr "" + +#. module: base +#: model:res.country,name:base.th +msgid "Thailand" +msgstr "" + +#. module: base +#: model:res.country,name:base.gd +msgid "Grenada" +msgstr "" + +#. module: base +#: selection:server.action.create,init,type:0 +msgid "Open Report" +msgstr "" + +#. module: base +#: model:res.country,name:base.sc +msgid "Seychelles" +msgstr "" + +#. module: base +#: model:res.country,name:base.uy +msgid "Uruguay" +msgstr "" + +#. module: base +#: model:res.country,name:base.sl +msgid "Sierra Leone" +msgstr "" + +#. module: base +#: model:res.country,name:base.eg +msgid "Egypt" +msgstr "" + +#. module: base +#: model:res.country,name:base.rw +msgid "Rwanda" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "German / Deutsch" +msgstr "" + +#. module: base +#: help:ir.actions.server,trigger_name:0 +msgid "Select the Signal name that is to be used as the trigger." +msgstr "" + +#. module: base +#: model:res.country,name:base.bi +msgid "Burundi" +msgstr "" + +#. module: base +#: model:res.country,name:base.tc +msgid "Turks and Caicos Islands" +msgstr "" + +#. module: base +#: model:res.country,name:base.so +msgid "Somalia" +msgstr "" + +#. module: base +#: model:res.country,name:base.bt +msgid "Bhutan" +msgstr "" + +#. module: base +#: field:res.partner.bank,owner_name:0 +msgid "Account Owner" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + +#. module: base +#: model:res.country,name:base.sg +msgid "Singapore" +msgstr "" + +#. module: base +#: model:res.country,name:base.mt +msgid "Malta" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "nl_BE" +msgstr "" + +#. module: base +#: field:ir.actions.server,fields_lines:0 +msgid "Field Mappings." +msgstr "" + +#. module: base +#: field:ir.model,state:0 field:ir.model.fields,state:0 +#: field:ir.model.grid,state:0 +msgid "Manually Created" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,name:0 +msgid "Wizard Info" +msgstr "" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + +#. module: base +#: model:res.country,name:base.vc +msgid "Saint Vincent & Grenadines" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_pvt_ltd +msgid "Corp." +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Unvalidated" +msgstr "" + +#. module: base +#: model:res.country,name:base.gw +msgid "Guinea Bissau" +msgstr "" + +#. module: base +#: model:res.country,name:base.io +msgid "British Indian Ocean Territory" +msgstr "" + +#. module: base +#: model:res.country,name:base.mk +msgid "Macedonia" +msgstr "" + +#. module: base +#: model:res.country,name:base.kp +msgid "North Korea" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" + +#. module: base +#: model:res.country,name:base.zw +msgid "Zimbabwe" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_1 +msgid "Prospect" +msgstr "" + +#. module: base +#: model:res.country,name:base.mm +msgid "Myanmar" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "11. %U or %W ==> 48 (49th week)" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Russian / русский язык" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (CN) / 简体中文" +msgstr "" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Right-to-Left" +msgstr "" + +#. module: base +#: model:res.country,name:base.yu +msgid "Yugoslavia" +msgstr "" + +#. module: base +#: model:res.country,name:base.lk +msgid "Sri Lanka" +msgstr "" From 905788c1b423e2a9748f64cb5038c7795d00ee68 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 29 Jan 2009 11:05:27 +0200 Subject: [PATCH 060/251] Translations bzr revid: p_christ@hol.gr-20090129090527-cndrzrggb1352fxs --- bin/addons/base/i18n/el_GR.po | 11188 +++++++++++++++----------------- 1 file changed, 5358 insertions(+), 5830 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index edc58f9279c..89ffa638d42 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -1,40 +1,54 @@ -# translation of el_GR.po to Ellhnika # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base # -# natasje , 2008. -# P. Christeas , 2008. msgid "" msgstr "" -"Project-Id-Version: el_GR\n" +"Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-11-15 08:33:16+0000\n" -"PO-Revision-Date: 2008-12-23 20:09GMT\n" -"Last-Translator: P. Christeas \n" -"Language-Team: Ellhnika \n" +"POT-Creation-Date: 2009-01-29 07:54:57+0000\n" +"PO-Revision-Date: 2009-01-29 07:54:57+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: KBabel 1.11.4\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base -#: model:ir.actions.act_window,name:base.ir_cron_act -#: model:ir.ui.menu,name:base.menu_ir_cron_act view:ir.cron:0 -msgid "Scheduled Actions" -msgstr "Προγραμματισμένες ενέργειες" +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STOP" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window,target:0 +msgid "Current Window" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_name:0 msgid "Internal Name" msgstr "Εσωτερικό όνομα" +#. module: base +#: model:res.country,name:base.sh +msgid "Saint Helena" +msgstr "" + #. module: base #: wizard_view:res.partner.sms_send,init:0 -#, fuzzy msgid "SMS - Gateway: clickatell" -msgstr "SMS Πύλη (gateway)" +msgstr "" #. module: base #: selection:ir.report.custom,frequency:0 @@ -48,17 +62,18 @@ msgstr "Άγνωστο" #. module: base #: view:wizard.module.update_translations:0 -msgid "" -"This wizard will detect new terms in the application so that you can update " -"them manually." -msgstr "" -"Αυτός ο αυτοματισμός θα ανιχνεύσει τους νέους όρους στην εφαρμογή έτσι ώστε " -"μπορείτε να τους ενημερώσετε με το χέρι." +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "Αυτός ο αυτοματισμός θα ανιχνεύσει τους νέους όρους στην εφαρμογή έτσι ώστε μπορείτε να τους ενημερώσετε με το χέρι." #. module: base -#: field:workflow.activity,out_transitions:0 view:workflow.activity:0 -msgid "Outgoing transitions" -msgstr "Εξερχόμενες μεταβάσεις" +#: view:res.lang:0 +msgid "%j - Day of the year as a decimal number [001,366]." +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "You may have to reinstall some language pack." +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -71,9 +86,14 @@ msgid "Change My Preferences" msgstr "Αλλαγή προτιμήσεων" #. module: base -#: field:res.partner.function,name:0 -msgid "Function name" -msgstr "Όνομα λειτουργίας" +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_QUESTION" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -81,7 +101,12 @@ msgid "terp-account" msgstr "" #. module: base -#: field:res.partner.address,title:0 field:res.partner,title:0 +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "" + +#. module: base +#: field:res.partner,title:0 field:res.partner.address,title:0 #: field:res.partner.title,name:0 msgid "Title" msgstr "Τίτλος" @@ -91,5714 +116,14 @@ msgstr "Τίτλος" msgid "SMS Message" msgstr "Μήνυμα SMS" -#. module: base -#: field:ir.actions.server,otype:0 -msgid "Create Model" -msgstr "Δημιουργήστε πρότυπο" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_som-act -#: model:ir.ui.menu,name:base.menu_res_partner_som-act -msgid "States of mind" -msgstr "Ψυχικές διαθέσεις" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_ASCENDING" -msgstr "" - -#. module: base -#: view:res.groups:0 view:ir.model:0 -msgid "Access Rules" -msgstr "Κανόνες πρόσβασης" - -#. module: base -#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 -msgid "View Architecture" -msgstr "Αρχιτεκτονική άποψη" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_FORWARD" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Skipped" -msgstr "Παραβλέποντα " - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Δεν μπορείτε να δημιουργήσετε αυτό το είδος εγγράφου! (%s)" - -#. module: base -#: wizard_field:module.lang.import,init,code:0 -msgid "Code (eg:en__US)" -msgstr "Κώδικας (eg:en__US)" - -#. module: base -#: field:res.roles,parent_id:0 -msgid "Parent" -msgstr "Γονέας" - -#. module: base -#: field:workflow.activity,wkf_id:0 field:workflow.instance,wkf_id:0 -#: view:workflow:0 -msgid "Workflow" -msgstr "Ροή Εργασιών" - -#. module: base -#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 field:ir.actions.act_window,res_model:0 -#: field:ir.actions.wizard,model:0 field:ir.cron,model:0 -#: field:ir.default,field_tbl:0 field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 field:ir.model.grid,name:0 -#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 field:ir.ui.view,model:0 -#: field:ir.values,model:0 field:res.request.link,object:0 -#: field:wizard.ir.model.menu.create,model_id:0 -#: field:workflow.triggers,model:0 view:ir.model:0 -msgid "Object" -msgstr "Αντικείμενο" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To browse official translations, you can visit this link: " -msgstr "" -"Για να κοιτάξετε τις επίσημες μεταφράσεις, μπορείτε να επισκεφτείτε αυτήν " -"την σύνδεση:" - -#. module: base -#: model:ir.actions.act_window,name:base.action_module_category_tree -#: model:ir.ui.menu,name:base.menu_action_module_category_tree -msgid "Categories of Modules" -msgstr "Κατηγορίες ενοτήτων" - -#. module: base -#: model:ir.model,name:base.model_ir_default -#, fuzzy -msgid "ir.default" -msgstr "προκαθορισμένο" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Not Started" -msgstr "Δεν έχει αρχίσει " - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_ZOOM_100" -msgstr "100" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type_field -msgid "Bank type fields" -msgstr "Πεδία τύπων τράπεζας" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "type,name,res_id,src,value" -msgstr "τύπος, όνομα, res_id, src, αξία" - -#. module: base -#: field:ir.model.config,password_check:0 -msgid "confirmation" -msgstr "επιβεβαίωση" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export translation file" -msgstr "Εξαγωγή Αρχείου μεταφράσεων" - -#. module: base -#: field:res.partner.event.type,key:0 -msgid "Key" -msgstr "Κλειδί" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles_form -#: field:res.users,roles_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_roles_form view:res.roles:0 -#: view:res.users:0 -msgid "Roles" -msgstr "Ρόλοι" - -#. module: base -#: model:ir.actions.act_window,name:base.action_country -#: model:ir.ui.menu,name:base.menu_country_partner -msgid "Countries" -msgstr "Χώρες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HELP" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Λήψη μέγιστου " - -#. module: base -#: view:ir.module.module:0 -msgid "Created Views" -msgstr "Δημιουργημένες απόψεις" - -#. module: base -#: selection:res.request,priority:0 -msgid "Normal" -msgstr "Κανονικό" - -#. module: base -#: field:workflow.activity,in_transitions:0 view:workflow.activity:0 -msgid "Incoming transitions" -msgstr "Εισερχόμενες μεταβάσεις" - -#. module: base -#: field:ir.ui.view_sc,user_id:0 -msgid "User Ref." -msgstr "Χρήστης παρ." - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import new language" -msgstr "Εισαγωγή νέας γλώσσας " - -#. module: base -#: wizard_field:server.action.create,step_1,report:0 -#: wizard_view:server.action.create,step_1:0 -msgid "Select Report" -msgstr "Επιλέξτε την αναφορά" - -#. module: base -#: field:ir.report.custom.fields,fc1_condition:0 -#: field:ir.report.custom.fields,fc2_condition:0 -#: field:ir.report.custom.fields,fc3_condition:0 -msgid "condition" -msgstr "όρος" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Yearly" -msgstr "Ετήσια" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mapping" -msgstr "Χαρτογράφηση τομέων" - -#. module: base -#: field:ir.sequence,suffix:0 -msgid "Suffix" -msgstr "Επίθημα" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The unlink method is not implemented on this object !" -msgstr "Η μέθοδος αυτή δεν εφαρμόζεται σε αυτό το αντικείμενο!" - -#. module: base -#: model:ir.actions.report.xml,name:base.res_partner_address_report -msgid "Labels" -msgstr "Ετικέτες" - -#. module: base -#: field:ir.actions.act_window,target:0 -msgid "Target Window" -msgstr "Παράθυρο στόχων" - -#. module: base -#: view:ir.rule:0 -msgid "Simple domain setup" -msgstr "Απλή οργάνωση περιοχών" - -#. module: base -#: wizard_field:res.partner.spam_send,init,from:0 -msgid "Sender's email" -msgstr "Ηλεκτρονικό ταχυδρομείο αποστολέα " - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Συνοπτικός" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_activity_form -#: model:ir.ui.menu,name:base.menu_workflow_activity -msgid "Activites" -msgstr "δραστηριότητες" - -#. module: base -#: field:ir.actions.todo,start_on:0 -msgid "Start On" -msgstr "Έναρξη" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reference Guide" -msgstr "Οδηγός αναφοράς" - -#. module: base -#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 -#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 -#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 -msgid "Partner" -msgstr "Συνέταιρος" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Μεταβάσεις" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_custom -msgid "ir.ui.view.custom" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -#, fuzzy -msgid "GPL-2 or later version" -msgstr "GPL ή έκδοση" - -#. module: base -#: selection:workflow.activity,kind:0 -msgid "Stop All" -msgstr "Παύση όλων " - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_NEW" -msgstr "ΝΕΟ" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_custom -#: selection:ir.ui.menu,action:0 -#, fuzzy -msgid "ir.actions.report.custom" -msgstr "έκθεση / αναφορά" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CANCEL" -msgstr "Ακύρωση αποθέματος " - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Επαφή προοπτικής" - -#. module: base -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Άκυρο XML για αρχιτεκτονική Προβολής!" - -#. module: base -#: field:ir.report.custom,sortby:0 -msgid "Sorted By" -msgstr "Ταξινόμηση κατά " - -#. module: base -#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 -#: field:ir.actions.server,type:0 field:ir.report.custom,type:0 -msgid "Report Type" -msgstr "Τύπος αναφοράς " - -#. module: base -#: field:ir.actions.todo,state:0 field:ir.module.module.dependency,state:0 -#: field:ir.module.module,state:0 field:ir.report.custom,state:0 -#: field:res.bank,state:0 field:res.partner.address,state_id:0 -#: field:res.partner.bank,state_id:0 field:res.request,state:0 -#: field:workflow.instance,state:0 field:workflow.workitem,state:0 -#: view:res.country.state:0 -msgid "State" -msgstr "Κατάσταση Λογαριασμού" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_tree -#: model:ir.ui.menu,name:base.menu_action_res_company_tree -msgid "Company's Structure" -msgstr "Δομή επιχείρησης" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "Other proprietary" -msgstr "Άλλη ιδιοκτησία" - -#. module: base -#: field:ir.actions.server,address:0 -msgid "Email / Mobile" -msgstr "Ηλεκτρονικό ταχυδρομείο/κινητό" - -#. module: base -#: field:res.partner,comment:0 view:res.groups:0 view:ir.model:0 -#: view:res.partner:0 -msgid "Notes" -msgstr "Σημειώσεις" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation -#: model:ir.ui.menu,name:base.menu_action_translation -msgid "All terms" -msgstr "Όλοι οι όροι" - -#. module: base -#: field:res.partner.address,email:0 -msgid "Default Email" -msgstr "Προεπιλεγμένο Ηλεκτρονικό Ταχυδρομείο" - -#. module: base -#: view:res.partner:0 -msgid "General" -msgstr "Γενικό" - -#. module: base -#: field:ir.actions.wizard,name:0 -#, fuzzy -msgid "Wizard info" -msgstr "Αυτόματος Οδηγός πληροφορίες" - -#. module: base -#: model:ir.model,name:base.model_ir_property -#, fuzzy -msgid "ir.property" -msgstr "ιδιότητα" - -#. module: base -#: selection:ir.actions.act_window,view_type:0 -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Form" -msgstr "Μορφή" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Can not define a column %s. Reserved keyword !" -msgstr "Δεν μπορείτε να καθορίσετε στήλη '%s' . Κρατημένη λέξη " - -#. module: base -#: help:ir.ui.menu,groups_id:0 -msgid "" -"If you put groups, the visibility of this menu will be based on these " -"groups. If this field is empty, Open ERP will compute visibility based on " -"the related object's read access." -msgstr "" -"Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές " -"τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη " -"διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον " -"χρήστη. " - -#. module: base -#: field:workflow.transition,act_to:0 -msgid "Destination Activity" -msgstr "Δραστηριότητα προορισμού" - -#. module: base -#: view:ir.actions.server:0 -msgid "Other Actions" -msgstr "Άλλες ενέργειες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_QUIT" -msgstr "ΑΠΟΘΕΜΑ_ ΕΓΚΑΤΑΛΕΙΠΕΤΑΙ" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_search method is not implemented on this object !" -msgstr "Η μέθοδος αναζήτησης ονόματος δεν εφαρμόζεται σε αυτό το αντικείμενο!" - -#. module: base -#: selection:res.request,state:0 -msgid "waiting" -msgstr "αναμονή" - -#. module: base -#: field:res.country,name:0 -msgid "Country Name" -msgstr "Όνομα χώρας" - -#. module: base -#: field:ir.attachment,link:0 -msgid "Link" -msgstr "Σύνδεση" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Web:" -msgstr "Ιστός:" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "new" -msgstr "νέος" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_GOTO_TOP" -msgstr "TOP" - -#. module: base -#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 -#: field:ir.actions.act_window.view,multi:0 -msgid "On multiple doc." -msgstr "Σε πολλαπλά έγγραφα" - -#. module: base -#: model:ir.model,name:base.model_workflow_triggers -msgid "workflow.triggers" -msgstr "ωθήσεις ροής της δουλειάς" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,report_id:0 -msgid "Report Ref" -msgstr "Αναφορά εκθέσεων" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-hr" -msgstr "" - -#. module: base -#: field:res.partner.bank.type.field,size:0 -msgid "Max. Size" -msgstr "Μέγιστο μέγεθος" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -#: selection:ir.module.module,state:0 -msgid "To be upgraded" -msgstr "Για να αναβαθμιστεί" - -#. module: base -#: field:ir.module.category,child_ids:0 field:ir.module.category,parent_id:0 -#: field:res.partner.category,parent_id:0 -msgid "Parent Category" -msgstr "Βασική κατηγορία" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-purchase" -msgstr "" - -#. module: base -#: field:res.partner.address,name:0 -msgid "Contact Name" -msgstr "Όνομα Επαφής" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -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 "" -"Αποθηκεύστε το έγγραφο σε ένα αρχείο '%s' και επεξεργαστείτε το με ειδικό " -"λογισμικό ή έναν συντάκτη κειμένων. Η κωδικοποίηση αρχείων είναι utf-8. " - -#. module: base -#: view:ir.module.module:0 -msgid "Schedule Upgrade" -msgstr "Προγραμματισμένη αναβάθμιση " - -#. module: base -#: wizard_field:module.module.update,init,repositories:0 -msgid "Repositories" -msgstr "Χώροι αποθήκευσης" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password mismatch !" -msgstr "Κακός συνδυασμός κωδικού πρόσβασης!" - -#. module: base -#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 -msgid "Contact" -msgstr "Στοιχεία επικοινωνίας" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" -"Αυτό το url '%s' πρέπει να παρέχει σε ένα αρχείο HTML στις συνδέσεις με τις " -"ενότητες Zip" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_15 view:ir.property:0 -#: view:ir.model.fields:0 view:ir.model:0 -msgid "Properties" -msgstr "Ιδιότητες" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_menu -msgid "ir.ui.menu" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ConcurrencyException" -msgstr "Εξαίρεση συναγωνισμού" - -#. module: base -#: field:ir.actions.act_window,view_id:0 -msgid "View Ref." -msgstr "Άποψη παρ." - -#. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "μετάβαση ροής της δουλειάς" - -#. module: base -#: field:res.partner,ean13:0 -msgid "EAN13" -msgstr "EAN13" - -#. module: base -#: model:ir.actions.act_window,name:base.open_repository_tree -#: model:ir.ui.menu,name:base.menu_module_repository_tree -#: view:ir.module.repository:0 -msgid "Repository list" -msgstr "Κατάλογος αποθηκών" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Ο κανόνας ικανοποιείται εάν τουλάχιστον μια είναι επιλεγμένη" - -#. module: base -#: field:res.company,rml_header1:0 -msgid "Report Header" -msgstr "Επιγραφή αναφοράς" - -#. module: base -#: view:ir.rule:0 -msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "Εάν δεν επέμβετε θα χρησιμοποιηθεί απλή οργάνωση " - -#. module: base -#: field:ir.actions.url,type:0 field:ir.actions.act_window,type:0 -#: field:ir.actions.actions,type:0 field:ir.actions.act_window_close,type:0 -msgid "Action Type" -msgstr "Τύπος δράσης" - -#. module: base -#: help:ir.actions.act_window,limit:0 -msgid "Default limit for the list view" -msgstr "Όριο προεπιλογής για την διαμόρφωση καταλόγων" - #. module: base #: model:ir.model,name:base.model_ir_server_object_lines msgid "ir.server.object.lines" msgstr "" -#. module: base -#: field:ir.actions.act_window,src_model:0 -msgid "Source Object" -msgstr "Αντικείμενο πηγής" - -#. module: base -#: field:res.partner.bank.type,field_ids:0 -msgid "Type fields" -msgstr "Τύποι πεδίων " - -#. module: base -#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form view:ir.actions.todo:0 -msgid "Config Wizard Steps" -msgstr "Διαμόρφωση βημάτων" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_sc -msgid "ir.ui.view_sc" -msgstr "" - -#. module: base -#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 -msgid "Group" -msgstr "Ομάδα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FLOPPY" -msgstr "" - -#. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Υπογραφή" - -#. module: base -#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 -msgid "SMS" -msgstr "SMS" - -#. module: base -#: field:ir.actions.server,state:0 -msgid "Action State" -msgstr "Κατάσταση δράσης" - -#. module: base -#: field:ir.translation,name:0 -msgid "Field Name" -msgstr "Ονομασία Πεδίου" - -#. module: base -#: model:ir.actions.act_window,name:base.res_lang_act_window -#: model:ir.ui.menu,name:base.menu_res_lang_act_window view:res.lang:0 -msgid "Languages" -msgstr "Γλώσσες" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_uninstall -#: model:ir.ui.menu,name:base.menu_module_tree_uninstall -msgid "Uninstalled modules" -msgstr "Αποεγκατεστημένες ενότητες" - -#. module: base -#: help:res.partner.category,active:0 -msgid "The active field allows you to hide the category, without removing it." -msgstr "" -"Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι " -"απαραίτητη η αφαίρεση του." - -#. module: base -#: selection:wizard.module.lang.export,format:0 -#, fuzzy -msgid "PO File" -msgstr "Αρχείο" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event -#, fuzzy -msgid "res.partner.event" -msgstr "γεγονός" - -#. module: base -#: wizard_field:server.action.create,init,type:0 -#: wizard_view:server.action.create,init:0 -msgid "Select Action Type" -msgstr "Επιλέξτε τον τύπο δράσης" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "" -"Save this document to a .CSV file and open it with your favourite " -"spreadsheet software. The file encoding is UTF-8. You have to translate the " -"latest column before reimporting it." -msgstr "" -"Αποθηκεύστε το παρόν έγγραφο σε ένα .CSV αρχείο και ανοίξτε το με το " -"λογισμικό φύλλο (spreadsheet) σας. Η κωδικοποίηση αρχείων είναι utf-8. " -"Πρέπει να μετατρέψετε την πιο πρόσφατη στήλη πριν κάνετε επανεισαγωγή." - -#. module: base -#: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 -msgid "Currencies" -msgstr "Νομίσματα" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Configure" -msgstr "Διαμορφώστε" - -#. module: base -#: help:res.partner,lang:0 -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 "" -"Εάν η επιλεγμένη γλώσσα υπάρχει στο σύστημα, όλα τα έγγραφα σχετικά με αυτόν " -"τον συνεργάτη θα τυπωθούν σε αυτήν την γλώσσα. Εάν όχι, θα είναι αγγλικά." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDERLINE" -msgstr "" - -#. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" -msgstr "Παραμετροποιημένο αντικείμενο" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Always Searchable" -msgstr "Πάντα προς αναζήτηση " - -#. module: base -#: selection:ir.model.fields,state:0 -#, fuzzy -msgid "Base Field" -msgstr "Βάση Πεδίο" - -#. module: base -#: field:workflow.instance,uid:0 -msgid "User ID" -msgstr "Ταυτότητα χρήστη" - -#. module: base -#: view:ir.rule:0 -msgid "Test" -msgstr "Έλεγχος" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "" -"You can not remove the admin user as it is used internally for resources " -"created by OpenERP (updates, module installation, ...)" -msgstr "" -"Δεν μπορείτε να διαγράψετε το χρήστη admin γιατί χρησιμοποιείται εσωτερικά " -"για τους πόρους που δημιουργούνται από OpenERP (αναπροσαρμογές, εγκατάσταση " -"ενότητας,…)" - -#. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Νέες ενότητες" - -#. module: base -#: field:ir.actions.report.xml,report_sxw_content:0 -#: field:ir.actions.report.xml,report_sxw_content_data:0 -msgid "SXW content" -msgstr "" - -#. module: base -#: field:ir.default,ref_id:0 -#, fuzzy -msgid "ID Ref." -msgstr "ID Κωδ." - -#. module: base -#: help:res.partner.address,active:0 -#, fuzzy -msgid "Uncheck the active field to hide the contact." -msgstr "στο." - -#. module: base -#: model:ir.ui.menu,name:base.next_id_10 -#, fuzzy -msgid "Scheduler" -msgstr "Προγραμματιστής χρόνου" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_BOLD" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc0_operande:0 -#: field:ir.report.custom.fields,fc1_operande:0 -#: field:ir.report.custom.fields,fc2_operande:0 -#: field:ir.report.custom.fields,fc3_operande:0 -#: selection:ir.translation,type:0 -#, fuzzy -msgid "Constraint" -msgstr "Περιορισμός" - -#. module: base -#: selection:res.partner.address,type:0 -#, fuzzy -msgid "Default" -msgstr "Εξ ορισμού" - -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -#, fuzzy -msgid "Custom" -msgstr "Προσαρμοσμένο" - -#. module: base -#: field:ir.model.fields,required:0 -#: field:res.partner.bank.type.field,required:0 -msgid "Required" -msgstr "Απαιτείται" - -#. module: base -#: field:res.country,code:0 -#, fuzzy -msgid "Country Code" -msgstr "Χώρα Κώδικας" - -#. module: base -#: field:res.request.history,name:0 -#, fuzzy -msgid "Summary" -msgstr "Περίληψη" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-graph" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_instance -msgid "workflow.instance" -msgstr "" - -#. module: base -#: field:res.partner.bank,state:0 -#: field:res.partner.bank.type.field,bank_type_id:0 -#, fuzzy -msgid "Bank type" -msgstr "Τραπ είδος" - -#. module: base -#: code:osv/fields.py:0 -#, fuzzy -msgid "undefined get method !" -msgstr "ακαθόριστο λήψη!" - -#. module: base -#: view:res.company:0 -#, fuzzy -msgid "Header/Footer" -msgstr "Κεφαλίδα/Υποσέλιδο" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "The read method is not implemented on this object !" -msgstr "διαβασμένο είναι όχι!" - -#. module: base -#: view:res.request.history:0 -#, fuzzy -msgid "Request History" -msgstr "Ζήτηση Ιστορικό" - -#. module: base -#: view:res.users:0 -#, fuzzy -msgid "Roles are used to defined available actions, provided by workflows." -msgstr "στο διαθέσιμα ~κατά." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_REWIND" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 -#, fuzzy -msgid "Partner Events" -msgstr "Συνεργάτης Γεγονότα" - -#. module: base -#: field:ir.actions.todo,note:0 -#, fuzzy -msgid "Text" -msgstr "Κείμενο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CUT" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -#, fuzzy -msgid "Introspection report on objects" -msgstr "έκθεση / αναφορά" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NO" -msgstr "" - -#. module: base -#: selection:res.config.view,view:0 -#, fuzzy -msgid "Extended Interface" -msgstr "Περιβάλλον" - -#. module: base -#: field:res.company,name:0 -#, fuzzy -msgid "Company Name" -msgstr "Όνομα εταιρίας" - -#. module: base -#: wizard_field:base.module.import,init,module_file:0 -#, fuzzy -msgid "Module .ZIP file" -msgstr "Άρθρωμα αρχείο" - -#. module: base -#: wizard_button:res.partner.sms_send,init,send:0 -#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard -#, fuzzy -msgid "Send SMS" -msgstr "Αποστολή &SMS" - -#. module: base -#: field:ir.actions.report.custom,report_id:0 -#, fuzzy -msgid "Report Ref." -msgstr "Αναφορά Κωδ." - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_addess_tree -#: view:res.partner:0 -#, fuzzy -msgid "Partner contacts" -msgstr "Επαφές συνεργάτη" - -#. module: base -#: field:workflow.transition,trigger_model:0 -#, fuzzy -msgid "Trigger Object" -msgstr "Έναυσμα Αντικείμενο" - -#. module: base -#: help:res.country,code:0 -#, fuzzy -msgid "" -"The ISO country code in two chars.\n" -"You can use this field for quick search." -msgstr "ISO χώρα σε δύο για." - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "Xor" -msgstr "" - -#. module: base -#: selection:ir.report.custom,state:0 -msgid "Subscribed" -msgstr "" - -#. module: base -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_wizard -#: field:wizard.ir.model.menu.create.line,wizard_id:0 -#: model:ir.ui.menu,name:base.menu_ir_action_wizard view:ir.actions.wizard:0 -msgid "Wizard" -msgstr "Αυτόματος Οδηγός" - -#. module: base -#: wizard_view:module.lang.install,init:0 wizard_view:module.upgrade,next:0 -#, fuzzy -msgid "System Upgrade" -msgstr "Σύστημα Αναβάθμιση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_REVERT_TO_SAVED" -msgstr "ΕΩΣ" - -#. module: base -#: field:res.partner.event,event_ical_id:0 -#, fuzzy -msgid "iCal id" -msgstr "id" - -#. module: base -#: wizard_field:module.lang.import,init,name:0 -#, fuzzy -msgid "Language name" -msgstr "Γλώσσα όνομα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_ZOOM_IN" -msgstr "ΕΣΟΔΑ" - -#. module: base -#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 -#, fuzzy -msgid "Parent Menu" -msgstr "Γονέας Μενού" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, fuzzy -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "Προσαρμοσμένο a όνομα με x!" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "Unknown attribute % in % (table %)" -msgstr "Άγνωστο ιδιότητα σε πίνακας" - -#. module: base -#: field:res.partner.event,planned_cost:0 -#, fuzzy -msgid "Planned Cost" -msgstr "Κόστος" - -#. module: base -#: field:res.partner.event.type,name:0 view:res.partner.event.type:0 -#, fuzzy -msgid "Event Type" -msgstr "Γεγονός Τύπος" - -#. module: base -#: field:ir.ui.view,type:0 field:wizard.ir.model.menu.create.line,view_type:0 -#, fuzzy -msgid "View Type" -msgstr "Τύπος προβολής" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom -#, fuzzy -msgid "ir.report.custom" -msgstr "έκθεση / αναφορά" - -#. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "" - -#. module: base -#: view:ir.model:0 -#, fuzzy -msgid "Model Description" -msgstr "Μοντέλο Περιγραφή" - -#. module: base -#: wizard_view:res.partner.sms_send,init:0 -#, fuzzy -msgid "Bulk SMS send" -msgstr "SMS" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -#, fuzzy -msgid "get" -msgstr "λήψη" - -#. module: base -#: view:ir.report.custom.fields:0 -#, fuzzy -msgid "Report Fields" -msgstr "Αναφορά Πεδία" - -#. module: base -#: model:ir.model,name:base.model_ir_values -msgid "ir.values" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -#, fuzzy -msgid "Pie Chart" -msgstr "Πίτα Διάγραμμα" - -#. module: base -#: field:workflow.transition,trigger_expr_id:0 -#, fuzzy -msgid "Trigger Expression" -msgstr "Έναυσμα Παράσταση" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "Wrong ID for the browse record, got %s, expected an integer." -msgstr "ID για εγγραφή s αναμένεται ακέραιος." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_CENTER" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_FIT" -msgstr "" - -#. module: base -#: view:ir.sequence.type:0 -#, fuzzy -msgid "Sequence Type" -msgstr "Τύπος" - -#. module: base -#: field:ir.report.custom.fields,field_child2:0 -msgid "field child2" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child3:0 -msgid "field child3" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child0:0 -msgid "field child0" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_update -#: model:ir.ui.menu,name:base.menu_module_update -#, fuzzy -msgid "Update Modules List" -msgstr "Ενημέρωση Αρθρώματα Λίστα" - -#. module: base -#: field:ir.attachment,datas_fname:0 -#, fuzzy -msgid "Data Filename" -msgstr "Δεδομένα Όνομα αρχείου" - -#. module: base -#: view:res.config.view:0 -msgid "Configure simple view" -msgstr "Ρύθμιση απλής προβολής" - -#. module: base -#: field:ir.module.module,license:0 -msgid "License" -msgstr "Άδεια" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_actions -msgid "ir.actions.actions" -msgstr "" - -#. module: base -#: field:ir.module.repository,url:0 -#, fuzzy -msgid "Url" -msgstr "Url" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_actions -#: model:ir.ui.menu,name:base.menu_ir_sequence_actions -#: model:ir.ui.menu,name:base.next_id_6 -msgid "Actions" -msgstr "Ενέργειες" - -#. module: base -#: field:res.request,body:0 field:res.request.history,req_id:0 -#: view:res.request:0 -msgid "Request" -msgstr "Αίτημα" - -#. module: base -#: field:ir.actions.act_window,view_mode:0 -msgid "Mode of view" -msgstr "Κατάσταση προβολής" - -#. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Portrait" -msgstr "Πορτραίτο" - -#. module: base -#: field:ir.actions.server,srcmodel_id:0 -msgid "Model" -msgstr "Μοντέλο" - -#. module: base -#: code:addons/base/module/module.py:0 -#, fuzzy -msgid "" -"You try to install a module that depends on the module: %s.\n" -"But this module is not available in your system." -msgstr "" -"Εσείς στο εγκατάσταση a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο " -"εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s άρθρωμα, μονάδα, " -"υπομονάδα, Δομικό Στοιχείο είναι όχι διαθέσιμα σε." - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Calendar" -msgstr "Ημερολόγιο" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Language file loaded." -msgstr "Το αρχείο γλώσσας φορτώθηκε" - -#. module: base -#: model:ir.actions.act_window,name:base.action_ui_view -#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 -#: selection:ir.translation,type:0 -#: field:wizard.ir.model.menu.create.line,view_id:0 -#: model:ir.ui.menu,name:base.menu_action_ui_view -msgid "View" -msgstr "Προβολή" - -#. module: base -#: wizard_field:module.upgrade,next,module_info:0 -#: wizard_view:module.upgrade,next:0 -#, fuzzy -msgid "Modules to update" -msgstr "Αρθρώματα στο ενημέρωση" - -#. module: base -#: model:ir.actions.act_window,name:base.action2 -#, fuzzy -msgid "Company Architecture" -msgstr "Εταιρία" - -#. module: base -#: field:workflow.workitem,act_id:0 view:workflow.activity:0 -msgid "Activity" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_INDEX" -msgstr "ΕΥΡΕΤΗΡΙΟ" - -#. module: base -#: field:ir.report.custom,print_orientation:0 -#, fuzzy -msgid "Print orientation" -msgstr "Εκτύπωση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_BOTTOM" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,header:0 -#, fuzzy -msgid "Add RML header" -msgstr "Προσθήκη" - -#. module: base -#: field:ir.attachment,name:0 -msgid "Attachment Name" -msgstr "Όνομα Συνημμένου" - -#. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Landscape" -msgstr "Τοπίο" - -#. module: base -#: wizard_field:module.lang.import,init,data:0 -#: field:wizard.module.lang.export,data:0 -msgid "File" -msgstr "Αρχείο" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_form -#: model:ir.ui.menu,name:base.menu_ir_sequence_form -#: model:ir.ui.menu,name:base.next_id_5 view:ir.sequence:0 -msgid "Sequences" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "Unknown position in inherited view %s !" -msgstr "Άγνωστο θέση σε s!" - -#. module: base -#: view:res.users:0 -msgid "Add User" -msgstr "Προσθήκη Χρήστη" - -#. module: base -#: field:res.request,trigger_date:0 -#, fuzzy -msgid "Trigger Date" -msgstr "Έναυσμα Ημερομηνία" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_configuration_wizard -msgid "ir.actions.configuration.wizard" -msgstr "" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank account" -msgstr "Τραπεζικός λογαριασμός" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, fuzzy -msgid "Warning: using a relation field which uses an unknown object" -msgstr "Προειδοποίηση a άγνωστο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_FORWARD" -msgstr "" - -#. module: base -#: field:res.bank,zip:0 field:res.partner.address,zip:0 -#: field:res.partner.bank,zip:0 -msgid "Zip" -msgstr "" - -#. module: base -#: field:ir.module.module,author:0 -msgid "Author" -msgstr "Συγγραφέας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDELETE" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "choose" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_QUESTION" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 view:ir.actions.server:0 -#, fuzzy -msgid "Trigger" -msgstr "Έναυσμα" - -#. module: base -#: field:res.partner,supplier:0 -msgid "Supplier" -msgstr "" - -#. module: base -#: field:ir.model.fields,translate:0 -msgid "Translate" -msgstr "Μετάφραση" - -#. module: base -#: field:res.request.history,body:0 -msgid "Body" -msgstr "Σώμα" - -#. module: base -#: field:res.lang,direction:0 -msgid "Direction" -msgstr "Κατεύθυνση" - -#. module: base -#: model:ir.model,name:base.model_wizard_module_update_translations -#, fuzzy -msgid "wizard.module.update_translations" -msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο ενημέρωση" - -#. module: base -#: field:ir.actions.act_window,view_ids:0 field:ir.actions.act_window,views:0 -#: field:ir.module.module,views_by_module:0 -#: field:wizard.ir.model.menu.create,view_ids:0 -#: view:wizard.ir.model.menu.create:0 view:ir.actions.act_window:0 -msgid "Views" -msgstr "Προβολές" - -#. module: base -#: wizard_button:res.partner.spam_send,init,send:0 -msgid "Send Email" -msgstr "Αποστολή Email" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_FONT" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, fuzzy -msgid "You try to remove a module that is installed or will be installed" -msgstr "Εσείς στο a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο είναι ή" - -#. module: base -#: rml:ir.module.reference:0 -msgid "," -msgstr "," - -#. module: base -#: field:res.users,menu_id:0 -#, fuzzy -msgid "Menu Action" -msgstr "Μενού Ενέργεια" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PASTE" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_model -#: model:ir.model,name:base.model_ir_model -#: model:ir.ui.menu,name:base.ir_model_model_menu -msgid "Objects" -msgstr "Αντικείμενα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, fuzzy -msgid "" -"Can not create the module file:\n" -" %s" -msgstr "" -"όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο\n" -" s" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_form -#: model:ir.ui.menu,name:base.menu_workflow -#: model:ir.ui.menu,name:base.menu_workflow_root -msgid "Workflows" -msgstr "" - -#. module: base -#: field:ir.model.fields,model_id:0 -#, fuzzy -msgid "Object id" -msgstr "Αντικείμενο id" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "<" -msgstr "<" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_wizard_form -#: model:ir.ui.menu,name:base.menu_config_module -#, fuzzy -msgid "Configuration Wizard" -msgstr "Αυτόματος οδηγός ρύθμισης" - -#. module: base -#: view:res.request.link:0 -#, fuzzy -msgid "Request Link" -msgstr "Ζήτηση Δεσμός" - -#. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Μορφή αρχείου" - -#. module: base -#: field:ir.module.module,url:0 -msgid "URL" -msgstr "URL" - -#. module: base -#: field:ir.model.fields,state:0 field:ir.model,state:0 -#, fuzzy -msgid "Manualy Created" -msgstr "Δημιουργήθηκε" - -#. module: base -#: field:ir.report.custom,print_format:0 -#, fuzzy -msgid "Print format" -msgstr "Εκτύπωση" - -#. module: base -#: model:ir.actions.act_window,name:base.action_payterm_form -#: model:ir.model,name:base.model_res_payterm view:res.payterm:0 -#, fuzzy -msgid "Payment term" -msgstr "Πληρωμή" - -#. module: base -#: field:res.request,ref_doc2:0 -#, fuzzy -msgid "Document Ref 2" -msgstr "Έγγραφο Κωδ 2" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "terp-calendar" -msgstr "ημερολόγιο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -#, fuzzy -msgid "Work Days" -msgstr "Εργασία Ημέρες" - -#. module: base -#: model:ir.model,name:base.model_res_roles -msgid "res.roles" -msgstr "" - -#. module: base -#: help:ir.cron,priority:0 -#, fuzzy -msgid "" -"0=Very Urgent\n" -"10=Not urgent" -msgstr "Επείγον Not" - -#. module: base -#: model:ir.model,name:base.model_ir_model_data -msgid "ir.model.data" -msgstr "" - -#. module: base -#: view:ir.ui.view:0 -#, fuzzy -msgid "User Interface - Views" -msgstr "Χρήστης Περιβάλλον Προβολές" - -#. module: base -#: view:res.groups:0 view:ir.model:0 -#, fuzzy -msgid "Access Rights" -msgstr "Πρόσβαση" - -#. module: base -#: help:ir.actions.report.xml,report_rml:0 -#, fuzzy -msgid "" -"The .rml path of the file or NULL if the content is in report_rml_content" -msgstr "διαδρομή από αρχείο ή είναι σε έκθεση / αναφορά" - -#. module: base -#: view:res.users:0 -msgid "Skip" -msgstr "Παράβλεψη" - -#. module: base -#: model:ir.actions.act_window,name:base.act_menu_create -#: view:wizard.ir.model.menu.create:0 -msgid "Create Menu" -msgstr "Δημιουργία Μενού" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_RECORD" -msgstr "" - -#. module: base -#: view:res.partner.address:0 -#, fuzzy -msgid "Partner Address" -msgstr "Συνεργάτης Διεύθυνση" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, fuzzy -msgid "You can not remove the model '%s' !" -msgstr "Εσείς όχι s!" - -#. module: base -#: field:res.partner.category,name:0 -msgid "Category Name" -msgstr "Όνομα κατηγορίας" - -#. module: base -#: field:ir.report.custom.fields,field_child1:0 -msgid "field child1" -msgstr "" - -#. module: base -#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 -msgid "Subject" -msgstr "Θέμα" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "The write method is not implemented on this object !" -msgstr "είναι όχι!" - -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Καθολικό" - -#. module: base -#: field:res.request,act_from:0 field:res.request.history,act_from:0 -msgid "From" -msgstr "Από" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" -msgstr "" - -#. module: base -#: wizard_button:server.action.create,init,step_1:0 -msgid "Next" -msgstr "Επόμενο" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_11 -#, fuzzy -msgid "Configuration Wizards" -msgstr "Ρυθμίσεις" - -#. module: base -#: field:res.request,ref_doc1:0 -#, fuzzy -msgid "Document Ref 1" -msgstr "Έγγραφο Κωδ 1" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Set NULL" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "terp-report" -msgstr "έκθεση / αναφορά" - -#. module: base -#: field:res.partner.event,som:0 field:res.partner.som,name:0 -#, fuzzy -msgid "State of Mind" -msgstr "Κατάσταση από" - -#. module: base -#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 -#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 -#: field:ir.values,key:0 view:res.partner:0 -msgid "Type" -msgstr "Είδος ημερολογίου" - -#. module: base -#: view:ir.module.module:0 -#, fuzzy -msgid "Defined Reports" -msgstr "Αναφορές" - -#. module: base -#: field:workflow.transition,act_from:0 -#, fuzzy -msgid "Source Activity" -msgstr "Πηγή" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_FILE" -msgstr "ΑΡΧΕΙΟ" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "The copy method is not implemented on this object !" -msgstr "αντιγραφή είναι όχι!" - -#. module: base -#: view:ir.rule.group:0 -#, fuzzy -msgid "The rule is satisfied if all test are True (AND)" -msgstr "είναι όλα Αληθές ΚΑΙ" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#, fuzzy -msgid "Note that this operation my take a few minutes." -msgstr "Σημείωση a λεπτά." - -#. module: base -#: selection:res.lang,direction:0 -#, fuzzy -msgid "Left-to-right" -msgstr "Αριστερά στο δεξιά" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation view:ir.translation:0 -msgid "Translations" -msgstr "Μεταφράσεις" - -#. module: base -#: field:ir.actions.report.xml,report_rml_content:0 -#: field:ir.actions.report.xml,report_rml_content_data:0 -msgid "RML content" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_model_grid -#, fuzzy msgid "Objects Security Grid" -msgstr "Αντικείμενα Ασφάλεια Πλέγμα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONNECT" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SAVE_AS" -msgstr "" - -#. module: base -#: help:res.partner,supplier:0 -#, fuzzy -msgid "" -"Check this box if the partner if a supplier. If it's not checked, purchase " -"people will not see it when encoding a purchase order." -msgstr "Έλεγχος a s όχι όχι κωδικοποίηση a." - -#. module: base -#: selection:ir.model.fields,select_level:0 -#, fuzzy -msgid "Not Searchable" -msgstr "Not" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND" -msgstr "" - -#. module: base -#: field:ir.sequence,padding:0 -#, fuzzy -msgid "Number padding" -msgstr "Αριθμός" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_OK" -msgstr "Εντάξει" - -#. module: base -#: code:report/report_sxw.py:0 -#, python-format -msgid "print" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password empty !" -msgstr "Κωδικός πρόσβασης κενός!" - -#. module: base -#: field:res.company,rml_header:0 -#, fuzzy -msgid "RML Header" -msgstr "Κεφαλίδα" - -#. module: base -#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 -msgid "Dummy" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "None" -msgstr "Κανένα" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, fuzzy -msgid "You can not write in this document! (%s)" -msgstr "Εσείς όχι σε s" - -#. module: base -#: model:ir.model,name:base.model_workflow -msgid "workflow" -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,app_id:0 -#, fuzzy -msgid "API ID" -msgstr "ID" - -#. module: base -#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 -#, fuzzy -msgid "Module Category" -msgstr "Άρθρωμα Κατηγορία" - -#. module: base -#: field:ir.rule,operand:0 -msgid "Operand" -msgstr "" - -#. module: base -#: wizard_view:module.module.update,init:0 -#, fuzzy -msgid "Scan for new modules" -msgstr "Ανίχνευση για νέο Επιλογές - δυνατότητες - λειτουργίες" - -#. module: base -#: model:ir.model,name:base.model_ir_module_repository -#, fuzzy -msgid "Module Repository" -msgstr "Άρθρωμα Χώρος Απόθεσης" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNINDENT" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "At Once" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_security -msgid "Security" -msgstr "Ασφάλεια" - -#. module: base -#: selection:ir.actions.server,state:0 -#, fuzzy -msgid "Write Object" -msgstr "Εγγραφή Αντικείμενο" - -#. module: base -#: field:res.bank,street:0 field:res.partner.address,street:0 -#: field:res.partner.bank,street:0 -msgid "Street" -msgstr "Οδός" - -#. module: base -#: field:ir.cron,interval_number:0 -#, fuzzy -msgid "Interval Number" -msgstr "Μεσοδιάστημα Αριθμός" - -#. module: base -#: view:ir.module.repository:0 -msgid "Repository" -msgstr "Χώρος Απόθεσης" - -#. module: base -#: field:res.users,action_id:0 -#, fuzzy -msgid "Home Action" -msgstr "Αρχή Ενέργεια" - -#. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Χαμηλή" - -#. module: base -#: code:addons/base/module/module.py:0 -#, fuzzy -msgid "Recursion error in modules dependencies !" -msgstr "Αναδρομή σφάλμα σε Επιλογές - δυνατότητες - λειτουργίες εξαρτήσεις!" - -#. module: base -#: view:ir.rule:0 -#, fuzzy -msgid "Manual domain setup" -msgstr "Χειροκίνητη" - -#. module: base -#: field:ir.actions.report.xml,report_xsl:0 -#, fuzzy -msgid "XSL path" -msgstr "διαδρομή" - -#. module: base -#: field:res.groups,model_access:0 -#: model:ir.ui.menu,name:base.menu_security_access view:ir.model.access:0 -#: view:res.groups:0 -msgid "Access Controls" -msgstr "Έλεγχοι Πρόσβασης" - -#. module: base -#: model:ir.model,name:base.model_wizard_module_lang_export -#, fuzzy -msgid "wizard.module.lang.export" -msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -#: selection:ir.module.module,state:0 -msgid "Installed" -msgstr "Εγκατεστημένο" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_function_form -#: model:ir.ui.menu,name:base.menu_partner_function_form -#: view:res.partner.function:0 -#, fuzzy -msgid "Partner Functions" -msgstr "Συνεργάτης Συναρτήσεις" - -#. module: base -#: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 -#: field:res.currency,name:0 field:res.currency.rate,currency_id:0 -#: view:res.currency:0 -msgid "Currency" -msgstr "Νόμισμα" - -#. module: base -#: field:res.partner.canal,name:0 -#, fuzzy -msgid "Channel Name" -msgstr "Κανάλι Όνομα" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Continue" -msgstr "Συνέχεια" - -#. module: base -#: selection:res.config.view,view:0 -#, fuzzy -msgid "Simplified Interface" -msgstr "Περιβάλλον" - -#. module: base -#: field:res.bank,street2:0 field:res.partner.address,street2:0 -msgid "Street2" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,alignment:0 -msgid "Alignment" -msgstr "Στοίχιση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDO" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid ">=" -msgstr ">=" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_todo -msgid "ir.actions.todo" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_administration -msgid "Administration" -msgstr "Διαχείριση" - -#. module: base -#: field:ir.sequence,number_next:0 -#, fuzzy -msgid "Next Number" -msgstr "Επόμενο Αριθμός" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Get file" -msgstr "Πάρτε το αρχείο" - -#. module: base -#: wizard_view:module.module.update,init:0 -#, fuzzy -msgid "" -"This function will check for new modules in the 'addons' path and on module " -"repositories:" -msgstr "" -"συνάρτηση Έλεγχος για νέο Επιλογές - δυνατότητες - λειτουργίες σε διαδρομή " -"και άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο:" - -#. module: base -#: selection:ir.rule,operator:0 -#, fuzzy -msgid "child_of" -msgstr "παιδί από" - -#. module: base -#: field:res.currency,rate_ids:0 view:res.currency:0 -msgid "Rates" -msgstr "Ποσοστά" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_GO_BACK" -msgstr "ΠΗΓΑΙΝΕ" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 code:osv/orm.py:0 -#, python-format -msgid "AccessError" -msgstr "Σφάλμα πρόσβασης" - -#. module: base -#: view:res.request:0 -msgid "Reply" -msgstr "Απάντηση" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Bar Chart" -msgstr "Ιστόγραμμα" - -#. module: base -#: model:ir.model,name:base.model_ir_model_config -msgid "ir.model.config" -msgstr "" - -#. module: base -#: field:ir.module.module,website:0 field:res.partner,website:0 -msgid "Website" -msgstr "Ιστοχώρος" - -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Επιλογή τομέων" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Δοκιμές" - -#. module: base -#: field:ir.sequence,number_increment:0 -msgid "Increment Number" -msgstr "Αριθμός αύξησης" - -#. module: base -#: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 -#: field:wizard.module.lang.export,state:0 -msgid "unknown" -msgstr "άγνωστο" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "The create method is not implemented on this object !" -msgstr "είναι όχι!" - -#. module: base -#: field:ir.ui.view_sc,res_id:0 -#, fuzzy -msgid "Resource Ref." -msgstr "Πόρος Κωδ." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_FILL" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "draft" -msgstr "σχέδιο" - -#. module: base -#: field:res.currency.rate,name:0 field:res.partner,date:0 -#: field:res.partner.event,date:0 field:res.request,date_sent:0 -msgid "Date" -msgstr "Ημερομηνία" - -#. module: base -#: field:ir.actions.report.xml,report_sxw:0 -msgid "SXW path" -msgstr "Πορεία SXW" - -#. module: base -#: selection:ir.translation,type:0 -msgid "RML" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_DIALOG_ERROR" -msgstr "ΣΦΑΛΜΑ" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_main -#, fuzzy -msgid "Partners by Categories" -msgstr "Συνεργάτες ανά Κατηγορίες" - -#. module: base -#: wizard_field:module.lang.install,init,lang:0 field:ir.translation,lang:0 -#: field:res.partner,lang:0 field:res.users,context_lang:0 -#: field:wizard.module.lang.export,lang:0 -#: field:wizard.module.update_translations,lang:0 -msgid "Language" -msgstr "Γλώσσα" - -#. module: base -#: selection:ir.translation,type:0 -msgid "XSL" -msgstr "" - -#. module: base -#: field:ir.module.module,demo:0 -msgid "Demo data" -msgstr "Επίδεικτικά στοιχεία" - -#. module: base -#: wizard_view:base.module.import,import:0 -#: wizard_view:base.module.import,init:0 -msgid "Module import" -msgstr "Εισαγωγή ενότητας" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 -msgid "Companies" -msgstr "Επιχειρήσεις" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_supplier_form -#: model:ir.ui.menu,name:base.menu_partner_supplier_form -msgid "Suppliers Partners" -msgstr "Συνεργάτες προμηθευτών" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence_type -#, fuzzy -msgid "ir.sequence.type" -msgstr "είδος" - -#. module: base -#: field:ir.actions.wizard,type:0 -#, fuzzy -msgid "Action type" -msgstr "Ενέργεια είδος" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -#, fuzzy -msgid "CSV File" -msgstr "CSV Αρχείο" - -#. module: base -#: field:res.company,parent_id:0 -#, fuzzy -msgid "Parent Company" -msgstr "Γονέας Εταιρία" - -#. module: base -#: view:res.request:0 -msgid "Send" -msgstr "Στείλετε" - -#. module: base -#: field:ir.module.category,module_nr:0 -#, fuzzy -msgid "# of Modules" -msgstr "από Αρθρώματα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PLAY" -msgstr "" - -#. module: base -#: field:ir.model.data,date_init:0 -#, fuzzy -msgid "Init Date" -msgstr "Ημερομηνία" - -#. module: base -#: field:res.company,rml_header2:0 -#, fuzzy -msgid "RML Internal Header" -msgstr "Κεφαλίδα" - -#. module: base -#: selection:ir.model,state:0 -#, fuzzy -msgid "Base Object" -msgstr "Βάση Αντικείμενο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-crm" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_STRIKETHROUGH" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -#, fuzzy -msgid "(year)=" -msgstr "έτος" - -#. module: base -#: selection:ir.translation,type:0 field:res.bank,code:0 -#: field:res.currency,code:0 field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Κωδικός" - -#. module: base -#: view:ir.module.module:0 -msgid "Features" -msgstr "Χαρακτηριστικά γνωρίσματα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-partner" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, fuzzy -msgid "Not implemented get_memory method !" -msgstr "Not λήψη!" - -#. module: base -#: field:ir.actions.server,code:0 selection:ir.actions.server,state:0 -#: view:ir.actions.server:0 -msgid "Python Code" -msgstr "Κώδικας Python" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Bad query." -msgstr "" - -#. module: base -#: field:ir.model.fields,field_description:0 -msgid "Field Label" -msgstr "Ετικέτα τομέων" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "You try to bypass an access rule (Document type: %s)." -msgstr "Εσείς στο Έγγραφο είδος s." - -#. module: base -#: field:ir.actions.url,url:0 -#, fuzzy -msgid "Action Url" -msgstr "Ενέργεια Url" - -#. module: base -#: field:ir.report.custom,frequency:0 -msgid "Frequency" -msgstr "Συχνότητα" - -#. module: base -#: field:ir.report.custom.fields,fc0_op:0 -#: field:ir.report.custom.fields,fc1_op:0 -#: field:ir.report.custom.fields,fc2_op:0 -#: field:ir.report.custom.fields,fc3_op:0 -msgid "Relation" -msgstr "Σχέση" - -#. module: base -#: field:ir.report.custom.fields,fc0_condition:0 -#: field:workflow.transition,condition:0 -msgid "Condition" -msgstr "Όρος" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form -#: model:ir.ui.menu,name:base.menu_partner_customer_form -msgid "Customers Partners" -msgstr "Συνεργάτες πελατών" - -#. module: base -#: wizard_button:res.partner.spam_send,init,end:0 -#: wizard_button:res.partner.sms_send,init,end:0 -#: wizard_button:base.module.import,init,end:0 -#: wizard_button:module.lang.import,init,end:0 -#: wizard_button:module.lang.install,init,end:0 -#: wizard_button:module.module.update,init,end:0 -#: wizard_button:module.upgrade,next,end:0 selection:ir.actions.todo,state:0 -#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 -#: view:wizard.module.update_translations:0 -msgid "Cancel" -msgstr "Ακύρωση" - -#. module: base -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_management -msgid "Modules Management" -msgstr "Διαχείριση ενοτήτων" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "" - -#. module: base -#: field:ir.model.data,res_id:0 field:ir.translation,res_id:0 -#: field:ir.values,res_id:0 field:workflow.instance,res_id:0 -#: field:workflow.triggers,res_id:0 -#, fuzzy -msgid "Resource ID" -msgstr "Πόρος ID" - -#. module: base -#: field:ir.model,info:0 -msgid "Information" -msgstr "Πληροφορίες" - -#. module: base -#: model:ir.model,name:base.model_ir_exports -msgid "ir.exports" -msgstr "" - -#. module: base -#: field:workflow.activity,flow_start:0 -msgid "Flow Start" -msgstr "Έναρξη ροής" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_MISSING_IMAGE" -msgstr "ΛΕΙΠΕΙ" - -#. module: base -#: field:ir.report.custom.fields,bgcolor:0 -msgid "Background Color" -msgstr "Χρώμα υποβάθρου" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REMOVE" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_rml:0 -#, fuzzy -msgid "RML path" -msgstr "διαδρομή" - -#. module: base -#: field:ir.actions.configuration.wizard,item_id:0 -#, fuzzy -msgid "Next Configuration Wizard" -msgstr "Επόμενο Ρυθμίσεις Αυτόματος Οδηγός" - -#. module: base -#: field:workflow.workitem,inst_id:0 -msgid "Instance" -msgstr "Περίπτωση" - -#. module: base -#: field:ir.values,meta:0 field:ir.values,meta_unpickle:0 -#, fuzzy -msgid "Meta Datas" -msgstr "Μετά-ρύθμιση" - -#. module: base -#: help:res.currency,rate:0 help:res.currency.rate,rate:0 -#, fuzzy -msgid "The rate of the currency to the currency of rate 1" -msgstr "από στο από 1" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "raw" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Partners: " -msgstr "Συνεργάτες:" - -#. module: base -#: selection:ir.actions.todo,type:0 selection:res.partner.address,type:0 -msgid "Other" -msgstr "Άλλος" - -#. module: base -#: field:ir.ui.view,field_parent:0 -#, fuzzy -msgid "Childs Field" -msgstr "Πεδίο" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -#, fuzzy -msgid "ir.module.module.configuration.step" -msgstr "" -"άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο άρθρωμα, μονάδα, υπομονάδα, " -"Δομικό Στοιχείο" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -#, fuzzy -msgid "ir.module.module.configuration.wizard" -msgstr "" -"άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο άρθρωμα, μονάδα, υπομονάδα, " -"Δομικό Στοιχείο" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, fuzzy -msgid "Can not remove root user!" -msgstr "όχι root!" - -#. module: base -#: field:ir.module.module,installed_version:0 -msgid "Installed version" -msgstr "Εγκατεστημένη έκδοση" - -#. module: base -#: field:workflow,activities:0 view:workflow:0 -msgid "Activities" -msgstr "Δραστηριότητες" - -#. module: base -#: field:res.partner,user_id:0 -msgid "Dedicated Salesman" -msgstr "διορισμένος πωλητής" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 -#: field:ir.rule.group,users:0 field:res.groups,users:0 -#: field:res.roles,users:0 model:ir.ui.menu,name:base.menu_action_res_users -#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 view:res.users:0 -msgid "Users" -msgstr "Χρήστες" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export a Translation File" -msgstr "Εξάγετε ένα αρχείο μεταφράσεων" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_xml -#: model:ir.ui.menu,name:base.menu_ir_action_report_xml -#, fuzzy -msgid "Report Xml" -msgstr "Αναφορά" - -#. module: base -#: help:res.partner,user_id:0 -#, fuzzy -msgid "" -"The internal user that is in charge of communicating with this partner if " -"any." -msgstr "είναι σε από με κάθε." - -#. module: base -#: selection:ir.translation,type:0 -#, fuzzy -msgid "Wizard View" -msgstr "Αυτόματος Οδηγός Προβολή" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Upgrade" -msgstr "Ακυρώστε τη βελτίωση" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "The search method is not implemented on this object !" -msgstr "είναι όχι!" - -#. module: base -#: field:ir.actions.report.xml,attachment:0 -#, fuzzy -msgid "Save As Attachment Prefix" -msgstr "Αποθήκευση Συνημμένο Πρόθεμα" - -#. module: base -#: field:ir.cron,nextcall:0 -msgid "Next call date" -msgstr "Επόμενη ημερομηνία κλήσης" - -#. module: base -#: field:ir.report.custom.fields,cumulate:0 -msgid "Cumulate" -msgstr "Συσσωρεύστε" - -#. module: base -#: model:ir.model,name:base.model_res_lang -msgid "res.lang" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, fuzzy -msgid "Pie charts need exactly two fields" -msgstr "Πίτα δύο" - -#. module: base -#: model:ir.model,name:base.model_res_bank field:res.partner.bank,bank:0 -#: view:res.bank:0 -msgid "Bank" -msgstr "Τράπεζα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HARDDISK" -msgstr "" - -#. module: base -#: selection:ir.actions.server,otype:0 -#, fuzzy -msgid "Create in Same Model" -msgstr "Δημιουργία σε Ίδιο Μοντέλο" - -#. module: base -#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 -#: field:ir.cron,name:0 field:ir.model.access,name:0 -#: field:ir.model.fields,name:0 field:ir.module.category,name:0 -#: field:ir.module.module.dependency,name:0 field:ir.module.module,name:0 -#: field:ir.module.repository,name:0 field:ir.property,name:0 -#: field:ir.report.custom.fields,name:0 field:ir.rule.group,name:0 -#: field:ir.values,name:0 field:res.bank,name:0 field:res.config.view,name:0 -#: field:res.lang,name:0 field:res.partner.bank.type,name:0 -#: field:res.partner.category,complete_name:0 field:res.partner,name:0 -#: field:res.request.link,name:0 field:res.users,name:0 -#: field:workflow.activity,name:0 field:workflow,name:0 -msgid "Name" -msgstr "Ονομασία" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_APPLY" -msgstr "" - -#. module: base -#: field:ir.module.module,reports_by_module:0 -msgid "Reports" -msgstr "Αναφορές" - -#. module: base -#: field:workflow,on_create:0 -#, fuzzy -msgid "On Create" -msgstr "Ανοιχτό Δημιουργία" - -#. module: base -#: wizard_view:base.module.import,init:0 -#, fuzzy -msgid "Please give your module .ZIP file to import." -msgstr "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο στο." - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_CLOSE" -msgstr "ΚΛΕΙΣΤΟ" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Error !" -msgstr "Σφάλμα" - -#. module: base -#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 -#, fuzzy -msgid "Login" -msgstr "Σύνδεση" - -#. module: base -#: selection:ir.module.module,license:0 -#, fuzzy -msgid "GPL-2" -msgstr "GPL 2" - -#. module: base -#: help:ir.module.repository,filter:0 -#, fuzzy -msgid "" -"Regexp to search module on the repository webpage:\n" -"- The first parenthesis must match the name of the module.\n" -"- The second parenthesis must match all the version number.\n" -"- The last parenthesis must match the extension of the module." -msgstr "" -"στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο Ταιριάζω " -"όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n δευτερόλεπτο " -"Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, μονάδα, υπομονάδα, " -"Δομικό Στοιχείο." - -#. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "Φ.Π.Α." - -#. module: base -#: help:wizard.module.lang.export,lang:0 -#, fuzzy -msgid "To export a new language, do not select a language." -msgstr "Προς a νέο όχι επιλογή a." - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_app -msgid "Application Terms" -msgstr "Όροι εφαρμογής" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Average" -msgstr "Υπολογίστε το μέσο όρο" - -#. module: base -#: field:res.users,context_tz:0 -#, fuzzy -msgid "Timezone" -msgstr "Ζώνη ώρας" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_grid_security -#: model:ir.ui.menu,name:base.menu_ir_access_grid -msgid "Access Controls Grid" -msgstr "Πλέγμα ελέγχων προσπέλασης" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 field:ir.module.module.dependency,module_id:0 -#: view:ir.module.module:0 -#, fuzzy -msgid "Module" -msgstr "Άρθρωμα" - -#. module: base -#: selection:res.request,priority:0 -msgid "High" -msgstr "Υψηλή" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_instance_form -#: model:ir.ui.menu,name:base.menu_workflow_instance -msgid "Instances" -msgstr "Περιπτώσεις" - -#. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Όνομα ρόλου" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COPY" -msgstr "" - -#. module: base -#: wizard_button:module.upgrade,start,config:0 -#: wizard_button:module.upgrade,end,config:0 -msgid "Start configuration" -msgstr "Έναρξη Διαμόρφωσης" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Reload an Official Translation" -msgstr "Ξαναφορτώστε μια επίσημη μετάφραση" - -#. module: base -#: model:ir.model,name:base.model_res_request_link -#, fuzzy -msgid "res.request.link" -msgstr "σύνδεσμος" - -#. module: base -#: wizard_button:module.module.update,init,update:0 -msgid "Check new modules" -msgstr "Νέες ενότητες ελέγχου" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_view -msgid "ir.actions.act_window.view" -msgstr "" - -#. module: base -#: code:tools/translate.py:0 -#, python-format -msgid "Bad file format" -msgstr "Κακή μορφή αρχείου" - -#. module: base -#: help:res.bank,bic:0 -msgid "Bank Identifier Code" -msgstr "Κώδικας προσδιοριστικών τράπεζας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CDROM" -msgstr "" - -#. module: base -#: field:workflow.activity,action:0 -#, fuzzy -msgid "Python Action" -msgstr "Python Ενέργεια" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_DIRECTORY" -msgstr "ΚΑΤΑΛΟΓΟΣ" - -#. module: base -#: field:res.partner.event,planned_revenue:0 -msgid "Planned Revenue" -msgstr "Προγραμματισμένο εισόδημα" - -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Κανόνες αρχείων" - -#. module: base -#: field:ir.report.custom.fields,groupby:0 -msgid "Group by" -msgstr "Ομαδοποίηση κατά" - -#. module: base -#: field:ir.model.fields,readonly:0 -#: field:res.partner.bank.type.field,readonly:0 -msgid "Readonly" -msgstr "Μόνο για ανάγνωση" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, fuzzy -msgid "You can not remove the field '%s' !" -msgstr "Εσείς όχι s!" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ITALIC" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,header:0 -#, fuzzy -msgid "Add or not the coporate RML header" -msgstr "Προσθήκη ή όχι" - -#. module: base -#: field:res.currency,accuracy:0 -msgid "Computational Accuracy" -msgstr "Υπολογιστική ακρίβεια" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_wizard -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.wizard" -msgstr "" - -#. module: base -#: field:res.partner.event,document:0 -msgid "Document" -msgstr "Έγγραφο" - -#. module: base -#: field:res.partner.event,type:0 -#, fuzzy -msgid "Type of Event" -msgstr "Τύπος από Γεγονός" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REFRESH" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_type -#: model:ir.ui.menu,name:base.menu_ir_sequence_type -msgid "Sequence Types" -msgstr "Τύποι ακολουθίας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_STOP" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, fuzzy -msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " -"used to refer to other modules data, as in module.reference_id" -msgstr "" -"s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε " -"άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" - -#. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Αριθμός λογαριασμού" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line -#, fuzzy -msgid "wizard.ir.model.menu.create.line" -msgstr "γραμμή" - -#. module: base -#: field:ir.attachment,res_id:0 -msgid "Attached ID" -msgstr "Συνημμένη ταυτότητα" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Purchase Offer" -msgstr "Προσφορά αγορών" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -#: selection:ir.module.module,state:0 -msgid "To be installed" -msgstr "Για να εγκατασταθεί" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update" -msgstr "Αναπροσαρμογή" - -#. module: base -#: view:ir.sequence:0 -#, fuzzy -msgid "Day: %(day)s" -msgstr "Ημέρα ημέρα s" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Δεν μπορείτε να διαβάσετε το παρόν έγγραφο! (%s)" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_FIND_AND_REPLACE" -msgstr "ΚΑΙ" - -#. module: base -#: field:res.request,history:0 view:res.request:0 view:res.partner:0 -msgid "History" -msgstr "Ιστορικό" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_DIALOG_WARNING" -msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ" - -#. module: base -#: model:ir.actions.report.xml,name:base.ir_module_reference_print -msgid "Technical guide" -msgstr "Τεχνικός οδηγός" - -#. module: base -#: field:ir.server.object.lines,col1:0 -msgid "Destination" -msgstr "Προορισμός" - -#. module: base -#: selection:res.request,state:0 -msgid "closed" -msgstr "κλειστό" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONVERT" -msgstr "" - -#. module: base -#: field:ir.exports,name:0 -msgid "Export name" -msgstr "Όνομα εξαγωγής" - -#. module: base -#: help:ir.model.fields,on_delete:0 -#, fuzzy -msgid "On delete property for many2one fields" -msgstr "Ανοιχτό ιδιότητα για" - -#. module: base -#: model:ir.model,name:base.model_ir_rule -msgid "ir.rule" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Days" -msgstr "Ημέρες" - -#. module: base -#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 field:ir.values,key2:0 -#: field:ir.values,value:0 field:ir.values,value_unpickle:0 -msgid "Value" -msgstr "Αξία" - -#. module: base -#: field:ir.default,field_name:0 -msgid "Object field" -msgstr "Τομέας αντικειμένου" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update Translations" -msgstr "Αναπροσαρμογή Μεταφράσεων" - -#. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,width:0 -msgid "Fixed Width" -msgstr "Σταθερό πλάτος" - -#. module: base -#: view:ir.actions.server:0 -msgid "Other Actions Configuration" -msgstr "Άλλη διαμόρφωση ενεργειών" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EXECUTE" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Minutes" -msgstr "Πρακτικά" - -#. module: base -#: wizard_view:module.upgrade,start:0 wizard_view:module.upgrade,end:0 -#, fuzzy -msgid "The modules have been upgraded / installed !" -msgstr "Επιλογές - δυνατότητες - λειτουργίες!" - -#. module: base -#: field:ir.actions.act_window,domain:0 -msgid "Domain Value" -msgstr "Αξία περιοχών" - -#. module: base -#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 -msgid "Help" -msgstr "Βοήθεια" - -#. module: base -#: code:addons/base/module/module.py:0 -#, fuzzy -msgid "" -"Some installed modules depends on the module you plan to desinstall :\n" -" %s" -msgstr "" -"Κάποια προβλήματα Επιλογές - δυνατότητες - λειτουργίες εξαρτάται άρθρωμα, " -"μονάδα, υπομονάδα, Δομικό Στοιχείο στο\n" -" s" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request_link-act -#: model:ir.ui.menu,name:base.menu_res_request_link_act -msgid "Accepted Links in Requests" -msgstr "Αποδεκτές συνδέσεις στα αιτήματα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_YES" -msgstr "" - -#. module: base -#: selection:ir.actions.server,otype:0 -msgid "Create in Other Model" -msgstr "Δημιουργήστε σε άλλο πρότυπο" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_canal-act -#: model:ir.model,name:base.model_res_partner_canal -#: model:ir.ui.menu,name:base.menu_res_partner_canal-act -msgid "Channels" -msgstr "Κανάλια" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_access_act -#: model:ir.ui.menu,name:base.menu_ir_access_act -msgid "Access Controls List" -msgstr "Κατάλογος ελέγχων προσπέλασης" - -#. module: base -#: help:ir.rule.group,global:0 -#, fuzzy -msgid "Make the rule global or it needs to be put on a group or user" -msgstr "Make ή στο a ομάδα ή" - -#. module: base -#: field:ir.actions.wizard,wiz_name:0 -#, fuzzy -msgid "Wizard name" -msgstr "Αυτόματος Οδηγός όνομα" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_custom -#: model:ir.ui.menu,name:base.menu_ir_action_report_custom -#, fuzzy -msgid "Report Custom" -msgstr "Αναφορά Προσαρμοσμένο" - -#. module: base -#: view:ir.module.module:0 -msgid "Schedule for Installation" -msgstr "Σχέδιο για την εγκατάσταση" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Προηγμένη αναζήτηση" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_form -#: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 -msgid "Partners" -msgstr "Συνεργάτες" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Directory:" -msgstr "Κατάλογος:" - -#. module: base -#: field:ir.attachment,res_model:0 -msgid "Attached Model" -msgstr "Συνημμένο πρότυπο" - -#. module: base -#: field:ir.actions.server,trigger_name:0 -msgid "Trigger Name" -msgstr "Όνομα ώθησης" - -#. module: base -#: wizard_button:server.action.create,step_1,create:0 -msgid "Create" -msgstr "Δημιουργήστε" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "The name of the group can not start with \"-\"" -msgstr "Το όνομα της ομάδας δεν μπορεί να αρχίσει με \"-\"" - -#. module: base -#: wizard_view:module.upgrade,start:0 wizard_view:module.upgrade,end:0 -msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -msgstr "Προτείνουμε να ξαναφορτώσετε την ετικέττα επιλογών (Ctrl+t Ctrl+r)." - -#. module: base -#: field:res.partner.title,shortcut:0 view:ir.ui.view_sc:0 -msgid "Shortcut" -msgstr "Συντόμευση" - -#. module: base -#: model:ir.model,name:base.model_ir_model_access -msgid "ir.model.access" -msgstr "" - -#. module: base -#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 -#: field:res.request.link,priority:0 field:res.request,priority:0 -msgid "Priority" -msgstr "Προτεραιότητα" - -#. module: base -#: field:ir.translation,src:0 -msgid "Source" -msgstr "Πηγή" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_contact -#: model:ir.ui.menu,name:base.menu_partner_title_contact -msgid "Contacts Titles" -msgstr "Τίτλοι επαφών" - -#. module: base -#: help:res.partner.address,partner_id:0 -#, fuzzy -msgid "Keep empty for a private address, not related to partner." -msgstr "Διατήρηση κενό για a ιδιωτικό διεύθυνση όχι στο." - -#. module: base -#: selection:ir.translation,type:0 -#, fuzzy -msgid "Wizard Button" -msgstr "Αυτόματος Οδηγός Κουμπί" - -#. module: base -#: view:ir.sequence:0 -#, fuzzy -msgid "Legend (for prefix, suffix)" -msgstr "Λεζάντα για" - -#. module: base -#: field:workflow.activity,flow_stop:0 -msgid "Flow Stop" -msgstr "Στάση ροής" - -#. module: base -#: selection:ir.server.object.lines,type:0 -msgid "Formula" -msgstr "Τύπος" - -#. module: base -#: view:res.company:0 -msgid "Internal Header/Footer" -msgstr "Εσωτερική επιγραφή/υποσημείωση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_LEFT" -msgstr "" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank account owner" -msgstr "Ιδιοκτήτης τραπεζικού λογαριασμού" - -#. module: base -#: field:ir.ui.view,name:0 -#, fuzzy -msgid "View Name" -msgstr "Προβολή Όνομα" - -#. module: base -#: field:ir.ui.view_sc,resource:0 -msgid "Resource Name" -msgstr "Όνομα των πόρων" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, fuzzy -msgid "" -"Save this document to a .tgz file. This archive containt UTF-8 %s files and " -"may be uploaded to launchpad." -msgstr "Αποθήκευση στο a αρχείο Αρχείο s και Μάιος στο." - -#. module: base -#: field:res.partner.address,type:0 -msgid "Address Type" -msgstr "Τύπος διευθύνσεων" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Auto" -msgstr "Αυτόματο" - -#. module: base -#: field:ir.exports,export_fields:0 -msgid "Export Id" -msgstr "Ταυτότητα εξαγωγής" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Hours" -msgstr "Ώρες" - -#. module: base -#: field:ir.translation,value:0 -msgid "Translation Value" -msgstr "Αξία μεταφράσεων" - -#. module: base -#: field:ir.cron,interval_type:0 -#, fuzzy -msgid "Interval Unit" -msgstr "Μεσοδιάστημα Μονάδα" - -#. module: base -#: view:res.request:0 -msgid "End of Request" -msgstr "Τέλος του αιτήματος" - -#. module: base -#: view:res.request:0 -msgid "References" -msgstr "Αναφορές" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This record was modified in the meanwhile" -msgstr "Αυτό το αρχείο τροποποιήθηκε εν τω μεταξύ" - -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Note that this operation may take a few minutes." -msgstr "Σημειώστε ότι αυτή η λειτουργία μπορεί να πάρει λεπτά." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COLOR_PICKER" -msgstr "" - -#. module: base -#: field:res.request,act_to:0 field:res.request.history,act_to:0 -msgid "To" -msgstr "Προς" - -#. module: base -#: field:workflow.activity,kind:0 -msgid "Kind" -msgstr "Είδος" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Αυτή η μέθοδος δεν υπάρχει άλλο" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Tree can only be used in tabular reports" -msgstr "Το δέντρο μπορεί μόνο να χρησιμοποιηθεί στις συνοπτικές αναφορές" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Manual" -msgstr "Χειρωνακτικός" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Τραπεζικοί λογαριασμοί" - -#. module: base -#: selection:ir.actions.act_window,view_type:0 -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Tree" -msgstr "Δέντρο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLEAR" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, fuzzy -msgid "Bar charts need at least two fields" -msgstr "Ράβδος σε δύο" - -#. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Διαβασμένη πρόσβαση" - -#. module: base -#: selection:ir.report.custom,type:0 -#, fuzzy -msgid "Line Plot" -msgstr "Γραμμή Γράφημα" - -#. module: base -#: field:wizard.ir.model.menu.create,name:0 -msgid "Menu Name" -msgstr "Όνομα επιλογών" - -#. module: base -#: selection:ir.model.fields,state:0 -#, fuzzy -msgid "Custom Field" -msgstr "Προσαρμοσμένο Πεδίο" - -#. module: base -#: field:ir.model.fields,relation_field:0 -#, fuzzy -msgid "Relation Field" -msgstr "Σχέση, Πίνακας Πεδίο" - -#. module: base -#: code:osv/fields.py:0 -#, fuzzy -msgid "Not implemented search_memory method !" -msgstr "Not!" - -#. module: base -#: field:ir.report.custom.fields,fontcolor:0 -msgid "Font color" -msgstr "Χρώμα πηγών" - -#. module: base -#: model:ir.actions.act_window,name:base.action_server_action -#: model:ir.ui.menu,name:base.menu_server_action view:ir.actions.server:0 -msgid "Server Actions" -msgstr "Ενέργειες κεντρικών υπολογιστών" - -#. module: base -#: field:ir.model.fields,view_load:0 -#, fuzzy -msgid "View Auto-Load" -msgstr "Προβολή Αυτόματο Φόρτωμα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_GO_UP" -msgstr "ΠΗΓΑΙΝΕ" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_DESCENDING" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request -msgid "res.request" -msgstr "" - -#. module: base -#: field:res.groups,rule_groups:0 field:res.users,rules_id:0 view:res.groups:0 -msgid "Rules" -msgstr "Κανόνες" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title -msgid "Titles" -msgstr "Τίτλοι" - -#. module: base -#: wizard_view:module.upgrade,start:0 wizard_view:module.upgrade,end:0 -msgid "System upgrade done" -msgstr "Έγινα Βελτίωση συστημάτων" - -#. module: base -#: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 -#, fuzzy -msgid "Type of view" -msgstr "Τύπος από" - -#. module: base -#: code:report/custom.py:0 -#, fuzzy -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "από 2η είναι a!" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" -msgstr "" - -#. module: base -#: field:ir.actions.todo,start_date:0 -msgid "Start Date" -msgstr "Μέρα έναρξης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_address_form -#: model:ir.model,name:base.model_res_partner_address -#: view:res.partner.address:0 -msgid "Partner Addresses" -msgstr "Διευθύνσεις συνεργατών" - -#. module: base -#: field:ir.actions.report.xml,report_xml:0 -#, fuzzy -msgid "XML path" -msgstr "XML διαδρομή" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PROPERTIES" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -#, fuzzy -msgid "" -"The official translations pack of all OpenERP/OpenObjects module are managed " -"through launchpad. We use their online interface to synchronize all " -"translations efforts." -msgstr "" -"από όλα άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Τε(τάρτη) σε σύνδεση στο " -"όλα." - -#. module: base -#: model:ir.actions.act_window,name:base.grant_menu_access -#: model:ir.ui.menu,name:base.menu_grant_menu_access -msgid "Grant access to menu" -msgstr "Πρόσβαση επιχορήγησης στις επιλογές" - -#. module: base -#: field:ir.attachment,datas:0 -msgid "File Content" -msgstr "Περιεκτικότητα σε αρχεία" - -#. module: base -#: view:ir.module.module:0 -#, fuzzy -msgid "Uninstall (beta)" -msgstr "Απεγκατάσταση" - -#. module: base -#: selection:ir.actions.url,target:0 selection:ir.actions.act_window,target:0 -msgid "New Window" -msgstr "Νέο παράθυρο" - -#. module: base -#: help:res.partner,customer:0 -msgid "Check this box if the partner if a customer." -msgstr "Ελέγξτε αυτό το κιβώτιο εάν είναι συνεργάτης ή πελάτης." - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Second field should be figures" -msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμοί" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Commercial Prospect" -msgstr "" - -#. module: base -#: field:ir.actions.actions,parent_id:0 -#, fuzzy -msgid "Parent Action" -msgstr "Γονέας Ενέργεια" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, fuzzy -msgid "" -"Couldn't generate the next id because some partners have an alphabetic id !" -msgstr "t id μερικές id!" - -#. module: base -#: selection:ir.report.custom,state:0 -msgid "Unsubscribed" -msgstr "Διαγραμμένος από τη συνδρομή" - -#. module: base -#: wizard_field:module.module.update,update,update:0 -#, fuzzy -msgid "Number of modules updated" -msgstr "Αριθμός από Επιλογές - δυνατότητες - λειτουργίες" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -#, fuzzy -msgid "Skip Step" -msgstr "Παράβλεψη Βήμα" - -#. module: base -#: model:ir.actions.act_window,name:base.act_res_partner_event -#: field:res.partner.event,name:0 field:res.partner,events:0 -msgid "Events" -msgstr "Γεγονότα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles -#: model:ir.ui.menu,name:base.menu_action_res_roles -#, fuzzy -msgid "Roles Structure" -msgstr "Δομή" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 -msgid "ir.actions.url" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_STOP" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_event_type-act -#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act -#, fuzzy -msgid "Active Partner Events" -msgstr "Ενεργό Συνεργάτης Γεγονότα" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "Error occured while validating the field(s) %s: %s" -msgstr "Σφάλμα s s s" - -#. module: base -#: view:res.users:0 -#, fuzzy -msgid "Define New Users" -msgstr "Ορισμός Νέο Χρήστες" - -#. module: base -#: model:ir.actions.act_window,name:base.action_rule -#: model:ir.ui.menu,name:base.menu_action_rule -msgid "Record Rules" -msgstr "Κανόνες αρχείων" - -#. module: base -#: field:res.config.view,view:0 -#, fuzzy -msgid "View Mode" -msgstr "Προβολή Κατάσταση" - -#. module: base -#: wizard_field:module.module.update,update,add:0 -#, fuzzy -msgid "Number of modules added" -msgstr "Αριθμός από Επιλογές - δυνατότητες - λειτουργίες" - -#. module: base -#: field:res.bank,phone:0 field:res.partner.address,phone:0 -msgid "Phone" -msgstr "Τηλέφωνο" - -#. module: base -#: help:ir.actions.wizard,multi:0 -#, fuzzy -msgid "" -"If set to true, the wizard will not be displayed on the right toolbar of a " -"form views." -msgstr "στο αληθές όχι δεξιά από a." - -#. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Ρόλος που απαιτείται" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_groups -#: field:ir.actions.report.xml,groups_id:0 -#: field:ir.actions.act_window,groups_id:0 field:ir.actions.wizard,groups_id:0 -#: field:ir.actions.todo,groups_id:0 field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 -#: field:res.users,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 -#: view:res.users:0 -msgid "Groups" -msgstr "Ομάδες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "" - -#. module: base -#: field:ir.actions.todo,active:0 field:ir.cron,active:0 -#: field:ir.module.repository,active:0 field:ir.sequence,active:0 -#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 -#: field:res.partner,active:0 field:res.partner.address,active:0 -#: field:res.partner.canal,active:0 field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 field:res.request,active:0 -#: field:res.users,active:0 -msgid "Active" -msgstr "Ενεργός" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Δημιουργημένες επιλογές" - -#. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Orignal View" -msgstr "Αρχική Άποψη" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Sale Opportunity" -msgstr "Ευκαιρία πώλησης" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid ">" -msgstr ">" - -#. module: base -#: field:workflow.triggers,workitem_id:0 -msgid "Workitem" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "ΠΙΣΤΟΠΟΙΗΣΗ" - -#. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" -msgstr "Ανοίξτε ένα παράθυρο" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Μήνες" - -#. module: base -#: field:workflow.activity,signal_send:0 -#, fuzzy -msgid "Signal (subflow.*)" -msgstr "Σήμα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_ZOOM_OUT" -msgstr "ΕΞΟΔΑ" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -#: selection:ir.module.module,state:0 -msgid "To be removed" -msgstr "Για να αφαιρεθεί" - -#. module: base -#: field:res.partner.category,child_ids:0 -#, fuzzy -msgid "Childs Category" -msgstr "Κατηγορία" - -#. module: base -#: field:ir.model.fields,model:0 field:ir.model,model:0 -#: field:ir.model.grid,model:0 field:ir.model,name:0 -#, fuzzy -msgid "Object Name" -msgstr "Όνομα αντικειμένου" - -#. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 -#: view:ir.actions.actions:0 -msgid "Action" -msgstr "Ενέργεια" - -#. module: base -#: field:ir.rule,domain_force:0 -#, fuzzy -msgid "Force Domain" -msgstr "Εξαναγκασμός Τομέας" - -#. module: base -#: view:ir.actions.server:0 -#, fuzzy -msgid "Email Configuration" -msgstr "Email Ρυθμίσεις" - -#. module: base -#: model:ir.model,name:base.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "And" -msgstr "και" - -#. module: base -#: field:ir.model.fields,relation:0 -msgid "Object Relation" -msgstr "Σχέση αντικειμένου" - -#. module: base -#: model:ir.actions.act_window,name:base.action_attachment -#: model:ir.ui.menu,name:base.menu_action_attachment view:ir.attachment:0 -msgid "Attachments" -msgstr "Συνδέσεις" - -#. module: base -#: field:ir.rule,field_id:0 selection:ir.translation,type:0 -msgid "Field" -msgstr "Πεδίο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_COLOR" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,multi:0 -#, fuzzy -msgid "Action on multiple doc." -msgstr "Ενέργεια." - -#. module: base -#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 -msgid "Partner Ref." -msgstr "Εταιρική Αναφ." - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom_fields -#, fuzzy -msgid "ir.report.custom.fields" -msgstr "έκθεση / αναφορά" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Uninstall" -msgstr "Ακυρώστε την απεγκατάσταση" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_window" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-mrp" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Done" -msgstr "Έγινε" - -#. module: base -#: field:ir.actions.server,trigger_obj_id:0 -#, fuzzy -msgid "Trigger On" -msgstr "Έναυσμα Ανοιχτό" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Invoice" -msgstr "Τιμολόγιο" - -#. module: base -#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 -#: help:ir.actions.act_window.view,multi:0 -#, fuzzy -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form views." -msgstr "στο αληθές όχι δεξιά από a." - -#. module: base -#: model:ir.ui.menu,name:base.next_id_4 -msgid "Low Level" -msgstr "Χαμηλό επλιπεδο " - -#. module: base -#: wizard_view:module.upgrade,start:0 wizard_view:module.upgrade,end:0 -#, fuzzy -msgid "You may have to reinstall some language pack." -msgstr "Εσείς Μάιος στο επανεγκατάσταση μερικές." - -#. module: base -#: model:ir.model,name:base.model_res_currency_rate -msgid "Currency Rate" -msgstr "Ποσοστό νομίσματος" - -#. module: base -#: field:ir.model.access,perm_write:0 -#, fuzzy -msgid "Write Access" -msgstr "Εγγραφή Πρόσβαση" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export done" -msgstr "Η Εξαγωγή έγινε " - -#. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Μέγεθος" - -#. module: base -#: field:res.bank,city:0 field:res.partner.address,city:0 -#: field:res.partner.bank,city:0 field:res.partner,city:0 -msgid "City" -msgstr "Πόλη" - -#. module: base -#: field:res.company,child_ids:0 -#, fuzzy -msgid "Childs Company" -msgstr "Εταιρία" - -#. module: base -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Το όνομα αντικειμένου πρέπει να αρχίζει με x_ και να μήν περιέχει ειδικούς " -"χαρακτήρες!" - -#. module: base -#: rml:ir.module.reference:0 -#, fuzzy -msgid "Module:" -msgstr "Άρθρωμα:" - -#. module: base -#: field:ir.actions.configuration.wizard,name:0 -#, fuzzy -msgid "Next Wizard" -msgstr "Επόμενο Αυτόματος Οδηγός" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<>" -msgstr "<>" - -#. module: base -#: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 field:ir.ui.menu,name:0 view:ir.ui.menu:0 -#, fuzzy -msgid "Menu" -msgstr "Μενού" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<=" -msgstr "<=" - -#. module: base -#: view:wizard.module.lang.export:0 -#, fuzzy -msgid "Export Data" -msgstr "Εξαγωγή Δεδομένα" - -#. module: base -#: field:workflow.triggers,instance_id:0 -#, fuzzy -msgid "Destination Instance" -msgstr "Προορισμός Στιγμή, Στιγμιότυπο" - -#. module: base -#: wizard_view:module.lang.install,start:0 -#, fuzzy -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 "Εσείς αλλαγή από και a νέο στο." - -#. module: base -#: field:ir.module.module,menus_by_module:0 view:res.groups:0 -#, fuzzy -msgid "Menus" -msgstr "Μενού" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 -#, fuzzy -msgid "in" -msgstr "σε" - -#. module: base -#: field:ir.actions.url,target:0 -#, fuzzy -msgid "Action Target" -msgstr "Ενέργεια Στόχος/Προορισμός" - -#. module: base -#: field:ir.report.custom,field_parent:0 -#, fuzzy -msgid "Child Field" -msgstr "Παιδί Πεδίο" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "https://translations.launchpad.net/openobject" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EDIT" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -#, fuzzy -msgid "GPL-3 or later version" -msgstr "GPL ή έκδοση" - -#. module: base -#: field:ir.actions.report.custom,usage:0 field:ir.actions.report.xml,usage:0 -#: field:ir.actions.server,usage:0 field:ir.actions.act_window,usage:0 -#: field:ir.actions.actions,usage:0 -#, fuzzy -msgid "Action Usage" -msgstr "Ενέργεια Χρήση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_HOME" -msgstr "ΑΡΧΙΚΗ" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, fuzzy -msgid "Enter at least one field !" -msgstr "Εισαγωγή σε!" - -#. module: base -#: field:ir.actions.server,child_ids:0 selection:ir.actions.server,state:0 -#, fuzzy -msgid "Others Actions" -msgstr "Άλλα Ενέργειες" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_server_action_create -#: view:ir.actions.server:0 -#, fuzzy -msgid "Create Action" -msgstr "Δημιουργία Ενέργεια" - -#. module: base -#: model:ir.model,name:base.model_workflow_workitem -msgid "workflow.workitem" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,name:0 -#, fuzzy -msgid "Shortcut Name" -msgstr "Συντόμευση Όνομα" - -#. module: base -#: selection:ir.module.module,state:0 -#, fuzzy -msgid "Not Installable" -msgstr "Not" - -#. module: base -#: field:res.partner.event,probability:0 -#, fuzzy -msgid "Probability (0.50)" -msgstr "Πιθανότητα" - -#. module: base -#: field:res.partner.address,mobile:0 -#, fuzzy -msgid "Mobile" -msgstr "Κινητό" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "html" -msgstr "" - -#. module: base -#: field:ir.report.custom,repeat_header:0 -msgid "Repeat Header" -msgstr "Επαναλάβετε την επιγραφή" - -#. module: base -#: field:res.users,address_id:0 -msgid "Address" -msgstr "Διεύθυνση" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Your system will be upgraded." -msgstr "Το σύστημά σας θα αναβαθμιστεί." - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_user_form -#: view:res.users:0 -#, fuzzy -msgid "Configure User" -msgstr "Ρύθμιση Χρήστη" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Name:" -msgstr "Όνομα:" - -#. module: base -#: help:res.country,name:0 -#, fuzzy -msgid "The full name of the country." -msgstr "όνομα από χώρα." - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_JUMP_TO" -msgstr "ΕΩΣ" - -#. module: base -#: field:ir.ui.menu,child_id:0 -#, fuzzy -msgid "Child ids" -msgstr "Παιδί" - -#. module: base -#: field:ir.actions.todo,end_date:0 -#, fuzzy -msgid "End Date" -msgstr "Ημερομηνία λήξης" - -#. module: base -#: field:ir.exports,resource:0 field:ir.property,res_id:0 -#, fuzzy -msgid "Resource" -msgstr "Πόρος" - -#. module: base -#: field:ir.model.data,date_update:0 -#, fuzzy -msgid "Update Date" -msgstr "Ενημέρωση Ημερομηνία" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-tools" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -#, fuzzy -msgid "Python code" -msgstr "Python" - -#. module: base -#: view:ir.actions.report.xml:0 -#, fuzzy -msgid "Report xml" -msgstr "Αναφορά" - -#. module: base -#: model:ir.actions.act_window,name:base.action_module_open_categ -#: model:ir.actions.act_window,name:base.open_module_tree -#: field:wizard.module.lang.export,modules:0 -#: model:ir.ui.menu,name:base.menu_module_tree view:ir.module.module:0 -#, fuzzy -msgid "Modules" -msgstr "Αρθρώματα" - -#. module: base -#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 -#: field:workflow.workitem,subflow_id:0 -msgid "Subflow" -msgstr "" - -#. module: base -#: help:res.partner,vat:0 -#, fuzzy -msgid "Value Added Tax number" -msgstr "Τιμή Προστέθηκε Φόρος" - -#. module: base -#: model:ir.actions.act_window,name:base.act_values_form -#: model:ir.ui.menu,name:base.menu_values_form view:ir.values:0 -#, fuzzy -msgid "Values" -msgstr "Τιμές" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_INFO" -msgstr "" - -#. module: base -#: field:workflow.transition,signal:0 -#, fuzzy -msgid "Signal (button Name)" -msgstr "Σήμα Όνομα" - -#. module: base -#: field:res.company,logo:0 -msgid "Logo" -msgstr "Λογότυπο" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_bank_form -#: field:res.partner,bank_ids:0 -#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 -msgid "Banks" -msgstr "Τράπεζες" - -#. module: base -#: field:ir.cron,numbercall:0 -msgid "Number of calls" -msgstr "Αριθμός κλήσεων" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-sale" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -#, fuzzy -msgid "Field Mappings" -msgstr "Πεδίο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ADD" -msgstr "" - -#. module: base -#: view:ir.model.fields:0 view:ir.model:0 -#, fuzzy -msgid "Security on Groups" -msgstr "Ασφάλεια Ομάδες" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "center" -msgstr "κέντρο" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, fuzzy -msgid "Can not create the module file: %s !" -msgstr "όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο s!" - -#. module: base -#: field:ir.server.object.lines,server_id:0 -#, fuzzy -msgid "Object Mapping" -msgstr "Αντικείμενο Αντιστοίχηση" - -#. module: base -#: field:ir.module.module,published_version:0 -msgid "Published Version" -msgstr "Δημοσιευμένη έκδοση" - -#. module: base -#: field:ir.actions.act_window,auto_refresh:0 -#, fuzzy -msgid "Auto-Refresh" -msgstr "Αυτόματο Ανανέωση" - -#. module: base -#: model:ir.actions.act_window,name:base.action_country_state -#: model:ir.ui.menu,name:base.menu_country_state_partner -msgid "States" -msgstr "Κράτη" - -#. module: base -#: field:res.currency.rate,rate:0 -msgid "Rate" -msgstr "Ποσοστό" - -#. module: base -#: selection:res.lang,direction:0 -#, fuzzy -msgid "Right-to-left" -msgstr "Δεξιά στο αριστερά" - -#. module: base -#: view:ir.actions.server:0 -#, fuzzy -msgid "Create / Write" -msgstr "Δημιουργία Εγγραφή" - -#. module: base -#: model:ir.model,name:base.model_ir_exports_line -#, fuzzy -msgid "ir.exports.line" -msgstr "γραμμή" - -#. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Πιστωτικό όριο" - -#. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Προκαθορισμένη αξία" - -#. module: base -#: rml:ir.module.reference:0 -#, fuzzy -msgid "Object:" -msgstr "Αντικείμενο:" - -#. module: base -#: model:ir.model,name:base.model_res_country_state -msgid "Country state" -msgstr "Κράτος χώρας" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form_all -#: model:ir.ui.menu,name:base.menu_ir_property_form_all -msgid "All Properties" -msgstr "Όλες οι ιδιότητες" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "left" -msgstr "αριστερό" - -#. module: base -#: field:ir.module.module,category_id:0 -msgid "Category" -msgstr "Κατηγορία" - -#. module: base -#: view:res.request:0 view:ir.model:0 -msgid "Status" -msgstr "Θέση" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_window -#: model:ir.ui.menu,name:base.menu_ir_action_window -#, fuzzy -msgid "Window Actions" -msgstr "Παράθυρο Ενέργειες" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_close -msgid "ir.actions.act_window_close" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Service" -msgstr "Υπηρεσία" - -#. module: base -#: help:ir.actions.act_window,auto_refresh:0 -#, fuzzy -msgid "Add an auto-refresh on the view" -msgstr "Προσθήκη αυτόματο" - -#. module: base -#: field:wizard.module.lang.export,name:0 -#, fuzzy -msgid "Filename" -msgstr "Όνομα αρχείου" - -#. module: base -#: field:ir.model,access_ids:0 -msgid "Access" -msgstr "Πρόσβαση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "STOCK_GO_DOWN" -msgstr "ΠΗΓΑΙΝΕ" - -#. module: base -#: field:ir.report.custom,title:0 -msgid "Report title" -msgstr "Τίτλος εκθέσεων" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Weeks" -msgstr "Εβδομάδες" - -#. module: base -#: field:res.groups,name:0 -msgid "Group Name" -msgstr "Όνομα ομάδας" - -#. module: base -#: wizard_field:module.upgrade,next,module_download:0 -#: wizard_view:module.upgrade,next:0 -#, fuzzy -msgid "Modules to download" -msgstr "Αρθρώματα στο" - -#. module: base -#: field:res.bank,fax:0 field:res.partner.address,fax:0 -#, fuzzy -msgid "Fax" -msgstr "Φαξ" - -#. module: base -#: view:res.users:0 -#, fuzzy -msgid "Groups are used to defined access rights on each screen and menu." -msgstr "Ομάδες στο οθόνη και." - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_workitem_form -#: model:ir.ui.menu,name:base.menu_workflow_workitem -msgid "Workitems" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT_PREVIEW" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "The perm_read method is not implemented on this object !" -msgstr "διαβασμένο είναι όχι!" - -#. module: base -#: field:ir.default,company_id:0 field:ir.property,company_id:0 -#: field:ir.values,company_id:0 field:res.users,company_id:0 -#: view:res.company:0 -msgid "Company" -msgstr "Εταιρεία" - -#. module: base -#: view:ir.actions.server:0 -#, fuzzy -msgid "" -"Access all the fields related to the current object easily just by defining " -"name of the attribute, i.e. [[partner_id.name]] for Invoice Object" -msgstr "" -"Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο " -"Αντικείμενο" - -#. module: base -#: field:res.request,create_date:0 -msgid "Created date" -msgstr "Ημερομηνία δημιουργείας " - -#. module: base -#: view:ir.actions.server:0 -#, fuzzy -msgid "Email / SMS" -msgstr "Email SMS" - -#. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence -msgid "ir.sequence" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -#: selection:ir.module.module,state:0 -#, fuzzy -msgid "Not Installed" -msgstr "Μη εγκατεστημένη" - -#. module: base -#: field:res.partner.event,canal_id:0 view:res.partner.canal:0 -#, fuzzy -msgid "Channel" -msgstr "Κανάλι" - -#. module: base -#: field:ir.ui.menu,icon:0 -msgid "Icon" -msgstr "Εικονίδιο" - -#. module: base -#: wizard_button:module.lang.import,init,finish:0 -#: wizard_button:module.lang.install,start,end:0 -#: wizard_button:module.module.update,update,open_window:0 -#, fuzzy -msgid "Ok" -msgstr "Εντάξει" - -#. module: base -#: field:ir.cron,doall:0 -#, fuzzy -msgid "Repeat missed" -msgstr "Επανάληψη" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "Couldn't find tag '%s' in parent view !" -msgstr "t ετικέτα s σε!" - -#. module: base -#: field:ir.ui.view,inherit_id:0 -#, fuzzy -msgid "Inherited View" -msgstr "Προβολή" - -#. module: base -#: model:ir.model,name:base.model_ir_translation -msgid "ir.translation" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,limit:0 field:ir.report.custom,limitt:0 -msgid "Limit" -msgstr "Όριο" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request-act -#: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 -msgid "Requests" -msgstr "Αιτήματα" - -#. module: base -#: selection:workflow.activity,split_mode:0 -msgid "Or" -msgstr "ή" - -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -#, fuzzy -msgid "ir.rule.group" -msgstr "ομάδα" - -#. module: base -#: field:res.roles,child_id:0 -msgid "Childs" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Selection" -msgstr "Επιλογή" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 -msgid "=" -msgstr "=" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_install -#: model:ir.ui.menu,name:base.menu_module_tree_install -#, fuzzy -msgid "Installed modules" -msgstr "Εγκατεστημένο Επιλογές - δυνατότητες - λειτουργίες" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, fuzzy -msgid "Warning" -msgstr "Προειδοποίηση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ABOUT" -msgstr "" - -#. module: base -#: field:ir.rule,operator:0 -#, fuzzy -msgid "Operator" -msgstr "Τελεστής" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ValidateError" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OPEN" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -#, fuzzy -msgid "Client Action" -msgstr "Πελάτης Ενέργεια" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -#, fuzzy -msgid "right" -msgstr "δεξιά" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PREVIOUS" -msgstr "" - -#. module: base -#: wizard_button:base.module.import,init,import:0 -#: model:ir.actions.wizard,name:base.wizard_base_module_import -#: model:ir.ui.menu,name:base.menu_wizard_module_import -#, fuzzy -msgid "Import module" -msgstr "Εισαγωγή άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Version:" -msgstr "Έκδοση:" - -#. module: base -#: view:ir.actions.server:0 -#, fuzzy -msgid "Trigger Configuration" -msgstr "Έναυσμα Ρυθμίσεις" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DISCONNECT" -msgstr "" - -#. module: base -#: field:res.company,rml_footer1:0 -#, fuzzy -msgid "Report Footer 1" -msgstr "Αναφορά Υποσέλιδο 1" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, fuzzy -msgid "You can not delete this document! (%s)" -msgstr "Εσείς όχι s" - -#. module: base -#: model:ir.actions.act_window,name:base.action_report_custom -#: view:ir.report.custom:0 -#, fuzzy -msgid "Custom Report" -msgstr "Προσαρμοσμένο Αναφορά" - -#. module: base -#: selection:ir.actions.server,state:0 -#, fuzzy -msgid "Email" -msgstr "Email" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -#, fuzzy -msgid "Resynchronise Terms" -msgstr "Όροι" - -#. module: base -#: field:ir.model.access,perm_create:0 -#, fuzzy -msgid "Create Access" -msgstr "Δημιουργία Πρόσβαση" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_other_form -#: model:ir.ui.menu,name:base.menu_partner_other_form -#, fuzzy -msgid "Others Partners" -msgstr "Άλλοι συνεργάτες" - -#. module: base -#: field:ir.model.data,noupdate:0 -msgid "Non Updatable" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Printed:" -msgstr "Τυπωμένο:" - -#. module: base -#: code:addons/base/module/module.py:0 -#, fuzzy -msgid "Can not upgrade module '%s'. It is not installed." -msgstr "" -"όχι αναβάθμιση άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s είναι όχι." - -#. module: base -#: code:osv/fields.py:0 -#, fuzzy -msgid "Not implemented set_memory method !" -msgstr "Not!" - -#. module: base -#: selection:ir.actions.act_window,target:0 -#, fuzzy -msgid "Current Window" -msgstr "Τρέχον παράθυρο" - -#. module: base -#: view:res.partner.category:0 -#, fuzzy -msgid "Partner category" -msgstr "Συνεργάτης" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NETWORK" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_fields -#: model:ir.model,name:base.model_ir_model_fields field:ir.model,field_id:0 -#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 -#: model:ir.ui.menu,name:base.ir_model_model_fields view:ir.model.fields:0 -#: view:ir.model:0 -msgid "Fields" -msgstr "Πεδία" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_2 -msgid "Interface" -msgstr "Διεπαφή" - -#. module: base -#: model:ir.ui.menu,name:base.menu_base_config view:ir.sequence:0 -#: view:res.company:0 -msgid "Configuration" -msgstr "Διαμόρφωση" - -#. module: base -#: field:ir.model.fields,ttype:0 view:ir.model:0 -msgid "Field Type" -msgstr "Τύπος πεδίων " - -#. module: base -#: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 -msgid "Complete Name" -msgstr "Πλήρες όνομα" - -#. module: base -#: field:res.country.state,code:0 -#, fuzzy -msgid "State Code" -msgstr "Κατάσταση Κώδικας" - -#. module: base -#: field:ir.model.fields,on_delete:0 -#, fuzzy -msgid "On delete" -msgstr "Ανοιχτό" - -#. module: base -#: view:ir.report.custom:0 -#, fuzzy -msgid "Subscribe Report" -msgstr "Εγγραφή συνδρομητή Αναφορά" - -#. module: base -#: field:ir.values,object:0 -#, fuzzy -msgid "Is Object" -msgstr "Είναι Αντικείμενο" - -#. module: base -#: field:res.lang,translatable:0 -msgid "Translatable" -msgstr "Μεταφράσιμο " - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Daily" -msgstr "Καθημερινά" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -#, fuzzy -msgid "Cascade" -msgstr "Διαδοχική" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, fuzzy -msgid "Field %d should be a figure" -msgstr "Πεδίο a" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -#, fuzzy -msgid "Gantt" -msgstr "Gantt" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not Implemented" -msgstr "Μη εφαρμοσμένο" - -#. module: base -#: view:ir.property:0 -msgid "Property" -msgstr "Ιδιοκτησία" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type -#: view:res.partner.bank.type:0 -#, fuzzy -msgid "Bank Account Type" -msgstr "Τραπ Λογαριασμός Τύπος" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -#, fuzzy -msgid "Next Configuration Step" -msgstr "Επόμενο Ρυθμίσεις Βήμα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "terp-project" -msgstr "έργο/προβολή" - -#. module: base -#: field:res.groups,comment:0 -msgid "Comment" -msgstr "Σχόλιο" - -#. module: base -#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 -#: field:res.partner.title,domain:0 -msgid "Domain" -msgstr "Τομέας" - -#. module: base -#: view:res.config.view:0 -#, fuzzy -msgid "" -"Choose the simplified interface if you are testing OpenERP for the first " -"time. Less used options or fields are automatically hidden. You will be able " -"to change this, later, through the Administration menu." -msgstr "" -"Επιλογή για πρώτο διάρκεια επιλογές ή κρυμμένος Εσείς στο αλλαγή Διαχείριση." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PREFERENCES" -msgstr "" - -#. module: base -#: field:ir.module.module,shortdesc:0 -#, fuzzy -msgid "Short description" -msgstr "Μικρή περιγραφή" - -#. module: base -#: help:ir.actions.report.xml,attachment:0 -#, fuzzy -msgid "" -"This is the prefix of the file name the print will be saved as attachement. " -"Keep empty to not save the printed reports" -msgstr "είναι από αρχείο όνομα Διατήρηση κενό στο όχι" - -#. module: base -#: field:res.country.state,name:0 -msgid "State Name" -msgstr "'Ονομα κατάστασης " - -#. module: base -#: view:res.company:0 -#, fuzzy -msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "Λογότυπο Χρήση a μέγεθος από εικονοστοιχεία." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "" - -#. module: base -#: field:workflow.activity,join_mode:0 -#, fuzzy -msgid "Join Mode" -msgstr "Σύζευξη/Συνένωση Κατάσταση" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a5" -msgstr "" - -#. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Μήνυμα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_LAST" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_xml -#: selection:ir.ui.menu,action:0 -#, fuzzy -msgid "ir.actions.report.xml" -msgstr "έκθεση / αναφορά" - -#. module: base -#: view:wizard.module.lang.export:0 -#, fuzzy -msgid "" -"To improve some terms of the official translations of OpenERP, you should " -"modify the terms directly on the launchpad interface. If you made lots of " -"translations for your own module, you can also publish all your translation " -"at once." -msgstr "" -"Προς μερικές από από από για άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο όλα " -"σε." - -#. module: base -#: view:res.users:0 -#, fuzzy -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." -msgstr "σημείωση στο και αλλαγή κωδικός πρόσβασης." - -#. module: base -#: field:res.partner,address:0 view:res.partner.address:0 -msgid "Contacts" -msgstr "Επαφές" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -#, fuzzy -msgid "Graph" -msgstr "Γράφος, Γράφημα" - -#. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" -msgstr "Πιό πρόσφατη έκδοση" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_server -msgid "ir.actions.server" -msgstr "" - -#. module: base -#: wizard_button:module.lang.install,init,start:0 -msgid "Start installation" -msgstr "'Εναρξη Εγκατάστασης" - -#. module: base -#: view:ir.model:0 -msgid "Fields Description" -msgstr "Περιγραφή πεδίων " - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -#, fuzzy -msgid "Module dependency" -msgstr "Άρθρωμα εξάρτηση" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "The name_get method is not implemented on this object !" -msgstr "όνομα λήψη είναι όχι!" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_upgrade -#: model:ir.ui.menu,name:base.menu_wizard_upgrade -#, fuzzy -msgid "Apply Scheduled Upgrades" -msgstr "Εφαρμογή Προγραμματισμένο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND_MULTIPLE" -msgstr "" - -#. module: base -#: view:res.config.view:0 -#, fuzzy -msgid "Choose Your Mode" -msgstr "Επιλογή Κατάσταση" - -#. module: base -#: view:ir.actions.report.custom:0 -#, fuzzy -msgid "Report custom" -msgstr "Αναφορά" - -#. module: base -#: field:workflow.activity,action_id:0 view:ir.actions.server:0 -#, fuzzy -msgid "Server Action" -msgstr "Εξυπηρετητής Ενέργεια" - -#. module: base -#: selection:ir.module.module,license:0 -#, fuzzy -msgid "GPL-3" -msgstr "GPL 3" - -#. module: base -#: view:ir.sequence:0 -#, fuzzy -msgid "Year: %(year)s" -msgstr "Έτος έτος s" - -#. module: base -#: field:ir.actions.server,name:0 field:ir.actions.url,name:0 -#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 -#: field:ir.actions.actions,name:0 -#, fuzzy -msgid "Action Name" -msgstr "Όνομα Ενέργειας" - -#. module: base -#: field:ir.actions.configuration.wizard,progress:0 -#, fuzzy -msgid "Configuration Progress" -msgstr "Ρυθμίσεις Πρόοδος" - -#. module: base -#: field:res.company,rml_footer2:0 -#, fuzzy -msgid "Report Footer 2" -msgstr "Αναφορά Υποσέλιδο 2" - -#. module: base -#: field:res.bank,email:0 -msgid "E-Mail" -msgstr "Ηλεκτρονικό ταχυδρομείο" - -#. module: base -#: model:ir.model,name:base.model_res_groups -msgid "res.groups" -msgstr "" - -#. module: base -#: field:workflow.activity,split_mode:0 -#, fuzzy -msgid "Split Mode" -msgstr "Χωρισμός Κατάσταση" - -#. module: base -#: model:ir.ui.menu,name:base.menu_localisation -msgid "Localisation" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -#, fuzzy -msgid "Calculate Count" -msgstr "Υπολογισμός Μέτρηση" - -#. module: base -#: field:ir.module.module,dependencies_id:0 view:ir.module.module:0 -msgid "Dependencies" -msgstr "" - -#. module: base -#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 -#: view:res.users:0 -msgid "User" -msgstr "Χρήστης" - -#. module: base -#: field:res.partner,parent_id:0 -#, fuzzy -msgid "Main Company" -msgstr "Κύριο Εταιρία" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form -#: model:ir.ui.menu,name:base.menu_ir_property_form -#, fuzzy -msgid "Default properties" -msgstr "Εξ ορισμού ιδιότητες" - -#. module: base -#: field:res.request.history,date_sent:0 -msgid "Date sent" -msgstr "Ημερομηνία που στέλνεται" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_import -#: model:ir.ui.menu,name:base.menu_wizard_lang_import -#, fuzzy -msgid "Import a Translation File" -msgstr "Εισαγωγή a Μετάφραση Αρχείο" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, fuzzy -msgid "Please specify the Partner Email address !" -msgstr "Συνεργάτης Email διεύθυνση!" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_partner -#: model:ir.ui.menu,name:base.menu_partner_title_partner -#: view:res.partner.title:0 -#, fuzzy -msgid "Partners Titles" -msgstr "Τίτλοι" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation_untrans -#: model:ir.ui.menu,name:base.menu_action_translation_untrans -#, fuzzy -msgid "Untranslated terms" -msgstr "Αμετάφραστοι όροι" - -#. module: base -#: view:ir.actions.act_window:0 -#, fuzzy -msgid "Open Window" -msgstr "Άνοιγμα Παράθυρο" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" -msgstr "" - -#. module: base -#: view:workflow.transition:0 -#, fuzzy -msgid "Transition" -msgstr "Μετάβαση" - -#. module: base -#: wizard_view:module.lang.import,init:0 -#, fuzzy -msgid "" -"You have to import a .CSV file wich is encoded in UTF-8. Please check that " -"the first line of your file is:" -msgstr "Εσείς στο a CSV αρχείο είναι σε Έλεγχος πρώτο γραμμή από αρχείο είναι:" - -#. module: base -#: field:res.partner.address,birthdate:0 -msgid "Birthdate" -msgstr "Ημερομηνία γεννήσεως" - -#. module: base -#: field:ir.module.repository,filter:0 -msgid "Filter" -msgstr "Φίλτρο" - -#. module: base -#: field:res.groups,menu_access:0 -#, fuzzy -msgid "Access Menu" -msgstr "Πρόσβαση Μενού" - -#. module: base -#: model:ir.model,name:base.model_res_partner_som -msgid "res.partner.som" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Σφάλμα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_category_form -#: model:ir.model,name:base.model_res_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_form -#: view:res.partner.category:0 -#, fuzzy -msgid "Partner Categories" -msgstr "Κατηγορίες Συνεργατών" - -#. module: base -#: model:ir.model,name:base.model_workflow_activity -msgid "workflow.activity" -msgstr "" - -#. module: base -#: field:ir.sequence,code:0 field:ir.sequence.type,code:0 -#, fuzzy -msgid "Sequence Code" -msgstr "Κώδικας" - -#. module: base -#: selection:res.request,state:0 -msgid "active" -msgstr "" - -#. module: base -#: field:res.currency,rounding:0 -#, fuzzy -msgid "Rounding factor" -msgstr "Στρογγυλοποίηση αναλογία" - -#. module: base -#: selection:ir.translation,type:0 -#, fuzzy -msgid "Wizard Field" -msgstr "Αυτόματος Οδηγός Πεδίο" - -#. module: base -#: view:ir.model:0 -#, fuzzy -msgid "Create a Menu" -msgstr "Δημιουργία a Μενού" - -#. module: base -#: view:ir.cron:0 -#, fuzzy -msgid "Action to trigger" -msgstr "Ενέργεια στο" - -#. module: base -#: field:ir.model.fields,select_level:0 -msgid "Searchable" -msgstr "" - -#. module: base -#: view:res.partner.event:0 -#, fuzzy -msgid "Document Link" -msgstr "Έγγραφο Δεσμός" - -#. module: base -#: view:res.partner.som:0 -#, fuzzy -msgid "Partner State of Mind" -msgstr "Συνεργάτης Κατάσταση από" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank -#, fuzzy -msgid "Bank Accounts" -msgstr "Τραπεζικοί Λογαριασμοί" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -#, fuzzy -msgid "TGZ Archive" -msgstr "Αρχειοθήκη" - -#. module: base -#: model:ir.model,name:base.model_res_partner_title -#, fuzzy -msgid "res.partner.title" -msgstr "τίτλος" - -#. module: base -#: view:res.company:0 view:res.partner:0 -#, fuzzy -msgid "General Information" -msgstr "Γενικές πληροφορίες" - -#. module: base -#: field:ir.sequence,prefix:0 -#, fuzzy -msgid "Prefix" -msgstr "Πρόθεμα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -#, fuzzy -msgid "terp-product" -msgstr "προϊόν" - -#. module: base -#: model:ir.model,name:base.model_res_company -msgid "res.company" -msgstr "" - -#. module: base -#: field:ir.actions.server,fields_lines:0 view:ir.actions.server:0 -#, fuzzy -msgid "Fields Mapping" -msgstr "Πεδία Αντιστοίχηση" - -#. module: base -#: field:ir.default,ref_table:0 -#, fuzzy -msgid "Table Ref." -msgstr "Πίνακας Κωδ." - -#. module: base -#: wizard_button:base.module.import,import,open_window:0 -#: wizard_button:server.action.create,step_1,end:0 -#: wizard_button:server.action.create,init,end:0 -#: wizard_button:module.upgrade,start,end:0 -#: wizard_button:module.upgrade,end,end:0 view:wizard.module.lang.export:0 -#, fuzzy -msgid "Close" -msgstr "Κλείσιμο" - -#. module: base -#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 -#, fuzzy -msgid "Sequence Name" -msgstr "Όνομα" - -#. module: base -#: model:ir.model,name:base.model_res_request_history -msgid "res.request.history" -msgstr "" - -#. module: base -#: constraint:res.partner:0 -#, fuzzy -msgid "The VAT doesn't seem to be correct." -msgstr "ΦΠΑ t στο σωστό." - -#. module: base -#: field:res.currency,rate:0 -#, fuzzy -msgid "Current rate" -msgstr "Τρέχον" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_simple_view_form -#, fuzzy -msgid "Configure Simple View" -msgstr "Ρύθμιση Απλή Προβολή" - -#. module: base -#: wizard_button:module.upgrade,next,start:0 -#, fuzzy -msgid "Start Upgrade" -msgstr "Εκκίνηση Αναβάθμιση" - -#. module: base -#: field:res.partner.som,factor:0 -#, fuzzy -msgid "Factor" -msgstr "Παράγοντας" - -#. module: base -#: field:res.partner,category_id:0 view:res.partner:0 -msgid "Categories" -msgstr "Κατηγορίες" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -#, fuzzy -msgid "Calculate Sum" -msgstr "Υπολογισμός Άθροισμα" - -#. module: base -#: field:ir.cron,args:0 -msgid "Arguments" -msgstr "Ορίσματα" - -#. module: base -#: field:workflow.instance,res_type:0 field:workflow,osv:0 -#, fuzzy -msgid "Resource Object" -msgstr "Πόρος Αντικείμενο" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "sxw" -msgstr "" - -#. module: base -#: selection:ir.actions.url,target:0 -#, fuzzy -msgid "This Window" -msgstr "Παράθυρο" - -#. module: base -#: field:res.payterm,name:0 -#, fuzzy -msgid "Payment term (short name)" -msgstr "Πληρωμή όνομα" - -#. module: base -#: field:ir.cron,function:0 field:res.partner.address,function:0 -#: selection:workflow.activity,kind:0 -#, fuzzy -msgid "Function" -msgstr "Συνάρτηση" - -#. module: base -#: constraint:res.company:0 -#, fuzzy -msgid "Error! You can not create recursive companies." -msgstr "Σφάλμα Εσείς όχι αναδρομικά." - -#. module: base -#: model:ir.model,name:base.model_res_config_view -msgid "res.config.view" -msgstr "" - -#. module: base -#: field:ir.attachment,description:0 field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 field:res.partner.event,description:0 -#: view:res.partner.event:0 view:res.request:0 view:ir.attachment:0 -msgid "Description" -msgstr "Περιγραφή" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, fuzzy -msgid "Invalid operation" -msgstr "Άκυρο" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_export -#, fuzzy -msgid "Import / Export" -msgstr "Εισαγωγή Εξαγωγή" - -#. module: base -#: field:res.partner.bank,owner_name:0 -#, fuzzy -msgid "Account owner" -msgstr "Λογαριασμός ιδιοκτήτης" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDENT" -msgstr "" - -#. module: base -#: field:ir.exports.line,name:0 field:res.partner.bank.type.field,name:0 -#, fuzzy -msgid "Field name" -msgstr "Όνομα πεδίου" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_attachment -#, fuzzy -msgid "ir.attachment" -msgstr "συνημμένο" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "The value \"%s\" for the field \"%s\" is not in the selection" -msgstr "τιμή s για s είναι όχι σε" - -#. module: base -#: field:ir.actions.report.xml,auto:0 -#, fuzzy -msgid "Automatic XSL:RML" -msgstr "Αυτόματα" - -#. module: base -#: view:workflow.workitem:0 -#, fuzzy -msgid "Workflow Workitems" -msgstr "Ροή των Εργασιών" - -#. module: base -#: wizard_field:res.partner.sms_send,init,password:0 -#: field:ir.model.config,password:0 field:res.users,password:0 -#, fuzzy -msgid "Password" -msgstr "Κωδικός πρόσβασης" - -#. module: base -#: view:res.roles:0 -#, fuzzy -msgid "Role" -msgstr "Ρόλος" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export language" -msgstr "Εξαγωγή γλώσσας" - -#. module: base -#: field:res.partner,customer:0 selection:res.partner.event,partner_type:0 -#, fuzzy -msgid "Customer" -msgstr "Πελάτης" - -#. module: base -#: view:ir.rule.group:0 -#, fuzzy -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "Πολλαπλάσιο Ή" - -#. module: base -#: field:ir.model.access,perm_unlink:0 -#, fuzzy -msgid "Delete Permission" -msgstr "Διαγραφή Δικαίωμα" - -#. module: base -#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 -#, fuzzy -msgid "Report Name" -msgstr "Αναφορά Όνομα" - -#. module: base -#: view:workflow.instance:0 -#, fuzzy -msgid "Workflow Instances" -msgstr "Ροή των Εργασιών Αντίγραφα" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_9 -#, fuzzy -msgid "Database Structure" -msgstr "Βάση δεδομένων Δομή" - -#. module: base -#: wizard_view:res.partner.spam_send,init:0 -#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard -msgid "Mass Mailing" -msgstr "Μαζική αποστολή" - -#. module: base -#: model:ir.model,name:base.model_res_country field:res.bank,country:0 -#: field:res.country.state,country_id:0 field:res.partner.address,country_id:0 -#: field:res.partner.bank,country_id:0 field:res.partner,country:0 -#: view:res.country:0 -msgid "Country" -msgstr "Χώρα" - -#. module: base -#: wizard_view:base.module.import,import:0 -#, fuzzy -msgid "Module successfully imported !" -msgstr "Άρθρωμα!" - -#. module: base -#: field:res.partner.event,partner_type:0 -#, fuzzy -msgid "Partner Relation" -msgstr "Συνεργάτης Σχέση, Πίνακας" - -#. module: base -#: field:ir.actions.act_window,context:0 -#, fuzzy -msgid "Context Value" -msgstr "Σχετιζόμενο Τιμή" - -#. module: base -#: view:ir.report.custom:0 -#, fuzzy -msgid "Unsubscribe Report" -msgstr "Αποχώρηση συνδρομητή Αναφορά" - -#. module: base -#: selection:ir.actions.server,state:0 -#, fuzzy -msgid "Create Object" -msgstr "Δημιουργία Αντικείμενο" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a4" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form_new -#: model:ir.ui.menu,name:base.menu_partner_customer_form_new -#, fuzzy -msgid "New Partner" -msgstr "Νέος Συνεργάτης" - -#. module: base -#: wizard_view:module.lang.install,start:0 -#, fuzzy -msgid "Installation done" -msgstr "Εγκατάσταση έτοιμο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_RIGHT" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_function -#, fuzzy -msgid "Function of the contact" -msgstr "Συνάρτηση από" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_upgrade -#: model:ir.ui.menu,name:base.menu_module_tree_upgrade -#, fuzzy -msgid "Modules to be installed, upgraded or removed" -msgstr "Αρθρώματα στο ή" - -#. module: base -#: view:ir.sequence:0 -#, fuzzy -msgid "Month: %(month)s" -msgstr "Μήνας s" - -#. module: base -#: model:ir.ui.menu,name:base.menu_partner_address_form -#, fuzzy -msgid "Addresses" -msgstr "Διευθύνσεις" - -#. module: base -#: field:ir.actions.server,sequence:0 -#: field:ir.actions.act_window.view,sequence:0 -#: field:ir.actions.todo,sequence:0 field:ir.module.repository,sequence:0 -#: field:ir.report.custom.fields,sequence:0 field:ir.ui.menu,sequence:0 -#: field:ir.ui.view_sc,sequence:0 field:res.partner.bank,sequence:0 -#: field:wizard.ir.model.menu.create.line,sequence:0 -msgid "Sequence" -msgstr "Ακολουθία" - -#. module: base -#: help:res.partner.address,type:0 -#, fuzzy -msgid "" -"Used to select automatically the right address according to the context in " -"sales and purchases documents." -msgstr "Σε χρήση στο επιλογή δεξιά διεύθυνση στο σε και έγγραφα." - -#. module: base -#: help:ir.cron,numbercall:0 -#, fuzzy -msgid "" -"Number of time the function is called,\n" -"a negative number indicates that the function will always be called" -msgstr "Αριθμός από διάρκεια συνάρτηση είναι συνάρτηση πάντα" - -#. module: base -#: field:ir.report.custom,footer:0 -#, fuzzy -msgid "Report Footer" -msgstr "Υποσέλιδο αναφοράς" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_NEXT" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REDO" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,init:0 -#, fuzzy -msgid "Choose a language to install:" -msgstr "Επιλογή a στο εγκατάσταση:" - -#. module: base -#: view:res.partner.event:0 -msgid "General Description" -msgstr "Γενική περιγραφή" - -#. module: base -#: view:ir.module.module:0 -#, fuzzy -msgid "Cancel Install" -msgstr "Ακύρωση Εγκατάσταση" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "Please check that all your lines have %d columns." -msgstr "Έλεγχος όλα στήλες." - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import language" -msgstr "Γλώσσα εισαγωγών" - -#. module: base -#: field:ir.model.data,name:0 -#, fuzzy -msgid "XML Identifier" -msgstr "XML Αναγνωριστικό" - -#. module: base -#: model:res.country,name:base.ca -msgid "Canada" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "Legends for Date and Time Formats" -msgstr "" - -#. module: base -#: model:res.country,name:base.sh -msgid "Saint Helena" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%j - Day of the year as a decimal number [001,366]." -msgstr "" - -#. module: base -#: model:res.country,name:base.sz -msgid "Swaziland" msgstr "" #. module: base @@ -5811,11 +136,77 @@ msgstr "" msgid "Burkina Faso" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_ASCENDING" +msgstr "" + +#. module: base +#: view:ir.model:0 view:res.groups:0 +msgid "Access Rules" +msgstr "Κανόνες πρόσβασης" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONNECT" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" +msgstr "" + +#. module: base +#: view:ir.model:0 +msgid "Create a Menu" +msgstr "" + +#. module: base +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "Κώδικας (eg:en__US)" + +#. module: base +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "Γονέας" + #. module: base #: model:res.country,name:base.tg msgid "Togo" msgstr "" +#. module: base +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 +#: field:ir.model,model:0 field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +msgid "Object" +msgstr "Αντικείμενο" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " +msgstr "Για να κοιτάξετε τις επίσημες μεταφράσεις, μπορείτε να επισκεφτείτε αυτήν την σύνδεση:" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_category_tree +#: model:ir.ui.menu,name:base.menu_action_module_category_tree +msgid "Categories of Modules" +msgstr "Κατηγορίες ενοτήτων" + +#. module: base +#: view:ir.actions.server:0 +msgid "Email Configuration" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5826,11 +217,34 @@ msgstr "" msgid "Hungarian / Magyar" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_default +msgid "ir.default" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Not Started" +msgstr "Δεν έχει αρχίσει " + #. module: base #: view:ir.actions.server:0 -msgid "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e.[[ object.partner_id.name ]]" +msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "" + +#. module: base +#: view:res.company:0 +msgid "Header/Footer" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" msgstr "" #. module: base @@ -5838,6 +252,16 @@ msgstr "" msgid "Russian Federation" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "Πεδία τύπων τράπεζας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_ERROR" +msgstr "" + #. module: base #: field:ir.actions.server,wkf_model_id:0 msgid "Workflow On" @@ -5853,6 +277,54 @@ msgstr "" msgid "Dutch / Nederlands" msgstr "" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "Εξαγωγή Αρχείου μεταφράσεων" + +#. module: base +#: field:ir.sequence,padding:0 +msgid "Number padding" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles_form +#: model:ir.ui.menu,name:base.menu_action_res_roles_form view:res.roles:0 +#: view:res.users:0 field:res.users,roles_id:0 +msgid "Roles" +msgstr "Ρόλοι" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country +#: model:ir.ui.menu,name:base.menu_country_partner +msgid "Countries" +msgstr "Χώρες" + +#. module: base +#: field:ir.rule,operator:0 +msgid "Operator" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Λήψη μέγιστου " + +#. module: base +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "μετάβαση ροής της δουλειάς" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "Δημιουργημένες απόψεις" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "Κανονικό" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -5863,11 +335,42 @@ msgstr "" msgid "Tonga" msgstr "" +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "Χρήστης παρ." + #. module: base #: model:res.country,name:base.vu msgid "Vanuatu" msgstr "" +#. module: base +#: wizard_view:server.action.create,step_1:0 +#: wizard_field:server.action.create,step_1,report:0 +msgid "Select Report" +msgstr "Επιλέξτε την αναφορά" + +#. module: base +#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 +msgid "Wizard" +msgstr "Αυτόματος Οδηγός" + +#. module: base +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "Εξερχόμενες μεταβάσεις" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "Ετήσια" + #. module: base #: model:res.country,name:base.sd msgid "Sudan" @@ -5878,6 +381,11 @@ msgstr "" msgid "1cm 28cm 20cm 28cm" msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "Χαρτογράφηση τομέων" + #. module: base #: model:res.country,name:base.mo msgid "Macau" @@ -5898,6 +406,24 @@ msgstr "" msgid "Error ! You can not create recursive categories." msgstr "" +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "" + +#. module: base +#: field:ir.model.config,password:0 field:maintenance.contract,password:0 +#: field:maintenance.contract.wizard,password:0 +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:res.users,password:0 +msgid "Password" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%x - Appropriate date representation." @@ -5921,29 +447,49 @@ msgstr "" #: model:ir.actions.todo,note:base.config_wizard_simple_view 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" +"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 "" +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "Έναρξη" + #. module: base #: model:res.partner.category,name:base.res_partner_category_5 msgid "Gold Partner" msgstr "" +#. module: base +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "Εάν δεν επέμβετε θα χρησιμοποιηθεί απλή οργάνωση " + #. module: base #: model:res.country,name:base.kr msgid "South Korea" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Μεταβάσεις" + #. module: base #: model:res.country,name:base.tj msgid "Tajikistan" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "" + #. module: base #: model:res.country,name:base.tr msgid "Turkey" @@ -5965,6 +511,101 @@ msgstr "" msgid "Fiji" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2 or later version" +msgstr "" + +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "Παύση όλων " + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NEW" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_custom +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.custom" +msgstr "" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CANCEL" +msgstr "Ακύρωση αποθέματος " + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Επαφή προοπτικής" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "None" +msgstr "Κανένα" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "Ευκαιρία πώλησης" + +#. module: base +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "Ταξινόμηση κατά " + +#. module: base +#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 +#: field:ir.report.custom,type:0 +msgid "Report Type" +msgstr "Τύπος αναφοράς " + +#. module: base +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "Αριθμός αύξησης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_tree +#: model:ir.ui.menu,name:base.menu_action_res_company_tree +msgid "Company's Structure" +msgstr "Δομή επιχείρησης" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "Άλλη ιδιοκτησία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "" + +#. module: base +#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "Εταιρική Αναφ." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" +msgstr "Όλοι οι όροι" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" @@ -5986,18 +627,45 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Form" +msgstr "Μορφή" + +#. module: base +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" +msgstr "Δραστηριότητα προορισμού" + #. module: base #: model:res.country,name:base.me msgid "Montenegro" msgstr "" #. module: base -#: help:ir.actions.server,loop_action:0 -msgid "" -"Select the action that will be executed. Loop action will not be avaliable " -"inside loop." +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_QUIT" +msgstr "ΑΠΟΘΕΜΑ_ ΕΓΚΑΤΑΛΕΙΠΕΤΑΙ" + +#. module: base +#: help:ir.actions.server,loop_action:0 +msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "waiting" +msgstr "αναμονή" + #. module: base #: model:res.country,name:base.va msgid "Holy See (Vatican City State)" @@ -6013,6 +681,19 @@ msgstr "" msgid "Serbia and Montenegro" msgstr "" +#. module: base +#: field:ir.report.custom.fields,fc0_op:0 +#: field:ir.report.custom.fields,fc1_op:0 +#: field:ir.report.custom.fields,fc2_op:0 +#: field:ir.report.custom.fields,fc3_op:0 +msgid "Relation" +msgstr "Σχέση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_TOP" +msgstr "" + #. module: base #: field:ir.values,meta_unpickle:0 msgid "Metadata" @@ -6023,21 +704,77 @@ msgstr "" msgid "%m - Month as a decimal number [01,12]." msgstr "" +#. module: base +#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 field:res.bank,state:0 +#: view:res.country.state:0 field:res.partner.bank,state_id:0 +#: field:res.request,state:0 field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +msgid "State" +msgstr "Κατάσταση Λογαριασμού" + +#. module: base +#: view:res.partner:0 field:res.partner,category_id:0 +msgid "Categories" +msgstr "Κατηγορίες" + +#. module: base +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "Αναφορά εκθέσεων" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "Μέγιστο μέγεθος" + #. module: base #: model:res.country,name:base.id msgid "Indonesia" msgstr "" +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be upgraded" +msgstr "Για να αναβαθμιστεί" + #. module: base #: model:res.country,name:base.ly msgid "Libya" msgstr "" +#. module: base +#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "Βασική κατηγορία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-purchase" +msgstr "" + +#. module: base +#: field:ir.values,object:0 +msgid "Is Object" +msgstr "" + #. module: base #: model:res.country,name:base.fi msgid "Finland" msgstr "" +#. module: base +#: wizard_field:module.module.update,init,repositories:0 +msgid "Repositories" +msgstr "Χώροι αποθήκευσης" + #. module: base #: model:res.country,name:base.cf msgid "Central African Republic" @@ -6048,11 +785,26 @@ msgstr "" msgid "Liechtenstein" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "Στοιχεία επικοινωνίας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND_AND_REPLACE" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_ltd msgid "Ltd" msgstr "" +#. module: base +#: selection:res.request,state:0 +msgid "active" +msgstr "" + #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" @@ -6068,11 +820,72 @@ msgstr "" msgid "American Samoa" msgstr "" +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Custom Field" +msgstr "" + +#. module: base +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" +msgstr "Μοντέλο" + +#. module: base +#: field:res.partner,ean13:0 +msgid "EAN13" +msgstr "EAN13" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree +msgid "Repository list" +msgstr "Κατάλογος αποθηκών" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +msgid "wizard.ir.model.menu.create.line" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" msgstr "" +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Uninstall" +msgstr "Ακυρώστε την απεγκατάσταση" + +#. module: base +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "Ποσοστό νομίσματος" + +#. module: base +#: view:workflow:0 field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +msgid "Workflow" +msgstr "Ροή Εργασιών" + +#. module: base +#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 +#: field:ir.actions.wizard,type:0 +msgid "Action Type" +msgstr "Τύπος δράσης" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "Όριο προεπιλογής για την διαμόρφωση καταλόγων" + #. module: base #: model:res.partner.category,name:base.res_partner_category_12 msgid "Segmentation" @@ -6088,6 +901,42 @@ msgstr "" msgid "6. %d, %m ==> 05, 12" msgstr "" +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "Αντικείμενο πηγής" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "" + +#. module: base +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,report_rml:0 +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form +msgid "Config Wizard Steps" +msgstr "Διαμόρφωση βημάτων" + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "Κατηγορία" + +#. module: base +#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 +msgid "Group" +msgstr "Ομάδα" + #. module: base #: model:res.country,name:base.sm msgid "San Marino" @@ -6098,6 +947,11 @@ msgstr "" msgid "Check this box if the partner is a customer." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "" + #. module: base #: model:res.country,name:base.wf msgid "Wallis and Futuna Islands" @@ -6108,19 +962,53 @@ msgstr "" msgid "Kuwait" msgstr "" +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Υπογραφή" + +#. module: base +#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "SMS" + #. module: base #: model:res.country,name:base.cr msgid "Costa Rica" msgstr "" +#. module: base +#: field:ir.exports.line,name:0 field:ir.translation,name:0 +#: field:res.partner.bank.type.field,name:0 +msgid "Field Name" +msgstr "Ονομασία Πεδίου" + +#. module: base +#: model:ir.actions.act_window,name:base.res_lang_act_window +#: model:ir.ui.menu,name:base.menu_res_lang_act_window view:res.lang:0 +msgid "Languages" +msgstr "Γλώσσες" + +#. module: base +#: field:workflow.workitem,inst_id:0 +msgid "Instance" +msgstr "Περίπτωση" + #. module: base #: help:ir.actions.report.xml,attachment:0 -msgid "" -"This is the filename of the attachment used to store the printing result. " -"Keep empty to not save the printed reports. You can use a python expression " -"with the object and time variables." +msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "" + +#. module: base +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Το όνομα αντικειμένου πρέπει να αρχίζει με x_ και να μήν περιέχει ειδικούς χαρακτήρες!" + #. module: base #: model:res.country,name:base.ng msgid "Nigeria" @@ -6131,21 +1019,51 @@ msgstr "" msgid "Ukrainian / украї́нська мо́ва" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "" + #. module: base #: model:res.country,name:base.ec msgid "Ecuador" msgstr "" +#. module: base +#: view:ir.module.module:0 +msgid "Schedule Upgrade" +msgstr "Προγραμματισμένη αναβάθμιση " + #. module: base #: model:res.country,name:base.au msgid "Australia" msgstr "" +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Configure" +msgstr "Διαμορφώστε" + +#. module: base +#: help:res.partner,lang:0 +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 "Εάν η επιλεγμένη γλώσσα υπάρχει στο σύστημα, όλα τα έγγραφα σχετικά με αυτόν τον συνεργάτη θα τυπωθούν σε αυτήν την γλώσσα. Εάν όχι, θα είναι αγγλικά." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "" + #. module: base #: rml:ir.module.reference:0 msgid "Menu :" msgstr "" +#. module: base +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -6161,6 +1079,21 @@ msgstr "" msgid "Date Format" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "Πάντα προς αναζήτηση " + +#. module: base +#: field:res.bank,email:0 field:res.partner.address,email:0 +msgid "E-Mail" +msgstr "Ηλεκτρονικό ταχυδρομείο" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "Ταυτότητα χρήστη" + #. module: base #: field:ir.exports,name:0 msgid "Export Name" @@ -6181,6 +1114,11 @@ msgstr "" msgid "Hong Kong" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Νέες ενότητες" + #. module: base #: view:ir.sequence:0 msgid "Hour 00->12: %(h12)s" @@ -6201,6 +1139,30 @@ msgstr "" msgid "French Guyana" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,fc0_operande:0 +#: field:ir.report.custom.fields,fc1_operande:0 +#: field:ir.report.custom.fields,fc2_operande:0 +#: field:ir.report.custom.fields,fc3_operande:0 +#: selection:ir.translation,type:0 +msgid "Constraint" +msgstr "" + +#. module: base +#: selection:ir.values,key:0 selection:res.partner.address,type:0 +msgid "Default" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -6211,16 +1173,45 @@ msgstr "" msgid "Philippines" msgstr "" +#. module: base +#: field:ir.model.fields,required:0 +#: field:res.partner.bank.type.field,required:0 +msgid "Required" +msgstr "Απαιτείται" + +#. module: base +#: field:res.country,code:0 +msgid "Country Code" +msgstr "" + #. module: base #: field:ir.ui.view.custom,ref_id:0 msgid "Original View" msgstr "" +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Tree" +msgstr "Δέντρο" + #. module: base #: model:res.country,name:base.ma msgid "Morocco" msgstr "" +#. module: base +#: view:res.request.history:0 +msgid "Request History" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bosnian / bosanski jezik" @@ -6231,11 +1222,14 @@ msgstr "" msgid "10. %S ==> 20" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 -msgid "" -"If you check this, then the second time the user prints with same attachment " -"name, it returns the previous report." +msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." msgstr "" #. module: base @@ -6245,9 +1239,7 @@ msgstr "" #. module: base #: help:ir.actions.server,subject:0 -msgid "" -"Specify the subject. You can use fields from the object, e.g. `Hello " -"[[ object.partner_id.name ]]`" +msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" msgstr "" #. module: base @@ -6255,16 +1247,47 @@ msgstr "" msgid "2. %a ,%A ==> Fri, Friday" msgstr "" +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +msgid "Trigger On" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_request_link +msgid "res.request.link" +msgstr "" + +#. module: base +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" +msgstr "" + #. module: base #: model:res.country,name:base.ee msgid "Estonia" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 +msgid "Partner Events" +msgstr "" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +msgstr "Τύποι πεδίων " + +#. module: base +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%a - Abbreviated weekday name." @@ -6275,26 +1298,79 @@ msgstr "" msgid "Lebanon" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Introspection report on objects" +msgstr "" + #. module: base #: model:res.country,name:base.pf msgid "Polynesia (French)" msgstr "" +#. module: base +#: field:res.country,name:0 +msgid "Country Name" +msgstr "Όνομα χώρας" + +#. module: base +#: field:res.company,name:0 +msgid "Company Name" +msgstr "" + #. module: base #: model:res.country,name:base.co msgid "Colombia" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +#: wizard_button:res.partner.sms_send,init,send:0 +msgid "Send SMS" +msgstr "" + +#. module: base +#: field:ir.actions.report.custom,report_id:0 +msgid "Report Ref." +msgstr "" + #. module: base #: field:res.roles,child_id:0 msgid "Children" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + +#. module: base +#: help:res.country,code:0 +msgid "" +"The ISO country code in two chars.\n" +"You can use this field for quick search." +msgstr "" + #. module: base #: model:res.country,name:base.pw msgid "Palau" msgstr "" +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Subscribed" +msgstr "" + #. module: base #: model:res.country,name:base.ke msgid "Kenya" @@ -6305,6 +1381,11 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: wizard_view:module.lang.install,init:0 wizard_view:module.upgrade,next:0 +msgid "System Upgrade" +msgstr "" + #. module: base #: field:workflow.activity,in_transitions:0 msgid "Incoming Transitions" @@ -6315,6 +1396,26 @@ msgstr "" msgid "el_GR" msgstr "" +#. module: base +#: wizard_field:module.lang.import,init,name:0 +msgid "Language name" +msgstr "" + +#. module: base +#: field:res.partner,parent_id:0 +msgid "Main Company" +msgstr "" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Extended Interface" +msgstr "" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "'Ονομα κατάστασης " + #. module: base #: model:res.country,name:base.sr msgid "Suriname" @@ -6325,25 +1426,86 @@ msgstr "" msgid "Low Level Objects" msgstr "" +#. module: base +#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 +msgid "On multiple doc." +msgstr "Σε πολλαπλά έγγραφα" + #. module: base #: help:ir.actions.server,action_id:0 msgid "Select the Action Window, Report, Wizard to be executed." msgstr "" +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +msgid "View Type" +msgstr "" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "Η Εξαγωγή έγινε " + #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" msgstr "" +#. module: base +#: view:ir.model:0 +msgid "Model Description" +msgstr "" + #. module: base #: selection:maintenance.contract,state:0 msgid "Unvalid" msgstr "" +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "Bulk SMS send" +msgstr "" + +#. module: base +#: view:res.partner.bank:0 model:res.partner.bank.type,name:base.bank_normal +msgid "Bank account" +msgstr "Τραπεζικός λογαριασμός" + +#. module: base +#: field:res.partner.canal,name:0 +msgid "Channel Name" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Pie Chart" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "" + #. module: base #: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +msgid "The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base @@ -6356,11 +1518,37 @@ msgstr "" msgid "Jordan" msgstr "" +#. module: base +#: view:ir.rule.group:0 +msgid "Multiple rules on same objects are joined using operator OR" +msgstr "" + +#. module: base +#: view:ir.sequence.type:0 +msgid "Sequence Type" +msgstr "" + #. module: base #: model:res.country,name:base.md msgid "Moldavia" msgstr "" +#. module: base +#: help:ir.model.fields,on_delete:0 +msgid "On delete property for many2one fields" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +msgid "Update Modules List" +msgstr "" + #. module: base #: model:res.country,name:base.er msgid "Eritrea" @@ -6371,21 +1559,60 @@ msgstr "" msgid "Congo, The Democratic Republic of the" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "Ρύθμιση απλής προβολής" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bulgarian / български" msgstr "" +#. module: base +#: field:ir.module.module,license:0 +msgid "License" +msgstr "Άδεια" + #. module: base #: model:res.country,name:base.re msgid "Reunion (French)" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE_AS" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_custom_action +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" +msgstr "Ενέργειες" + #. module: base #: view:ir.values:0 msgid "tree_but_action, client_print_multi" msgstr "" +#. module: base +#: view:res.request:0 field:res.request,body:0 +#: field:res.request.history,req_id:0 +msgid "Request" +msgstr "Αίτημα" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom +msgid "ir.report.custom" +msgstr "" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" +msgstr "Συνέχεια" + #. module: base #: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 msgid "Version" @@ -6407,16 +1634,78 @@ msgstr "" msgid "Slovenian / slovenščina" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "Ιστόγραμμα" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "" + +#. module: base +#: field:ir.actions.server,message:0 +#: wizard_field:res.partner.spam_send,init,text:0 +msgid "Message" +msgstr "Μήνυμα" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +msgstr "Το αρχείο γλώσσας φορτώθηκε" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "Προσφορά αγορών" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_info:0 +msgid "Modules to update" +msgstr "" + +#. module: base +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action2 +msgid "Company Architecture" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Ανοίξτε ένα παράθυρο" + #. module: base #: model:res.country,name:base.bv msgid "Bouvet Island" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDEX" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Συνοπτικός" + +#. module: base +#: field:ir.report.custom,print_orientation:0 +msgid "Print orientation" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -6427,11 +1716,19 @@ msgstr "" msgid "Payment Term" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "" + #. module: base #: help:ir.actions.server,sequence:0 -msgid "" -"Important when you deal with multiple actions, the execution order will be " -"decided based on this, low number is higher priority." +msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,header:0 +msgid "Add RML header" msgstr "" #. module: base @@ -6444,6 +1741,17 @@ msgstr "" msgid "Cambodia, Kingdom of" msgstr "" +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "Τοπίο" + +#. module: base +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "Αρχείο" + #. module: base #: model:res.country,name:base.gr msgid "Greece" @@ -6454,6 +1762,16 @@ msgstr "" msgid "User Interface" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "Προσθήκη Χρήστη" + +#. module: base +#: field:res.request,trigger_date:0 +msgid "Trigger Date" +msgstr "" + #. module: base #: wizard_view:base.module.import,init:0 msgid "Module Import" @@ -6469,16 +1787,53 @@ msgstr "" msgid "Maldives" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +msgid "Sequences" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + +#. module: base +#: field:ir.module.module,author:0 +msgid "Author" +msgstr "Συγγραφέας" + #. module: base #: help:ir.actions.server,code:0 msgid "Python code to be executed" msgstr "" +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +msgid "XSL path" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%b - Abbreviated month name." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDELETE" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." +msgstr "" + #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." @@ -6494,11 +1849,20 @@ msgstr "" msgid "Partner Category" msgstr "" +#. module: base +#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +msgid "Trigger" +msgstr "" + #. module: base #: help:ir.actions.server,write_id:0 -msgid "" -"Provide the field name that the record id refers to for the write operation. " -"If it is empty it will refer to the active id of the object." +msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." +msgstr "" + +#. module: base +#: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 +msgid "Supplier" msgstr "" #. module: base @@ -6508,9 +1872,7 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e. [[ object.partner_id.name ]]" +msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" msgstr "" #. module: base @@ -6518,31 +1880,151 @@ msgstr "" msgid "_Close" msgstr "" +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "Σώμα" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: field:res.lang,direction:0 +msgid "Direction" +msgstr "Κατεύθυνση" + #. module: base #: selection:maintenance.contract,kind:0 msgid "Full" msgstr "" +#. module: base +#: model:ir.model,name:base.model_wizard_module_update_translations +msgid "wizard.module.update_translations" +msgstr "" + +#. module: base +#: view:ir.actions.act_window:0 +#: model:ir.actions.act_window,name:base.action_ui_view +#: field:ir.actions.act_window,view_ids:0 field:ir.actions.act_window,views:0 +#: field:ir.module.module,views_by_module:0 +#: model:ir.ui.menu,name:base.menu_action_ui_view view:ir.ui.view:0 +#: view:wizard.ir.model.menu.create:0 +#: field:wizard.ir.model.menu.create,view_ids:0 +msgid "Views" +msgstr "Προβολές" + +#. module: base +#: view:res.groups:0 field:res.groups,rule_groups:0 field:res.users,rules_id:0 +msgid "Rules" +msgstr "Κανόνες" + #. module: base #: model:res.partner.category,name:base.res_partner_category_4 msgid "Basic Partner" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_lang +msgid "res.lang" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "," +msgstr "," + +#. module: base +#: field:res.users,menu_id:0 +msgid "Menu Action" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PASTE" +msgstr "" + #. module: base #: model:res.country,name:base.gt msgid "Guatemala" msgstr "" +#. module: base +#: field:ir.model.fields,view_load:0 +msgid "View Auto-Load" +msgstr "" + +#. module: base +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "Φ.Π.Α." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIRECTORY" +msgstr "" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "Αποστολή Email" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "<" + #. module: base #: model:res.country,name:base.es msgid "Spain" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_config_wizard_form +#: model:ir.ui.menu,name:base.menu_config_module +msgid "Configuration Wizard" +msgstr "" + +#. module: base +#: view:res.request.link:0 +msgid "Request Link" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "" + +#. module: base +#: field:res.partner.address,mobile:0 +msgid "Mobile" +msgstr "" + #. module: base #: model:res.country,name:base.om msgid "Oman" msgstr "" +#. module: base +#: field:ir.report.custom,print_format:0 +msgid "Print format" +msgstr "" + #. module: base #: field:res.lang,time_format:0 msgid "Time Format" @@ -6558,6 +2040,21 @@ msgstr "" msgid "Workflow Items" msgstr "" +#. module: base +#: field:res.request,ref_doc2:0 +msgid "Document Ref 2" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +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 "" + +#. module: base +#: field:res.request,ref_doc1:0 +msgid "Document Ref 1" +msgstr "" + #. module: base #: model:res.country,name:base.ga msgid "Gabon" @@ -6568,16 +2065,59 @@ msgstr "" msgid "Niue" msgstr "" +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Work Days" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "" + +#. module: base +#: help:ir.cron,priority:0 +msgid "" +"0=Very Urgent\n" +"10=Not urgent" +msgstr "" + +#. module: base +#: field:ir.sequence,suffix:0 +msgid "Suffix" +msgstr "Επίθημα" + +#. module: base +#: view:ir.model:0 view:res.groups:0 +msgid "Access Rights" +msgstr "" + #. module: base #: model:res.country,name:base.gl msgid "Greenland" msgstr "" +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Χαμηλή" + #. module: base #: field:res.partner.bank,acc_number:0 msgid "Account Number" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Skip" +msgstr "Παράβλεψη" + +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" +msgstr "Δημιουργία Μενού" + #. module: base #: field:ir.actions.server,expression:0 msgid "Loop Expression" @@ -6595,10 +2135,7 @@ msgstr "" #. module: base #: help:ir.ui.menu,groups_id:0 -msgid "" -"If you have groups, the visibility of this menu will be based on these " -"groups. If this field is empty, Open ERP will compute visibility based on " -"the related object's read access." +msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." msgstr "" #. module: base @@ -6611,6 +2148,11 @@ msgstr "" msgid "Lesotho" msgstr "" +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "Μετάφραση" + #. module: base #: field:res.partner.function,name:0 msgid "Function Name" @@ -6627,11 +2169,42 @@ msgstr "" msgid "Grant Access To Menus" msgstr "" +#. module: base +#: field:res.partner.category,name:0 +msgid "Category Name" +msgstr "Όνομα κατηγορίας" + +#. module: base +#: view:res.config.view:0 +msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.tz msgid "Tanzania" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" +msgstr "" + +#. module: base +#: field:ir.rule.group,global:0 +msgid "Global" +msgstr "Καθολικό" + +#. module: base +#: field:res.request,act_from:0 field:res.request.history,act_from:0 +msgid "From" +msgstr "Από" + #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -6647,6 +2220,16 @@ msgstr "" msgid "Solomon Islands" msgstr "" +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "Παράθυρο στόχων" + +#. module: base +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "" + #. module: base #: view:ir.values:0 msgid "client_action_multi, client_action_relate" @@ -6662,6 +2245,16 @@ msgstr "" msgid "Child Categories" msgstr "" +#. module: base +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "Επόμενο" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "TGZ Archive" +msgstr "" + #. module: base #: model:res.country,name:base.bm msgid "Bermuda" @@ -6672,11 +2265,43 @@ msgstr "" msgid "Peru" msgstr "" +#. module: base +#: field:res.partner.som,factor:0 +msgid "Factor" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%B - Full month name." msgstr "" +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "Ηλεκτρονικό ταχυδρομείο αποστολέα " + +#. module: base +#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 +#: field:ir.values,key:0 view:res.partner:0 +msgid "Type" +msgstr "Είδος ημερολογίου" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Skipped" +msgstr "Παραβλέποντα " + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_IN" +msgstr "" + #. module: base #: view:res.lang:0 msgid "8. %I:%M:%S %p ==> 06:25:20 PM" @@ -6692,56 +2317,183 @@ msgstr "" msgid "Guam (USA)" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "" + +#. module: base +#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation +msgid "Translations" +msgstr "Μεταφράσεις" + +#. module: base +#: field:ir.actions.report.xml,report_rml_content:0 +#: field:ir.actions.report.xml,report_rml_content_data:0 +msgid "RML content" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child3:0 msgid "Field child3" msgstr "" +#. module: base +#: view:workflow.activity:0 +msgid "Incoming transitions" +msgstr "Εισερχόμενες μεταβάσεις" + #. module: base #: model:res.country,name:base.tn msgid "Tunisia" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Not Searchable" +msgstr "" + #. module: base #: model:res.country,name:base.cn msgid "China" msgstr "" +#. module: base +#: field:res.partner.event.type,key:0 +msgid "Key" +msgstr "Κλειδί" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OK" +msgstr "" + #. module: base #: field:ir.cron,nextcall:0 msgid "Next Call Date" msgstr "" +#. module: base +#: field:res.company,rml_header:0 +msgid "RML Header" +msgstr "" + +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: model:res.country,name:base.ua msgid "Ukraine" msgstr "" +#. module: base +#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "" + +#. module: base +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Άκυρο XML για αρχιτεκτονική Προβολής!" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" +msgstr "" + #. module: base #: model:res.country,name:base.eh msgid "Western Sahara" msgstr "" +#. module: base +#: model:ir.model,name:base.model_workflow +msgid "workflow" +msgstr "" + +#. module: base +#: wizard_field:res.partner.sms_send,init,app_id:0 +msgid "API ID" +msgstr "" + #. module: base #: model:res.country,name:base.ky msgid "Cayman Islands" msgstr "" +#. module: base +#: field:ir.rule.group,rules:0 +msgid "Tests" +msgstr "Δοκιμές" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 +msgid "Module Category" +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" msgstr "" +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" +msgstr "" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "Scan for new modules" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_repository +msgid "Module Repository" +msgstr "" + #. module: base #: model:res.country,name:base.ml msgid "Mali" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_security +msgid "Security" +msgstr "Ασφάλεια" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +msgid "Report Custom" +msgstr "" + #. module: base #: model:res.country,name:base.bg msgid "Bulgaria" msgstr "" +#. module: base +#: field:ir.cron,interval_number:0 +msgid "Interval Number" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND" +msgstr "" + #. module: base #: model:res.country,name:base.ao msgid "Angola" @@ -6769,16 +2521,50 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "" -"Only one client action will be execute, last " -"clinent action will be consider in case of multiples clients actions" +msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HELP" +msgstr "" + +#. module: base +#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 field:res.groups,model_access:0 +msgid "Access Controls" +msgstr "Έλεγχοι Πρόσβασης" + #. module: base #: model:res.country,name:base.bn msgid "Brunei Darussalam" msgstr "" +#. module: base +#: model:ir.model,name:base.model_wizard_module_lang_export +msgid "wizard.module.lang.export" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Installed" +msgstr "Εγκατεστημένο" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +msgid "Partner Functions" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 +#: view:res.currency:0 field:res.currency,name:0 +#: field:res.currency.rate,currency_id:0 +msgid "Currency" +msgstr "Νόμισμα" + #. module: base #: view:res.lang:0 msgid "%Y - Year with century as a decimal number." @@ -6814,17 +2600,84 @@ msgstr "" msgid "Bosnia-Herzegovina" msgstr "" +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "Στοίχιση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" +msgstr "" + #. module: base #: model:res.country,name:base.br msgid "Brazil" msgstr "" +#. module: base +#: help:ir.rule.group,rules:0 +msgid "The rule is satisfied if at least one test is True" +msgstr "Ο κανόνας ικανοποιείται εάν τουλάχιστον μια είναι επιλεγμένη" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Weeks" +msgstr "Εβδομάδες" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr ">=" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_administration +msgid "Administration" +msgstr "Διαχείριση" + +#. module: base +#: field:ir.sequence,number_next:0 +msgid "Next Number" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "Πάρτε το αρχείο" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + +#. module: base +#: view:res.currency:0 field:res.currency,rate_ids:0 +msgid "Rates" +msgstr "Ποσοστά" + #. module: base #: view:res.lang:0 -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." +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 "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_BACK" msgstr "" #. module: base @@ -6847,6 +2700,12 @@ msgstr "" msgid "Field child2" msgstr "" +#. module: base +#: field:ir.values,key2:0 view:res.partner.event.type:0 +#: field:res.partner.event.type,name:0 +msgid "Event Type" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child0:0 msgid "Field child0" @@ -6857,6 +2716,26 @@ msgstr "" msgid "Field child1" msgstr "" +#. module: base +#: field:ir.module.module,website:0 field:res.partner,website:0 +msgid "Website" +msgstr "Ιστοχώρος" + +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Field Selection" +msgstr "Επιλογή τομέων" + +#. module: base +#: view:res.roles:0 +msgid "Role" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "https://translations.launchpad.net/openobject" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -6864,9 +2743,7 @@ msgstr "" #. module: base #: help:ir.actions.server,record_id:0 -msgid "" -"Provide the field name where the record id is stored after the create " -"operations. If it is empty, you can not track the new record." +msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" #. module: base @@ -6874,6 +2751,18 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 +#: field:wizard.module.lang.export,state:0 +msgid "unknown" +msgstr "άγνωστο" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_som-act +#: model:ir.ui.menu,name:base.menu_res_partner_som-act +msgid "States of mind" +msgstr "Ψυχικές διαθέσεις" + #. module: base #: model:res.country,name:base.gs msgid "S. Georgia & S. Sandwich Isls." @@ -6884,11 +2773,37 @@ msgstr "" msgid "Action URL" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,res_id:0 +msgid "Resource Ref." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "" + #. module: base #: model:res.country,name:base.mh msgid "Marshall Islands" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" +msgstr "" + +#. module: base +#: field:res.currency.rate,name:0 field:res.partner,date:0 +#: field:res.partner.event,date:0 field:res.request,date_sent:0 +msgid "Date" +msgstr "Ημερομηνία" + #. module: base #: model:res.country,name:base.ki msgid "Kiribati" @@ -6909,22 +2824,79 @@ msgstr "" msgid "Data" msgstr "" +#. module: base +#: selection:ir.translation,type:0 +msgid "RML" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +msgid "Partners by Categories" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 +msgid "Requests" +msgstr "Αιτήματα" + #. module: base #: model:res.country,name:base.cl msgid "Chile" msgstr "" +#. module: base +#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "Γλώσσα" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "" + #. module: base #: model:res.country,name:base.gm msgid "Gambia" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Εισαγωγή ενότητας" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 +msgid "Companies" +msgstr "Επιχειρήσεις" + #. module: base #: help:ir.actions.act_window.view,multi:0 #: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +msgid "If set to true, the action will not be displayed on the right toolbar of a form view." +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_supplier_form +#: model:ir.ui.menu,name:base.menu_partner_supplier_form +msgid "Suppliers Partners" +msgstr "Συνεργάτες προμηθευτών" + +#. module: base +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -6932,6 +2904,11 @@ msgstr "" msgid "Belgium" msgstr "" +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "CSV File" +msgstr "" + #. module: base #: view:ir.attachment:0 msgid "Attached To" @@ -6942,16 +2919,97 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" +msgstr "Πορεία SXW" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "τύπος, όνομα, res_id, src, αξία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" +msgstr "" + +#. module: base +#: field:ir.model.data,date_init:0 +msgid "Init Date" +msgstr "" + +#. module: base +#: field:res.company,rml_header2:0 +msgid "RML Internal Header" +msgstr "" + +#. module: base +#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +msgid "Base Object" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-crm" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STRIKETHROUGH" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "(year)=" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 field:res.bank,code:0 +#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 +msgid "Code" +msgstr "Κωδικός" + +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "Χαρακτηριστικά γνωρίσματα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-partner" +msgstr "" + #. module: base #: wizard_view:module.lang.install,start:0 msgid "Installation Done" msgstr "" +#. module: base +#: view:ir.actions.server:0 field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +msgid "Python Code" +msgstr "Κώδικας Python" + #. module: base #: model:res.country,name:base.gq msgid "Equatorial Guinea" msgstr "" +#. module: base +#: field:ir.model.fields,field_description:0 +msgid "Field Label" +msgstr "Ετικέτα τομέων" + +#. module: base +#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 +msgid "View Mode" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Swedish / svenska" @@ -6962,26 +3020,100 @@ msgstr "" msgid "Djibouti" msgstr "" +#. module: base +#: field:ir.report.custom,frequency:0 +msgid "Frequency" +msgstr "Συχνότητα" + #. module: base #: model:res.country,name:base.ag msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +msgid "Import a Translation File" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.ui.menu,name:base.menu_partner_customer_form +msgid "Customers Partners" +msgstr "Συνεργάτες πελατών" + #. module: base #: field:res.company,child_ids:0 msgid "Child Companies" msgstr "" +#. module: base +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Διαβασμένη πρόσβαση" + +#. module: base +#: model:ir.ui.menu,name:base.menu_management +msgid "Modules Management" +msgstr "Διαχείριση ενοτήτων" + +#. module: base +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" +msgstr "Επαναλάβετε την επιγραφή" + #. module: base #: model:res.country,name:base.ni msgid "Nicaragua" msgstr "" +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" msgstr "" +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: field:ir.model.data,res_id:0 field:ir.translation,res_id:0 +#: field:workflow.instance,res_id:0 field:workflow.triggers,res_id:0 +msgid "Resource ID" +msgstr "" + +#. module: base +#: field:ir.model,info:0 field:ir.model.grid,info:0 +#: view:maintenance.contract:0 +msgid "Information" +msgstr "Πληροφορίες" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "PO File" +msgstr "" + +#. module: base +#: view:res.partner.event:0 +msgid "General Description" +msgstr "Γενική περιγραφή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MISSING_IMAGE" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" + #. module: base #: selection:maintenance.contract,state:0 msgid "Valid" @@ -6992,17 +3124,54 @@ msgstr "" msgid "Neutral Zone" msgstr "" +#. module: base +#: field:ir.actions.report.xml,report_rml:0 +msgid "RML path" +msgstr "" + +#. module: base +#: field:ir.actions.configuration.wizard,item_id:0 +msgid "Next Configuration Wizard" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_rule_group +msgid "ir.rule.group" +msgstr "" + #. module: base #: view:maintenance.contract.wizard:0 msgid "Maintenance contract added !" msgstr "" +#. module: base +#: field:ir.rule,field_id:0 selection:ir.translation,type:0 +msgid "Field" +msgstr "Πεδίο" + +#. module: base +#: selection:ir.actions.todo,type:0 selection:res.partner.address,type:0 +msgid "Other" +msgstr "Άλλος" + #. module: base #: help:ir.actions.server,email:0 -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" +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 "" + +#. module: base +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "Τύπος" + +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Όνομα ρόλου" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_configuration_wizard +msgid "ir.module.module.configuration.wizard" msgstr "" #. module: base @@ -7025,6 +3194,29 @@ msgstr "" msgid "9. %j ==> 340" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_activity_form +#: model:ir.ui.menu,name:base.menu_workflow_activity view:workflow:0 +#: field:workflow,activities:0 +msgid "Activities" +msgstr "Δραστηριότητες" + +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "διορισμένος πωλητής" + +#. module: base +#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "Εξάγετε ένα αρχείο μεταφράσεων" + #. module: base #: model:res.country,name:base.is msgid "Iceland" @@ -7035,6 +3227,11 @@ msgstr "" msgid "Zambia" msgstr "" +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "" + #. module: base #: rml:ir.module.reference:0 msgid "-" @@ -7055,6 +3252,21 @@ msgstr "" msgid "Svalbard and Jan Mayen Islands" msgstr "" +#. module: base +#: field:ir.attachment,name:0 +msgid "Attachment Name" +msgstr "Όνομα Συνημμένου" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Upgrade" +msgstr "Ακυρώστε τη βελτίωση" + +#. module: base +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" + #. module: base #: view:ir.sequence:0 msgid "Week of the year: %(woy)s" @@ -7065,31 +3277,123 @@ msgstr "" msgid "Bad customers" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +msgid "=" +msgstr "=" + #. module: base #: field:res.payterm,name:0 msgid "Payment Term (short name)" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_bank view:res.bank:0 +#: field:res.partner.bank,bank:0 +msgid "Bank" +msgstr "Τράπεζα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "" + #. module: base #: rml:ir.module.reference:0 msgid "Reports :" msgstr "" +#. module: base +#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 field:ir.module.category,name:0 +#: field:ir.module.module,name:0 field:ir.module.module.dependency,name:0 +#: rml:ir.module.reference:0 field:ir.module.repository,name:0 +#: field:ir.property,name:0 field:ir.report.custom.fields,name:0 +#: field:ir.rule.group,name:0 field:ir.values,name:0 +#: field:maintenance.contract.module,name:0 field:res.bank,name:0 +#: field:res.config.view,name:0 field:res.lang,name:0 field:res.partner,name:0 +#: field:res.partner.address,name:0 field:res.partner.bank.type,name:0 +#: field:res.request.link,name:0 field:res.users,name:0 field:workflow,name:0 +#: field:workflow.activity,name:0 +msgid "Name" +msgstr "Ονομασία" + +#. module: base +#: model:ir.model,name:base.model_ir_property +msgid "ir.property" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "" + #. module: base #: model:res.country,name:base.ms msgid "Montserrat" msgstr "" +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "Αναφορές" + +#. module: base +#: wizard_view:server.action.create,init:0 +#: wizard_field:server.action.create,init,type:0 +msgid "Select Action Type" +msgstr "Επιλέξτε τον τύπο δράσης" + +#. module: base +#: field:workflow,on_create:0 +msgid "On Create" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "" + #. module: base #: model:res.country,name:base.gy msgid "Guyana" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Resynchronise Terms" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese (BR) / português (BR)" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +msgid "ir.sequence.type" +msgstr "" + #. module: base #: field:ir.actions.server,record_id:0 msgid "Create Id" @@ -7100,11 +3404,48 @@ msgstr "" msgid "Honduras" msgstr "" +#. module: base +#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "Αρχιτεκτονική άποψη" + #. module: base #: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 msgid "Covered Modules" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Average" +msgstr "Υπολογίστε το μέσο όρο" + +#. module: base +#: field:res.users,context_tz:0 +msgid "Timezone" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_grid_security +#: model:ir.ui.menu,name:base.menu_ir_access_grid +msgid "Access Controls Grid" +msgstr "Πλέγμα ελέγχων προσπέλασης" + +#. module: base +#: field:ir.module.module,demo:0 +msgid "Demo data" +msgstr "Επίδεικτικά στοιχεία" + +#. module: base +#: selection:res.request,priority:0 +msgid "High" +msgstr "Υψηλή" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_instance_form +#: model:ir.ui.menu,name:base.menu_workflow_instance +msgid "Instances" +msgstr "Περιπτώσεις" + #. module: base #: model:res.country,name:base.aq msgid "Antarctica" @@ -7115,6 +3456,18 @@ msgstr "" msgid "Export" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "Όλες οι ιδιότητες" + +#. module: base +#: wizard_button:module.upgrade,end,config:0 +#: wizard_button:module.upgrade,start,config:0 +msgid "Start configuration" +msgstr "Έναρξη Διαμόρφωσης" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -7125,11 +3478,37 @@ msgstr "" msgid "Namibia" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "" + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "Περιγραφή πεδίων " + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "Νέες ενότητες ελέγχου" + #. module: base #: model:res.country,name:base.km msgid "Comoros" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action +msgid "Server Actions" +msgstr "Ενέργειες κεντρικών υπολογιστών" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "" + #. module: base #: model:res.country,name:base.tp msgid "East Timor" @@ -7140,6 +3519,11 @@ msgstr "" msgid "Web" msgstr "" +#. module: base +#: help:res.bank,bic:0 +msgid "Bank Identifier Code" +msgstr "Κώδικας προσδιοριστικών τράπεζας" + #. module: base #: model:ir.ui.menu,name:base.menu_workflow_root msgid "Workflow Definitions" @@ -7155,16 +3539,29 @@ msgstr "" msgid "Open Source Service Company" msgstr "" +#. module: base +#: field:workflow.activity,action:0 +msgid "Python Action" +msgstr "" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "You can also import .po files." msgstr "" +#. module: base +#: field:res.partner.event,planned_revenue:0 +msgid "Planned Revenue" +msgstr "Προγραμματισμένο εισόδημα" + +#. module: base +#: view:ir.rule.group:0 +msgid "Record rules" +msgstr "Κανόνες αρχείων" + #. module: base #: wizard_view:module.lang.import,init:0 -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:" +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 "" #. module: base @@ -7187,76 +3584,326 @@ msgstr "" msgid "%M - Minute as a decimal number [00,59]." msgstr "" +#. module: base +#: help:ir.actions.report.xml,header:0 +msgid "Add or not the coporate RML header" +msgstr "" + #. module: base #: help:res.country.state,code:0 msgid "The state code in three chars.\n" msgstr "" +#. module: base +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" +msgstr "Υπολογιστική ακρίβεια" + +#. module: base +#: view:ir.rule:0 +msgid "Test" +msgstr "Έλεγχος" + +#. module: base +#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 +#: selection:ir.translation,type:0 +#: field:wizard.ir.model.menu.create.line,view_id:0 +msgid "View" +msgstr "Προβολή" + +#. module: base +#: field:res.partner.event,document:0 +msgid "Document" +msgstr "Έγγραφο" + #. module: base #: model:res.country,name:base.kg msgid "Kyrgyz Republic (Kyrgyzstan)" msgstr "" +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REFRESH" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Hours" +msgstr "Ώρες" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "Τύποι ακολουθίας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HOME" +msgstr "" + +#. module: base +#: field:res.bank,zip:0 field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FILE" +msgstr "" + +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "Συνημμένη ταυτότητα" + #. module: base #: model:res.country,name:base.uz msgid "Uzbekistan" msgstr "" +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be installed" +msgstr "Για να εγκατασταθεί" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update" +msgstr "Αναπροσαρμογή" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 +#: model:ir.ui.menu,name:base.menu_ir_cron_act +msgid "Scheduled Actions" +msgstr "Προγραμματισμένες ενέργειες" + #. module: base #: model:ir.model,name:base.model_maintenance_contract_module msgid "maintenance contract modules" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "Σύνδεση" + +#. module: base +#: view:res.partner:0 view:res.request:0 field:res.request,history:0 +msgid "History" +msgstr "Ιστορικό" + #. module: base #: model:res.country,name:base.tw msgid "Taiwan" msgstr "" +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be removed" +msgstr "Για να αφαιρεθεί" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_WARNING" +msgstr "" + #. module: base #: model:res.country,name:base.lr msgid "Liberia" msgstr "" +#. module: base +#: model:ir.actions.report.xml,name:base.ir_module_reference_print +msgid "Technical guide" +msgstr "Τεχνικός οδηγός" + +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "Προορισμός" + #. module: base #: help:ir.values,res_id:0 msgid "Keep 0 if the action must appear on all resources." msgstr "" +#. module: base +#: field:ir.cron,interval_type:0 +msgid "Interval Unit" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONVERT" +msgstr "" + +#. module: base +#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 +#: field:res.partner,comment:0 field:res.partner.function,ref:0 +msgid "Notes" +msgstr "Σημειώσεις" + #. module: base #: help:ir.actions.server,model_id:0 msgid "Select the obect on which the action will work (read, write, create)." msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "Ημέρες" + +#. module: base +#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "Αξία" + #. module: base #: field:ir.actions.server,write_id:0 msgid "Write Id" msgstr "" +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "Αναπροσαρμογή Μεταφράσεων" + #. module: base #: rml:ir.module.reference:0 msgid "Dependencies :" msgstr "" +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" +msgstr "Σταθερό πλάτος" + +#. module: base +#: view:ir.actions.server:0 +msgid "Other Actions Configuration" +msgstr "Άλλη διαμόρφωση ενεργειών" + #. module: base #: model:res.country,name:base.mc msgid "Monaco" msgstr "" +#. module: base +#: field:res.company,rml_footer1:0 +msgid "Report Footer 1" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EXECUTE" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "Πρακτικά" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "The modules have been upgraded / installed !" +msgstr "" + #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "odt" msgstr "" +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "Αξία περιοχών" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "Οδηγός αναφοράς" + +#. module: base +#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 +msgid "Help" +msgstr "Βοήθεια" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "Αποδεκτές συνδέσεις στα αιτήματα" + #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "SMS Configuration" msgstr "" +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "ωθήσεις ροής της δουλειάς" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_canal-act +#: model:ir.model,name:base.model_res_partner_canal +#: model:ir.ui.menu,name:base.menu_res_partner_canal-act +msgid "Channels" +msgstr "Κανάλια" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "Κατάλογος ελέγχων προσπέλασης" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "draft" +msgstr "σχέδιο" + #. module: base #: model:res.country,name:base.kn msgid "Saint Kitts & Nevis Anguilla" @@ -7264,44 +3911,123 @@ msgstr "" #. module: base #: help:ir.actions.server,condition:0 -msgid "" -"Condition that is to be tested before action is executed, e.g. object." -"list_price > object.cost_price" +msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" msgstr "" +#. module: base +#: view:ir.module.module:0 +msgid "Schedule for Installation" +msgstr "Σχέδιο για την εγκατάσταση" + #. module: base #: view:ir.sequence:0 msgid "Year without century: %(y)s" msgstr "" +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Προηγμένη αναζήτηση" + #. module: base #: view:res.lang:0 msgid "7. %H:%M:%S ==> 18:25:20" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 +msgid "Partners" +msgstr "Συνεργάτες" + #. module: base #: help:ir.actions.server,message:0 -msgid "" -"Specify the message. You can use the fields from the object. e.g. `Dear " -"[[ object.partner_id.name ]]`" +msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" msgstr "" +#. module: base +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "Συνημμένο πρότυπο" + #. module: base #: field:res.partner.bank,state:0 #: field:res.partner.bank.type.field,bank_type_id:0 msgid "Bank Type" msgstr "" +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "Όνομα ώθησης" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "Δημιουργήστε" + #. module: base #: field:ir.exports,export_fields:0 msgid "Export ID" msgstr "" +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "Προτείνουμε να ξαναφορτώσετε την ετικέττα επιλογών (Ctrl+t Ctrl+r)." + +#. module: base +#: view:res.request:0 +msgid "Send" +msgstr "Στείλετε" + #. module: base #: model:res.country,name:base.fr msgid "France" msgstr "" +#. module: base +#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 +#: field:res.request,priority:0 field:res.request.link,priority:0 +msgid "Priority" +msgstr "Προτεραιότητα" + +#. module: base +#: field:ir.translation,src:0 +msgid "Source" +msgstr "Πηγή" + +#. module: base +#: help:res.partner.address,partner_id:0 +msgid "Keep empty for a private address, not related to partner." +msgstr "" + +#. module: base +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "Έναρξη ροής" + +#. module: base +#: view:ir.sequence:0 +msgid "Legend (for prefix, suffix)" +msgstr "" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" +msgstr "Στάση ροής" + +#. module: base +#: view:res.company:0 +msgid "Internal Header/Footer" +msgstr "Εσωτερική επιγραφή/υποσημείωση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" +msgstr "" + #. module: base #: view:res.partner.bank:0 msgid "Bank Account Owner" @@ -7313,6 +4039,16 @@ msgstr "" msgid "Client Actions Connections" msgstr "" +#. module: base +#: field:ir.ui.view,name:0 +msgid "View Name" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,resource:0 +msgid "Resource Name" +msgstr "Όνομα των πόρων" + #. module: base #: view:ir.actions.server:0 selection:ir.actions.server,state:0 msgid "Multi Actions" @@ -7323,6 +4059,37 @@ msgstr "" msgid "Afghanistan, Islamic State of" msgstr "" +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "Τύπος διευθύνσεων" + +#. module: base +#: view:res.company:0 view:res.partner:0 +msgid "General Information" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "Αυτόματο" + +#. module: base +#: selection:ir.module.module,state:0 +msgid "Not Installable" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_window +#: model:ir.ui.menu,name:base.menu_ir_action_window +msgid "Window Actions" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "" + #. module: base #: field:ir.report.custom.fields,groupby:0 msgid "Group By" @@ -7333,16 +4100,31 @@ msgstr "" msgid "Guadeloupe (French)" msgstr "" +#. module: base +#: field:ir.translation,value:0 +msgid "Translation Value" +msgstr "Αξία μεταφράσεων" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" msgstr "" +#. module: base +#: view:res.request:0 +msgid "End of Request" +msgstr "Τέλος του αιτήματος" + #. module: base #: field:ir.report.custom.fields,cumulate:0 msgid "Accumulate" msgstr "" +#. module: base +#: view:res.request:0 +msgid "References" +msgstr "Αναφορές" + #. module: base #: model:res.country,name:base.do msgid "Dominican Republic" @@ -7350,22 +4132,59 @@ msgstr "" #. module: base #: view:res.lang:0 -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." +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 "" +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "Σημειώστε ότι αυτή η λειτουργία μπορεί να πάρει λεπτά." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COLOR_PICKER" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-product" +msgstr "" + +#. module: base +#: field:res.request,act_to:0 field:res.request.history,act_to:0 +msgid "To" +msgstr "Προς" + #. module: base #: model:res.country,name:base.gh msgid "Ghana" msgstr "" +#. module: base +#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 +msgid "Kind" +msgstr "Είδος" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "right" +msgstr "" + #. module: base #: field:ir.cron,numbercall:0 msgid "Number of Calls" msgstr "" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "Χειρωνακτικός" + #. module: base #: view:maintenance.contract.wizard:0 msgid "Could you check your contract information ?" @@ -7381,22 +4200,58 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: wizard_button:base.module.import,init,end:0 +#: selection:ir.actions.todo,state:0 +#: wizard_button:module.lang.import,init,end:0 +#: wizard_button:module.lang.install,init,end:0 +#: wizard_button:module.module.update,init,end:0 +#: wizard_button:module.upgrade,next,end:0 +#: wizard_button:res.partner.sms_send,init,end:0 +#: wizard_button:res.partner.spam_send,init,end:0 +#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 +#: view:wizard.module.update_translations:0 +msgid "Cancel" +msgstr "Ακύρωση" + +#. module: base +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "" + #. module: base #: rml:ir.module.reference:0 msgid "Directory" msgstr "" +#. module: base +#: field:res.partner.event,som:0 field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Line Plot" +msgstr "" + +#. module: base +#: field:wizard.ir.model.menu.create,name:0 +msgid "Menu Name" +msgstr "Όνομα επιλογών" + #. module: base #: help:res.partner,supplier:0 -msgid "" -"Check this box if the partner is a supplier. If it's not checked, purchase " -"people will not see it when encoding a purchase order." +msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." +msgstr "" + +#. module: base +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" msgstr "" #. module: base #: help:res.users,password:0 -msgid "" -"Keep empty if you don't want the user to be able to connect on the system." +msgid "Keep empty if you don't want the user to be able to connect on the system." msgstr "" #. module: base @@ -7409,36 +4264,112 @@ msgstr "" msgid "Spanish / Español" msgstr "" +#. module: base +#: field:ir.report.custom.fields,fontcolor:0 +msgid "Font color" +msgstr "Χρώμα πηγών" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Chinese (TW) / 正體字" msgstr "" +#. module: base +#: field:workflow.triggers,instance_id:0 +msgid "Destination Instance" +msgstr "" + #. module: base #: field:ir.actions.wizard,multi:0 msgid "Action on Multiple Doc." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_DESCENDING" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." +msgstr "" + #. module: base #: model:res.country,name:base.my msgid "Malaysia" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title +#: model:ir.ui.menu,name:base.menu_partner_title +msgid "Titles" +msgstr "Τίτλοι" + +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Client Action Configuration" msgstr "" +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "Λογότυπο" + +#. module: base +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" +msgstr "Μέρα έναρξης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.model,name:base.model_res_partner_address +#: model:ir.ui.menu,name:base.menu_partner_address_form +#: view:res.partner.address:0 +msgid "Partner Addresses" +msgstr "Διευθύνσεις συνεργατών" + #. module: base #: model:res.country,name:base.us msgid "United States" msgstr "" +#. module: base +#: field:ir.default,company_id:0 field:ir.property,company_id:0 +#: field:ir.values,company_id:0 view:res.company:0 +#: field:res.users,company_id:0 +msgid "Company" +msgstr "Εταιρεία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "" + +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "Περιεκτικότητα σε αρχεία" + #. module: base #: model:res.partner.title,name:base.res_partner_title_sir msgid "Sir" msgstr "" +#. module: base +#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 +msgid "New Window" +msgstr "Νέο παράθυρο" + #. module: base #: model:res.country,name:base.gn msgid "Guinea" @@ -7464,15 +4395,24 @@ msgstr "" msgid "Bahamas" msgstr "" +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "" + #. module: base #: model:ir.actions.todo,note:base.config_wizard_step_user msgid "" "Create your users.\n" -"You will be able to assign groups to users. Groups define the access rights " -"of each users on the different objects of the system.\n" +"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" " " msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NETWORK" +msgstr "" + #. module: base #: view:ir.attachment:0 msgid "Attachment" @@ -7483,11 +4423,38 @@ msgstr "" msgid "Ireland" msgstr "" +#. module: base +#: wizard_field:module.module.update,update,update:0 +msgid "Number of modules updated" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +msgstr "" + #. module: base #: view:ir.attachment:0 msgid "Preview" msgstr "" +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Skip Step" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_res_partner_event +#: field:res.partner,events:0 field:res.partner.event,name:0 +msgid "Events" +msgstr "Γεγονότα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles +#: model:ir.ui.menu,name:base.menu_action_res_roles +msgid "Roles Structure" +msgstr "" + #. module: base #: model:res.country,name:base.pn msgid "Pitcairn Island" @@ -7498,52 +4465,202 @@ msgstr "" msgid "Thousands Separator" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_STOP" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "Άποψη παρ." + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "Διαγραμμένος από τη συνδρομή" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +msgid "Active Partner Events" +msgstr "" + #. module: base #: model:res.country,name:base.sv msgid "El Salvador" msgstr "" +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" +msgstr "Πορτραίτο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-graph" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" +msgstr "Κανόνες αρχείων" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 msgid "Partner Contacts" msgstr "" +#. module: base +#: wizard_field:module.module.update,update,add:0 +msgid "Number of modules added" +msgstr "" + +#. module: base +#: field:res.bank,phone:0 field:res.partner.address,phone:0 +msgid "Phone" +msgstr "Τηλέφωνο" + #. module: base #: view:ir.sequence:0 msgid "Day of the year: %(doy)s" msgstr "" +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Ρόλος που απαιτείται" + +#. module: base +#: field:ir.actions.act_window,groups_id:0 +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 +#: view:res.users:0 field:res.users,groups_id:0 +msgid "Groups" +msgstr "Ομάδες" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "French / Français" msgstr "" +#. module: base +#: field:res.groups,menu_access:0 +msgid "Access Menu" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Δημιουργημένες επιλογές" + #. module: base #: model:res.country,name:base.bz msgid "Belize" msgstr "" +#. module: base +#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 +#: model:ir.ui.menu,name:base.next_id_15 +msgid "Properties" +msgstr "Ιδιότητες" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid ">" +msgstr ">" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" +msgstr "" + +#. module: base +#: field:workflow.triggers,workitem_id:0 +msgid "Workitem" +msgstr "" + #. module: base #: model:res.country,name:base.ge msgid "Georgia" msgstr "" +#. module: base +#: field:ir.module.module,installed_version:0 +msgid "Installed version" +msgstr "Εγκατεστημένη έκδοση" + #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field_contry msgid "country_id" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "" + #. module: base #: model:res.country,name:base.pl msgid "Poland" msgstr "" +#. module: base +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "" + +#. module: base +#: field:workflow.activity,signal_send:0 +msgid "Signal (subflow.*)" +msgstr "" + #. module: base #: model:res.country,name:base.ci msgid "Ivory Coast (Cote D'Ivoire)" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_OUT" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "Επιλογή" + +#. module: base +#: field:ir.values,meta:0 +msgid "Meta Datas" +msgstr "" + +#. module: base +#: field:ir.model,name:0 field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 field:ir.values,model:0 +msgid "Object Name" +msgstr "" + +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 selection:ir.values,key:0 +msgid "Action" +msgstr "Ενέργεια" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard #: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard @@ -7551,18 +4668,50 @@ msgid "Wizards" msgstr "" #. module: base -#: help:ir.actions.server,expression:0 -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`." +#: field:ir.rule,domain_force:0 +msgid "Force Domain" msgstr "" +#. module: base +#: help:ir.actions.server,expression:0 +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 "" + +#. module: base +#: model:ir.model,name:base.model_ir_cron +msgid "ir.cron" +msgstr "" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "And" +msgstr "και" + #. module: base #: field:ir.module.module,shortdesc:0 msgid "Short Description" msgstr "" +#. module: base +#: field:ir.model.fields,relation:0 +msgid "Object Relation" +msgstr "Σχέση αντικειμένου" + +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment +msgid "Attachments" +msgstr "Συνημμένα" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +msgid "in" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -7578,11 +4727,56 @@ msgstr "" msgid "maintenance.contract.wizard" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT" +msgstr "" + +#. module: base +#: view:res.partner:0 +msgid "General" +msgstr "Γενικό" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" +msgstr "" + +#. module: base +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "Επιγραφή αναφοράς" + +#. module: base +#: view:ir.actions.server:0 +msgid "Other Actions" +msgstr "Άλλες ενέργειες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "Έγινε" + #. module: base #: field:workflow.activity,out_transitions:0 msgid "Outgoing Transitions" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" +msgstr "Τιμολόγιο" + #. module: base #: model:res.country,name:base.vi msgid "Virgin Islands (USA)" @@ -7590,9 +4784,17 @@ msgstr "" #. module: base #: help:res.partner,vat:0 -msgid "" -"Value Added Tax number. Check the box if the partner is subjected to the " -"VAT. Used by the VAT legal statement." +msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Μήνες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: base @@ -7600,36 +4802,98 @@ msgstr "" msgid "Cyprus" msgstr "" +#. module: base +#: field:ir.model.access,perm_write:0 +msgid "Write Access" +msgstr "" + #. module: base #: model:res.country,name:base.bb msgid "Barbados" msgstr "" +#. module: base +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Μέγεθος" + +#. module: base +#: field:res.bank,city:0 field:res.partner,city:0 +#: field:res.partner.address,city:0 field:res.partner.bank,city:0 +msgid "City" +msgstr "Πόλη" + #. module: base #: model:res.country,name:base.mg msgid "Madagascar" msgstr "" +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" + #. module: base #: model:res.country,name:base.it msgid "Italy" msgstr "" +#. module: base +#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +msgid "Custom Object" +msgstr "Παραμετροποιημένο αντικείμενο" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "<>" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 +msgid "Menu" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" +msgstr "<=" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: model:res.country,name:base.fm msgid "Micronesia" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Estonian / Eesti keel" msgstr "" +#. module: base +#: field:ir.module.module,menus_by_module:0 view:res.groups:0 +msgid "Menus" +msgstr "" + #. module: base #: help:ir.rule.group,global:0 msgid "Make the rule global, otherwise it needs to be put on a group or user" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_UP" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Action To Launch" @@ -7640,6 +4904,16 @@ msgstr "" msgid "USA Minor Outlying Islands" msgstr "" +#. module: base +#: field:ir.actions.url,target:0 +msgid "Action Target" +msgstr "" + +#. module: base +#: field:ir.report.custom,field_parent:0 field:ir.ui.view,field_parent:0 +msgid "Child Field" +msgstr "" + #. module: base #: model:res.country,name:base.ai msgid "Anguilla" @@ -7650,6 +4924,24 @@ msgstr "" msgid "Portugese / português" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,usage:0 +#: field:ir.actions.act_window_close,usage:0 field:ir.actions.actions,usage:0 +#: field:ir.actions.report.custom,usage:0 field:ir.actions.report.xml,usage:0 +#: field:ir.actions.server,usage:0 field:ir.actions.wizard,usage:0 +msgid "Action Usage" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" +msgstr "" + #. module: base #: model:res.country,name:base.il msgid "Israel" @@ -7660,26 +4952,149 @@ msgstr "" msgid "Confirmation" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_server_action_create +msgid "Create Action" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_workitem +msgid "workflow.workitem" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: base +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Πιστωτικό όριο" + #. module: base #: model:res.country,name:base.pg msgid "Papua New Guinea" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "" + +#. module: base +#: field:ir.module.module,url:0 field:ir.module.repository,url:0 +msgid "URL" +msgstr "URL" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Turkish / Türkçe" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" +msgstr "Αντικείμενα" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" +msgstr "" + +#. module: base +#: field:res.users,address_id:0 +msgid "Address" +msgstr "Διεύθυνση" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Your system will be upgraded." +msgstr "Το σύστημά σας θα αναβαθμιστεί." + #. module: base #: model:res.country,name:base.vn msgid "Vietnam" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +msgid "Configure User" +msgstr "" + +#. module: base +#: help:res.country,name:0 +msgid "The full name of the country." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUMP_TO" +msgstr "" + +#. module: base +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-calendar" +msgstr "" + +#. module: base +#: field:ir.exports,resource:0 field:ir.property,res_id:0 +msgid "Resource" +msgstr "" + #. module: base #: field:ir.actions.server,email:0 msgid "Email Address" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-tools" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +msgid "Payment term" +msgstr "" + +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Report xml" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_open_categ +#: model:ir.actions.act_window,name:base.open_module_tree +#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree +#: field:wizard.module.lang.export,modules:0 +msgid "Modules" +msgstr "" + +#. module: base +#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 +#: field:workflow.workitem,subflow_id:0 +msgid "Subflow" +msgstr "" + #. module: base #: help:ir.values,action_id:0 msgid "This field is not used, it only helps you to select the right action." @@ -7700,6 +5115,54 @@ msgstr "" msgid "Latvia" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_INFO" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_upgrade +#: model:ir.ui.menu,name:base.menu_wizard_upgrade +msgid "Apply Scheduled Upgrades" +msgstr "" + +#. module: base +#: view:workflow.activity:0 field:workflow.workitem,act_id:0 +msgid "Activity" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 +#: field:res.partner,bank_ids:0 +msgid "Banks" +msgstr "Τράπεζες" + +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "" + +#. module: base +#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 +msgid "Shortcut" +msgstr "Συντόμευση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-sale" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mappings" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%d - Day of the month as a decimal number [01,31]." @@ -7715,6 +5178,16 @@ msgstr "" msgid "Romanian / limba română" msgstr "" +#. module: base +#: field:res.company,parent_id:0 +msgid "Parent Company" +msgstr "" + +#. module: base +#: view:ir.model:0 view:ir.model.fields:0 +msgid "Security on Groups" +msgstr "" + #. module: base #: field:ir.cron,doall:0 msgid "Repeat Missed" @@ -7725,16 +5198,48 @@ msgstr "" msgid "Type of the Action that is to be executed" msgstr "" +#. module: base +#: field:ir.server.object.lines,server_id:0 +msgid "Object Mapping" +msgstr "" + +#. module: base +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "Δημοσιευμένη έκδοση" + +#. module: base +#: help:res.currency,rate:0 help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country_state +#: model:ir.ui.menu,name:base.menu_country_state_partner +#: field:maintenance.contract.wizard,state:0 +msgid "States" +msgstr "Κράτη" + #. module: base #: model:res.country,name:base.ug msgid "Uganda" msgstr "" +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "Ποσοστό" + #. module: base #: model:res.country,name:base.cg msgid "Congo" msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Create / Write" +msgstr "" + #. module: base #: view:res.lang:0 msgid "Examples" @@ -7755,16 +5260,63 @@ msgstr "" msgid "Paraguay" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Προκαθορισμένη αξία" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Object:" +msgstr "" + #. module: base #: model:res.country,name:base.st msgid "Saint Tome (Sao Tome) and Principe" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "Κράτος χώρας" + #. module: base #: model:res.country,name:base.bw msgid "Botswana" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "αριστερό" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "Μόνο για ανάγνωση" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "" + +#. module: base +#: view:ir.model:0 view:res.request:0 +msgid "Status" +msgstr "Θέση" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +msgid "Report Xml" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_partner #: model:ir.ui.menu,name:base.menu_partner_title_partner @@ -7772,11 +5324,41 @@ msgstr "" msgid "Partner Titles" msgstr "" +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "Υπηρεσία" + +#. module: base +#: field:ir.actions.report.xml,report_xml:0 +msgid "XML path" +msgstr "" + +#. module: base +#: help:ir.actions.act_window,auto_refresh:0 +msgid "Add an auto-refresh on the view" +msgstr "" + #. module: base #: model:res.country,name:base.lt msgid "Lithuania" msgstr "" +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Base Field" +msgstr "" + +#. module: base +#: field:ir.attachment,datas_fname:0 field:wizard.module.lang.export,name:0 +msgid "Filename" +msgstr "" + +#. module: base +#: field:ir.model,access_ids:0 field:ir.model.grid,access_ids:0 +msgid "Access" +msgstr "Πρόσβαση" + #. module: base #: model:res.country,name:base.sk msgid "Slovak Republic" @@ -7787,11 +5369,32 @@ msgstr "" msgid "Aruba" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_DOWN" +msgstr "" + #. module: base #: model:res.country,name:base.ar msgid "Argentina" msgstr "" +#. module: base +#: help:res.partner,user_id:0 +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "" + +#. module: base +#: field:res.groups,name:0 +msgid "Group Name" +msgstr "Όνομα ομάδας" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_download:0 +msgid "Modules to download" +msgstr "" + #. module: base #: model:res.country,name:base.ch msgid "Switzerland" @@ -7802,11 +5405,27 @@ msgstr "" msgid "Bahrain" msgstr "" +#. module: base +#: field:res.bank,fax:0 field:res.partner.address,fax:0 +msgid "Fax" +msgstr "" + #. module: base #: model:res.country,name:base.ye msgid "Yemen" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_workitem_form +#: model:ir.ui.menu,name:base.menu_workflow_workitem +msgid "Workitems" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT_PREVIEW" +msgstr "" + #. module: base #: field:wizard.module.lang.export,advice:0 msgid "Advice" @@ -7817,16 +5436,35 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_attachment +msgid "ir.attachment" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom_fields +msgid "ir.report.custom.fields" +msgstr "" + #. module: base #: model:res.country,name:base.de msgid "Germany" msgstr "" +#. module: base +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "" + #. module: base #: help:ir.actions.server,srcmodel_id:0 -msgid "" -"Object in which you want to create / write the object. If it is empty then " -"refer to the Object field." +msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Not Installed" msgstr "" #. module: base @@ -7834,6 +5472,16 @@ msgstr "" msgid "Lithuanian / Lietuvių kalba" msgstr "" +#. module: base +#: field:res.users,action_id:0 +msgid "Home Action" +msgstr "" + +#. module: base +#: field:ir.ui.menu,icon:0 +msgid "Icon" +msgstr "Εικονίδιο" + #. module: base #: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard #: model:ir.ui.menu,name:base.menu_maintenance_contract_add @@ -7841,6 +5489,13 @@ msgstr "" msgid "Add Maintenance Contract" msgstr "" +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +msgid "Ok" +msgstr "" + #. module: base #: field:res.lang,grouping:0 msgid "Separator Format" @@ -7851,6 +5506,16 @@ msgstr "" msgid "Pakistan" msgstr "" +#. module: base +#: field:ir.ui.view,inherit_id:0 +msgid "Inherited View" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "" + #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" @@ -7861,6 +5526,11 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: field:ir.actions.act_window,limit:0 field:ir.report.custom,limitt:0 +msgid "Limit" +msgstr "Όριο" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -7871,6 +5541,11 @@ msgstr "" msgid "Workflow to be executed on this model." msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:res.country,name:base.sn msgid "Senegal" @@ -7886,6 +5561,16 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "ή" + #. module: base #: model:res.partner.category,name:base.res_partner_category_7 msgid "Openstuff.net" @@ -7906,6 +5591,12 @@ msgstr "" msgid "Ending Date" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "Αποεγκατεστημένες ενότητες" + #. module: base #: model:res.country,name:base.nf msgid "Norfolk Island" @@ -7921,6 +5612,17 @@ msgstr "" msgid "Azerbaijan" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_roles +msgid "res.roles" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_install +#: model:ir.ui.menu,name:base.menu_module_tree_install +msgid "Installed modules" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_maintenance_contract_form #: model:ir.ui.menu,name:base.menu_maintenance_contract @@ -7937,31 +5639,73 @@ msgstr "" msgid "United Arab Emirates" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 +msgid "Module" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Arabic / الْعَرَبيّة" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: model:res.country,name:base.gi msgid "Gibraltar" msgstr "" +#. module: base +#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 +msgid "Client Action" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "" + #. module: base #: model:res.country,name:base.bd msgid "Bangladesh" msgstr "" +#. module: base +#: field:workflow.transition,signal:0 +msgid "Signal (button Name)" +msgstr "" + #. module: base #: model:res.country,name:base.lc msgid "Saint Lucia" msgstr "" +#. module: base +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Czech / Čeština" msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "" + +#. module: base +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" +msgstr "" + #. module: base #: field:ir.actions.server,loop_action:0 msgid "Loop Action" @@ -7983,17 +5727,45 @@ msgstr "" msgid "Laos" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Sum" +msgstr "" + #. module: base #: view:ir.sequence:0 msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Email" +msgstr "" + +#. module: base +#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 +msgid "Channel" +msgstr "" + +#. module: base +#: field:ir.model.access,perm_create:0 +msgid "Create Access" +msgstr "" + #. module: base #: help:ir.actions.server,mobile:0 -msgid "" -"Provides fields that be used to fetch the mobile number, e.g. you select the " -"invoice, then `object.invoice_address_id.mobile` is the field which gives " -"the correct mobile number" +msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +#: model:ir.ui.menu,name:base.menu_partner_other_form +msgid "Others Partners" +msgstr "" + +#. module: base +#: field:ir.model.data,noupdate:0 +msgid "Non Updatable" msgstr "" #. module: base @@ -8021,6 +5793,11 @@ msgstr "" msgid "Action Source" msgstr "" +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "get" +msgstr "" + #. module: base #: model:res.country,name:base.yt msgid "Mayotte" @@ -8041,11 +5818,57 @@ msgstr "" msgid "Armenia" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 +#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +msgid "Fields" +msgstr "Πεδία" + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: model:ir.ui.menu,name:base.menu_config view:res.company:0 +msgid "Configuration" +msgstr "Διαμόρφωση" + #. module: base #: field:maintenance.contract,date_start:0 msgid "Starting Date" msgstr "" +#. module: base +#: view:ir.model:0 field:ir.model.fields,ttype:0 +msgid "Field Type" +msgstr "Τύπος πεδίων " + +#. module: base +#: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 +msgid "Complete Name" +msgstr "Πλήρες όνομα" + +#. module: base +#: field:res.country.state,code:0 +msgid "State Code" +msgstr "" + +#. module: base +#: field:ir.model.fields,on_delete:0 +msgid "On delete" +msgstr "" + +#. module: base +#: view:res.request:0 +msgid "Reply" +msgstr "Απάντηση" + +#. module: base +#: field:ir.cron,function:0 field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +msgid "Function" +msgstr "" + #. module: base #: view:ir.sequence:0 msgid "Year with century: %(year)s" @@ -8056,6 +5879,27 @@ msgstr "" msgid "_Cancel" msgstr "" +#. module: base +#: view:ir.report.custom:0 +msgid "Subscribe Report" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 +msgid "ir.actions.url" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-report" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +msgid "Workflows" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -8063,31 +5907,110 @@ msgstr "" #. module: base #: help:ir.actions.wizard,multi:0 -msgid "" -"If set to true, the wizard will not be displayed on the right toolbar of a " -"form view." +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." msgstr "" +#. module: base +#: field:res.lang,translatable:0 +msgid "Translatable" +msgstr "Μεταφράσιμο " + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Daily" +msgstr "Καθημερινά" + #. module: base #: view:res.lang:0 msgid "3. %x ,%X ==> 12/05/08, 18:25:20" msgstr "" +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Cascade" +msgstr "" + #. module: base #: model:res.country,name:base.se msgid "Sweden" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 +msgid "Currencies" +msgstr "Νομίσματα" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard View" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Gantt" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" +msgstr "" + +#. module: base +#: view:ir.property:0 +msgid "Property" +msgstr "Ιδιοκτησία" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type +#: view:res.partner.bank.type:0 +msgid "Bank Account Type" +msgstr "" + #. module: base #: field:res.partner.category,complete_name:0 msgid "Full Name" msgstr "" +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-project" +msgstr "" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "Σχόλιο" + #. module: base #: view:maintenance.contract.wizard:0 msgid "_Validate" msgstr "" +#. module: base +#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "Τομέας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "" + +#. module: base +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 +msgid "Subject" +msgstr "Θέμα" + #. module: base #: view:res.lang:0 msgid "%X - Appropriate time representation." @@ -8103,13 +6026,14 @@ msgstr "" msgid "Qatar" msgstr "" +#. module: base +#: view:res.company:0 +msgid "Your Logo - Use a size of about 450x150 pixels." +msgstr "" + #. module: base #: help:res.lang,grouping:0 -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." +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 "" #. module: base @@ -8127,36 +6051,105 @@ msgstr "" msgid "Tuvalu" msgstr "" +#. module: base +#: field:workflow.activity,join_mode:0 +msgid "Join Mode" +msgstr "" + #. module: base #: model:res.country,name:base.jp msgid "Japan" msgstr "" +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" +msgstr "Ημερολόγιο" + #. module: base #: field:ir.actions.act_window.view,multi:0 msgid "On Multiple Doc." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Button" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" msgstr "" +#. module: base +#: field:res.partner,address:0 view:res.partner.address:0 +msgid "Contacts" +msgstr "Επαφές" + #. module: base #: model:res.country,name:base.fo msgid "Faroe Islands" msgstr "" +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Graph" +msgstr "" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Latest version" +msgstr "Πιό πρόσφατη έκδοση" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "" + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "'Εναρξη Εγκατάστασης" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "κλειστό" + #. module: base #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." msgstr "" +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "Ετικέτες" + #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Draft" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.maintenance msgid "Maintenance" @@ -8167,6 +6160,31 @@ msgstr "" msgid "OpenERP Partners" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Choose Your Mode" +msgstr "" + +#. module: base +#: view:ir.actions.report.custom:0 +msgid "Report custom" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 field:workflow.activity,action_id:0 +msgid "Server Action" +msgstr "" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 +msgid "Login" +msgstr "" + #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" @@ -8177,6 +6195,60 @@ msgstr "" msgid "Belarus" msgstr "" +#. module: base +#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 +#: field:ir.actions.url,name:0 +msgid "Action Name" +msgstr "" + +#. module: base +#: field:ir.actions.configuration.wizard,progress:0 +msgid "Configuration Progress" +msgstr "" + +#. module: base +#: field:res.company,rml_footer2:0 +msgid "Report Footer 2" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_11 +msgid "Configuration Wizards" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "" + +#. module: base +#: field:res.bank,street2:0 field:res.partner.address,street2:0 +msgid "Street2" +msgstr "" + +#. module: base +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_localisation +msgid "Localisation" +msgstr "" + +#. module: base +#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 +msgid "Dependencies" +msgstr "" + +#. module: base +#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "Χρήστης" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" @@ -8187,16 +6259,52 @@ msgstr "" msgid "Puerto Rico" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REVERT_TO_SAVED" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "" + +#. module: base +#: field:ir.actions.server,condition:0 +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:workflow.transition,condition:0 +msgid "Condition" +msgstr "Όρος" + #. module: base #: help:ir.values,model_id:0 msgid "This field is not used, it only helps you to select a good model." msgstr "" +#. module: base +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "Χρώμα υποβάθρου" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" +msgstr "Απλή οργάνωση περιοχών" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation_untrans +#: model:ir.ui.menu,name:base.menu_action_translation_untrans +msgid "Untranslated terms" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "" + #. module: base #: view:ir.actions.server:0 -msgid "" -"If you use a formula type, use a python expression using the variable " -"'object'." +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base @@ -8204,12 +6312,60 @@ msgstr "" msgid "Italian / Italiano" msgstr "" +#. module: base +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +msgid "Import module" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users +#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 +#: field:ir.rule.group,users:0 +#: model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 +#: field:res.groups,users:0 field:res.roles,users:0 view:res.users:0 +msgid "Users" +msgstr "Χρήστες" + +#. module: base +#: view:workflow.transition:0 +msgid "Transition" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "Όροι εφαρμογής" + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "Ημερομηνία γεννήσεως" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_contact #: model:ir.ui.menu,name:base.menu_partner_title_contact msgid "Contact Titles" msgstr "" +#. module: base +#: field:ir.module.repository,filter:0 +msgid "Filter" +msgstr "Φίλτρο" + +#. module: base +#: field:ir.actions.todo,active:0 field:ir.cron,active:0 +#: field:ir.module.repository,active:0 field:ir.sequence,active:0 +#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 +#: field:res.partner,active:0 field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 field:res.request,active:0 +#: field:res.users,active:0 +msgid "Active" +msgstr "Ενεργός" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "tlh_TLH" @@ -8240,26 +6396,85 @@ msgstr "" msgid "Thailand" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" +msgstr "" + #. module: base #: model:res.country,name:base.gd msgid "Grenada" msgstr "" +#. module: base +#: field:ir.sequence,code:0 field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a5" +msgstr "" + #. module: base #: selection:server.action.create,init,type:0 msgid "Open Report" msgstr "" +#. module: base +#: field:res.currency,rounding:0 +msgid "Rounding factor" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Field" +msgstr "" + #. module: base #: model:res.country,name:base.sc msgid "Seychelles" msgstr "" +#. module: base +#: view:ir.cron:0 +msgid "Action to trigger" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" +msgstr "" + +#. module: base +#: field:ir.model.fields,select_level:0 +msgid "Searchable" +msgstr "" + #. module: base #: model:res.country,name:base.uy msgid "Uruguay" msgstr "" +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "" + +#. module: base +#: view:res.partner.som:0 +msgid "Partner State of Mind" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank view:res.partner.bank:0 +msgid "Bank Accounts" +msgstr "" + #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8270,6 +6485,11 @@ msgstr "" msgid "Egypt" msgstr "" +#. module: base +#: field:ir.sequence,prefix:0 +msgid "Prefix" +msgstr "" + #. module: base #: model:res.country,name:base.rw msgid "Rwanda" @@ -8285,26 +6505,72 @@ msgstr "" msgid "Select the Signal name that is to be used as the trigger." msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Fields Mapping" +msgstr "" + #. module: base #: model:res.country,name:base.bi msgid "Burundi" msgstr "" +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:module.upgrade,end,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:server.action.create,step_1,end:0 +#: view:wizard.module.lang.export:0 +msgid "Close" +msgstr "" + +#. module: base +#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 +msgid "Sequence Name" +msgstr "" + #. module: base #: model:res.country,name:base.tc msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "System upgrade done" +msgstr "Έγινα Βελτίωση συστημάτων" + #. module: base #: model:res.country,name:base.so msgid "Somalia" msgstr "" +#. module: base +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_simple_view_form +msgid "Configure Simple View" +msgstr "" + +#. module: base +#: wizard_button:module.upgrade,next,start:0 +msgid "Start Upgrade" +msgstr "" + #. module: base #: model:res.country,name:base.bt msgid "Bhutan" msgstr "" +#. module: base +#: field:ir.default,ref_id:0 +msgid "ID Ref." +msgstr "" + #. module: base #: field:res.partner.bank,owner_name:0 msgid "Account Owner" @@ -8315,6 +6581,18 @@ msgstr "" msgid "Important customers" msgstr "" +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,fc1_condition:0 +#: field:ir.report.custom.fields,fc2_condition:0 +#: field:ir.report.custom.fields,fc3_condition:0 +msgid "condition" +msgstr "όρος" + #. module: base #: model:res.country,name:base.sg msgid "Singapore" @@ -8330,27 +6608,122 @@ msgstr "" msgid "nl_BE" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_report_custom +#: view:ir.report.custom:0 +msgid "Custom Report" +msgstr "" + #. module: base #: field:ir.actions.server,fields_lines:0 msgid "Field Mappings." msgstr "" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "" + +#. module: base +#: field:ir.cron,args:0 +msgid "Arguments" +msgstr "Ορίσματα" + +#. module: base +#: field:workflow,osv:0 field:workflow.instance,res_type:0 +msgid "Resource Object" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "sxw" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +#: model:ir.ui.menu,name:base.menu_partner_customer_form_new +msgid "New Partner" +msgstr "" + +#. module: base +#: selection:ir.actions.url,target:0 +msgid "This Window" +msgstr "" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Μορφή αρχείου" + #. module: base #: field:ir.model,state:0 field:ir.model.fields,state:0 #: field:ir.model.grid,state:0 msgid "Manually Created" msgstr "" +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "Χώρος Απόθεσης" + +#. module: base +#: field:ir.attachment,description:0 field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 view:res.partner.event:0 +#: field:res.partner.event,description:0 view:res.request:0 +msgid "Description" +msgstr "Περιγραφή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "" + #. module: base #: field:ir.actions.wizard,name:0 msgid "Wizard Info" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + +#. module: base +#: field:res.bank,street:0 field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" +msgstr "Οδός" + +#. module: base +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "" + #. module: base #: field:ir.attachment,preview:0 msgid "Image Preview" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" + +#. module: base +#: view:workflow.workitem:0 +msgid "Workflow Workitems" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "" + #. module: base #: model:res.country,name:base.vc msgid "Saint Vincent & Grenadines" @@ -8361,6 +6734,23 @@ msgstr "" msgid "Corp." msgstr "" +#. module: base +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "Εξαγωγή γλώσσας" + +#. module: base +#: field:res.partner,customer:0 +#: model:res.partner.category,name:base.res_partner_category_0 +#: selection:res.partner.event,partner_type:0 +msgid "Customer" +msgstr "" + #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Unvalidated" @@ -8371,21 +6761,80 @@ msgstr "" msgid "Guinea Bissau" msgstr "" +#. module: base +#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 +msgid "Report Name" +msgstr "" + +#. module: base +#: view:workflow.instance:0 +msgid "Workflow Instances" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +#: wizard_view:res.partner.spam_send,init:0 +msgid "Mass Mailing" +msgstr "Μαζική αποστολή" + #. module: base #: model:res.country,name:base.io msgid "British Indian Ocean Territory" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_country field:res.bank,country:0 +#: view:res.country:0 field:res.country.state,country_id:0 +#: field:res.partner,country:0 field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 +msgid "Country" +msgstr "Χώρα" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "κέντρο" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" +msgstr "" + +#. module: base +#: field:res.partner.event,partner_type:0 +msgid "Partner Relation" +msgstr "" + #. module: base #: model:res.country,name:base.mk msgid "Macedonia" msgstr "" +#. module: base +#: field:ir.actions.act_window,context:0 +msgid "Context Value" +msgstr "" + #. module: base #: model:res.country,name:base.kp msgid "North Korea" msgstr "" +#. module: base +#: view:ir.report.custom:0 +msgid "Unsubscribe Report" +msgstr "" + #. module: base #: view:ir.sequence:0 msgid "Hour 00->24: %(h24)s" @@ -8396,16 +6845,73 @@ msgstr "" msgid "Zimbabwe" msgstr "" +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Create Object" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "" + +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "" + +#. module: base +#: field:res.request.history,name:0 +msgid "Summary" +msgstr "" + +#. module: base +#: field:res.request.history,date_sent:0 +msgid "Date sent" +msgstr "Ημερομηνία που στέλνεται" + #. module: base #: model:res.partner.category,name:base.res_partner_category_1 msgid "Prospect" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_function +msgid "Function of the contact" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_upgrade +#: model:ir.ui.menu,name:base.menu_module_tree_upgrade +msgid "Modules to be installed, upgraded or removed" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + +#. module: base +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "" + #. module: base #: model:res.country,name:base.mm msgid "Myanmar" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,sequence:0 +#: field:ir.actions.server,sequence:0 field:ir.actions.todo,sequence:0 +#: field:ir.module.repository,sequence:0 +#: field:ir.report.custom.fields,sequence:0 view:ir.sequence:0 +#: field:ir.ui.menu,sequence:0 field:ir.ui.view_sc,sequence:0 +#: field:res.partner.bank,sequence:0 +#: field:wizard.ir.model.menu.create.line,sequence:0 +msgid "Sequence" +msgstr "Ακολουθία" + #. module: base #: view:res.lang:0 msgid "11. %U or %W ==> 48 (49th week)" @@ -8416,11 +6922,43 @@ msgstr "" msgid "Russian / русский язык" msgstr "" +#. module: base +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." +msgstr "" + +#. module: base +#: help:ir.cron,numbercall:0 +msgid "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Chinese (CN) / 简体中文" msgstr "" +#. module: base +#: view:ir.rule.group:0 +msgid "The rule is satisfied if all test are True (AND)" +msgstr "" + +#. module: base +#: field:ir.report.custom,footer:0 +msgid "Report Footer" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_NEXT" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_configuration_step +msgid "ir.module.module.configuration.step" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Right-to-Left" @@ -8431,7 +6969,997 @@ msgstr "" msgid "Yugoslavia" msgstr "" +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Choose a language to install:" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 +msgid "Partner" +msgstr "Συνέταιρος" + #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Install" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "Γλώσσα εισαγωγών" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Note that this operation my take a few minutes." +msgstr "" + +#. module: base +#: field:ir.model.data,name:0 +msgid "XML Identifier" +msgstr "" + +#. module: base +#: field:res.partner.function,name:0 +msgid "Function name" +msgstr "Όνομα λειτουργίας" + +#. module: base +#: field:ir.actions.server,otype:0 +msgid "Create Model" +msgstr "Δημιουργήστε πρότυπο" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not create this kind of document! (%s)" +msgstr "Δεν μπορείτε να δημιουργήσετε αυτό το είδος εγγράφου! (%s)" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "confirmation" +msgstr "επιβεβαίωση" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import new language" +msgstr "Εισαγωγή νέας γλώσσας " + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Η μέθοδος αυτή δεν εφαρμόζεται σε αυτό το αντικείμενο!" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_activity_form +#: model:ir.ui.menu,name:base.menu_workflow_activity +msgid "Activites" +msgstr "δραστηριότητες" + +#. module: base +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" +msgstr "Ηλεκτρονικό ταχυδρομείο/κινητό" + +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "Προεπιλεγμένο Ηλεκτρονικό Ταχυδρομείο" + +#. module: base +#: field:ir.actions.wizard,name:0 +#, fuzzy +msgid "Wizard info" +msgstr "Αυτόματος Οδηγός πληροφορίες" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Can not define a column %s. Reserved keyword !" +msgstr "Δεν μπορείτε να καθορίσετε στήλη '%s' . Κρατημένη λέξη " + +#. module: base +#: help:ir.ui.menu,groups_id:0 +msgid "If you put groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." +msgstr "Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον χρήστη. " + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The name_search method is not implemented on this object !" +msgstr "Η μέθοδος αναζήτησης ονόματος δεν εφαρμόζεται σε αυτό το αντικείμενο!" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Web:" +msgstr "Ιστός:" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "new" +msgstr "νέος" + +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "Όνομα Επαφής" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +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 "Αποθηκεύστε το έγγραφο σε ένα αρχείο '%s' και επεξεργαστείτε το με ειδικό λογισμικό ή έναν συντάκτη κειμένων. Η κωδικοποίηση αρχείων είναι utf-8. " + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password mismatch !" +msgstr "Κακός συνδυασμός κωδικού πρόσβασης!" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "This url '%s' must provide an html file with links to zip modules" +msgstr "Αυτό το url '%s' πρέπει να παρέχει σε ένα αρχείο HTML στις συνδέσεις με τις ενότητες Zip" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "ConcurrencyException" +msgstr "Εξαίρεση συναγωνισμού" + +#. module: base +#: field:ir.actions.server,state:0 +msgid "Action State" +msgstr "Κατάσταση δράσης" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category, without removing it." +msgstr "Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι απαραίτητη η αφαίρεση του." + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." +msgstr "Αποθηκεύστε το παρόν έγγραφο σε ένα .CSV αρχείο και ανοίξτε το με το λογισμικό φύλλο (spreadsheet) σας. Η κωδικοποίηση αρχείων είναι utf-8. Πρέπει να μετατρέψετε την πιο πρόσφατη στήλη πριν κάνετε επανεισαγωγή." + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" +msgstr "Δεν μπορείτε να διαγράψετε το χρήστη admin γιατί χρησιμοποιείται εσωτερικά για τους πόρους που δημιουργούνται από OpenERP (αναπροσαρμογές, εγκατάσταση ενότητας,…)" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +#, fuzzy +msgid "Custom" +msgstr "Προσαρμοσμένο" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +#, fuzzy +msgid "Bank type" +msgstr "Τραπ είδος" + +#. module: base +#: code:osv/fields.py:0 +#, fuzzy +msgid "undefined get method !" +msgstr "ακαθόριστο λήψη!" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "The read method is not implemented on this object !" +msgstr "διαβασμένο είναι όχι!" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +#, fuzzy +msgid "Partner contacts" +msgstr "Επαφές συνεργάτη" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Προσαρμοσμένο a όνομα με x!" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "Unknown attribute % in % (table %)" +msgstr "Άγνωστο ιδιότητα σε πίνακας" + +#. module: base +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "Wrong ID for the browse record, got %s, expected an integer." +msgstr "ID για εγγραφή s αναμένεται ακέραιος." + +#. module: base +#: field:ir.report.custom.fields,field_child2:0 +msgid "field child2" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child3:0 +msgid "field child3" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child0:0 +msgid "field child0" +msgstr "" + +#. module: base +#: field:ir.attachment,datas_fname:0 +#, fuzzy +msgid "Data Filename" +msgstr "Δεδομένα Όνομα αρχείου" + +#. module: base +#: field:ir.module.repository,url:0 +#, fuzzy +msgid "Url" +msgstr "Url" + +#. module: base +#: field:ir.actions.act_window,view_mode:0 +msgid "Mode of view" +msgstr "Κατάσταση προβολής" + +#. module: base +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "" +"You try to install a module that depends on the module: %s.\n" +"But this module is not available in your system." +msgstr "Εσείς στο εγκατάσταση a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο είναι όχι διαθέσιμα σε." + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "Unknown position in inherited view %s !" +msgstr "Άγνωστο θέση σε s!" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Warning: using a relation field which uses an unknown object" +msgstr "Προειδοποίηση a άγνωστο" + +#. module: base +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "You try to remove a module that is installed or will be installed" +msgstr "Εσείς στο a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο είναι ή" + +#. module: base +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "" +"Can not create the module file:\n" +" %s" +msgstr "" +"όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο\n" +" s" + +#. module: base +#: field:ir.model.fields,model_id:0 +#, fuzzy +msgid "Object id" +msgstr "Αντικείμενο id" + +#. module: base +#: field:ir.model.fields,state:0 field:ir.model,state:0 +#, fuzzy +msgid "Manualy Created" +msgstr "Δημιουργήθηκε" + +#. module: base +#: view:ir.ui.view:0 +#, fuzzy +msgid "User Interface - Views" +msgstr "Χρήστης Περιβάλλον Προβολές" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "You can not remove the model '%s' !" +msgstr "Εσείς όχι s!" + +#. module: base +#: field:ir.report.custom.fields,field_child1:0 +msgid "field child1" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "The write method is not implemented on this object !" +msgstr "είναι όχι!" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "The copy method is not implemented on this object !" +msgstr "αντιγραφή είναι όχι!" + +#. module: base +#: selection:res.lang,direction:0 +#, fuzzy +msgid "Left-to-right" +msgstr "Αριστερά στο δεξιά" + +#. module: base +#: help:res.partner,supplier:0 +#, fuzzy +msgid "Check this box if the partner if a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." +msgstr "Έλεγχος a s όχι όχι κωδικοποίηση a." + +#. module: base +#: code:report/report_sxw.py:0 +#, python-format +msgid "print" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password empty !" +msgstr "Κωδικός πρόσβασης κενός!" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "You can not write in this document! (%s)" +msgstr "Εσείς όχι σε s" + +#. module: base +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "Recursion error in modules dependencies !" +msgstr "Αναδρομή σφάλμα σε Επιλογές - δυνατότητες - λειτουργίες εξαρτήσεις!" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 code:osv/orm.py:0 +#, python-format +msgid "AccessError" +msgstr "Σφάλμα πρόσβασης" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "The create method is not implemented on this object !" +msgstr "είναι όχι!" + +#. module: base +#: field:ir.actions.wizard,type:0 +#, fuzzy +msgid "Action type" +msgstr "Ενέργεια είδος" + +#. module: base +#: field:ir.module.category,module_nr:0 +#, fuzzy +msgid "# of Modules" +msgstr "από Αρθρώματα" + +#. module: base +#: code:osv/fields.py:0 +#, fuzzy +msgid "Not implemented get_memory method !" +msgstr "Not λήψη!" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Bad query." +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "You try to bypass an access rule (Document type: %s)." +msgstr "Εσείς στο Έγγραφο είδος s." + +#. module: base +#: field:ir.actions.url,url:0 +#, fuzzy +msgid "Action Url" +msgstr "Ενέργεια Url" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Partners: " +msgstr "Συνεργάτες:" + +#. module: base +#: field:ir.ui.view,field_parent:0 +#, fuzzy +msgid "Childs Field" +msgstr "Πεδίο" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, fuzzy +msgid "Can not remove root user!" +msgstr "όχι root!" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "The search method is not implemented on this object !" +msgstr "είναι όχι!" + +#. module: base +#: field:ir.cron,nextcall:0 +msgid "Next call date" +msgstr "Επόμενη ημερομηνία κλήσης" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Cumulate" +msgstr "Συσσωρεύστε" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Pie charts need exactly two fields" +msgstr "Πίτα δύο" + +#. module: base +#: selection:ir.actions.server,otype:0 +#, fuzzy +msgid "Create in Same Model" +msgstr "Δημιουργία σε Ίδιο Μοντέλο" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Error !" +msgstr "Σφάλμα" + +#. module: base +#: help:ir.module.repository,filter:0 +#, fuzzy +msgid "" +"Regexp to search module on the repository webpage:\n" +"- The first parenthesis must match the name of the module.\n" +"- The second parenthesis must match all the version number.\n" +"- The last parenthesis must match the extension of the module." +msgstr "στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο Ταιριάζω όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n δευτερόλεπτο Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο." + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Reload an Official Translation" +msgstr "Ξαναφορτώστε μια επίσημη μετάφραση" + +#. module: base +#: code:tools/translate.py:0 +#, python-format +msgid "Bad file format" +msgstr "Κακή μορφή αρχείου" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group by" +msgstr "Ομαδοποίηση κατά" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "You can not remove the field '%s' !" +msgstr "Εσείς όχι s!" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" +msgstr "s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Αριθμός λογαριασμού" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not read this document! (%s)" +msgstr "Δεν μπορείτε να διαβάσετε το παρόν έγγραφο! (%s)" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export name" +msgstr "Όνομα εξαγωγής" + +#. module: base +#: field:ir.default,field_name:0 +msgid "Object field" +msgstr "Τομέας αντικειμένου" + +#. module: base +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "" +"Some installed modules depends on the module you plan to desinstall :\n" +" %s" +msgstr "" +"Κάποια προβλήματα Επιλογές - δυνατότητες - λειτουργίες εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο στο\n" +" s" + +#. module: base +#: selection:ir.actions.server,otype:0 +msgid "Create in Other Model" +msgstr "Δημιουργήστε σε άλλο πρότυπο" + +#. module: base +#: help:ir.rule.group,global:0 +#, fuzzy +msgid "Make the rule global or it needs to be put on a group or user" +msgstr "Make ή στο a ομάδα ή" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +#, fuzzy +msgid "Wizard name" +msgstr "Αυτόματος Οδηγός όνομα" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory:" +msgstr "Κατάλογος:" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "The name of the group can not start with \"-\"" +msgstr "Το όνομα της ομάδας δεν μπορεί να αρχίσει με \"-\"" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contacts Titles" +msgstr "Τίτλοι επαφών" + +#. module: base +#: view:res.partner.bank:0 +msgid "Bank account owner" +msgstr "Ιδιοκτήτης τραπεζικού λογαριασμού" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, fuzzy +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "Αποθήκευση στο a αρχείο Αρχείο s και Μάιος στο." + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export Id" +msgstr "Ταυτότητα εξαγωγής" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "This record was modified in the meanwhile" +msgstr "Αυτό το αρχείο τροποποιήθηκε εν τω μεταξύ" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Αυτή η μέθοδος δεν υπάρχει άλλο" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Tree can only be used in tabular reports" +msgstr "Το δέντρο μπορεί μόνο να χρησιμοποιηθεί στις συνοπτικές αναφορές" + +#. module: base +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Τραπεζικοί λογαριασμοί" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Bar charts need at least two fields" +msgstr "Ράβδος σε δύο" + +#. module: base +#: code:osv/fields.py:0 +#, fuzzy +msgid "Not implemented search_memory method !" +msgstr "Not!" + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 +#, fuzzy +msgid "Type of view" +msgstr "Τύπος από" + +#. module: base +#: code:report/custom.py:0 +#, fuzzy +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can draw a pie chart !" +msgstr "από 2η είναι a!" + +#. module: base +#: model:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Grant access to menu" +msgstr "Πρόσβαση επιχορήγησης στις επιλογές" + +#. module: base +#: help:res.partner,customer:0 +msgid "Check this box if the partner if a customer." +msgstr "Ελέγξτε αυτό το κιβώτιο εάν είναι συνεργάτης ή πελάτης." + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Second field should be figures" +msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμοί" + +#. module: base +#: field:ir.actions.actions,parent_id:0 +#, fuzzy +msgid "Parent Action" +msgstr "Γονέας Ενέργεια" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, fuzzy +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "t id μερικές id!" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "Error occured while validating the field(s) %s: %s" +msgstr "Σφάλμα s s s" + +#. module: base +#: help:ir.actions.wizard,multi:0 +#, fuzzy +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." +msgstr "στο αληθές όχι δεξιά από a." + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Orignal View" +msgstr "Αρχική Άποψη" + +#. module: base +#: field:res.partner.category,child_ids:0 +#, fuzzy +msgid "Childs Category" +msgstr "Κατηγορία" + +#. module: base +#: field:ir.actions.wizard,multi:0 +#, fuzzy +msgid "Action on multiple doc." +msgstr "Ενέργεια." + +#. module: base +#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 +#: help:ir.actions.act_window.view,multi:0 +#, fuzzy +msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgstr "στο αληθές όχι δεξιά από a." + +#. module: base +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level" +msgstr "Χαμηλό επλιπεδο " + +#. module: base +#: field:res.company,child_ids:0 +#, fuzzy +msgid "Childs Company" +msgstr "Εταιρία" + +#. module: base +#: rml:ir.module.reference:0 +#, fuzzy +msgid "Module:" +msgstr "Άρθρωμα:" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Enter at least one field !" +msgstr "Εισαγωγή σε!" + +#. module: base +#: field:ir.actions.server,child_ids:0 selection:ir.actions.server,state:0 +#, fuzzy +msgid "Others Actions" +msgstr "Άλλα Ενέργειες" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Name:" +msgstr "Όνομα:" + +#. module: base +#: field:ir.ui.menu,child_id:0 +#, fuzzy +msgid "Child ids" +msgstr "Παιδί" + +#. module: base +#: view:ir.actions.server:0 +#, fuzzy +msgid "Python code" +msgstr "Python" + +#. module: base +#: help:res.partner,vat:0 +#, fuzzy +msgid "Value Added Tax number" +msgstr "Τιμή Προστέθηκε Φόρος" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of calls" +msgstr "Αριθμός κλήσεων" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, fuzzy +msgid "Can not create the module file: %s !" +msgstr "όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο s!" + +#. module: base +#: selection:res.lang,direction:0 +#, fuzzy +msgid "Right-to-left" +msgstr "Δεξιά στο αριστερά" + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report title" +msgstr "Τίτλος εκθέσεων" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "The perm_read method is not implemented on this object !" +msgstr "διαβασμένο είναι όχι!" + +#. module: base +#: view:ir.actions.server:0 +#, fuzzy +msgid "Access all the fields related to the current object easily just by defining name of the attribute, i.e. [[partner_id.name]] for Invoice Object" +msgstr "Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο Αντικείμενο" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created date" +msgstr "Ημερομηνία δημιουργείας " + +#. module: base +#: view:ir.actions.server:0 +#, fuzzy +msgid "Email / SMS" +msgstr "Email SMS" + +#. module: base +#: field:ir.cron,doall:0 +#, fuzzy +msgid "Repeat missed" +msgstr "Επανάληψη" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "Couldn't find tag '%s' in parent view !" +msgstr "t ετικέτα s σε!" + +#. module: base +#: field:res.roles,child_id:0 +msgid "Childs" +msgstr "" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, fuzzy +msgid "Warning" +msgstr "Προειδοποίηση" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "ValidateError" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Version:" +msgstr "Έκδοση:" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, fuzzy +msgid "You can not delete this document! (%s)" +msgstr "Εσείς όχι s" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Printed:" +msgstr "Τυπωμένο:" + +#. module: base +#: code:addons/base/module/module.py:0 +#, fuzzy +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "όχι αναβάθμιση άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s είναι όχι." + +#. module: base +#: code:osv/fields.py:0 +#, fuzzy +msgid "Not implemented set_memory method !" +msgstr "Not!" + +#. module: base +#: view:res.partner.category:0 +#, fuzzy +msgid "Partner category" +msgstr "Συνεργάτης" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "Interface" +msgstr "Διεπαφή" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Field %d should be a figure" +msgstr "Πεδίο a" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not Implemented" +msgstr "Μη εφαρμοσμένο" + +#. module: base +#: field:ir.module.module,shortdesc:0 +#, fuzzy +msgid "Short description" +msgstr "Μικρή περιγραφή" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +#, fuzzy +msgid "This is the prefix of the file name the print will be saved as attachement. Keep empty to not save the printed reports" +msgstr "είναι από αρχείο όνομα Διατήρηση κενό στο όχι" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "The name_get method is not implemented on this object !" +msgstr "όνομα λήψη είναι όχι!" + +#. module: base +#: view:ir.sequence:0 +#, fuzzy +msgid "Year: %(year)s" +msgstr "Έτος έτος s" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +#, fuzzy +msgid "Default properties" +msgstr "Εξ ορισμού ιδιότητες" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, fuzzy +msgid "Please specify the Partner Email address !" +msgstr "Συνεργάτης Email διεύθυνση!" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +#, fuzzy +msgid "Partners Titles" +msgstr "Τίτλοι" + +#. module: base +#: wizard_view:module.lang.import,init:0 +#, fuzzy +msgid "You have to import a .CSV file wich is encoded in UTF-8. Please check that the first line of your file is:" +msgstr "Εσείς στο a CSV αρχείο είναι σε Έλεγχος πρώτο γραμμή από αρχείο είναι:" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 code:addons/base/ir/ir_model.py:0 +#: code:addons/base/module/module.py:0 code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Error" +msgstr "Σφάλμα" + +#. module: base +#: field:res.currency,rate:0 +#, fuzzy +msgid "Current rate" +msgstr "Τρέχον" + +#. module: base +#: field:res.payterm,name:0 +#, fuzzy +msgid "Payment term (short name)" +msgstr "Πληρωμή όνομα" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, fuzzy +msgid "Invalid operation" +msgstr "Άκυρο" + +#. module: base +#: field:res.partner.bank,owner_name:0 +#, fuzzy +msgid "Account owner" +msgstr "Λογαριασμός ιδιοκτήτης" + +#. module: base +#: field:ir.exports.line,name:0 field:res.partner.bank.type.field,name:0 +#, fuzzy +msgid "Field name" +msgstr "Όνομα πεδίου" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "τιμή s για s είναι όχι σε" + +#. module: base +#: wizard_view:module.lang.install,start:0 +#, fuzzy +msgid "Installation done" +msgstr "Εγκατάσταση έτοιμο" + +#. module: base +#: model:ir.ui.menu,name:base.menu_partner_address_form +#, fuzzy +msgid "Addresses" +msgstr "Διευθύνσεις" + +#. module: base +#: code:osv/orm.py:0 +#, fuzzy +msgid "Please check that all your lines have %d columns." +msgstr "Έλεγχος όλα στήλες." From f84b1e90e73969887f9e1ae6e43548c3d853c7e8 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 29 Jan 2009 11:22:10 +0200 Subject: [PATCH 061/251] Fix a few typos wrt. translations. bzr revid: p_christ@hol.gr-20090129092210-h2bri2j5dlj9skbi --- bin/addons/base/base_data.xml | 2 +- bin/tools/misc.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/addons/base/base_data.xml b/bin/addons/base/base_data.xml index 442147434bd..d87ee37273f 100644 --- a/bin/addons/base/base_data.xml +++ b/bin/addons/base/base_data.xml @@ -574,7 +574,7 @@ mh - Macedonia + FYROM mk diff --git a/bin/tools/misc.py b/bin/tools/misc.py index 04a1bba0ab5..3cb4416d017 100644 --- a/bin/tools/misc.py +++ b/bin/tools/misc.py @@ -723,7 +723,7 @@ def get_languages(): 'cs_CZ': u'Czech / Čeština', 'da_DK': u'Danish / Dansk', 'de_DE': u'German / Deutsch', - 'el_EL': u'Greek / Ελληνικά', + 'el_GR': u'Greek / Ελληνικά', 'en_CA': u'English (CA)', 'en_EN': u'English (default)', 'en_GB': u'English (UK)', From cae799cc8432d198576f553424252313fa6f34f6 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 31 Jan 2009 12:08:55 +0200 Subject: [PATCH 062/251] Fix a few Greek translations. bzr revid: p_christ@hol.gr-20090131100855-xh2agjtkliijjbxe --- bin/addons/base/i18n/el_GR.po | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 89ffa638d42..8e615d0563e 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -1,19 +1,22 @@ +# translation of el_GR.po to Ellhnika # Translation of OpenERP Server. # This file contains the translation of the following modules: # * base # +# P. Christeas , 2009. msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" +"Project-Id-Version: el_GR\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-01-29 07:54:57+0000\n" -"PO-Revision-Date: 2009-01-29 07:54:57+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" +"PO-Revision-Date: 2009-01-30 13:33GMT\n" +"Last-Translator: P. Christeas \n" +"Language-Team: Ellhnika \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: KBabel 1.11.4\n" #. module: base #: model:res.country,name:base.ca @@ -2085,7 +2088,7 @@ msgstr "" #. module: base #: field:ir.sequence,suffix:0 msgid "Suffix" -msgstr "Επίθημα" +msgstr "Επίθεμα" #. module: base #: view:ir.model:0 view:res.groups:0 @@ -2295,7 +2298,7 @@ msgstr "" #. module: base #: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Παραβλέποντα " +msgstr "Παραβλέφθηκε" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7963,3 +7966,4 @@ msgstr "Διευθύνσεις" #, fuzzy msgid "Please check that all your lines have %d columns." msgstr "Έλεγχος όλα στήλες." + From 03c835af30d17474a84efda8e87e7dcbe863a56d Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 31 Jan 2009 13:30:36 +0200 Subject: [PATCH 063/251] Fix module loading when some not found. If some modules exist in db and not in addons/ , then, the new code introduced at db57878bbb11 would loop forever. Check that and continue in such a case. bzr revid: p_christ@hol.gr-20090131113036-ikvuyry7kt3x4ao7 --- bin/addons/__init__.py | 29 +++++++++++++++++++++-------- bin/addons/base/ir/ir_actions.py | 2 +- 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index 5621597dc02..2d6949c142a 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -300,8 +300,11 @@ def upgrade_graph(graph, module_list, force=None): if info.get('installable', True): packages.append((module, info.get('depends', []), info)) + if not packages: + return False dependencies = dict([(p, deps) for p, deps, data in packages]) current, later = set([p for p, dep, data in packages]), set() + while packages and current > later: package, deps, data = packages[0] @@ -561,6 +564,8 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, **kwargs): has_updates = False modobj = None + logger.notifyChannel('init', netsvc.LOG_DEBUG, 'loading %d packages..' % len(graph)) + for package in graph: status['progress'] = (float(statusi)+0.1) / len(graph) m = package.name @@ -682,16 +687,24 @@ def load_modules(db, force_demo=False, status=None, update_module=False): STATES_TO_LOAD += ['to install'] + loop_count=1 while True: cr.execute("SELECT name from ir_module_module WHERE state in (%s)" % ','.join(['%s']*len(STATES_TO_LOAD)), STATES_TO_LOAD) module_list = [name for (name,) in cr.fetchall() if name not in graph] if not module_list: break - - upgrade_graph(graph, module_list, force) + + logger.notifyChannel('init', netsvc.LOG_DEBUG, 'Updating graph with %d more modules' % (len(module_list))) + if not upgrade_graph(graph, module_list, force): + break r = load_module_graph(cr, graph, status, report=report) has_updates = has_updates or r + + logger.notifyChannel('init', netsvc.LOG_DEBUG, 'Has updates %s' % (str(has_updates))) + loop_count +=1 + if (loop_count >100): + raise ProgrammingError() if has_updates: cr.execute("""select model,name from ir_model where id not in (select model_id from ir_model_access)""") @@ -703,7 +716,7 @@ def load_modules(db, force_demo=False, status=None, update_module=False): obj = pool.get(model) if obj: obj._check_removed_columns(cr, log=True) - + if report.get_report(): logger.notifyChannel('init', netsvc.LOG_INFO, report) @@ -717,11 +730,11 @@ def load_modules(db, force_demo=False, status=None, update_module=False): cr.execute('select model,res_id from ir_model_data where noupdate=%s and module=%s order by id desc', (False, mod_name,)) for rmod, rid in cr.fetchall(): uid = 1 - rmod_module= pool.get(rmod) - if rmod_module: - rmod_module.unlink(cr, uid, [rid]) - else: - logger.notifyChannel('init', netsvc.LOG_ERROR, 'Could not locate %s to remove res=%d' % (rmod,rid)) + rmod_module= pool.get(rmod) + if rmod_module: + rmod_module.unlink(cr, uid, [rid]) + else: + logger.notifyChannel('init', netsvc.LOG_ERROR, 'Could not locate %s to remove res=%d' % (rmod,rid)) cr.execute('delete from ir_model_data where noupdate=%s and module=%s', (False, mod_name,)) cr.commit() # diff --git a/bin/addons/base/ir/ir_actions.py b/bin/addons/base/ir/ir_actions.py index 6b70a1a34a3..93701410b09 100644 --- a/bin/addons/base/ir/ir_actions.py +++ b/bin/addons/base/ir/ir_actions.py @@ -118,7 +118,7 @@ class report_xml(osv.osv): ('html', 'html'), ('raw', 'raw'), ('sxw', 'sxw'), - ('txt', 'txt'), + ('txt', 'txt'), ('odt', 'odt'), ], string='Type', required=True), 'groups_id': fields.many2many('res.groups', 'res_groups_report_rel', 'uid', 'gid', 'Groups'), From 2ae98f03c9d9afee5fca4bec7bd005d0392d873e Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 31 Jan 2009 13:48:35 +0200 Subject: [PATCH 064/251] Little better message when modules cannot be loaded. bzr revid: p_christ@hol.gr-20090131114835-7go7yhsve0t8oks0 --- bin/addons/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index 2d6949c142a..8c3d5969a1b 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -695,13 +695,14 @@ def load_modules(db, force_demo=False, status=None, update_module=False): if not module_list: break - logger.notifyChannel('init', netsvc.LOG_DEBUG, 'Updating graph with %d more modules' % (len(module_list))) + #logger.notifyChannel('init', netsvc.LOG_DEBUG, 'Updating graph with %d more modules' % (len(module_list))) if not upgrade_graph(graph, module_list, force): + logger.notifyChannel('init', netsvc.LOG_WARNING, 'These modules are in db, but cannot be loaded: ' + (', '.join(module_list))) break r = load_module_graph(cr, graph, status, report=report) has_updates = has_updates or r - logger.notifyChannel('init', netsvc.LOG_DEBUG, 'Has updates %s' % (str(has_updates))) + #logger.notifyChannel('init', netsvc.LOG_DEBUG, 'Has updates %s' % (str(has_updates))) loop_count +=1 if (loop_count >100): raise ProgrammingError() From 66c089d04f40c17aa7b365e2eff5d1acf1a0951a Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 7 Feb 2009 21:26:06 +0200 Subject: [PATCH 065/251] At reportlab, allow a custom font mapping table, system-wide.. In some systems, the standard Adobe (TM) fonts are incomplete. There, some better fonts must always be used. bzr revid: p_christ@hol.gr-20090207192606-hyk6efuo5e5al7yk --- bin/report/render/rml2pdf/trml2pdf.py | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/bin/report/render/rml2pdf/trml2pdf.py b/bin/report/render/rml2pdf/trml2pdf.py index 5f8154044c2..aea46ea4fef 100644 --- a/bin/report/render/rml2pdf/trml2pdf.py +++ b/bin/report/render/rml2pdf/trml2pdf.py @@ -194,6 +194,26 @@ class _rml_doc(object): addMapping(name, 1, 0, name) #bold addMapping(name, 1, 1, name) #italic and bold + def setTTFontMapping(self,face, fontname,filename, mode='all'): + from reportlab.lib.fonts import addMapping + from reportlab.pdfbase import pdfmetrics + from reportlab.pdfbase.ttfonts import TTFont + + pdfmetrics.registerFont(TTFont(fontname, filename )) + if (mode == 'all'): + addMapping(face, 0, 0, fontname) #normal + addMapping(face, 0, 1, fontname) #italic + addMapping(face, 1, 0, fontname) #bold + addMapping(face, 1, 1, fontname) #italic and bold + elif (mode== 'normal') or (mode == 'regular'): + addMapping(face, 0, 0, fontname) #normal + elif (mode == 'italic'): + addMapping(face, 0, 1, fontname) #italic + elif (mode == 'bold'): + addMapping(face, 1, 0, fontname) #bold + elif (mode == 'bolditalic'): + addMapping(face, 1, 1, fontname) #italic and bold + def _textual_image(self, node): import base64 rc = '' @@ -793,6 +813,14 @@ class _rml_template(object): def parseString(data, fout=None, images={}, path='.',title=None): r = _rml_doc(data, images, path, title=title) + + #try to override some font mappings + try: + from customfonts import SetCustomFonts + SetCustomFonts(r) + except: + pass + if fout: fp = file(fout,'wb') r.render(fp) From 543a53380fa24d8a0438319f47d1bc3dc9ef5c90 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 7 Feb 2009 21:27:20 +0200 Subject: [PATCH 066/251] Use the DejaVu fonts as default. bzr revid: p_christ@hol.gr-20090207192720-bm8zfw9su1549qfk --- bin/report/render/rml2pdf/customfonts.py | 49 ++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 bin/report/render/rml2pdf/customfonts.py diff --git a/bin/report/render/rml2pdf/customfonts.py b/bin/report/render/rml2pdf/customfonts.py new file mode 100644 index 00000000000..502b954071b --- /dev/null +++ b/bin/report/render/rml2pdf/customfonts.py @@ -0,0 +1,49 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 P. Christeas, Tiny SPRL (). +# All Rights Reserved +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + + +CustomTTFonts = [ ('Helvetica',"DejaVu Sans", "DejaVuSans.ttf", 'normal'), + ('Helvetica',"DejaVu Sans Bold", "DejaVuSans-Bold.ttf", 'bold'), + ('Helvetica',"DejaVu Sans Oblique", "DejaVuSans-Oblique.ttf", 'italic'), + ('Helvetica',"DejaVu Sans BoldOblique", "DejaVuSans-BoldOblique.ttf", 'bolditalic'), + ('Times',"Liberation Serif", "LiberationSerif-Regular.ttf", 'normal'), + ('Times',"Liberation Serif Bold", "LiberationSerif-Bold.ttf", 'bold'), + ('Times',"Liberation Serif Italic", "LiberationSerif-Italic.ttf", 'italic'), + ('Times',"Liberation Serif BoldItalic", "LiberationSerif-BoldItalic.ttf", 'bolditalic'), + ('Times-Roman',"Liberation Serif", "LiberationSerif-Regular.ttf", 'normal'), + ('Times-Roman',"Liberation Serif Bold", "LiberationSerif-Bold.ttf", 'bold'), + ('Times-Roman',"Liberation Serif Italic", "LiberationSerif-Italic.ttf", 'italic'), + ('Times-Roman',"Liberation Serif BoldItalic", "LiberationSerif-BoldItalic.ttf", 'bolditalic'), + ('ZapfDingbats',"DejaVu Serif", "DejaVuSerif.ttf", 'normal'), + ('ZapfDingbats',"DejaVu Serif Bold", "DejaVuSerif-Bold.ttf", 'bold'), + ('ZapfDingbats',"DejaVu Serif Italic", "DejaVuSerif-Italic.ttf", 'italic'), + ('ZapfDingbats',"DejaVu Serif BoldItalic", "DejaVuSerif-BoldItalic.ttf", 'bolditalic'), + ('Courier',"FreeMono", "FreeMono.ttf", 'normal'), + ('Courier',"FreeMono Bold", "FreeMonoBold.ttf", 'bold'), + ('Courier',"FreeMono Oblique", "FreeMonoOblique.ttf", 'italic'), + ('Courier',"FreeMono BoldOblique", "FreeMonoBoldOblique.ttf", 'bolditalic'),] + +def SetCustomFonts(rmldoc): + for name, font, fname, mode in CustomTTFonts: + rmldoc.setTTFontMapping(name, font,fname, mode) + +#eof \ No newline at end of file From 34aa521076ab76d77fbb8e6f5f0be36cc8be6b8f Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 9 Feb 2009 19:01:06 +0200 Subject: [PATCH 067/251] Include pyPdf in installation. bzr revid: p_christ@hol.gr-20090209170106-odw463fuenynrq0h --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 7d05644b7cd..38f8f9b2ffc 100755 --- a/setup.py +++ b/setup.py @@ -173,6 +173,7 @@ setup(name = name, 'openerp-server.tools', 'openerp-server.report', 'openerp-server.report.printscreen', + 'openerp-server.report.pyPdf', 'openerp-server.report.render', 'openerp-server.report.render.rml2pdf', 'openerp-server.report.render.rml2html', From f9f9fc5dde3116c1684bed2bb3a264489cd73df1 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 16 Feb 2009 20:39:33 +0200 Subject: [PATCH 068/251] For python 2.6, don't try to use Exception.message bzr revid: p_christ@hol.gr-20090216183933-4w10k79yzal4fcfl --- bin/tools/misc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/tools/misc.py b/bin/tools/misc.py index 8863a8cc2e5..cba90e61d6b 100644 --- a/bin/tools/misc.py +++ b/bin/tools/misc.py @@ -692,14 +692,14 @@ def ustr(value): return unicode(value, getlocale()[1]) def exception_to_unicode(e): - if hasattr(e, 'message'): + if (sys.version_info[:2] < (2,6)) and hasattr(e, 'message'): return ustr(e.message) if hasattr(e, 'args'): return "\n".join((ustr(a) for a in e.args)) try: return ustr(e) except: - return u"Unknow message" + return u"Unknown message" # to be compatible with python 2.4 From 6c45edf78925b7480e283587d8accb1f5c47352b Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 17 Feb 2009 11:36:52 +0200 Subject: [PATCH 069/251] Fix Greek translation of "State". bzr revid: p_christ@hol.gr-20090217093652-8a4v18wi54ya204r --- bin/addons/base/i18n/el_GR.po | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 8e615d0563e..223904b1853 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: el_GR\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-01-29 07:54:57+0000\n" -"PO-Revision-Date: 2009-01-30 13:33GMT\n" +"PO-Revision-Date: 2009-02-17 11:35GMT\n" "Last-Translator: P. Christeas \n" "Language-Team: Ellhnika \n" "MIME-Version: 1.0\n" @@ -715,7 +715,12 @@ msgstr "" #: field:res.request,state:0 field:workflow.instance,state:0 #: field:workflow.workitem,state:0 msgid "State" -msgstr "Κατάσταση Λογαριασμού" +msgstr "Κατάσταση" + +#. module: base +#: view:res.country.state:0 field:res.partner.bank,state_id:0 +msgid "State" +msgstr "Πολιτεία" #. module: base #: view:res.partner:0 field:res.partner,category_id:0 From 08b8b3657acd78bc36127dd626109256d4792fd8 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 18 Feb 2009 16:58:22 +0200 Subject: [PATCH 070/251] Greek translation fixes. bzr revid: p_christ@hol.gr-20090218145822-ub5h3tu8uyowd90v --- bin/addons/base/i18n/el_GR.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 223904b1853..2e8861c0e5d 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -1125,7 +1125,7 @@ msgstr "" #. module: base #: wizard_view:module.module.update,update:0 msgid "New modules" -msgstr "Νέες ενότητες" +msgstr "Νέα αρθρώματα" #. module: base #: view:ir.sequence:0 @@ -3499,7 +3499,7 @@ msgstr "Περιγραφή πεδίων " #. module: base #: wizard_button:module.module.update,init,update:0 msgid "Check new modules" -msgstr "Νέες ενότητες ελέγχου" +msgstr "Έλεγχος για νέα αρθρώματα" #. module: base #: model:res.country,name:base.km @@ -3510,7 +3510,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_server_action #: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action msgid "Server Actions" -msgstr "Ενέργειες κεντρικών υπολογιστών" +msgstr "Ενέργειες στο διακομιστή" #. module: base #: selection:wizard.module.lang.export,state:0 @@ -5603,7 +5603,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.open_module_tree_uninstall #: model:ir.ui.menu,name:base.menu_module_tree_uninstall msgid "Uninstalled modules" -msgstr "Αποεγκατεστημένες ενότητες" +msgstr "Αποεγκατεστημένα αρθρώματα" #. module: base #: model:res.country,name:base.nf @@ -7111,13 +7111,13 @@ msgstr "Αποθηκεύστε το έγγραφο σε ένα αρχείο '%s' #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Password mismatch !" -msgstr "Κακός συνδυασμός κωδικού πρόσβασης!" +msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν!" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "Αυτό το url '%s' πρέπει να παρέχει σε ένα αρχείο HTML στις συνδέσεις με τις ενότητες Zip" +msgstr "Αυτό το url '%s' πρέπει να παρέχει σε ένα αρχείο HTML με συνδέσεις στα αρθρώματα σε Zip" #. module: base #: code:osv/orm.py:0 From cd841a81e5254cea46f5cb5258372e948d0be71a Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 12 Mar 2009 09:55:15 +0200 Subject: [PATCH 071/251] Fix indentation (ie code) in ir_cron, after merge. /me says bad words about Python. bzr revid: p_christ@hol.gr-20090312075515-jweic64yc2092jn5 --- bin/addons/base/ir/ir_cron.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/addons/base/ir/ir_cron.py b/bin/addons/base/ir/ir_cron.py index eecb551fcd3..01965f6547a 100644 --- a/bin/addons/base/ir/ir_cron.py +++ b/bin/addons/base/ir/ir_cron.py @@ -107,8 +107,8 @@ class ir_cron(osv.osv, netsvc.Agent): addsql = ', active=False' cr.execute("update ir_cron set nextcall=%s, numbercall=%s"+addsql+" where id=%s", (nextcall.strftime('%Y-%m-%d %H:%M:%S'), numbercall, job['id'])) cr.commit() - except: - print "Exception!" + except: + print "Exception in cron!" finally: cr.close() From ff60e8d63a1d5ccbab2920750acf4d2c1f5092b0 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 12 Mar 2009 10:34:16 +0200 Subject: [PATCH 072/251] [Fix]: In res_users, create context_lang at start. This fixes creating a new db. res_users is created in static SQL, because it must exist before anything else. There, context_lang must exist as well. Additionaly, init res_lang before res_users. Trace: File "./bin/osv/orm.py", line 1560, in _auto_init default = self._defaults[k](self, cr, 1, {}) File "./bin/addons/base/res/res_user.py", line 152, in _get_company return self.pool.get('res.users').browse(cr, uid, uid, context).company_id.id File "./bin/osv/orm.py", line 225, in __getattr__ return self[name] File "./bin/osv/orm.py", line 182, in __getitem__ datas = self._table.read(self._cr, self._uid, ids, fffields, context=self._context, load="_classic_write") File "./bin/addons/base/res/res_user.py", line 127, in read result = super(users, self).read(cr, uid, ids, fields, context, load) File "./bin/osv/orm.py", line 1905, in read result = self._read_flat(cr, user, select, fields, context, load) File "./bin/osv/orm.py", line 1959, in _read_flat self._order)) File "./bin/sql_db.py", line 78, in wrapper return f(self, *args, **kwargs) File "./bin/sql_db.py", line 120, in execute res = self._obj.execute(query, params) ProgrammingError: column "context_lang" does not exist LINE 1: ...text_tz","name","company_id","signature","active","context_l... bzr revid: p_christ@hol.gr-20090312083416-r7yjmipqik0k0kd1 --- bin/addons/base/base.sql | 1 + bin/addons/base/res/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/addons/base/base.sql b/bin/addons/base/base.sql index 8dfc8d8f765..3966f8fa408 100644 --- a/bin/addons/base/base.sql +++ b/bin/addons/base/base.sql @@ -141,6 +141,7 @@ CREATE TABLE res_users ( active boolean default True, login varchar(64) NOT NULL UNIQUE, password varchar(64) default null, + context_lang varchar(16) default null, context_tz varchar(64) default null, signature text, -- action_id int references ir_act_window on delete set null, diff --git a/bin/addons/base/res/__init__.py b/bin/addons/base/res/__init__.py index 91f47a8ba42..114ad737e4b 100644 --- a/bin/addons/base/res/__init__.py +++ b/bin/addons/base/res/__init__.py @@ -27,8 +27,8 @@ import bank import partner import res_currency import res_company -import res_user import res_lang +import res_user import res_request From 9f542c792a563e4521eec91dacbef7aeb62a6ff9 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 12 Apr 2009 16:42:39 +0300 Subject: [PATCH 073/251] Fix copying of one2many, one2one empty fields. bzr revid: p_christ@hol.gr-20090412134239-d487cn2q47u4wrmi --- bin/osv/orm.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index e9dfb83e118..1e03d3078b4 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -2690,13 +2690,14 @@ class orm(orm_template): elif ftype in ('one2many', 'one2one'): res = [] rel = self.pool.get(fields[f]['relation']) - for rel_id in data[f]: - # the lines are first duplicated using the wrong (old) - # parent but then are reassigned to the correct one thanks - # to the (4, ...) - d,t = rel.copy_data(cr, uid, rel_id, context=context) - res.append((0, 0, d)) - trans_data += t + if data[f] != False: + for rel_id in data[f]: + # the lines are first duplicated using the wrong (old) + # parent but then are reassigned to the correct one thanks + # to the (4, ...) + d,t = rel.copy_data(cr, uid, rel_id, context=context) + res.append((0, 0, d)) + trans_data += t data[f] = res elif ftype == 'many2many': data[f] = [(6, 0, data[f])] From c64ae0b8d1cd014bf5fa653c0aca46f5393b47ba Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 20 Apr 2009 16:50:50 +0300 Subject: [PATCH 074/251] Res_company: use DejaVu Sans for company headers, by default. Helvetica is broken for non-latin some Linux distros. Use the much better DejaVu font. bzr revid: p_christ@hol.gr-20090420135050-akxid1o6pk41481l --- bin/addons/base/res/res_company.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/addons/base/res/res_company.py b/bin/addons/base/res/res_company.py index 2158035abb3..fa76caa9185 100644 --- a/bin/addons/base/res/res_company.py +++ b/bin/addons/base/res/res_company.py @@ -109,11 +109,11 @@ class res_company(osv.osv): - + [[ formatLang(time.strftime("%Y-%m-%d"), date=True) ]] [[ time.strftime("%H:%M") ]] - + [[ company.partner_id.name ]] - + / @@ -132,7 +132,7 @@ class res_company(osv.osv): [[company.logo]] - + 1.3cm 27.7cm 20cm 27.7cm From 79d62886715d113d945a2f1c0b4469b811741fe0 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 20 Apr 2009 20:20:16 +0300 Subject: [PATCH 075/251] Major fix for Python 2.6: fix db cursor speed like 2.5 In python 2.6, the hasattr() will undergo subclass checks. So, it is unwise to call it for the "object". That subclass check would overflow the recursion limit, on each cursor delete operation, which ends up in wasted CPU (and slow OpenObject responsiveness). Now, hopefully, OpenObject will run in 2.6 as fast as it ran in 2.5 . bzr revid: p_christ@hol.gr-20090420172016-1dgiys0cj90efh34 --- bin/sql_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sql_db.py b/bin/sql_db.py index 8fa364b9410..93e95e82bfb 100644 --- a/bin/sql_db.py +++ b/bin/sql_db.py @@ -91,7 +91,7 @@ class Cursor(object): self.__caller = tuple(stack()[2][1:3]) def __del__(self): - if hasattr(self, '_obj'): + if hasattr(self.__dict__, '_obj'): if tools.config['log_level'] in (netsvc.LOG_DEBUG, netsvc.LOG_DEBUG_RPC): # Oops. 'self' has not been closed explicitly. # The cursor will be deleted by the garbage collector, From e0da6e16d1801fc16f8ac5cb2d82dd21ed5538d0 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 20 Apr 2009 21:37:55 +0300 Subject: [PATCH 076/251] Rewrite previous patch, sane cursor close checks. bzr revid: p_christ@hol.gr-20090420183755-epdfdf6pgd6vc88m --- bin/sql_db.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/sql_db.py b/bin/sql_db.py index 93e95e82bfb..256df23a1e0 100644 --- a/bin/sql_db.py +++ b/bin/sql_db.py @@ -73,7 +73,7 @@ class Cursor(object): @wraps(f) def wrapper(self, *args, **kwargs): - if not hasattr(self, '_obj'): + if not '_obj' in self.__dict__: raise psycopg2.ProgrammingError('Unable to use the cursor after having closed it') return f(self, *args, **kwargs) return wrapper @@ -91,7 +91,7 @@ class Cursor(object): self.__caller = tuple(stack()[2][1:3]) def __del__(self): - if hasattr(self.__dict__, '_obj'): + if '_obj' in self.__dict__ : if tools.config['log_level'] in (netsvc.LOG_DEBUG, netsvc.LOG_DEBUG_RPC): # Oops. 'self' has not been closed explicitly. # The cursor will be deleted by the garbage collector, From 9a4378e93aed45bc7d1f692d20e471d1a8aba955 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 21 Apr 2009 11:53:32 +0300 Subject: [PATCH 077/251] Initial commit, .gitignore bzr revid: p_christ@hol.gr-20090421085332-ayl6nrsrbsoo261y --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000000..54bcf304652 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +~ From 71110b085d25fd1ba394b8618a575c3567a46b0d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:37 +0300 Subject: [PATCH 078/251] Adding debian version 5.0.0~alpha-1. bzr revid: p_christ@hol.gr-20090421090637-irv2zibey897goiz --- debian/README.Debian | 44 ++ debian/changelog | 202 +++++++ debian/compat | 1 + debian/config/openerp-server.conf | 48 ++ debian/control | 27 + debian/copyright | 312 +++++++++++ debian/docs | 2 + debian/install | 1 + debian/links | 1 + debian/lintian-overrides | 3 + debian/openerp-server.init | 66 +++ debian/patches/00list | 4 + debian/patches/01-autobuild.dpatch | 19 + debian/patches/02-openerp.dpatch | 815 +++++++++++++++++++++++++++++ debian/patches/03-migrate.dpatch | 19 + debian/patches/04-shebang.dpatch | 25 + debian/postinst | 46 ++ debian/postrm | 28 + debian/rules | 62 +++ 19 files changed, 1725 insertions(+) create mode 100644 debian/README.Debian create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/config/openerp-server.conf create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100644 debian/install create mode 100644 debian/links create mode 100644 debian/lintian-overrides create mode 100644 debian/openerp-server.init create mode 100644 debian/patches/00list create mode 100644 debian/patches/01-autobuild.dpatch create mode 100644 debian/patches/02-openerp.dpatch create mode 100644 debian/patches/03-migrate.dpatch create mode 100644 debian/patches/04-shebang.dpatch create mode 100644 debian/postinst create mode 100644 debian/postrm create mode 100755 debian/rules diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 00000000000..1fd378c7e72 --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,44 @@ +openerp-server for Debian +------------------------- + +OpenERP uses a PostgreSQL database to store its data. With the first generation +of packages, you have to setup this database manually. Here is a short +explanation how to achieve this (you need to execute all commands as root): + + 0. Making sure, PostgreSQL is running + + # /etc/init.d/postgresql* restart + + 1. Creating the database + + # su - postgres -c "createdb -q --encoding=UNICODE openerp" + + 2. Creating the database user + + # su - postgres -c "createuser -q --createdb --adduser openerp" + + Note: If you want to run the database as another user than 'openerp', you need + to replace 'openerp' above with the user you want instead, and you need to + adjust 'db_user = openerp' in /etc/openerp-server.conf too. + + 3. Restarting openerp-server + + # /etc/init.d/openerp-server restart + +Now, you're finish. Please be aware of the following things: + + * openerp-server has by default two accounts: + - User: admin; password: admin + - User: demo; password; demo + + * openerp-server listens by default on port 8069. If you need to change this, + edit /etc/openerp-server.conf and replace 'port = 8069' with + 'port = '. + + * openerp-server in the upstreams configuration listens by default to *all* + interfaces. For security reasons, we do restrict it in the Debian packages + to listen only on localhost. If you need to change this, edit + /etc/openerp-server.conf and replace 'interface = localhost' with + 'interface = '. + + -- Daniel Baumann Fri, 1 Jun 2007 12:00:00 +0200 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000000..fdc15885f77 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,202 @@ +tinyerp-server (5.0.0~alpha-1) experimental; urgency=low + + * Merging upstream version 5.0.0~alpha. + * Rediffing autobuild.dpatch. + * Removing shebang.dpatch, not needed anymore. + * Removing python2.5.dpatch, not needed anymore. + * Rediffing openerp.dpatch. + * Rediffing migrate.dpatch. + * Not moving server to sbin anymore for the sake of consistency. + * Removing unneeded chmod call for tinyerp-server.py. + * Sorting build-depends, depends and recommends. + * Dropping /etc/default/tinyerp-server in favour of using + /etc/tinyerp-server.conf directly. + * Updating chmod call in rules to also cope with filenames that embedd + whitespaces. + * Adding patch to correct shebang in two addon files. + * Adding workaround for bug in setup.py that puts import_xml.rng into the + wrong location. + * Adding symlink for tinyerp_serverrc manpage to tinyerp-server.conf. + * Renaming everything except the package name itself from tinyerp-server to + openerp-server. + * Updating copyright file to current upstream. + + -- Daniel Baumann Sun, 9 Nov 2008 15:52:00 +0100 + +tinyerp-server (4.2.3.4-1) unstable; urgency=low + + * Merging upstream version 4.2.3.4. + * Upgrading package to debhelper 7. + * Upgrading package to standards 3.8.0. + * Updating homepage field in control file. + * Adding vcs fields in control file. + * Rewriting copyright file in machine-interpretable format. + * Using lintian debhelper to install lintian overrides. + * Removing bind-exit.dpatch, went upstream. + * Updating default database port. + * Adding logfile handling. + * Updating postresql recommends. + * Reordering and splitting out rules file into individual debhelper files. + * Applying some shell cosmetics to init and maintainer scripts. + * Adding patch to update homepage location of tinyerp. + * Setting ownership of addons directory in postinst (Closes: #487112). + * Adding patch from Brian DeRocher to fix sql syntax in + migrate script (Closes: #467517). + + -- Daniel Baumann Sun, 9 Nov 2008 09:11:00 +0100 + +tinyerp-server (4.2.2-2) unstable; urgency=medium + + * Readding depends to python-psycopg (Closes: #463079, #493374). + * Adding depends to python-tz (Closes: #482359). + + -- Daniel Baumann Sun, 3 Aug 2008 00:20:00 +0200 + +tinyerp-server (4.2.2-1) unstable; urgency=low + + * New upstream release (Closes: #477698). + * Dropping depends against python-xml (Closes: #468619). + + -- Daniel Baumann Sat, 26 Apr 2008 16:15:00 +0200 + +tinyerp-server (4.2.1-1) unstable; urgency=low + + * Maintainer upload from the Zuerich BSP. + * New upstream release. + * Bumping to new policy. + * Using new homepage field in control. + * Including documentation for migration and testing (Closes: #445464). + * Adjusting 04-bind-exit.dpatch to new upstream release. + * Added lintian overrides. + * Depending now on python-psycopg2, not python-psycopg anymore + (Closes: #445464). + + -- Daniel Baumann Sat, 12 Jan 2008 15:20:00 +0100 + +tinyerp-server (4.2.0-1) unstable; urgency=medium + + * New upstream release. + + -- Daniel Baumann Wed, 31 Oct 2007 21:31:00 +0100 + +tinyerp-server (4.0.3-3) unstable; urgency=medium + + * Setting database port to 5433 (Closes: #443626). + * Applied patch from Aldrin Martoq to make tinyerp-server compatible with + python 2.5. + * Applied patch from Luca Falavigna to fix exception + raised when address is already in use. + + -- Daniel Baumann Sat, 29 Sep 2007 17:07:00 +0200 + +tinyerp-server (4.0.3-2) unstable; urgency=low + + * Check for existence of deluser in postrm (Closes: #431532). + + -- Daniel Baumann Tue, 3 Jul 2007 11:01:00 +0200 + +tinyerp-server (4.0.3-1) unstable; urgency=low + + * New upstream release. + * Taking package back, Jean-Marc seems to be MIA. + * Changed wording of 'listen to all interfaces' paragraph in README.Debian, + thanks to Gerfried Fuchs . + * Added lsb header to init script. + + -- Daniel Baumann Fri, 1 Jun 2007 11:59:00 +0200 + +tinyerp-server (4.0.2-3) unstable; urgency=low + + * Setting maintainer to Jean-Marc, this time really :) + + -- Daniel Baumann Wed, 28 Mar 2007 21:48:00 +0100 + +tinyerp-server (4.0.2-2) unstable; urgency=low + + * Setting maintainer to Jean-Marc. + + -- Daniel Baumann Wed, 7 Feb 2007 13:41:00 +0100 + +tinyerp-server (4.0.2-1) unstable; urgency=low + + * New upstream release. + * Some minor cleanups. + + -- Daniel Baumann Thu, 18 Jan 2007 14:19:00 +0100 + +tinyerp-server (4.0.1-1) unstable; urgency=low + + * New upstream release. + * Removed 03-setup.dpatch, went upstream. + + -- Daniel Baumann Fri, 29 Dec 2006 01:03:00 +0100 + +tinyerp-server (4.0.0-1) unstable; urgency=low + + * New upstream release. + * Added patch to fix a typo in setup.py. + + -- Daniel Baumann Tue, 5 Dec 2006 17:43:00 +0100 + +tinyerp-server (4.0.0~rc1-2) unstable; urgency=low + + * Cleaned up build-depends. + + -- Daniel Baumann Tue, 5 Dec 2006 13:19:00 +0100 + +tinyerp-server (4.0.0~rc1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Tue, 5 Dec 2006 12:57:00 +0100 + +tinyerp-server (3.5.0-1) experimental; urgency=low + + * New upstream release. + + -- Daniel Baumann Mon, 23 Oct 2006 12:23:00 +0200 + +tinyerp-server (3.4.2-1) unstable; urgency=low + + * New upstream release. + * New email address. + * Complying with new python policy (Closes: #380973). + * Adjusted postgre depends (Closes: #376614). + + -- Daniel Baumann Mon, 16 Oct 2006 14:45:00 +0200 + +tinyerp-server (3.3.0-1) unstable; urgency=low + + * New upstream release (Closes: #369769): + - fixed installation script to install all needed files (Closes: #355224) + * Updated README.Debian (Closes: #352322, #360222, #360223). + * Set to architecture to all (Closes: #356962). + + -- Daniel Baumann Sun, 4 Jun 2006 00:50:00 +0100 + +tinyerp-server (3.2.1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Thu, 2 Feb 2006 09:44:00 +0100 + +tinyerp-server (3.2.0-1) unstable; urgency=low + + * New upstream release. + * Adjusted shellbang in bin/addons/base/ir/workflow/pydot/dot_parser.py. + + -- Daniel Baumann Tue, 24 Jan 2006 07:00:00 +0100 + +tinyerp-server (3.1.99+3.2.0rc1-1) unstable; urgency=low + + * New upstream release. + + -- Daniel Baumann Tue, 27 Dec 2005 20:00:00 +0100 + +tinyerp-server (3.1.1+debian-1) unstable; urgency=low + + * Initial release (Closes: #301510). + * Rebuild orig.tar.gz to remove unnecessary files in upstreams debian/. + * Added changelog from website. + + -- Daniel Baumann Sun, 16 Oct 2005 13:35:00 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000000..7f8f011eb73 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/config/openerp-server.conf b/debian/config/openerp-server.conf new file mode 100644 index 00000000000..6e998262445 --- /dev/null +++ b/debian/config/openerp-server.conf @@ -0,0 +1,48 @@ +# /etc/openerp-server.conf(5) - configuration file for openerp-server(1) + +[options] +# Enable the debugging mode (default False). +verbose = 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.log + +# 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 = 8069 + +# 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 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000000..cb17a747d9f --- /dev/null +++ b/debian/control @@ -0,0 +1,27 @@ +Source: tinyerp-server +Section: net +Priority: optional +Maintainer: Daniel Baumann +Build-Depends: debhelper (>= 7), dpatch, python-dev +Build-Depends-Indep: python-libxml2, python-libxslt1, python-psycopg +Standards-Version: 3.8.0 +Homepage: http://www.openerp.com/ +Vcs-Browser: http://git.debian.net/?p=debian/openerp-server.git +Vcs-Git: git://git.debian.net/git/debian/openerp-server.git + +Package: tinyerp-server +Section: net +Architecture: all +Depends: ${misc:Depends}, adduser, python, python-libxml2, python-libxslt1, python-psycopg, python-reportlab, python-tz +Recommends: graphviz, postgresql, postgresql-client, python-imaging, python-pyparsing +Provides: openerp-server +Suggests: tinyerp-client +Description: Enterprise Resource Management (server) + OpenERP 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 OpenERP server, install tinyerp-client package for + the client. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000000..4bdf8e97d66 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,312 @@ +Author: Tiny.be +Download: http://www.openerp.com/ + +Files: * +Copyright: (C) 2004-2008 Tiny.be +License: GPL-3+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-3 file. + +Files: + bin/addons/gen_graph.sh + doc/migrate/* +Copyright: (C) 2004-2008 Tiny.be +License: GPL-2+ + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + . + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-2 file. + +Files: + bin/addons/account/report/general_ledger.py + bin/addons/account/report/general_ledger_landscape.py + bin/addons/account/wizard/wizard_statement_from_invoice.py +Copyright: (C) 2005-2008 CamptoCamp +License: GPL-2+ + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + . + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-2 file. + +Files: bin/addons/auction/barcode/* +Copyright: (C) 2000 Tyler C. Sarna +License: BSD + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + . + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by Tyler C. Sarna. + 4. Neither the name of the author nor the names of contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS + BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +Files: bin/addons/base/ir/workflow/pydot/* +Copyright: (C) 2004 Ero Carrera +License: other + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +Files: + bin/addons/base_report_designer/wizard/tiny_sxw2rml/normalized_oo2rml.xsl + bin/addons/base_report_designer/wizard/tiny_sxw2rml/tiny_sxw2rml.py +Copyright: (C) 2005 Martin Simon +License: LGPL-2.1 + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + . + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + . + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the Free + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + . + On Debian systems, the complete text of the GNU Library General Public License + can be found in /usr/share/common-licenses/LGPL-2.1 file. + +Files: bin/addons/document/ftpserver/* +Copyright: + (C) 2007 Giampaolo Rodola + (C) 2008 Fabien Pinckaers +License: MIT + Permission to use, copy, modify, and distribute this software and + its documentation for any purpose and without fee is hereby + granted, provided that the above copyright notice appear in all + copies and that both that copyright notice and this permission + notice appear in supporting documentation, and that the name of + Giampaolo Rodola' not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior + permission. + . + Giampaolo Rodola' DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN + NO EVENT Giampaolo Rodola' BE LIABLE FOR ANY SPECIAL, INDIRECT OR + CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Files: bin/addons/hr_holidays/* +Copyright: + (C) 2004-2008 Tiny.be + (C) 2005-2006 Axelor SARL. +License: GPL-2+ + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + . + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-2 file. + +Files: bin/addons/l10n_chart_uk_minimal/* +Copyright: + (C) 2004-2008 Tiny.be + (C) 2004-2008 Seath Solutions Ltd. +License: GPL-2+ + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + . + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-2 file. + +Files: bin/pychart/* +Copyright: (C) 2000-2005 Yasushi Saito +License: GPL-2+ + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + . + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-2 file. + +Files: bin/reportlab/* +Copyright: (C) 2000-2004 ReportLab Inc. +License: BSD + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + . + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of the company nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE OFFICERS OR CONTRIBUTORS BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Files: bin/tools/threadinglocal.py +Copyright: (C) 2004-2005 CherryPy Team +License: BSD + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + . + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of the CherryPy Team nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Files: bin/tools/decimal.py +Copyright: (C) 2004 Python Software Foundation. +License: other + This file is distributed under the Python Software License + (http://www.python.org/2.3/license.html). + . + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of Stichting Mathematisch + Centrum or CWI not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior + permission. + +Files: debian/* +Copyright: (C) 2005-2008 Daniel Baumann +License: GPL-3+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-3 file. diff --git a/debian/docs b/debian/docs new file mode 100644 index 00000000000..d5ad552bfce --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +doc/migrate +doc/tests diff --git a/debian/install b/debian/install new file mode 100644 index 00000000000..28c56bcbac8 --- /dev/null +++ b/debian/install @@ -0,0 +1 @@ +debian/config/* /etc/ diff --git a/debian/links b/debian/links new file mode 100644 index 00000000000..609d00a2036 --- /dev/null +++ b/debian/links @@ -0,0 +1 @@ +/usr/share/man/man5/openerp_serverrc.5.gz /usr/share/man/man5/openerp-server.conf.5.gz diff --git a/debian/lintian-overrides b/debian/lintian-overrides new file mode 100644 index 00000000000..0586695f2e9 --- /dev/null +++ b/debian/lintian-overrides @@ -0,0 +1,3 @@ +# Add-on directories needs data directories, and sometimes they are +# (intentionally) empty, hence overriting the lintian warning. +tinyerp-server: package-contains-empty-directory diff --git a/debian/openerp-server.init b/debian/openerp-server.init new file mode 100644 index 00000000000..5a0946e002d --- /dev/null +++ b/debian/openerp-server.init @@ -0,0 +1,66 @@ +#!/bin/sh + +### BEGIN INIT INFO +# Provides: openerp-server +# Required-Start: $syslog +# Required-Stop: $syslog +# Should-Start: $network +# Should-Stop: $network +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Enterprise Resource Management software +# Description: OpenERP is a complete ERP and CRM software. +### END INIT INFO + +PATH=/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/usr/bin/openerp-server +NAME=openerp-server +DESC=openerp-server + +test -x ${DAEMON} || exit 0 + +set -e + +case "${1}" in + start) + echo -n "Starting ${DESC}: " + + start-stop-daemon --start --quiet --pidfile /var/run/${NAME}.pid \ + --chuid ${USER} --background --make-pidfile \ + --exec ${DAEMON} -- --config=/etc/openerp-server.conf + + echo "${NAME}." + ;; + + stop) + echo -n "Stopping ${DESC}: " + + start-stop-daemon --stop --quiet --pidfile /var/run/${NAME}.pid \ + --oknodo + + echo "${NAME}." + ;; + + restart|force-reload) + echo -n "Restarting ${DESC}: " + + start-stop-daemon --stop --quiet --pidfile /var/run/${NAME}.pid \ + --oknodo + + sleep 1 + + start-stop-daemon --start --quiet --pidfile /var/run/${NAME}.pid \ + --chuid ${USER} --background --make-pidfile \ + --exec ${DAEMON} -- --config=/etc/openerp-server.conf + + echo "${NAME}." + ;; + + *) + N=/etc/init.d/${NAME} + echo "Usage: ${NAME} {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/debian/patches/00list b/debian/patches/00list new file mode 100644 index 00000000000..536a3dfe7a3 --- /dev/null +++ b/debian/patches/00list @@ -0,0 +1,4 @@ +01-autobuild.dpatch +02-openerp.dpatch +03-migrate.dpatch +04-shebang.dpatch diff --git a/debian/patches/01-autobuild.dpatch b/debian/patches/01-autobuild.dpatch new file mode 100644 index 00000000000..25b00dd8c63 --- /dev/null +++ b/debian/patches/01-autobuild.dpatch @@ -0,0 +1,19 @@ +#!/bin/sh /usr/share/dpatch/dpatch-run +## 01-autobuild.dpatch by Daniel Baumann +## +## DP: Disable modules check to make it buildable without X11. + +@DPATCH@ + +diff -Naurp openerp-server.orig/setup.py openerp-server/setup.py +--- openerp-server.orig/setup.py 2008-11-03 21:33:56.000000000 +0000 ++++ openerp-server/setup.py 2008-11-09 09:00:02.000000000 +0000 +@@ -133,7 +133,7 @@ def data_files(): + files.append(('.', [('bin/import_xml.rng')])) + return files + +-check_modules() ++#check_modules() + + # create startup script + start_script = \ diff --git a/debian/patches/02-openerp.dpatch b/debian/patches/02-openerp.dpatch new file mode 100644 index 00000000000..8ea3504b815 --- /dev/null +++ b/debian/patches/02-openerp.dpatch @@ -0,0 +1,815 @@ +#!/bin/sh /usr/share/dpatch/dpatch-run +## 02-openerp.dpatch by Daniel Baumann +## +## DP: Update homepage location. + +@DPATCH@ + +diff -Naurp openerp-server.orig/bin/addons/account/__terp__.py openerp-server/bin/addons/account/__terp__.py +--- openerp-server.orig/bin/addons/account/__terp__.py 2008-11-03 21:34:08.000000000 +0000 ++++ openerp-server/bin/addons/account/__terp__.py 2008-11-09 09:04:09.000000000 +0000 +@@ -31,7 +31,7 @@ + Taxes management + Budgets + """, +- "website" : "http://tinyerp.com/module_account.html", ++ "website" : "http://openerp.com/module_account.html", + "category" : "Generic Modules/Accounting", + "init_xml" : [ + ], +diff -Naurp openerp-server.orig/bin/addons/account_analytic_default/__terp__.py openerp-server/bin/addons/account_analytic_default/__terp__.py +--- openerp-server.orig/bin/addons/account_analytic_default/__terp__.py 2008-11-03 21:34:12.000000000 +0000 ++++ openerp-server/bin/addons/account_analytic_default/__terp__.py 2008-11-09 09:03:55.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Account Analytic Default", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "category" : "Generic Modules/product_analytic_default", + "description": """ + Allows to automatically select analytic accounts based on criterions: +diff -Naurp openerp-server.orig/bin/addons/account_analytic_plans/__terp__.py openerp-server/bin/addons/account_analytic_plans/__terp__.py +--- openerp-server.orig/bin/addons/account_analytic_plans/__terp__.py 2008-11-03 21:34:12.000000000 +0000 ++++ openerp-server/bin/addons/account_analytic_plans/__terp__.py 2008-11-09 09:05:13.000000000 +0000 +@@ -52,7 +52,7 @@ Plan2: + So when this line of invoice will be confirmed, it will generate 3 analytic lines, + for one account entry. + """, +- "website" : "http://tinyerp.com/module_account.html", ++ "website" : "http://openerp.com/module_account.html", + "category" : "Generic Modules/Accounting", + "init_xml" : [ + ], +diff -Naurp openerp-server.orig/bin/addons/account_balance/__terp__.py openerp-server/bin/addons/account_balance/__terp__.py +--- openerp-server.orig/bin/addons/account_balance/__terp__.py 2008-11-03 21:34:12.000000000 +0000 ++++ openerp-server/bin/addons/account_balance/__terp__.py 2008-11-09 09:03:39.000000000 +0000 +@@ -38,7 +38,7 @@ + + 5. You have an option to print the desired report in Landscape format. + """, +- "website" : "http://tinyerp.com/account_balance.html", ++ "website" : "http://openerp.com/account_balance.html", + "category" : "Generic Modules/Accounting", + "init_xml" : [ + ], +diff -Naurp openerp-server.orig/bin/addons/account_budget/__terp__.py openerp-server/bin/addons/account_budget/__terp__.py +--- openerp-server.orig/bin/addons/account_budget/__terp__.py 2008-11-03 21:34:12.000000000 +0000 ++++ openerp-server/bin/addons/account_budget/__terp__.py 2008-11-09 09:05:05.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Budget Management", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_crossovered_budget.html", ++ "website" : "http://openerp.com/module_crossovered_budget.html", + "category" : "Generic Modules/Accounting", + "description": """This module allow accountants to manage analytic and crossovered budgets. + +diff -Naurp openerp-server.orig/bin/addons/account_chart/__terp__.py openerp-server/bin/addons/account_chart/__terp__.py +--- openerp-server.orig/bin/addons/account_chart/__terp__.py 2008-11-03 21:34:12.000000000 +0000 ++++ openerp-server/bin/addons/account_chart/__terp__.py 2008-11-09 09:03:15.000000000 +0000 +@@ -25,7 +25,7 @@ + "depends" : ["account"], + "author" : "Tiny", + "description": """Remove minimal account chart""", +- "website" : "http://tinyerp.com/module_account.html", ++ "website" : "http://openerp.com/module_account.html", + "category" : "Generic Modules/Accounting", + "init_xml" : [ + ], +diff -Naurp openerp-server.orig/bin/addons/account_date_check/__terp__.py openerp-server/bin/addons/account_date_check/__terp__.py +--- openerp-server.orig/bin/addons/account_date_check/__terp__.py 2008-11-03 21:34:12.000000000 +0000 ++++ openerp-server/bin/addons/account_date_check/__terp__.py 2008-11-09 09:05:01.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Account Date check", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_sale.html", ++ "website" : "http://openerp.com/module_sale.html", + "depends" : ["account"], + "category" : "Generic Modules/Accounting", + "init_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/account_followup/__terp__.py openerp-server/bin/addons/account_followup/__terp__.py +--- openerp-server.orig/bin/addons/account_followup/__terp__.py 2008-11-03 21:34:12.000000000 +0000 ++++ openerp-server/bin/addons/account_followup/__terp__.py 2008-11-09 09:03:29.000000000 +0000 +@@ -37,7 +37,7 @@ + It will generate a PDF with all the letters according the the + different levels of recall defined. You can define different policies + for different companies.""", +- "website" : "http://tinyerp.com/module_account.html", ++ "website" : "http://openerp.com/module_account.html", + "category" : "Generic Modules/Accounting", + "init_xml" : [], + "demo_xml" : ["followup_demo.xml"], +diff -Naurp openerp-server.orig/bin/addons/account_invoice_layout/__terp__.py openerp-server/bin/addons/account_invoice_layout/__terp__.py +--- openerp-server.orig/bin/addons/account_invoice_layout/__terp__.py 2008-11-03 21:34:12.000000000 +0000 ++++ openerp-server/bin/addons/account_invoice_layout/__terp__.py 2008-11-09 09:03:05.000000000 +0000 +@@ -35,7 +35,7 @@ + Moreover, there is one option which allow you to print all the selected invoices with a given special message at the bottom of it. This feature can be very useful for printing your invoices with end-of-year wishes, special punctual conditions... + + """, +- "website" : "http://tinyerp.com/", ++ "website" : "http://openerp.com/", + "category" : "Generic Modules/Project & Services", + "init_xml" : [], + "demo_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/account_report/__terp__.py openerp-server/bin/addons/account_report/__terp__.py +--- openerp-server.orig/bin/addons/account_report/__terp__.py 2008-11-03 21:34:12.000000000 +0000 ++++ openerp-server/bin/addons/account_report/__terp__.py 2008-11-09 09:04:21.000000000 +0000 +@@ -25,7 +25,7 @@ + "depends" : ["account"], + "author" : "Tiny", + "description": """Financial and accounting reporting""", +- "website" : "http://tinyerp.com/module_account.html", ++ "website" : "http://openerp.com/module_account.html", + "category" : "Generic Modules/Accounting", + "init_xml" : [ ], + "demo_xml" : [ ], +diff -Naurp openerp-server.orig/bin/addons/account_tax_include/__terp__.py openerp-server/bin/addons/account_tax_include/__terp__.py +--- openerp-server.orig/bin/addons/account_tax_include/__terp__.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/account_tax_include/__terp__.py 2008-11-09 09:05:16.000000000 +0000 +@@ -29,7 +29,7 @@ Especially useful for b2c businesses. + + This module implement the modification on the invoice form. + """, +- "website" : "http://tinyerp.com/module_account.html", ++ "website" : "http://openerp.com/module_account.html", + "category" : "Generic Modules/Accounting", + "init_xml" : [ ], + "demo_xml" : [ ], +diff -Naurp openerp-server.orig/bin/addons/account_voucher/__terp__.py openerp-server/bin/addons/account_voucher/__terp__.py +--- openerp-server.orig/bin/addons/account_voucher/__terp__.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/account_voucher/__terp__.py 2008-11-09 09:04:17.000000000 +0000 +@@ -35,7 +35,7 @@ + * Accounting Periods + """, + "category" : "Generic Modules/Accounting", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "depends" : ["base", "account"], + "init_xml" : [ + ], +@@ -51,4 +51,4 @@ + ], + "active": False, + "installable": True +-} +\ No newline at end of file ++} +diff -Naurp openerp-server.orig/bin/addons/analytic_journal_billing_rate/__terp__.py openerp-server/bin/addons/analytic_journal_billing_rate/__terp__.py +--- openerp-server.orig/bin/addons/analytic_journal_billing_rate/__terp__.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/analytic_journal_billing_rate/__terp__.py 2008-11-09 09:04:33.000000000 +0000 +@@ -31,7 +31,7 @@ + Obviously if no data has been recorded for the current account, the default value is given as usual by the account data so that this module is perfectly compatible with older configurations. + + """, +- "website" : "http://tinyerp.com/", ++ "website" : "http://openerp.com/", + "category" : "Generic Modules/Others", + "init_xml" : [], + "demo_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/analytic_user_function/__terp__.py openerp-server/bin/addons/analytic_user_function/__terp__.py +--- openerp-server.orig/bin/addons/analytic_user_function/__terp__.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/analytic_user_function/__terp__.py 2008-11-09 09:05:11.000000000 +0000 +@@ -31,7 +31,7 @@ + Obviously if no data has been recorded for the current account, the default value is given as usual by the employee data so that this module is perfectly compatible with older configurations. + + """, +- "website" : "http://tinyerp.com/", ++ "website" : "http://openerp.com/", + "category" : "Generic Modules/Others", + "init_xml" : [], + "demo_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/auction/fr_FR.csv openerp-server/bin/addons/auction/fr_FR.csv +--- openerp-server.orig/bin/addons/auction/fr_FR.csv 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/auction/fr_FR.csv 2008-11-09 09:03:50.000000000 +0000 +@@ -4281,7 +4281,7 @@ wizard_field,"base_module_publish.module + wizard_view,"base_module_publish.module_publish,step2",0,Module publication,Publication du module + wizard_view,"base_module_publish.module_publish,step2",0,User information,Information utilisateur + wizard_view,"base_module_publish.module_publish,step2",0,Please provide here your login on the Tiny ERP website.,Tapez votre login du site Tinyerp SVP +-wizard_view,"base_module_publish.module_publish,step2",0,"If you don't have an access, you can create one http://www.tinyerp.com/","Si vous n'avez pas d'accès, vous pouvez en créer un sur http;//tinyerp.com" ++wizard_view,"base_module_publish.module_publish,step2",0,"If you don't have an access, you can create one http://www.openerp.com/","Si vous n'avez pas d'accès, vous pouvez en créer un sur http;//openerp.com" + wizard_button,"base_module_publish.module_publish,step2,end",0,Cancel,Annuler + wizard_button,"base_module_publish.module_publish,step2,step1",0,Previous,Précédent + wizard_button,"base_module_publish.module_publish,step2,publish",0,Publish,publier +@@ -5119,7 +5119,7 @@ wizard_field,"base_module_publish.module + wizard_view,"base_module_publish.module_publish_all,login",0,Module publication,Publication du module + wizard_view,"base_module_publish.module_publish_all,login",0,User information,Information utilisateur + wizard_view,"base_module_publish.module_publish_all,login",0,Please provide here your login on the Tiny ERP website., +-wizard_view,"base_module_publish.module_publish_all,login",0,"If you don't have an access, you can create one http://www.tinyerp.com/", ++wizard_view,"base_module_publish.module_publish_all,login",0,"If you don't have an access, you can create one http://www.openerp.com/", + wizard_button,"base_module_publish.module_publish_all,login,end",0,Cancel, + wizard_button,"base_module_publish.module_publish_all,login,publish",0,Publish, + wizard_field,"base_module_publish.module_publish_all,publish,already",0,Modules already updated, +diff -Naurp openerp-server.orig/bin/addons/audittrail/__terp__.py openerp-server/bin/addons/audittrail/__terp__.py +--- openerp-server.orig/bin/addons/audittrail/__terp__.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/audittrail/__terp__.py 2008-11-09 09:02:57.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Audit Trail", + "version" : "1.0", + "depends" : ["base","account","purchase","mrp"], +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "author" : "Tiny", + "init_xml" : [], + "description": "Allows the administrator to track every user operations on all objects of the system.", +diff -Naurp openerp-server.orig/bin/addons/base_contact/__terp__.py openerp-server/bin/addons/base_contact/__terp__.py +--- openerp-server.orig/bin/addons/base_contact/__terp__.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/base_contact/__terp__.py 2008-11-09 09:03:45.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Base Contact", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "category" : "Generic Modules/Base Contact", + "description": """ + This module allows you to manage entirely your contacts. +diff -Naurp openerp-server.orig/bin/addons/base_module_publish/__terp__.py openerp-server/bin/addons/base_module_publish/__terp__.py +--- openerp-server.orig/bin/addons/base_module_publish/__terp__.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/base_module_publish/__terp__.py 2008-11-09 09:03:13.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Module publisher", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "category" : "Generic Modules/Base", + "description": """ + This module can be used by developpers to automatically publish their modules +diff -Naurp openerp-server.orig/bin/addons/base_module_record/__terp__.py openerp-server/bin/addons/base_module_record/__terp__.py +--- openerp-server.orig/bin/addons/base_module_record/__terp__.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/base_module_record/__terp__.py 2008-11-09 09:04:02.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Module Recorder", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "category" : "Generic Modules/Base", + "description": """ + This module allows you to create a new module without any development. +diff -Naurp openerp-server.orig/bin/addons/base_module_record/wizard/base_module_save.py openerp-server/bin/addons/base_module_record/wizard/base_module_save.py +--- openerp-server.orig/bin/addons/base_module_record/wizard/base_module_save.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/base_module_record/wizard/base_module_save.py 2008-11-09 09:04:00.000000000 +0000 +@@ -58,7 +58,7 @@ intro_start_fields = { + 'version': {'string':'Version', 'type':'char', 'size':16, 'required':True}, + 'author': {'string':'Author', 'type':'char', 'size':64, 'default': lambda *args: 'Tiny', 'required':True}, + 'category': {'string':'Category', 'type':'char', 'size':64, 'default': lambda *args: 'Vertical Modules/Parametrization', 'required':True}, +- 'website': {'string':'Documentation URL', 'type':'char', 'size':64, 'default': lambda *args: 'http://tinyerp.com', 'required':True}, ++ 'website': {'string':'Documentation URL', 'type':'char', 'size':64, 'default': lambda *args: 'http://openerp.com', 'required':True}, + 'description': {'string':'Full Description', 'type':'text', 'required':True}, + 'data_kind': {'string':'Type of Data', 'type':'selection', 'selection':[('demo','Demo Data'),('update','Normal Data')], 'required':True, 'default': lambda *args:'update'}, + } +diff -Naurp openerp-server.orig/bin/addons/base_report_designer/__terp__.py openerp-server/bin/addons/base_report_designer/__terp__.py +--- openerp-server.orig/bin/addons/base_report_designer/__terp__.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/base_report_designer/__terp__.py 2008-11-09 09:04:42.000000000 +0000 +@@ -28,7 +28,7 @@ OpenOffice. + "version" : "0.1", + "depends" : ["base"], + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "category" : "Generic Modules/Base", + "init_xml" : [ ], + "demo_xml" : [ ], +diff -Naurp openerp-server.orig/bin/addons/base_report_designer/wizard/base_report_designer_modify.py openerp-server/bin/addons/base_report_designer/wizard/base_report_designer_modify.py +--- openerp-server.orig/bin/addons/base_report_designer/wizard/base_report_designer_modify.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/base_report_designer/wizard/base_report_designer_modify.py 2008-11-09 09:04:39.000000000 +0000 +@@ -41,7 +41,7 @@ intro_fields = { + 'readonly': True, + 'default': lambda *args: """This system must be used with the Tiny OpenOffice plugin. If you + did not installed yet, you can find this package on: +- http://tinyerp.com ++ http://openerp.com + + This wizard will provide you the .SXW report that you can modify + in OpenOffice. After having modified it, you will be able to reupload +diff -Naurp openerp-server.orig/bin/addons/base_setup/__terp__.py openerp-server/bin/addons/base_setup/__terp__.py +--- openerp-server.orig/bin/addons/base_setup/__terp__.py 2008-11-03 21:34:13.000000000 +0000 ++++ openerp-server/bin/addons/base_setup/__terp__.py 2008-11-09 09:04:37.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Base Setup", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "category" : "Generic Modules/Base", + "description": """ + This module implements a configuration system that helps user +diff -Naurp openerp-server.orig/bin/addons/crm/__terp__.py openerp-server/bin/addons/crm/__terp__.py +--- openerp-server.orig/bin/addons/crm/__terp__.py 2008-11-03 21:34:14.000000000 +0000 ++++ openerp-server/bin/addons/crm/__terp__.py 2008-11-09 09:03:02.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Customer & Supplier Relationship Management", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_crm.html", ++ "website" : "http://openerp.com/module_crm.html", + "category" : "Generic Modules/CRM & SRM", + "description": """The Tiny ERP case and request tracker enables a group of + people to intelligently and efficiently manage tasks, issues, and requests. +diff -Naurp openerp-server.orig/bin/addons/crm_configuration/__terp__.py openerp-server/bin/addons/crm_configuration/__terp__.py +--- openerp-server.orig/bin/addons/crm_configuration/__terp__.py 2008-11-03 21:34:14.000000000 +0000 ++++ openerp-server/bin/addons/crm_configuration/__terp__.py 2008-11-09 09:04:04.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Customer Relationship Management", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_crm.html", ++ "website" : "http://openerp.com/module_crm.html", + "category" : "Generic Modules/CRM & SRM", + "description": """ + The Tiny ERP case and request tracker enables a group of +diff -Naurp openerp-server.orig/bin/addons/crm_profiling/__terp__.py openerp-server/bin/addons/crm_profiling/__terp__.py +--- openerp-server.orig/bin/addons/crm_profiling/__terp__.py 2008-11-03 21:34:15.000000000 +0000 ++++ openerp-server/bin/addons/crm_profiling/__terp__.py 2008-11-09 09:04:07.000000000 +0000 +@@ -36,7 +36,7 @@ + + * Note: this module is not compatible with the module segmentation, since it's the same which has been renamed. + """, +- "website" : "http://tinyerp.com/", ++ "website" : "http://openerp.com/", + "category" : "Generic Modules/Project & Services", + "init_xml" : [], + "demo_xml" : ["crm_profiling_demo.xml"], +diff -Naurp openerp-server.orig/bin/addons/crm_vertical/__terp__.py openerp-server/bin/addons/crm_vertical/__terp__.py +--- openerp-server.orig/bin/addons/crm_vertical/__terp__.py 2008-11-03 21:34:15.000000000 +0000 ++++ openerp-server/bin/addons/crm_vertical/__terp__.py 2008-11-09 09:03:53.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "CRM Verticalisation", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "category" : "Vertical Modules/Parametrization", + "description": """Simplification of the interface for CRM.""", + "depends" : ["crm_configuration"], +diff -Naurp openerp-server.orig/bin/addons/custom/__terp__.py openerp-server/bin/addons/custom/__terp__.py +--- openerp-server.orig/bin/addons/custom/__terp__.py 2008-11-03 21:34:15.000000000 +0000 ++++ openerp-server/bin/addons/custom/__terp__.py 2008-11-09 09:06:23.000000000 +0000 +@@ -24,7 +24,7 @@ + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Others", +- "website": "http://www.tinyerp.com", ++ "website": "http://www.openerp.com", + "description": "Sample custom module where you can put your customer specific developments.", + "depends" : ["base"], + "init_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/delivery/delivery_demo.xml openerp-server/bin/addons/delivery/delivery_demo.xml +--- openerp-server.orig/bin/addons/delivery/delivery_demo.xml 2008-11-03 21:34:15.000000000 +0000 ++++ openerp-server/bin/addons/delivery/delivery_demo.xml 2008-11-09 09:03:34.000000000 +0000 +@@ -5,7 +5,7 @@ + + + The Poste +- http://tinyerp.com ++ http://openerp.com + + + Fabien Pinckaers +diff -Naurp openerp-server.orig/bin/addons/document/__terp__.py openerp-server/bin/addons/document/__terp__.py +--- openerp-server.orig/bin/addons/document/__terp__.py 2008-11-03 21:34:15.000000000 +0000 ++++ openerp-server/bin/addons/document/__terp__.py 2008-11-09 09:05:41.000000000 +0000 +@@ -24,7 +24,7 @@ + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Others", +- "website": "http://www.tinyerp.com", ++ "website": "http://www.openerp.com", + "description": """This is a complete document management system: + * FTP Interface + * User Authentification +diff -Naurp openerp-server.orig/bin/addons/document_ics/__terp__.py openerp-server/bin/addons/document_ics/__terp__.py +--- openerp-server.orig/bin/addons/document_ics/__terp__.py 2008-11-03 21:34:15.000000000 +0000 ++++ openerp-server/bin/addons/document_ics/__terp__.py 2008-11-09 09:06:18.000000000 +0000 +@@ -24,7 +24,7 @@ + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Others", +- "website": "http://www.tinyerp.com", ++ "website": "http://www.openerp.com", + "description": """Allows to synchronize calendars with others applications.""", + "depends" : ["document","crm_configuration"], + "init_xml" : ["document_data.xml"], +diff -Naurp openerp-server.orig/bin/addons/google_map/__terp__.py openerp-server/bin/addons/google_map/__terp__.py +--- openerp-server.orig/bin/addons/google_map/__terp__.py 2008-11-03 21:34:15.000000000 +0000 ++++ openerp-server/bin/addons/google_map/__terp__.py 2008-11-09 09:04:31.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Google Map", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "category" : "Generic Modules", + "description": """The module adds google map field in partner address + so that we can directly open google map from the +diff -Naurp openerp-server.orig/bin/addons/hr/__terp__.py openerp-server/bin/addons/hr/__terp__.py +--- openerp-server.orig/bin/addons/hr/__terp__.py 2008-11-03 21:34:15.000000000 +0000 ++++ openerp-server/bin/addons/hr/__terp__.py 2008-11-09 09:04:28.000000000 +0000 +@@ -24,7 +24,7 @@ + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Human Resources", +- "website" : "http://tinyerp.com/module_hr.html", ++ "website" : "http://openerp.com/module_hr.html", + "description": """ + Module for human resource management. You can manage: + * Employees and hierarchies +diff -Naurp openerp-server.orig/bin/addons/hr_contract/__terp__.py openerp-server/bin/addons/hr_contract/__terp__.py +--- openerp-server.orig/bin/addons/hr_contract/__terp__.py 2008-11-03 21:34:15.000000000 +0000 ++++ openerp-server/bin/addons/hr_contract/__terp__.py 2008-11-09 09:03:00.000000000 +0000 +@@ -24,7 +24,7 @@ + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Human Resources", +- "website" : "http://tinyerp.com/module_hr.html", ++ "website" : "http://openerp.com/module_hr.html", + "depends" : ["hr"], + "module": "", + "description": """ +diff -Naurp openerp-server.orig/bin/addons/hr_expense/__terp__.py openerp-server/bin/addons/hr_expense/__terp__.py +--- openerp-server.orig/bin/addons/hr_expense/__terp__.py 2008-11-03 21:34:15.000000000 +0000 ++++ openerp-server/bin/addons/hr_expense/__terp__.py 2008-11-09 09:04:49.000000000 +0000 +@@ -24,7 +24,7 @@ + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Human Resources", +- "website" : "http://tinyerp.com/module_hr.html", ++ "website" : "http://openerp.com/module_hr.html", + "depends" : ["hr","account", "account_tax_include",], + "description": """ + This module aims to manage employee's expenses. +diff -Naurp openerp-server.orig/bin/addons/hr_holidays/__terp__.py openerp-server/bin/addons/hr_holidays/__terp__.py +--- openerp-server.orig/bin/addons/hr_holidays/__terp__.py 2008-11-03 21:34:16.000000000 +0000 ++++ openerp-server/bin/addons/hr_holidays/__terp__.py 2008-11-09 09:03:21.000000000 +0000 +@@ -4,7 +4,7 @@ + "version" : "0.1", + "author" : "Tiny & Axelor", + "category" : "Generic Modules/Human Resources", +- "website" : "http://tinyerp.com/", ++ "website" : "http://openerp.com/", + "description": """Human Ressources: Holidays tracking and workflow + + This module allows you to manage holidays and holidays requests. For each employee, you can also define a number of available holidays per holiday status. +diff -Naurp openerp-server.orig/bin/addons/hr_timesheet/__terp__.py openerp-server/bin/addons/hr_timesheet/__terp__.py +--- openerp-server.orig/bin/addons/hr_timesheet/__terp__.py 2008-11-03 21:34:16.000000000 +0000 ++++ openerp-server/bin/addons/hr_timesheet/__terp__.py 2008-11-09 09:04:11.000000000 +0000 +@@ -24,7 +24,7 @@ + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Human Resources", +- "website" : "http://tinyerp.com/module_hr.html", ++ "website" : "http://openerp.com/module_hr.html", + "description": """ + This module implement a timesheet system. Each employee can encode and + track their time spent on the different projects. A project is an +diff -Naurp openerp-server.orig/bin/addons/hr_timesheet_invoice/__terp__.py openerp-server/bin/addons/hr_timesheet_invoice/__terp__.py +--- openerp-server.orig/bin/addons/hr_timesheet_invoice/__terp__.py 2008-11-03 21:34:16.000000000 +0000 ++++ openerp-server/bin/addons/hr_timesheet_invoice/__terp__.py 2008-11-09 09:05:06.000000000 +0000 +@@ -24,7 +24,7 @@ + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Accounting", +- "website" : "http://tinyerp.com/", ++ "website" : "http://openerp.com/", + "depends" : ["account",'hr_timesheet'], + "description": """ + Module to generate invoices based on costs (human ressources, expenses, ...). +diff -Naurp openerp-server.orig/bin/addons/hr_timesheet_project/__terp__.py openerp-server/bin/addons/hr_timesheet_project/__terp__.py +--- openerp-server.orig/bin/addons/hr_timesheet_project/__terp__.py 2008-11-03 21:34:16.000000000 +0000 ++++ openerp-server/bin/addons/hr_timesheet_project/__terp__.py 2008-11-09 09:02:58.000000000 +0000 +@@ -25,7 +25,7 @@ + "author" : "Tiny", + "category" : "Generic Modules/Human Resources", + "description": """Auto-complete timesheet based on tasks made on the project management module.""", +- "website" : "http://tinyerp.com/module_hr.html", ++ "website" : "http://openerp.com/module_hr.html", + "depends" : ["project", "hr_timesheet_sheet"], + "update_xml" : ["hr_timesheet_project_view.xml", + "process/hr_timesheet_project_process.xml", +diff -Naurp openerp-server.orig/bin/addons/hr_timesheet_sheet/__terp__.py openerp-server/bin/addons/hr_timesheet_sheet/__terp__.py +--- openerp-server.orig/bin/addons/hr_timesheet_sheet/__terp__.py 2008-11-03 21:34:16.000000000 +0000 ++++ openerp-server/bin/addons/hr_timesheet_sheet/__terp__.py 2008-11-09 09:03:11.000000000 +0000 +@@ -24,7 +24,7 @@ + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Human Resources", +- "website" : "http://tinyerp.com/module_hr.html", ++ "website" : "http://openerp.com/module_hr.html", + "description": """ + This module help you easily encode and validate timesheet and attendances + within the same view. The upper part of the view is for attendances and +diff -Naurp openerp-server.orig/bin/addons/mrp/__terp__.py openerp-server/bin/addons/mrp/__terp__.py +--- openerp-server.orig/bin/addons/mrp/__terp__.py 2008-11-03 21:34:17.000000000 +0000 ++++ openerp-server/bin/addons/mrp/__terp__.py 2008-11-09 09:05:08.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Manufacturing Resource Planning", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_mrp.html", ++ "website" : "http://openerp.com/module_mrp.html", + "category" : "Generic Modules/Production", + "depends" : ["stock", "hr", "purchase", "product", "process"], + "description": """ +diff -Naurp openerp-server.orig/bin/addons/mrp_operations/__terp__.py openerp-server/bin/addons/mrp_operations/__terp__.py +--- openerp-server.orig/bin/addons/mrp_operations/__terp__.py 2008-11-03 21:34:17.000000000 +0000 ++++ openerp-server/bin/addons/mrp_operations/__terp__.py 2008-11-09 09:03:14.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Workcenter Production start end workflow", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_mrp.html", ++ "website" : "http://openerp.com/module_mrp.html", + "category" : "Generic Modules/Production", + "depends" : ["stock", "hr", "purchase", "product", "mrp"], + "description": """ +diff -Naurp openerp-server.orig/bin/addons/mrp_subproduct/__terp__.py openerp-server/bin/addons/mrp_subproduct/__terp__.py +--- openerp-server.orig/bin/addons/mrp_subproduct/__terp__.py 2008-11-03 21:34:17.000000000 +0000 ++++ openerp-server/bin/addons/mrp_subproduct/__terp__.py 2008-11-09 09:03:57.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "MRP Sub Product", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_stock.html", ++ "website" : "http://openerp.com/module_stock.html", + "depends" : ["base","mrp"], + "category" : "Generic Modules/Production", + "init_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/process/__terp__.py openerp-server/bin/addons/process/__terp__.py +--- openerp-server.orig/bin/addons/process/__terp__.py 2008-11-03 21:34:17.000000000 +0000 ++++ openerp-server/bin/addons/process/__terp__.py 2008-11-09 09:04:25.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Enterprise Process", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "category" : "Generic Modules/Base", + "description": """ + This module allows you to manage your process for the end-users. +diff -Naurp openerp-server.orig/bin/addons/project/__terp__.py openerp-server/bin/addons/project/__terp__.py +--- openerp-server.orig/bin/addons/project/__terp__.py 2008-11-03 21:34:18.000000000 +0000 ++++ openerp-server/bin/addons/project/__terp__.py 2008-11-09 09:03:43.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Project Management", + "version": "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_project.html", ++ "website" : "http://openerp.com/module_project.html", + "category" : "Generic Modules/Projects & Services", + "depends" : ["product", "account", "hr", "process"], + "description": "Project management module that track multi-level projects, tasks, works done on tasks, eso. It is able to render planning, order tasks, eso.", +diff -Naurp openerp-server.orig/bin/addons/project_mrp/__terp__.py openerp-server/bin/addons/project_mrp/__terp__.py +--- openerp-server.orig/bin/addons/project_mrp/__terp__.py 2008-11-03 21:34:18.000000000 +0000 ++++ openerp-server/bin/addons/project_mrp/__terp__.py 2008-11-09 09:02:54.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Project Management - MRP Link", + "version": "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_project.html", ++ "website" : "http://openerp.com/module_project.html", + "category" : "Generic Modules/Projects & Services", + "depends" : ["project", 'mrp', "sale"], + "description": """ +diff -Naurp openerp-server.orig/bin/addons/project_timesheet/__terp__.py openerp-server/bin/addons/project_timesheet/__terp__.py +--- openerp-server.orig/bin/addons/project_timesheet/__terp__.py 2008-11-03 21:34:18.000000000 +0000 ++++ openerp-server/bin/addons/project_timesheet/__terp__.py 2008-11-09 09:04:13.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Project Timesheet", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "category" : "Generic Modules/HR", + "description": """ + This module lets you transfer the entries under tasks defined for Project Management to +diff -Naurp openerp-server.orig/bin/addons/purchase/__terp__.py openerp-server/bin/addons/purchase/__terp__.py +--- openerp-server.orig/bin/addons/purchase/__terp__.py 2008-11-03 21:34:18.000000000 +0000 ++++ openerp-server/bin/addons/purchase/__terp__.py 2008-11-09 09:03:07.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Purchase Management", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_purchase.html", ++ "website" : "http://openerp.com/module_purchase.html", + "depends" : ["base", "account", "stock", "process"], + "category" : "Generic Modules/Sales & Purchases", + "init_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/purchase_analytic_plans/__terp__.py openerp-server/bin/addons/purchase_analytic_plans/__terp__.py +--- openerp-server.orig/bin/addons/purchase_analytic_plans/__terp__.py 2008-11-03 21:34:18.000000000 +0000 ++++ openerp-server/bin/addons/purchase_analytic_plans/__terp__.py 2008-11-09 09:03:17.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Purchase Analytic Distribution Management", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_sale.html", ++ "website" : "http://openerp.com/module_sale.html", + "depends" : ["purchase","account_analytic_plans"], + "category" : "Generic Modules/Sales & Purchases", + "init_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/report_account/__terp__.py openerp-server/bin/addons/report_account/__terp__.py +--- openerp-server.orig/bin/addons/report_account/__terp__.py 2008-11-03 21:34:18.000000000 +0000 ++++ openerp-server/bin/addons/report_account/__terp__.py 2008-11-09 09:04:30.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Account Reporting - Reporting", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "depends" : ["account"], + "category" : "Generic Modules/Accounting", + "description": "A module that adds new reports based on the account module.", +diff -Naurp openerp-server.orig/bin/addons/report_analytic/__terp__.py openerp-server/bin/addons/report_analytic/__terp__.py +--- openerp-server.orig/bin/addons/report_analytic/__terp__.py 2008-11-03 21:34:18.000000000 +0000 ++++ openerp-server/bin/addons/report_analytic/__terp__.py 2008-11-09 09:04:19.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Analytic Account Reporting", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "depends" : ["account","hr_timesheet_invoice"], + "category" : "Generic Modules/Accounting", + "description": "A module that adds new reports based on analytic accounts.", +diff -Naurp openerp-server.orig/bin/addons/report_analytic_line/__terp__.py openerp-server/bin/addons/report_analytic_line/__terp__.py +--- openerp-server.orig/bin/addons/report_analytic_line/__terp__.py 2008-11-03 21:34:18.000000000 +0000 ++++ openerp-server/bin/addons/report_analytic_line/__terp__.py 2008-11-09 09:04:45.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Analytic lines - Reporting", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "depends" : ["account", "hr_timesheet_invoice"], + "category" : "Generic Modules/Accounting", + "description": "A report on analytic lines, costs by products, months and accounts.", +diff -Naurp openerp-server.orig/bin/addons/report_analytic_planning/__terp__.py openerp-server/bin/addons/report_analytic_planning/__terp__.py +--- openerp-server.orig/bin/addons/report_analytic_planning/__terp__.py 2008-11-03 21:34:18.000000000 +0000 ++++ openerp-server/bin/addons/report_analytic_planning/__terp__.py 2008-11-09 09:05:03.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Analytic planning - Reporting", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "depends" : ["account", "hr_timesheet_invoice","project","report_analytic_line"], + "category" : "Generic Modules/Accounting", + "description": "Planning on analytic accounts.", +diff -Naurp openerp-server.orig/bin/addons/report_crm/__terp__.py openerp-server/bin/addons/report_crm/__terp__.py +--- openerp-server.orig/bin/addons/report_crm/__terp__.py 2008-11-03 21:34:18.000000000 +0000 ++++ openerp-server/bin/addons/report_crm/__terp__.py 2008-11-09 09:03:41.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "CRM Management - Reporting", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_crm.html", ++ "website" : "http://openerp.com/module_crm.html", + "depends" : ["crm"], + "category" : "Generic Modules/CRM & SRM", + "description": "A module that adds new reports based on CRM cases.", +diff -Naurp openerp-server.orig/bin/addons/report_intrastat/__terp__.py openerp-server/bin/addons/report_intrastat/__terp__.py +--- openerp-server.orig/bin/addons/report_intrastat/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/report_intrastat/__terp__.py 2008-11-09 09:03:10.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Intrastat Reporting - Reporting", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "depends" : ["base", "product", "stock", "sale", "purchase"], + "category" : "Generic Modules/Inventory Control", + "description": "A module that adds intrastat reports.", +diff -Naurp openerp-server.orig/bin/addons/report_mrp/__terp__.py openerp-server/bin/addons/report_mrp/__terp__.py +--- openerp-server.orig/bin/addons/report_mrp/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/report_mrp/__terp__.py 2008-11-09 09:04:23.000000000 +0000 +@@ -23,7 +23,7 @@ + "name": "MRP Management - Reporting", + "version": "1.0", + "author": "Tiny", +- "website": "http://tinyerp.com/module_mrp.html", ++ "website": "http://openerp.com/module_mrp.html", + "depends": ["mrp"], + "category": "Generic Modules/Production", + "description": "A module that adds new reports based on MRP cases.", +diff -Naurp openerp-server.orig/bin/addons/report_project/__terp__.py openerp-server/bin/addons/report_project/__terp__.py +--- openerp-server.orig/bin/addons/report_project/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/report_project/__terp__.py 2008-11-09 09:03:37.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Sales Management - Reporting", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_project.html", ++ "website" : "http://openerp.com/module_project.html", + "depends" : ["project", "report_task"], + "category" : "Generic Modules/Sales & Purchases", + "description": "A module that adds some reports on the sales", +diff -Naurp openerp-server.orig/bin/addons/report_purchase/__terp__.py openerp-server/bin/addons/report_purchase/__terp__.py +--- openerp-server.orig/bin/addons/report_purchase/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/report_purchase/__terp__.py 2008-11-09 09:03:01.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Sales Management - Reporting", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_purchase.html", ++ "website" : "http://openerp.com/module_purchase.html", + "depends" : ["purchase"], + "category" : "Generic Modules/Sales & Purchases", + "init_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/report_sale/__terp__.py openerp-server/bin/addons/report_sale/__terp__.py +--- openerp-server.orig/bin/addons/report_sale/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/report_sale/__terp__.py 2008-11-09 09:04:15.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Sales Management - Reporting", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_sale.html", ++ "website" : "http://openerp.com/module_sale.html", + "depends" : ["sale"], + "category" : "Generic Modules/Sales & Purchases", + "description": """ +diff -Naurp openerp-server.orig/bin/addons/report_timesheet/__terp__.py openerp-server/bin/addons/report_timesheet/__terp__.py +--- openerp-server.orig/bin/addons/report_timesheet/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/report_timesheet/__terp__.py 2008-11-09 09:03:31.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Timesheet - Reporting", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com", ++ "website" : "http://openerp.com", + "depends" : ["hr_timesheet",'hr_timesheet_invoice'], + "category" : "Generic Modules/Human Ressources", + "init_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/sale/__terp__.py openerp-server/bin/addons/sale/__terp__.py +--- openerp-server.orig/bin/addons/sale/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/sale/__terp__.py 2008-11-09 09:04:47.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Sales Management", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_sale.html", ++ "website" : "http://openerp.com/module_sale.html", + "depends" : ["product", "stock", "mrp", "process"], + "category" : "Generic Modules/Sales & Purchases", + "init_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/sale_analytic_plans/__terp__.py openerp-server/bin/addons/sale_analytic_plans/__terp__.py +--- openerp-server.orig/bin/addons/sale_analytic_plans/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/sale_analytic_plans/__terp__.py 2008-11-09 09:04:44.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Sales Analytic Distribution Management", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_sale.html", ++ "website" : "http://openerp.com/module_sale.html", + "depends" : ["sale","account_analytic_plans"], + "category" : "Generic Modules/Sales & Purchases", + "init_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/sale_crm/__terp__.py openerp-server/bin/addons/sale_crm/__terp__.py +--- openerp-server.orig/bin/addons/sale_crm/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/sale_crm/__terp__.py 2008-11-09 09:04:27.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Sale CRM Stuff", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_sale.html", ++ "website" : "http://openerp.com/module_sale.html", + "depends" : ["sale", "crm_configuration"], + "category" : "Generic Modules/Sales & Purchases", + "description": """ +diff -Naurp openerp-server.orig/bin/addons/sale_journal/__terp__.py openerp-server/bin/addons/sale_journal/__terp__.py +--- openerp-server.orig/bin/addons/sale_journal/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/sale_journal/__terp__.py 2008-11-09 09:06:20.000000000 +0000 +@@ -24,7 +24,7 @@ + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Sales & Purchases", +- "website": "http://www.tinyerp.com", ++ "website": "http://www.openerp.com", + "depends" : ["stock","sale"], + "demo_xml" : ['sale_journal_demo.xml'], + "init_xml" : ['sale_journal_data.xml'], +diff -Naurp openerp-server.orig/bin/addons/stock/__terp__.py openerp-server/bin/addons/stock/__terp__.py +--- openerp-server.orig/bin/addons/stock/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/stock/__terp__.py 2008-11-09 09:03:08.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Stock Management", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_stock.html", ++ "website" : "http://openerp.com/module_stock.html", + "depends" : ["product", "account"], + "category" : "Generic Modules/Inventory Control", + "init_xml" : [], +diff -Naurp openerp-server.orig/bin/addons/stock_invoice_directly/__terp__.py openerp-server/bin/addons/stock_invoice_directly/__terp__.py +--- openerp-server.orig/bin/addons/stock_invoice_directly/__terp__.py 2008-11-03 21:34:19.000000000 +0000 ++++ openerp-server/bin/addons/stock_invoice_directly/__terp__.py 2008-11-09 09:05:09.000000000 +0000 +@@ -23,7 +23,7 @@ + "name" : "Invoice Picking Directly", + "version" : "1.0", + "author" : "Tiny", +- "website" : "http://tinyerp.com/module_sale.html", ++ "website" : "http://openerp.com/module_sale.html", + "depends" : ["delivery"], + "category" : "Generic Modules/Sales & Purchases", + "description": """ diff --git a/debian/patches/03-migrate.dpatch b/debian/patches/03-migrate.dpatch new file mode 100644 index 00000000000..3bde7b143eb --- /dev/null +++ b/debian/patches/03-migrate.dpatch @@ -0,0 +1,19 @@ +#!/bin/sh /usr/share/dpatch/dpatch-run +## 03-migrate.dpatch by Brian DeRocher +## +## DP: Correct SQL syntax in migrate script (Closes: #467517). + +@DPATCH@ + +diff -Naurp openerp-server.orig/doc/migrate/3.4.0-4.0.0/pre.py openerp-server/doc/migrate/3.4.0-4.0.0/pre.py +--- openerp-server.orig/doc/migrate/3.4.0-4.0.0/pre.py 2008-11-03 21:33:56.000000000 +0000 ++++ openerp-server/doc/migrate/3.4.0-4.0.0/pre.py 2008-11-09 09:09:49.000000000 +0000 +@@ -123,7 +123,7 @@ cr.commit() + + for line in ( + "ALTER TABLE ir_module_module ADD demo BOOLEAN", +- "ALTER TABLE ir_module_module SET demo DEFAULT False", ++ "ALTER TABLE ir_module_module alter column demo set DEFAULT False", + "DELETE FROM ir_values WHERE VALUE LIKE '%,False'", + """UPDATE ir_ui_view set arch='' where name='ir.ui.menu.tree' and type='tree' and field_parent='child_id'""", + ): diff --git a/debian/patches/04-shebang.dpatch b/debian/patches/04-shebang.dpatch new file mode 100644 index 00000000000..748d2aef330 --- /dev/null +++ b/debian/patches/04-shebang.dpatch @@ -0,0 +1,25 @@ +#!/bin/sh /usr/share/dpatch/dpatch-run +## 04-shebang.dpatch by Daniel Baumann +## +## DP: Correct shebank. + +@DPATCH@ + +diff -Naurp openerp-server.orig/bin/addons/auction/barcode/test.py openerp-server/bin/addons/auction/barcode/test.py +--- openerp-server.orig/bin/addons/auction/barcode/test.py 2008-11-09 13:50:48.000000000 +0000 ++++ openerp-server/bin/addons/auction/barcode/test.py 2008-11-09 13:57:57.000000000 +0000 +@@ -1,4 +1,4 @@ +-#!/usr/pkg/bin/python ++#!/usr/bin/python + from common import * + from code39 import * + from code93 import * +diff -Naurp openerp-server.orig/bin/addons/base/ir/workflow/pydot/dot_parser.py openerp-server/bin/addons/base/ir/workflow/pydot/dot_parser.py +--- openerp-server.orig/bin/addons/base/ir/workflow/pydot/dot_parser.py 2008-11-09 13:50:48.000000000 +0000 ++++ openerp-server/bin/addons/base/ir/workflow/pydot/dot_parser.py 2008-11-09 13:58:15.000000000 +0000 +@@ -1,4 +1,4 @@ +-#!/bin/env python ++#!/usr/bin/python + + """ + The dotparser parses graphviz files in dot and dot files and transforms them diff --git a/debian/postinst b/debian/postinst new file mode 100644 index 00000000000..b64993e5f13 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,46 @@ +#!/bin/sh + +set -e + +USER="openerp" +CONFFILE="/etc/openerp-server.conf" +LOGFILE="/var/log/openerp.log" + +case "${1}" in + configure) + # Creating system user + adduser --no-create-home --quiet --system ${USER} + + # Creating log file + touch ${LOGFILE} + chown ${USER}:adm ${LOGFILE} + chmod 0640 ${LOGFILE} + + # Setting ownership + chown ${USER}:${USER} /usr/lib/openerp-server/addons -R + + chmod 0640 ${CONFFILE} + chown ${USER}:${USER} ${CONFFILE} + + echo + echo "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *" + echo "* OpenERP 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/postrm b/debian/postrm new file mode 100644 index 00000000000..820cd0c3665 --- /dev/null +++ b/debian/postrm @@ -0,0 +1,28 @@ +#!/bin/sh + +set -e + +USER="openerp" + +case "${1}" in + purge) + # Removing system user + if [ -x /usr/sbin/deluser ] + then + deluser --quiet --system ${USER} + fi + ;; + + remove|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/rules b/debian/rules new file mode 100755 index 00000000000..b06842e76bb --- /dev/null +++ b/debian/rules @@ -0,0 +1,62 @@ +#!/usr/bin/make -f + +include /usr/share/dpatch/dpatch.make + +clean: clean-patched unpatch +clean-patched: patch-stamp + dh_testdir + dh_testroot + rm -f build-stamp + + python setup.py clean + + rm -rf build openerp-server + -find $(CURDIR) -type f -name "*.pyc" | xargs rm -f + + dh_clean + +build: patch-stamp + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + python setup.py install --no-compile --prefix=$(CURDIR)/debian/tinyerp-server/usr + + # Adjusting program location + sed -i -e 's|python.*/site-packages/||' debian/tinyerp-server/usr/bin/openerp-server + mv debian/tinyerp-server/usr/lib/python*/site-packages/openerp-server debian/tinyerp-server/usr/lib + rm -rf debian/tinyerp-server/usr/lib/python* + + # Workaround for bug in setup.py + mv debian/tinyerp-server/usr/import_xml.rng debian/tinyerp-server/usr/lib/openerp-server + + # Fixing permissions + find debian/tinyerp-server/usr/lib/openerp-server/addons -type f -print0 | xargs -0 chmod 0644 + + # Removing double files + rm -rf debian/tinyerp-server/usr/share/doc/openerp-server-* + +binary: binary-indep + +binary-arch: + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs doc/Changelog + dh_installdocs + dh_install + dh_installinit --name=openerp-server --update-rcd-params='defaults 21' + dh_lintian + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +.PHONY: clean build install binary binary-arch binary-indep From 406c83af00bf09e681e97f547cd3fb22869bad69 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:37 +0300 Subject: [PATCH 079/251] Renaming tinyerp-server to new upstream openerp-server name. bzr revid: p_christ@hol.gr-20090421090637-jb0iig58x7vtqjdo --- debian/control | 21 ++++++++++++++++----- debian/{openerp-server.init => init} | 0 debian/lintian-overrides | 2 +- debian/rules | 16 ++++++++-------- 4 files changed, 25 insertions(+), 14 deletions(-) rename debian/{openerp-server.init => init} (100%) diff --git a/debian/control b/debian/control index cb17a747d9f..21997877b8c 100644 --- a/debian/control +++ b/debian/control @@ -1,4 +1,4 @@ -Source: tinyerp-server +Source: openerp-server Section: net Priority: optional Maintainer: Daniel Baumann @@ -9,13 +9,14 @@ Homepage: http://www.openerp.com/ Vcs-Browser: http://git.debian.net/?p=debian/openerp-server.git Vcs-Git: git://git.debian.net/git/debian/openerp-server.git -Package: tinyerp-server +Package: openerp-server Section: net Architecture: all Depends: ${misc:Depends}, adduser, python, python-libxml2, python-libxslt1, python-psycopg, python-reportlab, python-tz +Conflicts: tinyerp-server (<< 5.0.0~alpha-2) +Replaces: tinyerp-server Recommends: graphviz, postgresql, postgresql-client, python-imaging, python-pyparsing -Provides: openerp-server -Suggests: tinyerp-client +Suggests: openerp-client Description: Enterprise Resource Management (server) OpenERP is a complete ERP and CRM. The main features are accounting (analytic and financial), stock management, sales and purchases management, tasks @@ -23,5 +24,15 @@ Description: Enterprise Resource Management (server) 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 OpenERP server, install tinyerp-client package for + This package contains the OpenERP server, install openerp-client package for the client. + +Package: tinyerp-server +Architecture: all +Depends: openerp-server +Description: Enterprise Resource Management (server; transitional package) + Package to ease upgrading from older tinyerp-server packages to the new + openerp-server package. + . + This package can be purged at anytime once the openerp-server package has been + installed. diff --git a/debian/openerp-server.init b/debian/init similarity index 100% rename from debian/openerp-server.init rename to debian/init diff --git a/debian/lintian-overrides b/debian/lintian-overrides index 0586695f2e9..b99e0ccf133 100644 --- a/debian/lintian-overrides +++ b/debian/lintian-overrides @@ -1,3 +1,3 @@ # Add-on directories needs data directories, and sometimes they are # (intentionally) empty, hence overriting the lintian warning. -tinyerp-server: package-contains-empty-directory +openerp-server: package-contains-empty-directory diff --git a/debian/rules b/debian/rules index b06842e76bb..d56e2ad3c0d 100755 --- a/debian/rules +++ b/debian/rules @@ -23,21 +23,21 @@ install: build dh_prep dh_installdirs - python setup.py install --no-compile --prefix=$(CURDIR)/debian/tinyerp-server/usr + python setup.py install --no-compile --prefix=$(CURDIR)/debian/openerp-server/usr # Adjusting program location - sed -i -e 's|python.*/site-packages/||' debian/tinyerp-server/usr/bin/openerp-server - mv debian/tinyerp-server/usr/lib/python*/site-packages/openerp-server debian/tinyerp-server/usr/lib - rm -rf debian/tinyerp-server/usr/lib/python* + sed -i -e 's|python.*/site-packages/||' debian/openerp-server/usr/bin/openerp-server + mv debian/openerp-server/usr/lib/python*/site-packages/openerp-server debian/openerp-server/usr/lib + rm -rf debian/openerp-server/usr/lib/python* # Workaround for bug in setup.py - mv debian/tinyerp-server/usr/import_xml.rng debian/tinyerp-server/usr/lib/openerp-server + mv debian/openerp-server/usr/import_xml.rng debian/openerp-server/usr/lib/openerp-server # Fixing permissions - find debian/tinyerp-server/usr/lib/openerp-server/addons -type f -print0 | xargs -0 chmod 0644 + find debian/openerp-server/usr/lib/openerp-server/addons -type f -print0 | xargs -0 chmod 0644 # Removing double files - rm -rf debian/tinyerp-server/usr/share/doc/openerp-server-* + rm -rf debian/openerp-server/usr/share/doc/openerp-server-* binary: binary-indep @@ -49,7 +49,7 @@ binary-indep: build install dh_installchangelogs doc/Changelog dh_installdocs dh_install - dh_installinit --name=openerp-server --update-rcd-params='defaults 21' + dh_installinit --update-rcd-params='defaults 21' dh_lintian dh_link dh_compress From afa82763011d177c5cb9699bb97c0f0a95dd35f6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:37 +0300 Subject: [PATCH 080/251] Releasing debian version 5.0.0~alpha-2. bzr revid: p_christ@hol.gr-20090421090637-s247my3dczlrbqky --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index fdc15885f77..072531762fb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +openerp-server (5.0.0~alpha-2) experimental; urgency=low + + * Renaming tinyerp-server to new upstream openerp-server name. + + -- Daniel Baumann Sun, 9 Nov 2008 18:59:00 +0100 + tinyerp-server (5.0.0~alpha-1) experimental; urgency=low * Merging upstream version 5.0.0~alpha. From 615e882f63fab56fe0ccd01b49ad5a1fa8412509 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:38 +0300 Subject: [PATCH 081/251] Adding ghostscript, python-matplotlib, and python-pyopenssl to recommends. bzr revid: p_christ@hol.gr-20090421090638-kr2u7iukx8e56hvn --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 21997877b8c..aa011008003 100644 --- a/debian/control +++ b/debian/control @@ -15,7 +15,7 @@ Architecture: all Depends: ${misc:Depends}, adduser, python, python-libxml2, python-libxslt1, python-psycopg, python-reportlab, python-tz Conflicts: tinyerp-server (<< 5.0.0~alpha-2) Replaces: tinyerp-server -Recommends: graphviz, postgresql, postgresql-client, python-imaging, python-pyparsing +Recommends: graphviz, ghostscript, postgresql, postgresql-client, python-imaging, python-matplotlib, python-pyopenssl, python-pyparsing Suggests: openerp-client Description: Enterprise Resource Management (server) OpenERP is a complete ERP and CRM. The main features are accounting (analytic From 34912ba490d7a25ae9b03c91193aae63d19b9cca Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:38 +0300 Subject: [PATCH 082/251] Correcting chown calls in postinst. bzr revid: p_christ@hol.gr-20090421090638-xwbom9o96bob21rr --- debian/postinst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/postinst b/debian/postinst index b64993e5f13..a7854521e5b 100644 --- a/debian/postinst +++ b/debian/postinst @@ -17,10 +17,10 @@ case "${1}" in chmod 0640 ${LOGFILE} # Setting ownership - chown ${USER}:${USER} /usr/lib/openerp-server/addons -R + chown ${USER} /usr/lib/openerp-server/addons -R chmod 0640 ${CONFFILE} - chown ${USER}:${USER} ${CONFFILE} + chown ${USER} ${CONFFILE} echo echo "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *" From 7e3d8dace7e57054a4141b9639611bcc2471946a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:38 +0300 Subject: [PATCH 083/251] Prefixing debhelper files with package name. bzr revid: p_christ@hol.gr-20090421090638-dx2idwutq18qtkhk --- debian/{README.Debian => openerp-server.README.Debian} | 0 debian/{docs => openerp-server.docs} | 0 debian/{init => openerp-server.init} | 0 debian/{install => openerp-server.install} | 0 debian/{links => openerp-server.links} | 0 debian/{lintian-overrides => openerp-server.lintian-overrides} | 0 debian/{postinst => openerp-server.postinst} | 0 debian/{postrm => openerp-server.postrm} | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename debian/{README.Debian => openerp-server.README.Debian} (100%) rename debian/{docs => openerp-server.docs} (100%) rename debian/{init => openerp-server.init} (100%) rename debian/{install => openerp-server.install} (100%) rename debian/{links => openerp-server.links} (100%) rename debian/{lintian-overrides => openerp-server.lintian-overrides} (100%) rename debian/{postinst => openerp-server.postinst} (100%) rename debian/{postrm => openerp-server.postrm} (100%) diff --git a/debian/README.Debian b/debian/openerp-server.README.Debian similarity index 100% rename from debian/README.Debian rename to debian/openerp-server.README.Debian diff --git a/debian/docs b/debian/openerp-server.docs similarity index 100% rename from debian/docs rename to debian/openerp-server.docs diff --git a/debian/init b/debian/openerp-server.init similarity index 100% rename from debian/init rename to debian/openerp-server.init diff --git a/debian/install b/debian/openerp-server.install similarity index 100% rename from debian/install rename to debian/openerp-server.install diff --git a/debian/links b/debian/openerp-server.links similarity index 100% rename from debian/links rename to debian/openerp-server.links diff --git a/debian/lintian-overrides b/debian/openerp-server.lintian-overrides similarity index 100% rename from debian/lintian-overrides rename to debian/openerp-server.lintian-overrides diff --git a/debian/postinst b/debian/openerp-server.postinst similarity index 100% rename from debian/postinst rename to debian/openerp-server.postinst diff --git a/debian/postrm b/debian/openerp-server.postrm similarity index 100% rename from debian/postrm rename to debian/openerp-server.postrm From c07fdfb7515fa172a9798dba5b78f98cb52ca29f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:38 +0300 Subject: [PATCH 084/251] Adding changelog for debian version 4.2.3.4-2. bzr revid: p_christ@hol.gr-20090421090638-1gmr79qqdvb0jds4 --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 072531762fb..bb84fb6ba2e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -29,6 +29,12 @@ tinyerp-server (5.0.0~alpha-1) experimental; urgency=low -- Daniel Baumann Sun, 9 Nov 2008 15:52:00 +0100 +tinyerp-server (4.2.3.4-2) unstable; urgency=low + + * Correcting chown calls in postinst. + + -- Daniel Baumann Mon, 10 Nov 2008 12:40:00 +0100 + tinyerp-server (4.2.3.4-1) unstable; urgency=low * Merging upstream version 4.2.3.4. From c8a3bfa0398cdc56037306948ecdc5a455bf79a3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:38 +0300 Subject: [PATCH 085/251] Dropping tinyerp-server transitional package, this allows to have both packages available in unstable. bzr revid: p_christ@hol.gr-20090421090638-lz6pisd01jmoa3cv --- debian/control | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/debian/control b/debian/control index aa011008003..d1266c94721 100644 --- a/debian/control +++ b/debian/control @@ -13,26 +13,17 @@ Package: openerp-server Section: net Architecture: all Depends: ${misc:Depends}, adduser, python, python-libxml2, python-libxslt1, python-psycopg, python-reportlab, python-tz -Conflicts: tinyerp-server (<< 5.0.0~alpha-2) +Conflicts: tinyerp-server Replaces: tinyerp-server Recommends: graphviz, ghostscript, postgresql, postgresql-client, python-imaging, python-matplotlib, python-pyopenssl, python-pyparsing Suggests: openerp-client Description: Enterprise Resource Management (server) - OpenERP 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. + 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 OpenERP server, install openerp-client package for the client. - -Package: tinyerp-server -Architecture: all -Depends: openerp-server -Description: Enterprise Resource Management (server; transitional package) - Package to ease upgrading from older tinyerp-server packages to the new - openerp-server package. - . - This package can be purged at anytime once the openerp-server package has been - installed. From 79fdd1624c4d8b75f2536788bf8ee5b0fa5e0c5a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:39 +0300 Subject: [PATCH 086/251] Releasing debian version 5.0.0~alpha-3. bzr revid: p_christ@hol.gr-20090421090639-lnufwf2az42x92dy --- debian/changelog | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/debian/changelog b/debian/changelog index bb84fb6ba2e..03e522eccbb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +openerp-server (5.0.0~alpha-3) unstable; urgency=low + + * Adding ghostscript, python-matplotlib, and python-pyopenssl to recommends. + * Correcting chown calls in postinst. + * Prefixing debhelper files with package name. + * Adding changelog for debian version 4.2.3.4-2. + * Dropping tinyerp-server transitional package, this allows to have both + packages available in unstable. + + -- Daniel Baumann Sun, 7 Dec 2008 20:13:00 +0100 + openerp-server (5.0.0~alpha-2) experimental; urgency=low * Renaming tinyerp-server to new upstream openerp-server name. From 362b211300184c17a2b5d7b8aa4bddf8ba5f749c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:39 +0300 Subject: [PATCH 087/251] Removing openerp.dpatch, went upstream. bzr revid: p_christ@hol.gr-20090421090639-3ig7cx8n7esjrxor --- debian/patches/00list | 1 - debian/patches/02-openerp.dpatch | 815 ------------------------------- 2 files changed, 816 deletions(-) delete mode 100644 debian/patches/02-openerp.dpatch diff --git a/debian/patches/00list b/debian/patches/00list index 536a3dfe7a3..ca43e8f060f 100644 --- a/debian/patches/00list +++ b/debian/patches/00list @@ -1,4 +1,3 @@ 01-autobuild.dpatch -02-openerp.dpatch 03-migrate.dpatch 04-shebang.dpatch diff --git a/debian/patches/02-openerp.dpatch b/debian/patches/02-openerp.dpatch deleted file mode 100644 index 8ea3504b815..00000000000 --- a/debian/patches/02-openerp.dpatch +++ /dev/null @@ -1,815 +0,0 @@ -#!/bin/sh /usr/share/dpatch/dpatch-run -## 02-openerp.dpatch by Daniel Baumann -## -## DP: Update homepage location. - -@DPATCH@ - -diff -Naurp openerp-server.orig/bin/addons/account/__terp__.py openerp-server/bin/addons/account/__terp__.py ---- openerp-server.orig/bin/addons/account/__terp__.py 2008-11-03 21:34:08.000000000 +0000 -+++ openerp-server/bin/addons/account/__terp__.py 2008-11-09 09:04:09.000000000 +0000 -@@ -31,7 +31,7 @@ - Taxes management - Budgets - """, -- "website" : "http://tinyerp.com/module_account.html", -+ "website" : "http://openerp.com/module_account.html", - "category" : "Generic Modules/Accounting", - "init_xml" : [ - ], -diff -Naurp openerp-server.orig/bin/addons/account_analytic_default/__terp__.py openerp-server/bin/addons/account_analytic_default/__terp__.py ---- openerp-server.orig/bin/addons/account_analytic_default/__terp__.py 2008-11-03 21:34:12.000000000 +0000 -+++ openerp-server/bin/addons/account_analytic_default/__terp__.py 2008-11-09 09:03:55.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Account Analytic Default", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "category" : "Generic Modules/product_analytic_default", - "description": """ - Allows to automatically select analytic accounts based on criterions: -diff -Naurp openerp-server.orig/bin/addons/account_analytic_plans/__terp__.py openerp-server/bin/addons/account_analytic_plans/__terp__.py ---- openerp-server.orig/bin/addons/account_analytic_plans/__terp__.py 2008-11-03 21:34:12.000000000 +0000 -+++ openerp-server/bin/addons/account_analytic_plans/__terp__.py 2008-11-09 09:05:13.000000000 +0000 -@@ -52,7 +52,7 @@ Plan2: - So when this line of invoice will be confirmed, it will generate 3 analytic lines, - for one account entry. - """, -- "website" : "http://tinyerp.com/module_account.html", -+ "website" : "http://openerp.com/module_account.html", - "category" : "Generic Modules/Accounting", - "init_xml" : [ - ], -diff -Naurp openerp-server.orig/bin/addons/account_balance/__terp__.py openerp-server/bin/addons/account_balance/__terp__.py ---- openerp-server.orig/bin/addons/account_balance/__terp__.py 2008-11-03 21:34:12.000000000 +0000 -+++ openerp-server/bin/addons/account_balance/__terp__.py 2008-11-09 09:03:39.000000000 +0000 -@@ -38,7 +38,7 @@ - - 5. You have an option to print the desired report in Landscape format. - """, -- "website" : "http://tinyerp.com/account_balance.html", -+ "website" : "http://openerp.com/account_balance.html", - "category" : "Generic Modules/Accounting", - "init_xml" : [ - ], -diff -Naurp openerp-server.orig/bin/addons/account_budget/__terp__.py openerp-server/bin/addons/account_budget/__terp__.py ---- openerp-server.orig/bin/addons/account_budget/__terp__.py 2008-11-03 21:34:12.000000000 +0000 -+++ openerp-server/bin/addons/account_budget/__terp__.py 2008-11-09 09:05:05.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Budget Management", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_crossovered_budget.html", -+ "website" : "http://openerp.com/module_crossovered_budget.html", - "category" : "Generic Modules/Accounting", - "description": """This module allow accountants to manage analytic and crossovered budgets. - -diff -Naurp openerp-server.orig/bin/addons/account_chart/__terp__.py openerp-server/bin/addons/account_chart/__terp__.py ---- openerp-server.orig/bin/addons/account_chart/__terp__.py 2008-11-03 21:34:12.000000000 +0000 -+++ openerp-server/bin/addons/account_chart/__terp__.py 2008-11-09 09:03:15.000000000 +0000 -@@ -25,7 +25,7 @@ - "depends" : ["account"], - "author" : "Tiny", - "description": """Remove minimal account chart""", -- "website" : "http://tinyerp.com/module_account.html", -+ "website" : "http://openerp.com/module_account.html", - "category" : "Generic Modules/Accounting", - "init_xml" : [ - ], -diff -Naurp openerp-server.orig/bin/addons/account_date_check/__terp__.py openerp-server/bin/addons/account_date_check/__terp__.py ---- openerp-server.orig/bin/addons/account_date_check/__terp__.py 2008-11-03 21:34:12.000000000 +0000 -+++ openerp-server/bin/addons/account_date_check/__terp__.py 2008-11-09 09:05:01.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Account Date check", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_sale.html", -+ "website" : "http://openerp.com/module_sale.html", - "depends" : ["account"], - "category" : "Generic Modules/Accounting", - "init_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/account_followup/__terp__.py openerp-server/bin/addons/account_followup/__terp__.py ---- openerp-server.orig/bin/addons/account_followup/__terp__.py 2008-11-03 21:34:12.000000000 +0000 -+++ openerp-server/bin/addons/account_followup/__terp__.py 2008-11-09 09:03:29.000000000 +0000 -@@ -37,7 +37,7 @@ - It will generate a PDF with all the letters according the the - different levels of recall defined. You can define different policies - for different companies.""", -- "website" : "http://tinyerp.com/module_account.html", -+ "website" : "http://openerp.com/module_account.html", - "category" : "Generic Modules/Accounting", - "init_xml" : [], - "demo_xml" : ["followup_demo.xml"], -diff -Naurp openerp-server.orig/bin/addons/account_invoice_layout/__terp__.py openerp-server/bin/addons/account_invoice_layout/__terp__.py ---- openerp-server.orig/bin/addons/account_invoice_layout/__terp__.py 2008-11-03 21:34:12.000000000 +0000 -+++ openerp-server/bin/addons/account_invoice_layout/__terp__.py 2008-11-09 09:03:05.000000000 +0000 -@@ -35,7 +35,7 @@ - Moreover, there is one option which allow you to print all the selected invoices with a given special message at the bottom of it. This feature can be very useful for printing your invoices with end-of-year wishes, special punctual conditions... - - """, -- "website" : "http://tinyerp.com/", -+ "website" : "http://openerp.com/", - "category" : "Generic Modules/Project & Services", - "init_xml" : [], - "demo_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/account_report/__terp__.py openerp-server/bin/addons/account_report/__terp__.py ---- openerp-server.orig/bin/addons/account_report/__terp__.py 2008-11-03 21:34:12.000000000 +0000 -+++ openerp-server/bin/addons/account_report/__terp__.py 2008-11-09 09:04:21.000000000 +0000 -@@ -25,7 +25,7 @@ - "depends" : ["account"], - "author" : "Tiny", - "description": """Financial and accounting reporting""", -- "website" : "http://tinyerp.com/module_account.html", -+ "website" : "http://openerp.com/module_account.html", - "category" : "Generic Modules/Accounting", - "init_xml" : [ ], - "demo_xml" : [ ], -diff -Naurp openerp-server.orig/bin/addons/account_tax_include/__terp__.py openerp-server/bin/addons/account_tax_include/__terp__.py ---- openerp-server.orig/bin/addons/account_tax_include/__terp__.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/account_tax_include/__terp__.py 2008-11-09 09:05:16.000000000 +0000 -@@ -29,7 +29,7 @@ Especially useful for b2c businesses. - - This module implement the modification on the invoice form. - """, -- "website" : "http://tinyerp.com/module_account.html", -+ "website" : "http://openerp.com/module_account.html", - "category" : "Generic Modules/Accounting", - "init_xml" : [ ], - "demo_xml" : [ ], -diff -Naurp openerp-server.orig/bin/addons/account_voucher/__terp__.py openerp-server/bin/addons/account_voucher/__terp__.py ---- openerp-server.orig/bin/addons/account_voucher/__terp__.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/account_voucher/__terp__.py 2008-11-09 09:04:17.000000000 +0000 -@@ -35,7 +35,7 @@ - * Accounting Periods - """, - "category" : "Generic Modules/Accounting", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "depends" : ["base", "account"], - "init_xml" : [ - ], -@@ -51,4 +51,4 @@ - ], - "active": False, - "installable": True --} -\ No newline at end of file -+} -diff -Naurp openerp-server.orig/bin/addons/analytic_journal_billing_rate/__terp__.py openerp-server/bin/addons/analytic_journal_billing_rate/__terp__.py ---- openerp-server.orig/bin/addons/analytic_journal_billing_rate/__terp__.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/analytic_journal_billing_rate/__terp__.py 2008-11-09 09:04:33.000000000 +0000 -@@ -31,7 +31,7 @@ - Obviously if no data has been recorded for the current account, the default value is given as usual by the account data so that this module is perfectly compatible with older configurations. - - """, -- "website" : "http://tinyerp.com/", -+ "website" : "http://openerp.com/", - "category" : "Generic Modules/Others", - "init_xml" : [], - "demo_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/analytic_user_function/__terp__.py openerp-server/bin/addons/analytic_user_function/__terp__.py ---- openerp-server.orig/bin/addons/analytic_user_function/__terp__.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/analytic_user_function/__terp__.py 2008-11-09 09:05:11.000000000 +0000 -@@ -31,7 +31,7 @@ - Obviously if no data has been recorded for the current account, the default value is given as usual by the employee data so that this module is perfectly compatible with older configurations. - - """, -- "website" : "http://tinyerp.com/", -+ "website" : "http://openerp.com/", - "category" : "Generic Modules/Others", - "init_xml" : [], - "demo_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/auction/fr_FR.csv openerp-server/bin/addons/auction/fr_FR.csv ---- openerp-server.orig/bin/addons/auction/fr_FR.csv 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/auction/fr_FR.csv 2008-11-09 09:03:50.000000000 +0000 -@@ -4281,7 +4281,7 @@ wizard_field,"base_module_publish.module - wizard_view,"base_module_publish.module_publish,step2",0,Module publication,Publication du module - wizard_view,"base_module_publish.module_publish,step2",0,User information,Information utilisateur - wizard_view,"base_module_publish.module_publish,step2",0,Please provide here your login on the Tiny ERP website.,Tapez votre login du site Tinyerp SVP --wizard_view,"base_module_publish.module_publish,step2",0,"If you don't have an access, you can create one http://www.tinyerp.com/","Si vous n'avez pas d'accès, vous pouvez en créer un sur http;//tinyerp.com" -+wizard_view,"base_module_publish.module_publish,step2",0,"If you don't have an access, you can create one http://www.openerp.com/","Si vous n'avez pas d'accès, vous pouvez en créer un sur http;//openerp.com" - wizard_button,"base_module_publish.module_publish,step2,end",0,Cancel,Annuler - wizard_button,"base_module_publish.module_publish,step2,step1",0,Previous,Précédent - wizard_button,"base_module_publish.module_publish,step2,publish",0,Publish,publier -@@ -5119,7 +5119,7 @@ wizard_field,"base_module_publish.module - wizard_view,"base_module_publish.module_publish_all,login",0,Module publication,Publication du module - wizard_view,"base_module_publish.module_publish_all,login",0,User information,Information utilisateur - wizard_view,"base_module_publish.module_publish_all,login",0,Please provide here your login on the Tiny ERP website., --wizard_view,"base_module_publish.module_publish_all,login",0,"If you don't have an access, you can create one http://www.tinyerp.com/", -+wizard_view,"base_module_publish.module_publish_all,login",0,"If you don't have an access, you can create one http://www.openerp.com/", - wizard_button,"base_module_publish.module_publish_all,login,end",0,Cancel, - wizard_button,"base_module_publish.module_publish_all,login,publish",0,Publish, - wizard_field,"base_module_publish.module_publish_all,publish,already",0,Modules already updated, -diff -Naurp openerp-server.orig/bin/addons/audittrail/__terp__.py openerp-server/bin/addons/audittrail/__terp__.py ---- openerp-server.orig/bin/addons/audittrail/__terp__.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/audittrail/__terp__.py 2008-11-09 09:02:57.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Audit Trail", - "version" : "1.0", - "depends" : ["base","account","purchase","mrp"], -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "author" : "Tiny", - "init_xml" : [], - "description": "Allows the administrator to track every user operations on all objects of the system.", -diff -Naurp openerp-server.orig/bin/addons/base_contact/__terp__.py openerp-server/bin/addons/base_contact/__terp__.py ---- openerp-server.orig/bin/addons/base_contact/__terp__.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/base_contact/__terp__.py 2008-11-09 09:03:45.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Base Contact", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "category" : "Generic Modules/Base Contact", - "description": """ - This module allows you to manage entirely your contacts. -diff -Naurp openerp-server.orig/bin/addons/base_module_publish/__terp__.py openerp-server/bin/addons/base_module_publish/__terp__.py ---- openerp-server.orig/bin/addons/base_module_publish/__terp__.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/base_module_publish/__terp__.py 2008-11-09 09:03:13.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Module publisher", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "category" : "Generic Modules/Base", - "description": """ - This module can be used by developpers to automatically publish their modules -diff -Naurp openerp-server.orig/bin/addons/base_module_record/__terp__.py openerp-server/bin/addons/base_module_record/__terp__.py ---- openerp-server.orig/bin/addons/base_module_record/__terp__.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/base_module_record/__terp__.py 2008-11-09 09:04:02.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Module Recorder", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "category" : "Generic Modules/Base", - "description": """ - This module allows you to create a new module without any development. -diff -Naurp openerp-server.orig/bin/addons/base_module_record/wizard/base_module_save.py openerp-server/bin/addons/base_module_record/wizard/base_module_save.py ---- openerp-server.orig/bin/addons/base_module_record/wizard/base_module_save.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/base_module_record/wizard/base_module_save.py 2008-11-09 09:04:00.000000000 +0000 -@@ -58,7 +58,7 @@ intro_start_fields = { - 'version': {'string':'Version', 'type':'char', 'size':16, 'required':True}, - 'author': {'string':'Author', 'type':'char', 'size':64, 'default': lambda *args: 'Tiny', 'required':True}, - 'category': {'string':'Category', 'type':'char', 'size':64, 'default': lambda *args: 'Vertical Modules/Parametrization', 'required':True}, -- 'website': {'string':'Documentation URL', 'type':'char', 'size':64, 'default': lambda *args: 'http://tinyerp.com', 'required':True}, -+ 'website': {'string':'Documentation URL', 'type':'char', 'size':64, 'default': lambda *args: 'http://openerp.com', 'required':True}, - 'description': {'string':'Full Description', 'type':'text', 'required':True}, - 'data_kind': {'string':'Type of Data', 'type':'selection', 'selection':[('demo','Demo Data'),('update','Normal Data')], 'required':True, 'default': lambda *args:'update'}, - } -diff -Naurp openerp-server.orig/bin/addons/base_report_designer/__terp__.py openerp-server/bin/addons/base_report_designer/__terp__.py ---- openerp-server.orig/bin/addons/base_report_designer/__terp__.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/base_report_designer/__terp__.py 2008-11-09 09:04:42.000000000 +0000 -@@ -28,7 +28,7 @@ OpenOffice. - "version" : "0.1", - "depends" : ["base"], - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "category" : "Generic Modules/Base", - "init_xml" : [ ], - "demo_xml" : [ ], -diff -Naurp openerp-server.orig/bin/addons/base_report_designer/wizard/base_report_designer_modify.py openerp-server/bin/addons/base_report_designer/wizard/base_report_designer_modify.py ---- openerp-server.orig/bin/addons/base_report_designer/wizard/base_report_designer_modify.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/base_report_designer/wizard/base_report_designer_modify.py 2008-11-09 09:04:39.000000000 +0000 -@@ -41,7 +41,7 @@ intro_fields = { - 'readonly': True, - 'default': lambda *args: """This system must be used with the Tiny OpenOffice plugin. If you - did not installed yet, you can find this package on: -- http://tinyerp.com -+ http://openerp.com - - This wizard will provide you the .SXW report that you can modify - in OpenOffice. After having modified it, you will be able to reupload -diff -Naurp openerp-server.orig/bin/addons/base_setup/__terp__.py openerp-server/bin/addons/base_setup/__terp__.py ---- openerp-server.orig/bin/addons/base_setup/__terp__.py 2008-11-03 21:34:13.000000000 +0000 -+++ openerp-server/bin/addons/base_setup/__terp__.py 2008-11-09 09:04:37.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Base Setup", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "category" : "Generic Modules/Base", - "description": """ - This module implements a configuration system that helps user -diff -Naurp openerp-server.orig/bin/addons/crm/__terp__.py openerp-server/bin/addons/crm/__terp__.py ---- openerp-server.orig/bin/addons/crm/__terp__.py 2008-11-03 21:34:14.000000000 +0000 -+++ openerp-server/bin/addons/crm/__terp__.py 2008-11-09 09:03:02.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Customer & Supplier Relationship Management", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_crm.html", -+ "website" : "http://openerp.com/module_crm.html", - "category" : "Generic Modules/CRM & SRM", - "description": """The Tiny ERP case and request tracker enables a group of - people to intelligently and efficiently manage tasks, issues, and requests. -diff -Naurp openerp-server.orig/bin/addons/crm_configuration/__terp__.py openerp-server/bin/addons/crm_configuration/__terp__.py ---- openerp-server.orig/bin/addons/crm_configuration/__terp__.py 2008-11-03 21:34:14.000000000 +0000 -+++ openerp-server/bin/addons/crm_configuration/__terp__.py 2008-11-09 09:04:04.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Customer Relationship Management", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_crm.html", -+ "website" : "http://openerp.com/module_crm.html", - "category" : "Generic Modules/CRM & SRM", - "description": """ - The Tiny ERP case and request tracker enables a group of -diff -Naurp openerp-server.orig/bin/addons/crm_profiling/__terp__.py openerp-server/bin/addons/crm_profiling/__terp__.py ---- openerp-server.orig/bin/addons/crm_profiling/__terp__.py 2008-11-03 21:34:15.000000000 +0000 -+++ openerp-server/bin/addons/crm_profiling/__terp__.py 2008-11-09 09:04:07.000000000 +0000 -@@ -36,7 +36,7 @@ - - * Note: this module is not compatible with the module segmentation, since it's the same which has been renamed. - """, -- "website" : "http://tinyerp.com/", -+ "website" : "http://openerp.com/", - "category" : "Generic Modules/Project & Services", - "init_xml" : [], - "demo_xml" : ["crm_profiling_demo.xml"], -diff -Naurp openerp-server.orig/bin/addons/crm_vertical/__terp__.py openerp-server/bin/addons/crm_vertical/__terp__.py ---- openerp-server.orig/bin/addons/crm_vertical/__terp__.py 2008-11-03 21:34:15.000000000 +0000 -+++ openerp-server/bin/addons/crm_vertical/__terp__.py 2008-11-09 09:03:53.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "CRM Verticalisation", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "category" : "Vertical Modules/Parametrization", - "description": """Simplification of the interface for CRM.""", - "depends" : ["crm_configuration"], -diff -Naurp openerp-server.orig/bin/addons/custom/__terp__.py openerp-server/bin/addons/custom/__terp__.py ---- openerp-server.orig/bin/addons/custom/__terp__.py 2008-11-03 21:34:15.000000000 +0000 -+++ openerp-server/bin/addons/custom/__terp__.py 2008-11-09 09:06:23.000000000 +0000 -@@ -24,7 +24,7 @@ - "version" : "1.0", - "author" : "Tiny", - "category" : "Generic Modules/Others", -- "website": "http://www.tinyerp.com", -+ "website": "http://www.openerp.com", - "description": "Sample custom module where you can put your customer specific developments.", - "depends" : ["base"], - "init_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/delivery/delivery_demo.xml openerp-server/bin/addons/delivery/delivery_demo.xml ---- openerp-server.orig/bin/addons/delivery/delivery_demo.xml 2008-11-03 21:34:15.000000000 +0000 -+++ openerp-server/bin/addons/delivery/delivery_demo.xml 2008-11-09 09:03:34.000000000 +0000 -@@ -5,7 +5,7 @@ - - - The Poste -- http://tinyerp.com -+ http://openerp.com - - - Fabien Pinckaers -diff -Naurp openerp-server.orig/bin/addons/document/__terp__.py openerp-server/bin/addons/document/__terp__.py ---- openerp-server.orig/bin/addons/document/__terp__.py 2008-11-03 21:34:15.000000000 +0000 -+++ openerp-server/bin/addons/document/__terp__.py 2008-11-09 09:05:41.000000000 +0000 -@@ -24,7 +24,7 @@ - "version" : "1.0", - "author" : "Tiny", - "category" : "Generic Modules/Others", -- "website": "http://www.tinyerp.com", -+ "website": "http://www.openerp.com", - "description": """This is a complete document management system: - * FTP Interface - * User Authentification -diff -Naurp openerp-server.orig/bin/addons/document_ics/__terp__.py openerp-server/bin/addons/document_ics/__terp__.py ---- openerp-server.orig/bin/addons/document_ics/__terp__.py 2008-11-03 21:34:15.000000000 +0000 -+++ openerp-server/bin/addons/document_ics/__terp__.py 2008-11-09 09:06:18.000000000 +0000 -@@ -24,7 +24,7 @@ - "version" : "1.0", - "author" : "Tiny", - "category" : "Generic Modules/Others", -- "website": "http://www.tinyerp.com", -+ "website": "http://www.openerp.com", - "description": """Allows to synchronize calendars with others applications.""", - "depends" : ["document","crm_configuration"], - "init_xml" : ["document_data.xml"], -diff -Naurp openerp-server.orig/bin/addons/google_map/__terp__.py openerp-server/bin/addons/google_map/__terp__.py ---- openerp-server.orig/bin/addons/google_map/__terp__.py 2008-11-03 21:34:15.000000000 +0000 -+++ openerp-server/bin/addons/google_map/__terp__.py 2008-11-09 09:04:31.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Google Map", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "category" : "Generic Modules", - "description": """The module adds google map field in partner address - so that we can directly open google map from the -diff -Naurp openerp-server.orig/bin/addons/hr/__terp__.py openerp-server/bin/addons/hr/__terp__.py ---- openerp-server.orig/bin/addons/hr/__terp__.py 2008-11-03 21:34:15.000000000 +0000 -+++ openerp-server/bin/addons/hr/__terp__.py 2008-11-09 09:04:28.000000000 +0000 -@@ -24,7 +24,7 @@ - "version" : "1.0", - "author" : "Tiny", - "category" : "Generic Modules/Human Resources", -- "website" : "http://tinyerp.com/module_hr.html", -+ "website" : "http://openerp.com/module_hr.html", - "description": """ - Module for human resource management. You can manage: - * Employees and hierarchies -diff -Naurp openerp-server.orig/bin/addons/hr_contract/__terp__.py openerp-server/bin/addons/hr_contract/__terp__.py ---- openerp-server.orig/bin/addons/hr_contract/__terp__.py 2008-11-03 21:34:15.000000000 +0000 -+++ openerp-server/bin/addons/hr_contract/__terp__.py 2008-11-09 09:03:00.000000000 +0000 -@@ -24,7 +24,7 @@ - "version" : "1.0", - "author" : "Tiny", - "category" : "Generic Modules/Human Resources", -- "website" : "http://tinyerp.com/module_hr.html", -+ "website" : "http://openerp.com/module_hr.html", - "depends" : ["hr"], - "module": "", - "description": """ -diff -Naurp openerp-server.orig/bin/addons/hr_expense/__terp__.py openerp-server/bin/addons/hr_expense/__terp__.py ---- openerp-server.orig/bin/addons/hr_expense/__terp__.py 2008-11-03 21:34:15.000000000 +0000 -+++ openerp-server/bin/addons/hr_expense/__terp__.py 2008-11-09 09:04:49.000000000 +0000 -@@ -24,7 +24,7 @@ - "version" : "1.0", - "author" : "Tiny", - "category" : "Generic Modules/Human Resources", -- "website" : "http://tinyerp.com/module_hr.html", -+ "website" : "http://openerp.com/module_hr.html", - "depends" : ["hr","account", "account_tax_include",], - "description": """ - This module aims to manage employee's expenses. -diff -Naurp openerp-server.orig/bin/addons/hr_holidays/__terp__.py openerp-server/bin/addons/hr_holidays/__terp__.py ---- openerp-server.orig/bin/addons/hr_holidays/__terp__.py 2008-11-03 21:34:16.000000000 +0000 -+++ openerp-server/bin/addons/hr_holidays/__terp__.py 2008-11-09 09:03:21.000000000 +0000 -@@ -4,7 +4,7 @@ - "version" : "0.1", - "author" : "Tiny & Axelor", - "category" : "Generic Modules/Human Resources", -- "website" : "http://tinyerp.com/", -+ "website" : "http://openerp.com/", - "description": """Human Ressources: Holidays tracking and workflow - - This module allows you to manage holidays and holidays requests. For each employee, you can also define a number of available holidays per holiday status. -diff -Naurp openerp-server.orig/bin/addons/hr_timesheet/__terp__.py openerp-server/bin/addons/hr_timesheet/__terp__.py ---- openerp-server.orig/bin/addons/hr_timesheet/__terp__.py 2008-11-03 21:34:16.000000000 +0000 -+++ openerp-server/bin/addons/hr_timesheet/__terp__.py 2008-11-09 09:04:11.000000000 +0000 -@@ -24,7 +24,7 @@ - "version" : "1.0", - "author" : "Tiny", - "category" : "Generic Modules/Human Resources", -- "website" : "http://tinyerp.com/module_hr.html", -+ "website" : "http://openerp.com/module_hr.html", - "description": """ - This module implement a timesheet system. Each employee can encode and - track their time spent on the different projects. A project is an -diff -Naurp openerp-server.orig/bin/addons/hr_timesheet_invoice/__terp__.py openerp-server/bin/addons/hr_timesheet_invoice/__terp__.py ---- openerp-server.orig/bin/addons/hr_timesheet_invoice/__terp__.py 2008-11-03 21:34:16.000000000 +0000 -+++ openerp-server/bin/addons/hr_timesheet_invoice/__terp__.py 2008-11-09 09:05:06.000000000 +0000 -@@ -24,7 +24,7 @@ - "version" : "1.0", - "author" : "Tiny", - "category" : "Generic Modules/Accounting", -- "website" : "http://tinyerp.com/", -+ "website" : "http://openerp.com/", - "depends" : ["account",'hr_timesheet'], - "description": """ - Module to generate invoices based on costs (human ressources, expenses, ...). -diff -Naurp openerp-server.orig/bin/addons/hr_timesheet_project/__terp__.py openerp-server/bin/addons/hr_timesheet_project/__terp__.py ---- openerp-server.orig/bin/addons/hr_timesheet_project/__terp__.py 2008-11-03 21:34:16.000000000 +0000 -+++ openerp-server/bin/addons/hr_timesheet_project/__terp__.py 2008-11-09 09:02:58.000000000 +0000 -@@ -25,7 +25,7 @@ - "author" : "Tiny", - "category" : "Generic Modules/Human Resources", - "description": """Auto-complete timesheet based on tasks made on the project management module.""", -- "website" : "http://tinyerp.com/module_hr.html", -+ "website" : "http://openerp.com/module_hr.html", - "depends" : ["project", "hr_timesheet_sheet"], - "update_xml" : ["hr_timesheet_project_view.xml", - "process/hr_timesheet_project_process.xml", -diff -Naurp openerp-server.orig/bin/addons/hr_timesheet_sheet/__terp__.py openerp-server/bin/addons/hr_timesheet_sheet/__terp__.py ---- openerp-server.orig/bin/addons/hr_timesheet_sheet/__terp__.py 2008-11-03 21:34:16.000000000 +0000 -+++ openerp-server/bin/addons/hr_timesheet_sheet/__terp__.py 2008-11-09 09:03:11.000000000 +0000 -@@ -24,7 +24,7 @@ - "version" : "1.0", - "author" : "Tiny", - "category" : "Generic Modules/Human Resources", -- "website" : "http://tinyerp.com/module_hr.html", -+ "website" : "http://openerp.com/module_hr.html", - "description": """ - This module help you easily encode and validate timesheet and attendances - within the same view. The upper part of the view is for attendances and -diff -Naurp openerp-server.orig/bin/addons/mrp/__terp__.py openerp-server/bin/addons/mrp/__terp__.py ---- openerp-server.orig/bin/addons/mrp/__terp__.py 2008-11-03 21:34:17.000000000 +0000 -+++ openerp-server/bin/addons/mrp/__terp__.py 2008-11-09 09:05:08.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Manufacturing Resource Planning", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_mrp.html", -+ "website" : "http://openerp.com/module_mrp.html", - "category" : "Generic Modules/Production", - "depends" : ["stock", "hr", "purchase", "product", "process"], - "description": """ -diff -Naurp openerp-server.orig/bin/addons/mrp_operations/__terp__.py openerp-server/bin/addons/mrp_operations/__terp__.py ---- openerp-server.orig/bin/addons/mrp_operations/__terp__.py 2008-11-03 21:34:17.000000000 +0000 -+++ openerp-server/bin/addons/mrp_operations/__terp__.py 2008-11-09 09:03:14.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Workcenter Production start end workflow", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_mrp.html", -+ "website" : "http://openerp.com/module_mrp.html", - "category" : "Generic Modules/Production", - "depends" : ["stock", "hr", "purchase", "product", "mrp"], - "description": """ -diff -Naurp openerp-server.orig/bin/addons/mrp_subproduct/__terp__.py openerp-server/bin/addons/mrp_subproduct/__terp__.py ---- openerp-server.orig/bin/addons/mrp_subproduct/__terp__.py 2008-11-03 21:34:17.000000000 +0000 -+++ openerp-server/bin/addons/mrp_subproduct/__terp__.py 2008-11-09 09:03:57.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "MRP Sub Product", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_stock.html", -+ "website" : "http://openerp.com/module_stock.html", - "depends" : ["base","mrp"], - "category" : "Generic Modules/Production", - "init_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/process/__terp__.py openerp-server/bin/addons/process/__terp__.py ---- openerp-server.orig/bin/addons/process/__terp__.py 2008-11-03 21:34:17.000000000 +0000 -+++ openerp-server/bin/addons/process/__terp__.py 2008-11-09 09:04:25.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Enterprise Process", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "category" : "Generic Modules/Base", - "description": """ - This module allows you to manage your process for the end-users. -diff -Naurp openerp-server.orig/bin/addons/project/__terp__.py openerp-server/bin/addons/project/__terp__.py ---- openerp-server.orig/bin/addons/project/__terp__.py 2008-11-03 21:34:18.000000000 +0000 -+++ openerp-server/bin/addons/project/__terp__.py 2008-11-09 09:03:43.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Project Management", - "version": "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_project.html", -+ "website" : "http://openerp.com/module_project.html", - "category" : "Generic Modules/Projects & Services", - "depends" : ["product", "account", "hr", "process"], - "description": "Project management module that track multi-level projects, tasks, works done on tasks, eso. It is able to render planning, order tasks, eso.", -diff -Naurp openerp-server.orig/bin/addons/project_mrp/__terp__.py openerp-server/bin/addons/project_mrp/__terp__.py ---- openerp-server.orig/bin/addons/project_mrp/__terp__.py 2008-11-03 21:34:18.000000000 +0000 -+++ openerp-server/bin/addons/project_mrp/__terp__.py 2008-11-09 09:02:54.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Project Management - MRP Link", - "version": "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_project.html", -+ "website" : "http://openerp.com/module_project.html", - "category" : "Generic Modules/Projects & Services", - "depends" : ["project", 'mrp', "sale"], - "description": """ -diff -Naurp openerp-server.orig/bin/addons/project_timesheet/__terp__.py openerp-server/bin/addons/project_timesheet/__terp__.py ---- openerp-server.orig/bin/addons/project_timesheet/__terp__.py 2008-11-03 21:34:18.000000000 +0000 -+++ openerp-server/bin/addons/project_timesheet/__terp__.py 2008-11-09 09:04:13.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Project Timesheet", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "category" : "Generic Modules/HR", - "description": """ - This module lets you transfer the entries under tasks defined for Project Management to -diff -Naurp openerp-server.orig/bin/addons/purchase/__terp__.py openerp-server/bin/addons/purchase/__terp__.py ---- openerp-server.orig/bin/addons/purchase/__terp__.py 2008-11-03 21:34:18.000000000 +0000 -+++ openerp-server/bin/addons/purchase/__terp__.py 2008-11-09 09:03:07.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Purchase Management", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_purchase.html", -+ "website" : "http://openerp.com/module_purchase.html", - "depends" : ["base", "account", "stock", "process"], - "category" : "Generic Modules/Sales & Purchases", - "init_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/purchase_analytic_plans/__terp__.py openerp-server/bin/addons/purchase_analytic_plans/__terp__.py ---- openerp-server.orig/bin/addons/purchase_analytic_plans/__terp__.py 2008-11-03 21:34:18.000000000 +0000 -+++ openerp-server/bin/addons/purchase_analytic_plans/__terp__.py 2008-11-09 09:03:17.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Purchase Analytic Distribution Management", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_sale.html", -+ "website" : "http://openerp.com/module_sale.html", - "depends" : ["purchase","account_analytic_plans"], - "category" : "Generic Modules/Sales & Purchases", - "init_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/report_account/__terp__.py openerp-server/bin/addons/report_account/__terp__.py ---- openerp-server.orig/bin/addons/report_account/__terp__.py 2008-11-03 21:34:18.000000000 +0000 -+++ openerp-server/bin/addons/report_account/__terp__.py 2008-11-09 09:04:30.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Account Reporting - Reporting", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "depends" : ["account"], - "category" : "Generic Modules/Accounting", - "description": "A module that adds new reports based on the account module.", -diff -Naurp openerp-server.orig/bin/addons/report_analytic/__terp__.py openerp-server/bin/addons/report_analytic/__terp__.py ---- openerp-server.orig/bin/addons/report_analytic/__terp__.py 2008-11-03 21:34:18.000000000 +0000 -+++ openerp-server/bin/addons/report_analytic/__terp__.py 2008-11-09 09:04:19.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Analytic Account Reporting", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "depends" : ["account","hr_timesheet_invoice"], - "category" : "Generic Modules/Accounting", - "description": "A module that adds new reports based on analytic accounts.", -diff -Naurp openerp-server.orig/bin/addons/report_analytic_line/__terp__.py openerp-server/bin/addons/report_analytic_line/__terp__.py ---- openerp-server.orig/bin/addons/report_analytic_line/__terp__.py 2008-11-03 21:34:18.000000000 +0000 -+++ openerp-server/bin/addons/report_analytic_line/__terp__.py 2008-11-09 09:04:45.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Analytic lines - Reporting", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "depends" : ["account", "hr_timesheet_invoice"], - "category" : "Generic Modules/Accounting", - "description": "A report on analytic lines, costs by products, months and accounts.", -diff -Naurp openerp-server.orig/bin/addons/report_analytic_planning/__terp__.py openerp-server/bin/addons/report_analytic_planning/__terp__.py ---- openerp-server.orig/bin/addons/report_analytic_planning/__terp__.py 2008-11-03 21:34:18.000000000 +0000 -+++ openerp-server/bin/addons/report_analytic_planning/__terp__.py 2008-11-09 09:05:03.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Analytic planning - Reporting", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "depends" : ["account", "hr_timesheet_invoice","project","report_analytic_line"], - "category" : "Generic Modules/Accounting", - "description": "Planning on analytic accounts.", -diff -Naurp openerp-server.orig/bin/addons/report_crm/__terp__.py openerp-server/bin/addons/report_crm/__terp__.py ---- openerp-server.orig/bin/addons/report_crm/__terp__.py 2008-11-03 21:34:18.000000000 +0000 -+++ openerp-server/bin/addons/report_crm/__terp__.py 2008-11-09 09:03:41.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "CRM Management - Reporting", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_crm.html", -+ "website" : "http://openerp.com/module_crm.html", - "depends" : ["crm"], - "category" : "Generic Modules/CRM & SRM", - "description": "A module that adds new reports based on CRM cases.", -diff -Naurp openerp-server.orig/bin/addons/report_intrastat/__terp__.py openerp-server/bin/addons/report_intrastat/__terp__.py ---- openerp-server.orig/bin/addons/report_intrastat/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/report_intrastat/__terp__.py 2008-11-09 09:03:10.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Intrastat Reporting - Reporting", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "depends" : ["base", "product", "stock", "sale", "purchase"], - "category" : "Generic Modules/Inventory Control", - "description": "A module that adds intrastat reports.", -diff -Naurp openerp-server.orig/bin/addons/report_mrp/__terp__.py openerp-server/bin/addons/report_mrp/__terp__.py ---- openerp-server.orig/bin/addons/report_mrp/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/report_mrp/__terp__.py 2008-11-09 09:04:23.000000000 +0000 -@@ -23,7 +23,7 @@ - "name": "MRP Management - Reporting", - "version": "1.0", - "author": "Tiny", -- "website": "http://tinyerp.com/module_mrp.html", -+ "website": "http://openerp.com/module_mrp.html", - "depends": ["mrp"], - "category": "Generic Modules/Production", - "description": "A module that adds new reports based on MRP cases.", -diff -Naurp openerp-server.orig/bin/addons/report_project/__terp__.py openerp-server/bin/addons/report_project/__terp__.py ---- openerp-server.orig/bin/addons/report_project/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/report_project/__terp__.py 2008-11-09 09:03:37.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Sales Management - Reporting", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_project.html", -+ "website" : "http://openerp.com/module_project.html", - "depends" : ["project", "report_task"], - "category" : "Generic Modules/Sales & Purchases", - "description": "A module that adds some reports on the sales", -diff -Naurp openerp-server.orig/bin/addons/report_purchase/__terp__.py openerp-server/bin/addons/report_purchase/__terp__.py ---- openerp-server.orig/bin/addons/report_purchase/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/report_purchase/__terp__.py 2008-11-09 09:03:01.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Sales Management - Reporting", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_purchase.html", -+ "website" : "http://openerp.com/module_purchase.html", - "depends" : ["purchase"], - "category" : "Generic Modules/Sales & Purchases", - "init_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/report_sale/__terp__.py openerp-server/bin/addons/report_sale/__terp__.py ---- openerp-server.orig/bin/addons/report_sale/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/report_sale/__terp__.py 2008-11-09 09:04:15.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Sales Management - Reporting", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_sale.html", -+ "website" : "http://openerp.com/module_sale.html", - "depends" : ["sale"], - "category" : "Generic Modules/Sales & Purchases", - "description": """ -diff -Naurp openerp-server.orig/bin/addons/report_timesheet/__terp__.py openerp-server/bin/addons/report_timesheet/__terp__.py ---- openerp-server.orig/bin/addons/report_timesheet/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/report_timesheet/__terp__.py 2008-11-09 09:03:31.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Timesheet - Reporting", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com", -+ "website" : "http://openerp.com", - "depends" : ["hr_timesheet",'hr_timesheet_invoice'], - "category" : "Generic Modules/Human Ressources", - "init_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/sale/__terp__.py openerp-server/bin/addons/sale/__terp__.py ---- openerp-server.orig/bin/addons/sale/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/sale/__terp__.py 2008-11-09 09:04:47.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Sales Management", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_sale.html", -+ "website" : "http://openerp.com/module_sale.html", - "depends" : ["product", "stock", "mrp", "process"], - "category" : "Generic Modules/Sales & Purchases", - "init_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/sale_analytic_plans/__terp__.py openerp-server/bin/addons/sale_analytic_plans/__terp__.py ---- openerp-server.orig/bin/addons/sale_analytic_plans/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/sale_analytic_plans/__terp__.py 2008-11-09 09:04:44.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Sales Analytic Distribution Management", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_sale.html", -+ "website" : "http://openerp.com/module_sale.html", - "depends" : ["sale","account_analytic_plans"], - "category" : "Generic Modules/Sales & Purchases", - "init_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/sale_crm/__terp__.py openerp-server/bin/addons/sale_crm/__terp__.py ---- openerp-server.orig/bin/addons/sale_crm/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/sale_crm/__terp__.py 2008-11-09 09:04:27.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Sale CRM Stuff", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_sale.html", -+ "website" : "http://openerp.com/module_sale.html", - "depends" : ["sale", "crm_configuration"], - "category" : "Generic Modules/Sales & Purchases", - "description": """ -diff -Naurp openerp-server.orig/bin/addons/sale_journal/__terp__.py openerp-server/bin/addons/sale_journal/__terp__.py ---- openerp-server.orig/bin/addons/sale_journal/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/sale_journal/__terp__.py 2008-11-09 09:06:20.000000000 +0000 -@@ -24,7 +24,7 @@ - "version" : "1.0", - "author" : "Tiny", - "category" : "Generic Modules/Sales & Purchases", -- "website": "http://www.tinyerp.com", -+ "website": "http://www.openerp.com", - "depends" : ["stock","sale"], - "demo_xml" : ['sale_journal_demo.xml'], - "init_xml" : ['sale_journal_data.xml'], -diff -Naurp openerp-server.orig/bin/addons/stock/__terp__.py openerp-server/bin/addons/stock/__terp__.py ---- openerp-server.orig/bin/addons/stock/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/stock/__terp__.py 2008-11-09 09:03:08.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Stock Management", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_stock.html", -+ "website" : "http://openerp.com/module_stock.html", - "depends" : ["product", "account"], - "category" : "Generic Modules/Inventory Control", - "init_xml" : [], -diff -Naurp openerp-server.orig/bin/addons/stock_invoice_directly/__terp__.py openerp-server/bin/addons/stock_invoice_directly/__terp__.py ---- openerp-server.orig/bin/addons/stock_invoice_directly/__terp__.py 2008-11-03 21:34:19.000000000 +0000 -+++ openerp-server/bin/addons/stock_invoice_directly/__terp__.py 2008-11-09 09:05:09.000000000 +0000 -@@ -23,7 +23,7 @@ - "name" : "Invoice Picking Directly", - "version" : "1.0", - "author" : "Tiny", -- "website" : "http://tinyerp.com/module_sale.html", -+ "website" : "http://openerp.com/module_sale.html", - "depends" : ["delivery"], - "category" : "Generic Modules/Sales & Purchases", - "description": """ From 95d58d96a9427eeb007fb3bebfe2620f58ddcd35 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:39 +0300 Subject: [PATCH 088/251] Rediffing shebang.dpatch. bzr revid: p_christ@hol.gr-20090421090639-hny6r0v7bfjt5cee --- debian/patches/04-shebang.dpatch | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/debian/patches/04-shebang.dpatch b/debian/patches/04-shebang.dpatch index 748d2aef330..3a2f1671789 100644 --- a/debian/patches/04-shebang.dpatch +++ b/debian/patches/04-shebang.dpatch @@ -1,25 +1,25 @@ #!/bin/sh /usr/share/dpatch/dpatch-run ## 04-shebang.dpatch by Daniel Baumann ## -## DP: Correct shebank. +## DP: Correcting shebang. @DPATCH@ diff -Naurp openerp-server.orig/bin/addons/auction/barcode/test.py openerp-server/bin/addons/auction/barcode/test.py ---- openerp-server.orig/bin/addons/auction/barcode/test.py 2008-11-09 13:50:48.000000000 +0000 -+++ openerp-server/bin/addons/auction/barcode/test.py 2008-11-09 13:57:57.000000000 +0000 +--- openerp-server.orig/bin/addons/auction/barcode/test.py 2008-12-16 11:06:21.000000000 +0000 ++++ openerp-server/bin/addons/auction/barcode/test.py 2008-12-16 11:27:19.000000000 +0000 @@ -1,4 +1,4 @@ -#!/usr/pkg/bin/python +#!/usr/bin/python from common import * from code39 import * from code93 import * -diff -Naurp openerp-server.orig/bin/addons/base/ir/workflow/pydot/dot_parser.py openerp-server/bin/addons/base/ir/workflow/pydot/dot_parser.py ---- openerp-server.orig/bin/addons/base/ir/workflow/pydot/dot_parser.py 2008-11-09 13:50:48.000000000 +0000 -+++ openerp-server/bin/addons/base/ir/workflow/pydot/dot_parser.py 2008-11-09 13:58:15.000000000 +0000 +diff -Naurp openerp-server.orig/bin/addons/document/ftpserver/ftpserver.py openerp-server/bin/addons/document/ftpserver/ftpserver.py +--- openerp-server.orig/bin/addons/document/ftpserver/ftpserver.py 2008-12-16 11:06:22.000000000 +0000 ++++ openerp-server/bin/addons/document/ftpserver/ftpserver.py 2008-12-16 11:28:19.000000000 +0000 @@ -1,4 +1,4 @@ --#!/bin/env python +-#!/usr/bin/env python +#!/usr/bin/python - - """ - The dotparser parses graphviz files in dot and dot files and transforms them + # ftpserver.py + # + # pyftpdlib is released under the MIT license, reproduced below: From 96f520142b8e95216bae70edf25bf8b5bebb3d80 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:39 +0300 Subject: [PATCH 089/251] Removing workaround for import_xml.rng, not needed anymore. bzr revid: p_christ@hol.gr-20090421090639-fu5aag3bxifxsbfb --- debian/rules | 3 --- 1 file changed, 3 deletions(-) diff --git a/debian/rules b/debian/rules index d56e2ad3c0d..c716b2448e8 100755 --- a/debian/rules +++ b/debian/rules @@ -30,9 +30,6 @@ install: build mv debian/openerp-server/usr/lib/python*/site-packages/openerp-server debian/openerp-server/usr/lib rm -rf debian/openerp-server/usr/lib/python* - # Workaround for bug in setup.py - mv debian/openerp-server/usr/import_xml.rng debian/openerp-server/usr/lib/openerp-server - # Fixing permissions find debian/openerp-server/usr/lib/openerp-server/addons -type f -print0 | xargs -0 chmod 0644 From f87e371c2c7e6892323cb4066fe6d0c79593d20a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:39 +0300 Subject: [PATCH 090/251] Releasing debian version 5.0.0~rc1-1. bzr revid: p_christ@hol.gr-20090421090639-nlwsfsujpygb4z4h --- debian/changelog | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/debian/changelog b/debian/changelog index 03e522eccbb..feae570a6c3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +openerp-server (5.0.0~rc1-1) unstable; urgency=low + + * Merging upstream version 5.0.0~rc1. + * Removing openerp.dpatch, went upstream. + * Rediffing shebang.dpatch. + * Removing workaround for import_xml.rng, not needed anymore. + + -- Daniel Baumann Tue, 16 Dec 2008 12:51:00 +0100 + openerp-server (5.0.0~alpha-3) unstable; urgency=low * Adding ghostscript, python-matplotlib, and python-pyopenssl to recommends. From 8f743d4069c677f9e1b053c5a2340be726887f9b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:40 +0300 Subject: [PATCH 091/251] Releasing debian version 5.0.0~rc1.1-1. bzr revid: p_christ@hol.gr-20090421090640-773kqfwfdxrbaxh0 --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index feae570a6c3..11b1b4079eb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +openerp-server (5.0.0~rc1.1-1) unstable; urgency=low + + * Merging upstream version 5.0.0~rc1.1. + + -- Daniel Baumann Tue, 16 Dec 2008 13:08:00 +0100 + openerp-server (5.0.0~rc1-1) unstable; urgency=low * Merging upstream version 5.0.0~rc1. From ef8795e08c9cdada272b88e19febfa32db916353 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:40 +0300 Subject: [PATCH 092/251] Adjusting sed call to correct path in /usr/bin/openerp-server. bzr revid: p_christ@hol.gr-20090421090640-v8ss92sguqopa4mz --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index c716b2448e8..9c75747afc4 100755 --- a/debian/rules +++ b/debian/rules @@ -26,7 +26,7 @@ install: build python setup.py install --no-compile --prefix=$(CURDIR)/debian/openerp-server/usr # Adjusting program location - sed -i -e 's|python.*/site-packages/||' debian/openerp-server/usr/bin/openerp-server + sed -i -e 's|cd .*python.*/site-packages|cd /usr/lib|' debian/openerp-server/usr/bin/openerp-server mv debian/openerp-server/usr/lib/python*/site-packages/openerp-server debian/openerp-server/usr/lib rm -rf debian/openerp-server/usr/lib/python* From fb57d1f84633bb6bdeb0d9410a6086920126baf2 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:40 +0300 Subject: [PATCH 093/251] Releasing debian version 5.0.0~rc1.1-2. bzr revid: p_christ@hol.gr-20090421090640-gu2ufy3ql5q97xy2 --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 11b1b4079eb..bb4de86dd9a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +openerp-server (5.0.0~rc1.1-2) unstable; urgency=low + + * Adjusting sed call to correct path in /usr/bin/openerp-server. + + -- Daniel Baumann Wed, 17 Dec 2008 08:32:00 +0100 + openerp-server (5.0.0~rc1.1-1) unstable; urgency=low * Merging upstream version 5.0.0~rc1.1. From ba388497f99b14bcb1024e2a6eb88cff5d235294 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:40 +0300 Subject: [PATCH 094/251] Updating python xml depends (Closes: #508911). bzr revid: p_christ@hol.gr-20090421090640-wy2bdts7yow4rqjr --- debian/control | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index d1266c94721..bf3c64d725f 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: net Priority: optional Maintainer: Daniel Baumann Build-Depends: debhelper (>= 7), dpatch, python-dev -Build-Depends-Indep: python-libxml2, python-libxslt1, python-psycopg +Build-Depends-Indep: python-lxml, python-xml, python-libxslt1, python-psycopg Standards-Version: 3.8.0 Homepage: http://www.openerp.com/ Vcs-Browser: http://git.debian.net/?p=debian/openerp-server.git @@ -12,7 +12,7 @@ Vcs-Git: git://git.debian.net/git/debian/openerp-server.git Package: openerp-server Section: net Architecture: all -Depends: ${misc:Depends}, adduser, python, python-libxml2, python-libxslt1, python-psycopg, python-reportlab, python-tz +Depends: ${misc:Depends}, adduser, python, python-lxml, python-xml, python-libxslt1, python-psycopg, python-reportlab, python-tz Conflicts: tinyerp-server Replaces: tinyerp-server Recommends: graphviz, ghostscript, postgresql, postgresql-client, python-imaging, python-matplotlib, python-pyopenssl, python-pyparsing From aeea4b1a2104b57f3fa4476db6e3ed57025c42ce Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:40 +0300 Subject: [PATCH 095/251] New upstream no longer uses embedded copies of pydot, pychart and reportlab (Closes: #468104). bzr revid: p_christ@hol.gr-20090421090640-1hfd6ghq1emry7vu --- debian/control | 4 +-- debian/copyright | 67 ------------------------------------------------ 2 files changed, 2 insertions(+), 69 deletions(-) diff --git a/debian/control b/debian/control index bf3c64d725f..34a0494fef2 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: net Priority: optional Maintainer: Daniel Baumann Build-Depends: debhelper (>= 7), dpatch, python-dev -Build-Depends-Indep: python-lxml, python-xml, python-libxslt1, python-psycopg +Build-Depends-Indep: python-lxml, python-xml, python-libxslt1, python-psycopg2 Standards-Version: 3.8.0 Homepage: http://www.openerp.com/ Vcs-Browser: http://git.debian.net/?p=debian/openerp-server.git @@ -12,7 +12,7 @@ Vcs-Git: git://git.debian.net/git/debian/openerp-server.git Package: openerp-server Section: net Architecture: all -Depends: ${misc:Depends}, adduser, python, python-lxml, python-xml, python-libxslt1, python-psycopg, python-reportlab, python-tz +Depends: ${misc:Depends}, adduser, python, python-lxml, python-xml, python-libxslt1, python-psycopg2, python-reportlab, python-pychart, python-pydot, python-tz Conflicts: tinyerp-server Replaces: tinyerp-server Recommends: graphviz, ghostscript, postgresql, postgresql-client, python-imaging, python-matplotlib, python-pyopenssl, python-pyparsing diff --git a/debian/copyright b/debian/copyright index 4bdf8e97d66..1d87b615d5d 100644 --- a/debian/copyright +++ b/debian/copyright @@ -96,27 +96,6 @@ License: BSD ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -Files: bin/addons/base/ir/workflow/pydot/* -Copyright: (C) 2004 Ero Carrera -License: other - Permission is hereby granted, free of charge, to any person obtaining a copy of - this software and associated documentation files (the "Software"), to deal in - the Software without restriction, including without limitation the rights to - use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is furnished to do - so, subject to the following conditions: - . - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - Files: bin/addons/base_report_designer/wizard/tiny_sxw2rml/normalized_oo2rml.xsl bin/addons/base_report_designer/wizard/tiny_sxw2rml/tiny_sxw2rml.py @@ -205,52 +184,6 @@ License: GPL-2+ On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2 file. -Files: bin/pychart/* -Copyright: (C) 2000-2005 Yasushi Saito -License: GPL-2+ - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - . - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - . - On Debian systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-2 file. - -Files: bin/reportlab/* -Copyright: (C) 2000-2004 ReportLab Inc. -License: BSD - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - . - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - * Neither the name of the company nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE OFFICERS OR CONTRIBUTORS BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - Files: bin/tools/threadinglocal.py Copyright: (C) 2004-2005 CherryPy Team License: BSD From 29d4d89b84e84dc15d08a2ceab9eec0f1b8d8fd2 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:41 +0300 Subject: [PATCH 096/251] Rediffing shebang.dpatch. bzr revid: p_christ@hol.gr-20090421090641-075v6j35pzro2c2g --- debian/patches/04-shebang.dpatch | 9 --------- 1 file changed, 9 deletions(-) diff --git a/debian/patches/04-shebang.dpatch b/debian/patches/04-shebang.dpatch index 3a2f1671789..12cda65a8cc 100644 --- a/debian/patches/04-shebang.dpatch +++ b/debian/patches/04-shebang.dpatch @@ -5,15 +5,6 @@ @DPATCH@ -diff -Naurp openerp-server.orig/bin/addons/auction/barcode/test.py openerp-server/bin/addons/auction/barcode/test.py ---- openerp-server.orig/bin/addons/auction/barcode/test.py 2008-12-16 11:06:21.000000000 +0000 -+++ openerp-server/bin/addons/auction/barcode/test.py 2008-12-16 11:27:19.000000000 +0000 -@@ -1,4 +1,4 @@ --#!/usr/pkg/bin/python -+#!/usr/bin/python - from common import * - from code39 import * - from code93 import * diff -Naurp openerp-server.orig/bin/addons/document/ftpserver/ftpserver.py openerp-server/bin/addons/document/ftpserver/ftpserver.py --- openerp-server.orig/bin/addons/document/ftpserver/ftpserver.py 2008-12-16 11:06:22.000000000 +0000 +++ openerp-server/bin/addons/document/ftpserver/ftpserver.py 2008-12-16 11:28:19.000000000 +0000 From 0f8fa57c1104981f60b1c207ed5ae7888732d55f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:41 +0300 Subject: [PATCH 097/251] Releasing debian version 5.0.0~rc2-1. bzr revid: p_christ@hol.gr-20090421090641-ifn9md43yu21w8h3 --- debian/changelog | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/debian/changelog b/debian/changelog index bb4de86dd9a..222bdc41e60 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +openerp-server (5.0.0~rc2-1) unstable; urgency=low + + * Updating python xml depends (Closes: #508911). + * Merging upstream version 5.0.0~rc2. + * New upstream no longer uses embedded copies of pydot, pychart and + reportlab (Closes: #468104). + * Rediffing shebang.dpatch. + + -- Daniel Baumann Thu, 25 Dec 2008 15:13:00 +0100 + openerp-server (5.0.0~rc1.1-2) unstable; urgency=low * Adjusting sed call to correct path in /usr/bin/openerp-server. From 7ea23555f877a5b45957c2b56390d3b5eee2c0fd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:41 +0300 Subject: [PATCH 098/251] Adding note about initializing the database in README.Debian. bzr revid: p_christ@hol.gr-20090421090641-qjpu9nysyh25mq3n --- debian/openerp-server.README.Debian | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/openerp-server.README.Debian b/debian/openerp-server.README.Debian index 1fd378c7e72..9121c5ef68b 100644 --- a/debian/openerp-server.README.Debian +++ b/debian/openerp-server.README.Debian @@ -21,7 +21,11 @@ explanation how to achieve this (you need to execute all commands as root): to replace 'openerp' above with the user you want instead, and you need to adjust 'db_user = openerp' in /etc/openerp-server.conf too. - 3. Restarting openerp-server + 4. Initializing the database + + # /usr/bin/openerp-server --init=all + + 5. Restarting openerp-server # /etc/init.d/openerp-server restart From f97bf976ffcee8b6076eb5fdda02e123a23a3527 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:41 +0300 Subject: [PATCH 099/251] Adding changelog for debian version 4.2.3.4-3. bzr revid: p_christ@hol.gr-20090421090641-lcacx3t9hif75wq1 --- debian/changelog | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/debian/changelog b/debian/changelog index 222bdc41e60..724ef1e0575 100644 --- a/debian/changelog +++ b/debian/changelog @@ -71,6 +71,14 @@ tinyerp-server (5.0.0~alpha-1) experimental; urgency=low -- Daniel Baumann Sun, 9 Nov 2008 15:52:00 +0100 +tinyerp-server (4.2.3.4-3) unstable; urgency=high + + * Updating python depends (Closes: #506615). + * Adding note about initializising the database in README.Debian + (Closes: #464557). + + -- Daniel Baumann Mon, 10 Nov 2008 12:40:00 +0100 + tinyerp-server (4.2.3.4-2) unstable; urgency=low * Correcting chown calls in postinst. From ac492ca7bb0cfea1038984fe19d841647c307348 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:41 +0300 Subject: [PATCH 100/251] Using quilt rather than dpatch. bzr revid: p_christ@hol.gr-20090421090641-hav4l9vkdmvu8qdj --- debian/control | 2 +- debian/patches/00list | 3 --- .../{01-autobuild.dpatch => 01-autobuild.patch} | 8 ++------ debian/patches/{03-migrate.dpatch => 02-migrate.patch} | 8 ++------ debian/patches/{04-shebang.dpatch => 03-shebang.patch} | 8 ++------ debian/patches/series | 3 +++ debian/rules | 10 +++++----- 7 files changed, 15 insertions(+), 27 deletions(-) delete mode 100644 debian/patches/00list rename debian/patches/{01-autobuild.dpatch => 01-autobuild.patch} (68%) rename debian/patches/{03-migrate.dpatch => 02-migrate.patch} (82%) rename debian/patches/{04-shebang.dpatch => 03-shebang.patch} (77%) create mode 100644 debian/patches/series diff --git a/debian/control b/debian/control index 34a0494fef2..1a3e6567b16 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: openerp-server Section: net Priority: optional Maintainer: Daniel Baumann -Build-Depends: debhelper (>= 7), dpatch, python-dev +Build-Depends: debhelper (>= 7), quilt, python-dev Build-Depends-Indep: python-lxml, python-xml, python-libxslt1, python-psycopg2 Standards-Version: 3.8.0 Homepage: http://www.openerp.com/ diff --git a/debian/patches/00list b/debian/patches/00list deleted file mode 100644 index ca43e8f060f..00000000000 --- a/debian/patches/00list +++ /dev/null @@ -1,3 +0,0 @@ -01-autobuild.dpatch -03-migrate.dpatch -04-shebang.dpatch diff --git a/debian/patches/01-autobuild.dpatch b/debian/patches/01-autobuild.patch similarity index 68% rename from debian/patches/01-autobuild.dpatch rename to debian/patches/01-autobuild.patch index 25b00dd8c63..eb1fb1e2d79 100644 --- a/debian/patches/01-autobuild.dpatch +++ b/debian/patches/01-autobuild.patch @@ -1,9 +1,5 @@ -#!/bin/sh /usr/share/dpatch/dpatch-run -## 01-autobuild.dpatch by Daniel Baumann -## -## DP: Disable modules check to make it buildable without X11. - -@DPATCH@ +Author: Daniel Baumann +Description: Disable modules check to make it buildable without X11. diff -Naurp openerp-server.orig/setup.py openerp-server/setup.py --- openerp-server.orig/setup.py 2008-11-03 21:33:56.000000000 +0000 diff --git a/debian/patches/03-migrate.dpatch b/debian/patches/02-migrate.patch similarity index 82% rename from debian/patches/03-migrate.dpatch rename to debian/patches/02-migrate.patch index 3bde7b143eb..3004042cb5b 100644 --- a/debian/patches/03-migrate.dpatch +++ b/debian/patches/02-migrate.patch @@ -1,9 +1,5 @@ -#!/bin/sh /usr/share/dpatch/dpatch-run -## 03-migrate.dpatch by Brian DeRocher -## -## DP: Correct SQL syntax in migrate script (Closes: #467517). - -@DPATCH@ +Author: Brian DeRocher +Description: Correct SQL syntax in migrate script (Closes: #467517). diff -Naurp openerp-server.orig/doc/migrate/3.4.0-4.0.0/pre.py openerp-server/doc/migrate/3.4.0-4.0.0/pre.py --- openerp-server.orig/doc/migrate/3.4.0-4.0.0/pre.py 2008-11-03 21:33:56.000000000 +0000 diff --git a/debian/patches/04-shebang.dpatch b/debian/patches/03-shebang.patch similarity index 77% rename from debian/patches/04-shebang.dpatch rename to debian/patches/03-shebang.patch index 12cda65a8cc..7add479b084 100644 --- a/debian/patches/04-shebang.dpatch +++ b/debian/patches/03-shebang.patch @@ -1,9 +1,5 @@ -#!/bin/sh /usr/share/dpatch/dpatch-run -## 04-shebang.dpatch by Daniel Baumann -## -## DP: Correcting shebang. - -@DPATCH@ +Author: Daniel Baumann +Description: Correcting shebang. diff -Naurp openerp-server.orig/bin/addons/document/ftpserver/ftpserver.py openerp-server/bin/addons/document/ftpserver/ftpserver.py --- openerp-server.orig/bin/addons/document/ftpserver/ftpserver.py 2008-12-16 11:06:22.000000000 +0000 diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 00000000000..6d5ba4c38b4 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1,3 @@ +01-autobuild.patch +02-migrate.patch +03-shebang.patch diff --git a/debian/rules b/debian/rules index 9c75747afc4..83d9bfa54fe 100755 --- a/debian/rules +++ b/debian/rules @@ -1,9 +1,9 @@ #!/usr/bin/make -f -include /usr/share/dpatch/dpatch.make +include /usr/share/quilt/quilt.make clean: clean-patched unpatch -clean-patched: patch-stamp +clean-patched: patch dh_testdir dh_testroot rm -f build-stamp @@ -15,9 +15,9 @@ clean-patched: patch-stamp dh_clean -build: patch-stamp +build: -install: build +install: patch dh_testdir dh_testroot dh_prep @@ -40,7 +40,7 @@ binary: binary-indep binary-arch: -binary-indep: build install +binary-indep: install dh_testdir dh_testroot dh_installchangelogs doc/Changelog From cab7c5e7ac388f9ce6d28c4e1982abfa822ae314 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:42 +0300 Subject: [PATCH 101/251] Updating year in copyright file. bzr revid: p_christ@hol.gr-20090421090642-0e4ybsya1qdvkn70 --- debian/copyright | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/copyright b/debian/copyright index 1d87b615d5d..6a75021214c 100644 --- a/debian/copyright +++ b/debian/copyright @@ -2,7 +2,7 @@ Author: Tiny.be Download: http://www.openerp.com/ Files: * -Copyright: (C) 2004-2008 Tiny.be +Copyright: (C) 2004-2009 Tiny.be License: GPL-3+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -226,7 +226,7 @@ License: other permission. Files: debian/* -Copyright: (C) 2005-2008 Daniel Baumann +Copyright: (C) 2005-2009 Daniel Baumann License: GPL-3+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by From 7fe5ac935474ee01c29d2e16b90d5a45e9c1e549 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:42 +0300 Subject: [PATCH 102/251] Updating python-openssl depends. bzr revid: p_christ@hol.gr-20090421090642-jj8y1j4ia766164v --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 1a3e6567b16..484bdf8714b 100644 --- a/debian/control +++ b/debian/control @@ -15,7 +15,7 @@ Architecture: all Depends: ${misc:Depends}, adduser, python, python-lxml, python-xml, python-libxslt1, python-psycopg2, python-reportlab, python-pychart, python-pydot, python-tz Conflicts: tinyerp-server Replaces: tinyerp-server -Recommends: graphviz, ghostscript, postgresql, postgresql-client, python-imaging, python-matplotlib, python-pyopenssl, python-pyparsing +Recommends: graphviz, ghostscript, postgresql, postgresql-client, python-imaging, python-matplotlib, python-openssl, python-pyparsing Suggests: openerp-client Description: Enterprise Resource Management (server) OpenERP, previously known as TinyERP, is a complete ERP and CRM. The main From 5f9030e7e9fd05b2e0249823bf4c59e7af8caffe Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:42 +0300 Subject: [PATCH 103/251] Updating lintian overrides. bzr revid: p_christ@hol.gr-20090421090642-kgdo9fuzeidznvk0 --- debian/openerp-server.lintian-overrides | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian/openerp-server.lintian-overrides b/debian/openerp-server.lintian-overrides index b99e0ccf133..25b1165c4be 100644 --- a/debian/openerp-server.lintian-overrides +++ b/debian/openerp-server.lintian-overrides @@ -1,3 +1,7 @@ # 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 From de9b4b27c3fcf95c2eecbe56e66c1e3a14ad6e73 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:42 +0300 Subject: [PATCH 104/251] Releasing debian version 5.0.0~rc3-1. bzr revid: p_christ@hol.gr-20090421090642-usl1ak3jkry7x49j --- debian/changelog | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/debian/changelog b/debian/changelog index 724ef1e0575..8e1ed14de53 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +openerp-server (5.0.0~rc3-1) unstable; urgency=low + + * Adding note about initializing the database in README.Debian. + * Adding changelog for debian version 4.2.3.4-3. + * Merging upstream version 5.0.0~rc3. + * Using quilt rather than dpatch. + * Updating year in copyright file. + * Updating python-openssl depends. + * Updating lintian overrides. + + -- Daniel Baumann Fri, 9 Jan 2009 18:31:00 -0500 + openerp-server (5.0.0~rc2-1) unstable; urgency=low * Updating python xml depends (Closes: #508911). From 2b56be1827af0215670f8d390dabe41337da4b53 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:43 +0300 Subject: [PATCH 105/251] Releasing debian version 5.0.0-1. bzr revid: p_christ@hol.gr-20090421090643-b2hvnq7ezdw1v252 --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 8e1ed14de53..e429e09d33d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +openerp-server (5.0.0-1) unstable; urgency=low + + * Merging upstream version 5.0.0. + + -- Daniel Baumann Sat, 7 Feb 2009 13:33:00 +0100 + openerp-server (5.0.0~rc3-1) unstable; urgency=low * Adding note about initializing the database in README.Debian. From 77935e0e11eaf0be35e81c0a5645466a56c1cf64 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:43 +0300 Subject: [PATCH 106/251] Updating README.Debian. bzr revid: p_christ@hol.gr-20090421090643-20e99v1ruj9bh2sx --- debian/openerp-server.README.Debian | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/openerp-server.README.Debian b/debian/openerp-server.README.Debian index 9121c5ef68b..1b83104b366 100644 --- a/debian/openerp-server.README.Debian +++ b/debian/openerp-server.README.Debian @@ -7,7 +7,11 @@ explanation how to achieve this (you need to execute all commands as root): 0. Making sure, PostgreSQL is running - # /etc/init.d/postgresql* restart + # /etc/init.d/postgresql restart + + Note that depending on the version of PostgreSQL installed on your system, + the above syvinit script could also be named postgresql-VERSION (whereas + 'VERSION' needs to be replace with a version number). 1. Creating the database @@ -23,7 +27,7 @@ explanation how to achieve this (you need to execute all commands as root): 4. Initializing the database - # /usr/bin/openerp-server --init=all + # su - postgres -c "/usr/sbin/openerp-server --init=all" 5. Restarting openerp-server From c0566127206037f9e257431aa8836cb8277d421a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:43 +0300 Subject: [PATCH 107/251] Releasing debian version 5.0.0-2-1. bzr revid: p_christ@hol.gr-20090421090643-yka9ajp31wcqxi4a --- debian/changelog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/debian/changelog b/debian/changelog index e429e09d33d..ac290837b06 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +openerp-server (5.0.0-2-1) unstable; urgency=low + + * Merging upstream version 5.0.0-2 (Closes: #514920). + * Updating README.Debian. + + -- Daniel Baumann Sat, 14 Feb 2009 00:12:00 +0100 + openerp-server (5.0.0-1) unstable; urgency=low * Merging upstream version 5.0.0. From afbf7f0b82bcd39dac4e9db2b1d381d1ae156b2c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:43 +0300 Subject: [PATCH 108/251] Improving init call in README.Debian, thanks to David Goodenough . bzr revid: p_christ@hol.gr-20090421090643-tyl0li1kantdyq9t --- debian/openerp-server.README.Debian | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/openerp-server.README.Debian b/debian/openerp-server.README.Debian index 1b83104b366..13e7dde7295 100644 --- a/debian/openerp-server.README.Debian +++ b/debian/openerp-server.README.Debian @@ -27,7 +27,8 @@ explanation how to achieve this (you need to execute all commands as root): 4. Initializing the database - # su - postgres -c "/usr/sbin/openerp-server --init=all" + # su - postgres -c "/usr/sbin/openerp-server --init=all \ + --config=/etc/openerp-server.conf --stop-after-init" 5. Restarting openerp-server From a049add06f2de51b7b0fcf6a179a247725f78142 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:44 +0300 Subject: [PATCH 109/251] Fixed wrapping in README.Debian. bzr revid: p_christ@hol.gr-20090421090644-ilkonfopxfknnl2s --- debian/openerp-server.README.Debian | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/openerp-server.README.Debian b/debian/openerp-server.README.Debian index 13e7dde7295..8414958ba41 100644 --- a/debian/openerp-server.README.Debian +++ b/debian/openerp-server.README.Debian @@ -21,9 +21,9 @@ explanation how to achieve this (you need to execute all commands as root): # su - postgres -c "createuser -q --createdb --adduser openerp" - Note: If you want to run the database as another user than 'openerp', you need - to replace 'openerp' above with the user you want instead, and you need to - adjust 'db_user = openerp' in /etc/openerp-server.conf too. + Note: If you want to run the database as another user than 'openerp', you + need to replace 'openerp' above with the user you want instead, and you + need to adjust 'db_user = openerp' in /etc/openerp-server.conf too. 4. Initializing the database From 0f594d183916324b31779079aa95c0b9c43a49d3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 21 Apr 2009 12:06:44 +0300 Subject: [PATCH 110/251] Releasing debian version 5.0.0-3-1. bzr revid: p_christ@hol.gr-20090421090644-zlaxputcp9xyd5va --- debian/changelog | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/debian/changelog b/debian/changelog index ac290837b06..f9bf2aa9869 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +openerp-server (5.0.0-3-1) unstable; urgency=low + + * Merging upstream version 5.0.0-3. + * Improving init call in README.Debian, thanks to David Goodenough + . + * Fixed wrapping in README.Debian. + + -- Daniel Baumann Sat, 14 Feb 2009 00:51:00 +0100 + openerp-server (5.0.0-2-1) unstable; urgency=low * Merging upstream version 5.0.0-2 (Closes: #514920). From 02177cd1e00ba3e8d3d8e8debfef19057cb43c2c Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 21 Apr 2009 19:19:37 +0300 Subject: [PATCH 111/251] Allow copying of res.group. With this patch, access groups can be duplicated. Solves the 'unique(name)' constraint for the new instance. bzr revid: p_christ@hol.gr-20090421161937-odqnx1ycmwvp04mp --- bin/addons/base/res/res_user.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bin/addons/base/res/res_user.py b/bin/addons/base/res/res_user.py index ec96b07dc0c..31a09135369 100644 --- a/bin/addons/base/res/res_user.py +++ b/bin/addons/base/res/res_user.py @@ -67,6 +67,14 @@ class groups(osv.osv): return gid + def copy(self, cr, uid, id, default={}, context={}, done_list=[], local=False): + group = self.browse(cr, uid, id, context=context) + default = default.copy() + if not 'name' in default: + default['name'] = group['name'] + default['name'] = default['name'] + _(' (copy)') + return super(groups, self).copy(cr, uid, id, default, context=context) + groups() From c25b122b3c2803d75ac95a947f3419cc8fc87968 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 1 May 2009 23:48:18 +0300 Subject: [PATCH 112/251] Workflow: optimize out one SQL command. bzr revid: p_christ@hol.gr-20090501204818-fzmdw4w09bcukr4n --- bin/workflow/instance.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/workflow/instance.py b/bin/workflow/instance.py index b78b5ae7dbe..99e041ab860 100644 --- a/bin/workflow/instance.py +++ b/bin/workflow/instance.py @@ -28,9 +28,8 @@ import pooler def create(cr, ident, wkf_id): (uid,res_type,res_id) = ident - cr.execute("select nextval('wkf_instance_id_seq')") + cr.execute('insert into wkf_instance (res_type,res_id,uid,wkf_id) values (%s,%s,%s,%s) RETURNING id', (res_type,res_id,uid,wkf_id)) id_new = cr.fetchone()[0] - cr.execute('insert into wkf_instance (id,res_type,res_id,uid,wkf_id) values (%s,%s,%s,%s,%s)', (id_new,res_type,res_id,uid,wkf_id)) cr.execute('select * from wkf_activity where flow_start=True and wkf_id=%s', (wkf_id,)) res = cr.dictfetchall() stack = [] From b7fe61abe9d0369de3c4a064bd89d0266a0d1d41 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 5 May 2009 00:18:03 +0300 Subject: [PATCH 113/251] Workflows: tolerate non-ending, missing instances. bzr revid: p_christ@hol.gr-20090504211803-pcqu4w9x50v693p8 --- bin/addons/base/ir/workflow/print_instance.py | 5 ++++- bin/workflow/instance.py | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/addons/base/ir/workflow/print_instance.py b/bin/addons/base/ir/workflow/print_instance.py index 7a12e5902d3..495c4a2f5a8 100644 --- a/bin/addons/base/ir/workflow/print_instance.py +++ b/bin/addons/base/ir/workflow/print_instance.py @@ -82,7 +82,10 @@ def graph_get(cr, graph, wkf_id, nested=False, workitem={}): start = cr.fetchone()[0] cr.execute("select 'subflow.'||name,id from wkf_activity where flow_stop=True and wkf_id=%s", (wkf_id,)) stop = cr.fetchall() - stop = (stop[0][1], dict(stop)) + if (stop): + stop = (stop[0][1], dict(stop)) + else: + stop = ("stop",{}) return ((start,{}),stop) diff --git a/bin/workflow/instance.py b/bin/workflow/instance.py index 99e041ab860..8f1c8455598 100644 --- a/bin/workflow/instance.py +++ b/bin/workflow/instance.py @@ -43,6 +43,7 @@ def delete(cr, ident): def validate(cr, inst_id, ident, signal, force_running=False): cr.execute("select * from wkf_workitem where inst_id=%s", (inst_id,)) + stack = None for witem in cr.dictfetchall(): stack = [] workitem.process(cr, witem, ident, signal, force_running, stack=stack) From 465a2cb3c970b99aed253d31468a3f6315fc2f6e Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 5 May 2009 01:17:58 +0300 Subject: [PATCH 114/251] Module technical guide: allow extended documentation. bzr revid: p_christ@hol.gr-20090504221758-26sqirpis8h3sm3y --- .../module/report/ir_module_reference.rml | 6 ++++ .../report/ir_module_reference_print.py | 29 ++++++++++++++++++- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/bin/addons/base/module/report/ir_module_reference.rml b/bin/addons/base/module/report/ir_module_reference.rml index 1e09766e3e6..6f428d079c6 100644 --- a/bin/addons/base/module/report/ir_module_reference.rml +++ b/bin/addons/base/module/report/ir_module_reference.rml @@ -233,6 +233,12 @@ Object: [[ object.model ]] [[ objdoc(object.model) ]] + + + [[ repeatIn(objdoc2(object.model), 'sline') ]] + [[ sline ]] + +
diff --git a/bin/addons/base/module/report/ir_module_reference_print.py b/bin/addons/base/module/report/ir_module_reference_print.py index 92029014bac..14f23a57541 100644 --- a/bin/addons/base/module/report/ir_module_reference_print.py +++ b/bin/addons/base/module/report/ir_module_reference_print.py @@ -30,11 +30,38 @@ class ir_module_reference_print(report_sxw.rml_parse): 'time': time, 'findobj': self._object_find, 'objdoc': self._object_doc, + 'objdoc2': self._object_doc2, 'findflds': self._fields_find, }) def _object_doc(self, obj): modobj = self.pool.get(obj) - return modobj.__doc__ + strdocs= modobj.__doc__ + if not strdocs: + return None + else: + strdocs=strdocs.strip().splitlines(True) + res = '' + for stre in strdocs: + if not stre or stre.isspace(): + break + res += stre + return res + + def _object_doc2(self, obj): + modobj = self.pool.get(obj) + strdocs= modobj.__doc__ + if not strdocs: + return None + else: + strdocs=strdocs.strip().splitlines(True) + res = [] + fou = False + for stre in strdocs: + if fou: + res.append(stre.strip()) + elif not stre or stre.isspace(): + fou = True + return res def _object_find(self, module): ids2 = self.pool.get('ir.model.data').search(self.cr, self.uid, [('module','=',module), ('model','=','ir.model')]) From 8de2eac02926265d7f122f4dc88d35f549df5974 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 5 May 2009 01:28:18 +0300 Subject: [PATCH 115/251] Workflow print: a little narrower diagram, to fit an A4. bzr revid: p_christ@hol.gr-20090504222818-wkjgi0d2p0o9u0l0 --- bin/addons/base/ir/workflow/print_instance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/addons/base/ir/workflow/print_instance.py b/bin/addons/base/ir/workflow/print_instance.py index 495c4a2f5a8..e180866bfd4 100644 --- a/bin/addons/base/ir/workflow/print_instance.py +++ b/bin/addons/base/ir/workflow/print_instance.py @@ -147,7 +147,7 @@ showpage''' else: inst_id = inst_id[0] graph = pydot.Dot(fontsize='16', label="""\\\n\\nWorkflow: %s\\n OSV: %s""" % (wkfinfo['name'],wkfinfo['osv']), - size='10.7, 7.3', center='1', ratio='auto', rotate='90', rankdir='LR' + size='10.1, 7.3', center='1', ratio='auto', rotate='90', rankdir='LR' ) graph_instance_get(cr, graph, inst_id, data.get('nested', False)) ps_string = graph.create(prog='dot', format='ps') From 8fdcadcd9900f948f776c13543185ef4cc26445f Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 6 May 2009 23:10:28 +0300 Subject: [PATCH 116/251] Workflow print: use portrait mode, top-to bottom diagram. bzr revid: p_christ@hol.gr-20090506201028-lk1obx8sbuc4q0n2 --- bin/addons/base/ir/workflow/print_instance.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/addons/base/ir/workflow/print_instance.py b/bin/addons/base/ir/workflow/print_instance.py index e180866bfd4..9e7a8926701 100644 --- a/bin/addons/base/ir/workflow/print_instance.py +++ b/bin/addons/base/ir/workflow/print_instance.py @@ -147,7 +147,8 @@ showpage''' else: inst_id = inst_id[0] graph = pydot.Dot(fontsize='16', label="""\\\n\\nWorkflow: %s\\n OSV: %s""" % (wkfinfo['name'],wkfinfo['osv']), - size='10.1, 7.3', center='1', ratio='auto', rotate='90', rankdir='LR' + size='7.3, 10.1', center='1', ratio='auto', rotate='0', rankdir='TB', + ordering='out' ) graph_instance_get(cr, graph, inst_id, data.get('nested', False)) ps_string = graph.create(prog='dot', format='ps') From 85ef2e1086881357a460c9c4e7abb42f8a2894c1 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 7 May 2009 00:36:12 +0300 Subject: [PATCH 117/251] Fix report custom fonts, after recent changes in report engine. bzr revid: p_christ@hol.gr-20090506213612-gf543bm7cbyrutb9 --- bin/report/render/rml2pdf/trml2pdf.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bin/report/render/rml2pdf/trml2pdf.py b/bin/report/render/rml2pdf/trml2pdf.py index 96b592dc203..964a383f918 100644 --- a/bin/report/render/rml2pdf/trml2pdf.py +++ b/bin/report/render/rml2pdf/trml2pdf.py @@ -772,6 +772,12 @@ class _rml_template(object): def parseNode(rml, localcontext = {},fout=None, images={}, path='.',title=None): node = etree.XML(rml) r = _rml_doc(node, localcontext, images, path, title=title) + #try to override some font mappings + try: + from customfonts import SetCustomFonts + SetCustomFonts(r) + except: + pass fp = cStringIO.StringIO() r.render(fp) return fp.getvalue() From 2ccc62618474149847b284f469c693bd9f41dff9 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 7 May 2009 00:36:37 +0300 Subject: [PATCH 118/251] Translate: fix import of superfluous ids. bzr revid: p_christ@hol.gr-20090506213637-y473wcgc6qvxbdyc --- bin/tools/translate.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index d6e4a7c5270..0af189b84c7 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -713,6 +713,8 @@ def trans_load_data(db_name, fileobj, fileformat, lang, strict=False, lang_name= # if the resource id (res_id) is in that list, use it, # otherwise use the whole list + if not ids: + ids = [] ids = (dic['res_id'] in ids) and [dic['res_id']] or ids for id in ids: dic['res_id'] = id From eac36b4a19c57a922cf412e9d894c585f68a9360 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 7 May 2009 20:17:06 +0300 Subject: [PATCH 119/251] Port txt report to new report engine. bzr revid: p_christ@hol.gr-20090507171706-ozmwxiuwv5jf1q4p --- bin/report/interface.py | 4 +- bin/report/preprocess.py | 8 +- bin/report/render/rml.py | 7 +- bin/report/render/rml2html/rml2html.py | 4 +- bin/report/render/rml2txt/__init__.py | 2 +- bin/report/render/rml2txt/rml2txt.py | 116 +++++++++++++++---------- bin/report/render/rml2txt/utils.py | 116 ++++++++++++++++++++----- bin/report/report_sxw.py | 6 +- 8 files changed, 183 insertions(+), 80 deletions(-) diff --git a/bin/report/interface.py b/bin/report/interface.py index 486ba5e5347..bcbcd0f53fb 100644 --- a/bin/report/interface.py +++ b/bin/report/interface.py @@ -205,8 +205,8 @@ class report_rml(report_int): obj.render() return obj.get() - def create_txt(self, xml, logo=None, title=None): - obj = render.rml2txt(xml, self.bin_datas) + def create_txt(self, rml,localcontext, logo=None, title=None): + obj = render.rml2txt(rml, localcontext, self.bin_datas) obj.render() return obj.get().encode('utf-8') diff --git a/bin/report/preprocess.py b/bin/report/preprocess.py index 441df892c1c..dbb6f4c37b0 100644 --- a/bin/report/preprocess.py +++ b/bin/report/preprocess.py @@ -6,7 +6,7 @@ html_parents = ['tr','body','div'] sxw_parents = ['{http://openoffice.org/2000/table}table-row','{http://openoffice.org/2000/office}body','{http://openoffice.org/2000/text}section'] class report(object): - def preprocess_rml(self, root_node,type='pdf'): + def preprocess_rml(self, root_node,ntype='pdf'): _regex1 = re.compile("\[\[(.*?)(repeatIn\(.*?\s*,\s*[\'\"].*?[\'\"]\s*(?:,\s*(.*?)\s*)?\s*\))(.*?)\]\]") _regex11= re.compile("\[\[(.*?)(repeatIn\(.*?\s*\(.*?\s*[\'\"].*?[\'\"]\s*\),[\'\"].*?[\'\"](?:,\s*(.*?)\s*)?\s*\))(.*?)\]\]") _regex2 = re.compile("\[\[(.*?)(removeParentNode\(\s*(?:['\"](.*?)['\"])\s*\))(.*?)\]\]") @@ -35,9 +35,9 @@ class report(object): if len(txt.group(4)) > 1: return " " match = rml_parents - if type in ['odt','sxw']: + if ntype in ['odt','sxw']: match = sxw_parents - if type =='html2html': + if ntype =='html2html': match = html_parents if txt.group(3): match = [txt.group(3)] @@ -51,7 +51,7 @@ class report(object): t = _regex11.sub(_sub1, node.text) t = _regex3.sub(_sub3, t) node.text = _regex2.sub(_sub2, t) - self.preprocess_rml(node,type) + self.preprocess_rml(node,ntype) return root_node if __name__=='__main__': diff --git a/bin/report/render/rml.py b/bin/report/render/rml.py index e695cb39311..d0b2d23683a 100644 --- a/bin/report/render/rml.py +++ b/bin/report/render/rml.py @@ -52,13 +52,14 @@ class rml2html(render.render): return htmlizer.parseString(self.rml,self.localcontext) class rml2txt(render.render): - def __init__(self, xml, datas={}): + def __init__(self, rml, localcontext= None, datas={}): super(rml2txt, self).__init__(datas) - self.xml = xml + self.rml = rml + self.localcontext = localcontext self.output_type = 'txt' def _render(self): - return txtizer.parseString(self.xml) + return txtizer.parseString(self.rml, self.localcontext) class odt2odt(render.render): def __init__(self, rml, localcontext = None, datas = {}): diff --git a/bin/report/render/rml2html/rml2html.py b/bin/report/render/rml2html/rml2html.py index 5e7bb5cf4e9..9987caaab26 100644 --- a/bin/report/render/rml2html/rml2html.py +++ b/bin/report/render/rml2html/rml2html.py @@ -455,7 +455,7 @@ if __name__=="__main__": rml2html_help() print parseString(file(sys.argv[1], 'r').read()), else: - print 'Usage: trml2pdf input.rml >output.pdf' - print 'Try \'trml2pdf --help\' for more information.' + print 'Usage: rml2html input.rml >output.html' + print 'Try \'rml2html --help\' for more information.' # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/bin/report/render/rml2txt/__init__.py b/bin/report/render/rml2txt/__init__.py index b37936ae9d3..410b9f53379 100644 --- a/bin/report/render/rml2txt/__init__.py +++ b/bin/report/render/rml2txt/__init__.py @@ -20,7 +20,7 @@ # ############################################################################## -from rml2txt import parseString +from rml2txt import parseString, parseNode # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/bin/report/render/rml2txt/rml2txt.py b/bin/report/render/rml2txt/rml2txt.py index ed99a3df215..05fc5475343 100755 --- a/bin/report/render/rml2txt/rml2txt.py +++ b/bin/report/render/rml2txt/rml2txt.py @@ -40,8 +40,9 @@ import sys import StringIO -import xml.dom.minidom import copy +from lxml import etree +import base64 import utils @@ -80,6 +81,8 @@ class textbox(): """Append some text to the current line. Mimic the HTML behaviour, where all whitespace evaluates to a single space """ + if not txt: + return bs = es = False if txt[0].isspace(): bs = True @@ -135,7 +138,7 @@ class textbox(): class _flowable(object): - def __init__(self, template, doc): + def __init__(self, template, doc,localcontext): self._tags = { '1title': self._tag_title, '1spacer': self._tag_spacer, @@ -149,6 +152,7 @@ class _flowable(object): } self.template = template self.doc = doc + self.localcontext = localcontext self.nitags = [] self.tbox = None @@ -174,7 +178,7 @@ class _flowable(object): return node.toxml() def _tag_spacer(self, node): - length = 1+int(utils.unit_get(node.getAttribute('length')))/35 + length = 1+int(utils.unit_get(node.get('length')))/35 return "\n"*length def _tag_table(self, node): @@ -182,14 +186,14 @@ class _flowable(object): saved_tb = self.tb self.tb = None sizes = None - if node.hasAttribute('colWidths'): - sizes = map(lambda x: utils.unit_get(x), node.getAttribute('colWidths').split(',')) + if node.get('colWidths'): + sizes = map(lambda x: utils.unit_get(x), node.get('colWidths').split(',')) trs = [] - for n in node.childNodes: - if n.nodeType == node.ELEMENT_NODE and n.localName == 'tr': + for n in utils._child_get(node,self): + if n.tag == 'tr': tds = [] - for m in n.childNodes: - if m.nodeType == node.ELEMENT_NODE and m.localName == 'td': + for m in utils._child_get(n,self): + if m.tag == 'td': self.tb = textbox() self.rec_render_cnodes(m) tds.append(self.tb) @@ -228,21 +232,19 @@ class _flowable(object): self.rec_render_cnodes(node) def rec_render_cnodes(self,node): - for n in node.childNodes: - self.rec_render(n) + self.tb.appendtxt(utils._process_text(self, node.text or '')) + for n in utils._child_get(node,self): + self.rec_render(n) + self.tb.appendtxt(utils._process_text(self, node.tail or '')) def rec_render(self,node): """ Recursive render: fill outarr with text of current node """ - if node.nodeType == node.TEXT_NODE: - self.tb.appendtxt(node.data) - elif node.nodeType==node.ELEMENT_NODE: - if node.localName in self._tags: - self._tags[node.localName](node) + if node.tag != None: + if node.tag in self._tags: + self._tags[node.tag](node) else: - self.warn_nitag(node.localName) - else: - verbose("Unknown nodeType: %d" % node.nodeType) + self.warn_nitag(node.tag) def render(self, node): self.tb= textbox() @@ -288,8 +290,8 @@ class _rml_tmpl_frame(_rml_tmpl_tag): class _rml_tmpl_draw_string(_rml_tmpl_tag): def __init__(self, node, style): - self.posx = utils.unit_get(node.getAttribute('x')) - self.posy = utils.unit_get(node.getAttribute('y')) + self.posx = utils.unit_get(node.get('x')) + self.posy = utils.unit_get(node.get('y')) aligns = { 'drawString': 'left', 'drawRightString': 'right', @@ -348,12 +350,12 @@ class _rml_stylesheet(object): 'alignment': lambda x: ('text-align',str(x)) } result = '' - for ps in stylesheet.getElementsByTagName('paraStyle'): + for ps in stylesheet.findall('paraStyle'): attr = {} attrs = ps.attributes for i in range(attrs.length): name = attrs.item(i).localName - attr[name] = ps.getAttribute(name) + attr[name] = ps.get(name) attrs = [] for a in attr: if a in self._tags: @@ -369,9 +371,9 @@ class _rml_draw_style(object): def __init__(self): self.style = {} self._styles = { - 'fill': lambda x: {'td': {'color':x.getAttribute('color')}}, - 'setFont': lambda x: {'td': {'font-size':x.getAttribute('size')+'px'}}, - 'stroke': lambda x: {'hr': {'color':x.getAttribute('color')}}, + 'fill': lambda x: {'td': {'color':x.get('color')}}, + 'setFont': lambda x: {'td': {'font-size':x.get('size')+'px'}}, + 'stroke': lambda x: {'hr': {'color':x.get('color')}}, } def update(self, node): if node.localName in self._styles: @@ -391,7 +393,8 @@ class _rml_draw_style(object): return ';'.join(['%s:%s' % (x[0],x[1]) for x in self.style[tag].items()]) class _rml_template(object): - def __init__(self, template): + def __init__(self, localcontext, out, node, doc, images={}, path='.', title=None): + self.localcontext = localcontext self.frame_pos = -1 self.frames = [] self.template_order = [] @@ -404,16 +407,16 @@ class _rml_template(object): 'lines': _rml_tmpl_draw_lines } self.style = _rml_draw_style() - for pt in template.getElementsByTagName('pageTemplate'): + for pt in node.findall('pageTemplate'): frames = {} - id = pt.getAttribute('id') + id = pt.get('id') self.template_order.append(id) - for tmpl in pt.getElementsByTagName('frame'): - posy = int(utils.unit_get(tmpl.getAttribute('y1'))) #+utils.unit_get(tmpl.getAttribute('height'))) - posx = int(utils.unit_get(tmpl.getAttribute('x1'))) - frames[(posy,posx,tmpl.getAttribute('id'))] = _rml_tmpl_frame(posx, utils.unit_get(tmpl.getAttribute('width'))) - for tmpl in template.getElementsByTagName('pageGraphics'): - for n in tmpl.childNodes: + for tmpl in pt.findall('frame'): + posy = int(utils.unit_get(tmpl.get('y1'))) #+utils.unit_get(tmpl.get('height'))) + posx = int(utils.unit_get(tmpl.get('x1'))) + frames[(posy,posx,tmpl.get('id'))] = _rml_tmpl_frame(posx, utils.unit_get(tmpl.get('width'))) + for tmpl in node.findall('pageGraphics'): + for n in tmpl.getchildren(): if n.nodeType==n.ELEMENT_NODE: if n.localName in self._tags: t = self._tags[n.localName](n, self.style) @@ -480,21 +483,46 @@ class _rml_template(object): return result class _rml_doc(object): - def __init__(self, data): - self.dom = xml.dom.minidom.parseString(data) - self.filename = self.dom.documentElement.getAttribute('filename') + def __init__(self, node, localcontext, images={}, path='.', title=None): + self.localcontext = localcontext + self.etree = node + self.filename = self.etree.get('filename') self.result = '' def render(self, out): - template = _rml_template(self.dom.documentElement.getElementsByTagName('template')[0]) - f = _flowable(template, self.dom) - self.result += f.render(self.dom.documentElement.getElementsByTagName('story')[0]) - del f + #el = self.etree.findall('docinit') + #if el: + #self.docinit(el) + + #el = self.etree.findall('stylesheet') + #self.styles = _rml_styles(el,self.localcontext) + + el = self.etree.findall('template') + self.result ="" + if len(el): + pt_obj = _rml_template(self.localcontext, out, el[0], self) + stories = utils._child_get(self.etree, self, 'story') + for story in stories: + if self.result: + self.result += '\f' + f = _flowable(pt_obj,story,self.localcontext) + self.result += f.render(story) + del f + else: + self.result = "" self.result += '\n' out.write( self.result) -def parseString(data, fout=None): - r = _rml_doc(data) +def parseNode(rml, localcontext = {},fout=None, images={}, path='.',title=None): + node = etree.XML(rml) + r = _rml_doc(node, localcontext, images, path, title=title) + fp = StringIO.StringIO() + r.render(fp) + return fp.getvalue() + +def parseString(rml, localcontext = {},fout=None, images={}, path='.',title=None): + node = etree.XML(rml) + r = _rml_doc(node, localcontext, images, path, title=title) if fout: fp = file(fout,'wb') r.render(fp) diff --git a/bin/report/render/rml2txt/utils.py b/bin/report/render/rml2txt/utils.py index 7186cc13fff..789d79f13cf 100644 --- a/bin/report/render/rml2txt/utils.py +++ b/bin/report/render/rml2txt/utils.py @@ -1,8 +1,8 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -20,37 +20,110 @@ # ############################################################################## +# trml2pdf - An RML to PDF converter +# Copyright (C) 2003, Fabien Pinckaers, UCL, FSA +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + import re import reportlab import reportlab.lib.units +from lxml import etree + +_regex = re.compile('\[\[(.+?)\]\]') + +def _child_get(node, self=None, tagname=None): + for n in node: + if self and self.localcontext and n.get('rml_loop', False): + oldctx = self.localcontext + for ctx in eval(n.get('rml_loop'),{}, self.localcontext): + self.localcontext.update(ctx) + if (tagname is None) or (n.tag==tagname): + if n.get('rml_except', False): + try: + eval(n.get('rml_except'), {}, self.localcontext) + except: + continue + if n.get('rml_tag'): + try: + (tag,attr) = eval(n.get('rml_tag'),{}, self.localcontext) + n2 = copy.copy(n) + n2.tag = tag + n2.attrib.update(attr) + yield n2 + except: + yield n + else: + yield n + self.localcontext = oldctx + continue + if self and self.localcontext and n.get('rml_except', False): + try: + eval(n.get('rml_except'), {}, self.localcontext) + except: + continue + if (tagname is None) or (n.tag==tagname): + yield n + +def _process_text(self, txt): + if not self.localcontext: + return txt + if not txt: + return '' + result = '' + sps = _regex.split(txt) + while sps: + # This is a simple text to translate + result += self.localcontext.get('translate', lambda x:x)(sps.pop(0)) + if sps: + try: + txt2 = eval(sps.pop(0),self.localcontext) + except: + txt2 = '' + if type(txt2) == type(0) or type(txt2) == type(0.0): + txt2 = str(txt2) + if type(txt2)==type('') or type(txt2)==type(u''): + result += txt2 + return result def text_get(node): rc = '' - for node in node.childNodes: - if node.nodeType == node.TEXT_NODE: - rc = rc + node.data + for node in node.getchildren(): + rc = rc + node.text return rc units = [ (re.compile('^(-?[0-9\.]+)\s*in$'), reportlab.lib.units.inch), - (re.compile('^(-?[0-9\.]+)\s*cm$'), reportlab.lib.units.cm), + (re.compile('^(-?[0-9\.]+)\s*cm$'), reportlab.lib.units.cm), (re.compile('^(-?[0-9\.]+)\s*mm$'), reportlab.lib.units.mm), - (re.compile('^(-?[0-9\.]+)\s*px$'), 0.7), (re.compile('^(-?[0-9\.]+)\s*$'), 1) ] def unit_get(size): global units - for unit in units: - res = unit[0].search(size, 0) - if res: - return int(unit[1]*float(res.group(1))*1.3) + if size: + for unit in units: + res = unit[0].search(size, 0) + if res: + return unit[1]*float(res.group(1)) return False def tuple_int_get(node, attr_name, default=None): - if not node.hasAttribute(attr_name): + if not node.get(attr_name): return default - res = [int(x) for x in node.getAttribute(attr_name).split(',')] + res = [int(x) for x in node.get(attr_name).split(',')] return res def bool_get(value): @@ -59,17 +132,18 @@ def bool_get(value): def attr_get(node, attrs, dict={}): res = {} for name in attrs: - if node.hasAttribute(name): - res[name] = unit_get(node.getAttribute(name)) + if node.get(name): + res[name] = unit_get(node.get(name)) for key in dict: - if node.hasAttribute(key): + if node.get(key): if dict[key]=='str': - res[key] = str(node.getAttribute(key)) + res[key] = str(node.get(key)) elif dict[key]=='bool': - res[key] = bool_get(node.getAttribute(key)) + res[key] = bool_get(node.get(key)) elif dict[key]=='int': - res[key] = int(node.getAttribute(key)) + res[key] = int(node.get(key)) + elif dict[key]=='unit': + res[key] = unit_get(node.get(key)) return res -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/bin/report/report_sxw.py b/bin/report/report_sxw.py index 426b738f338..c07f156e2e1 100644 --- a/bin/report/report_sxw.py +++ b/bin/report/report_sxw.py @@ -309,7 +309,7 @@ class rml_parse(object): head_dom = etree.XML(rml_head) for tag in head_dom.getchildren(): found = rml_dom.find('.//'+tag.tag) - if found: + if found is not None: if tag.get('position'): found.append(tag) else : @@ -359,12 +359,12 @@ class report_sxw(report_rml, preprocess.report): report_type = report_xml.report_type if report_type in ['sxw','odt']: fnct = self.create_source_odt - elif report_type in ['pdf','raw','html']: + elif report_type in ['pdf','raw','txt','html']: fnct = self.create_source_pdf elif report_type=='html2html': fnct = self.create_source_html2html else: - raise 'Unknown Report Type' + raise Exception('Unknown Report Type: '+report_type) return fnct(cr, uid, ids, data, report_xml, context) def create_source_odt(self, cr, uid, ids, data, report_xml, context=None): From f27ea7d90522891e9ea6720508c9cdac91ae4d4f Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 16 May 2009 17:56:33 +0300 Subject: [PATCH 120/251] Revert 43e1a90b675, already fixed upstream bzr revid: p_christ@hol.gr-20090516145633-ir5ur6w1gs9hxcx6 --- bin/addons/base/base.sql | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/addons/base/base.sql b/bin/addons/base/base.sql index 1270abe284c..d38fc77b34c 100644 --- a/bin/addons/base/base.sql +++ b/bin/addons/base/base.sql @@ -141,7 +141,6 @@ CREATE TABLE res_users ( active boolean default True, login varchar(64) NOT NULL UNIQUE, password varchar(64) default null, - context_lang varchar(16) default null, context_tz varchar(64) default null, signature text, -- action_id int references ir_act_window on delete set null, From d9460e53c6365d15bfe8d508e8a55f4d1b27e15f Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 16 May 2009 23:10:39 +0300 Subject: [PATCH 121/251] Fix exporting of translations .tgz. bzr revid: p_christ@hol.gr-20090516201039-ecpi4fnw0ux0qt75 --- bin/tools/translate.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 0af189b84c7..7bb61ac676e 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -461,10 +461,7 @@ def trans_generate(lang, modules, dbname=None): def_params = { 'string': ('wizard_field', lambda s: [encode(s)]), - 'selection': ('selection', lambda s: [encode(e[1]) for e in - (not callable(s) and s) or - (callable(s) and s(None, cr, uid, {})) - or [] ]), + 'selection': ('selection', lambda s: [encode(e[1]) for e in ((not callable(s)) and s or [])] ), 'help': ('help', lambda s: [encode(s)]), } From eb88d9d09b551b4d2231d119feb7917bf9fd6aef Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 16 May 2009 23:40:14 +0300 Subject: [PATCH 122/251] Update base.pot. bzr revid: p_christ@hol.gr-20090516204014-1rzas0qcb72d1w2g --- bin/addons/base/i18n/base.pot | 11618 +++++++++++++++----------------- 1 file changed, 5525 insertions(+), 6093 deletions(-) diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index 0b6e0666d07..38aaa799753 100644 --- a/bin/addons/base/i18n/base.pot +++ b/bin/addons/base/i18n/base.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 13:53:08+0000\n" -"PO-Revision-Date: 2009-04-09 13:53:08+0000\n" +"POT-Creation-Date: 2009-05-16 20:02:15+0000\n" +"PO-Revision-Date: 2009-05-16 20:02:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,31 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STOP" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window,target:0 +msgid "Current Window" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Internal Name" +msgstr "" + #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" @@ -25,542 +50,31 @@ msgstr "" msgid "SMS - Gateway: clickatell" msgstr "" +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Monthly" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Unknown" +msgstr "" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%j - Day of the year as a decimal number [001,366]." msgstr "" -#. module: base -#: field:ir.values,meta_unpickle:0 -msgid "Metadata" -msgstr "" - -#. module: base -#: field:ir.ui.view,arch:0 -#: field:ir.ui.view.custom,arch:0 -msgid "View Architecture" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - -#. module: base -#: wizard_field:module.lang.import,init,code:0 -msgid "Code (eg:en__US)" -msgstr "" - -#. module: base -#: view:workflow:0 -#: field:workflow.activity,wkf_id:0 -#: field:workflow.instance,wkf_id:0 -msgid "Workflow" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To browse official translations, you can visit this link: " -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Hungarian / Magyar" -msgstr "" - -#. module: base -#: field:ir.actions.server,wkf_model_id:0 -msgid "Workflow On" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Views" -msgstr "" - -#. module: base -#: view:workflow.activity:0 -msgid "Outgoing transitions" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Yearly" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The unlink method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,target:0 -msgid "Target Window" -msgstr "" - -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_simple_view -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 "" - -#. module: base -#: code:report/custom.py:0 -#, python-format -msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" -msgstr "" - -#. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_custom -msgid "ir.ui.view.custom" -msgstr "" - -#. module: base -#: model:res.country,name:base.sz -msgid "Swaziland" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_custom -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.custom" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CANCEL" -msgstr "" - -#. module: base -#: field:ir.report.custom,sortby:0 -msgid "Sorted By" -msgstr "" - -#. module: base -#: field:ir.sequence,number_increment:0 -msgid "Increment Number" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_tree -#: model:ir.ui.menu,name:base.menu_action_res_company_tree -msgid "Company's Structure" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom_fields -msgid "ir.report.custom.fields" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "new" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_TOP" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,multi:0 -#: field:ir.actions.report.xml,multi:0 -msgid "On multiple doc." -msgstr "" - -#. module: base -#: field:ir.module.category,module_nr:0 -msgid "Number of Modules" -msgstr "" - -#. module: base -#: field:res.partner.bank.type.field,size:0 -msgid "Max. Size" -msgstr "" - -#. module: base -#: field:res.partner.address,name:0 -msgid "Contact Name" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -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 "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password mismatch !" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "active" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,wiz_name:0 -msgid "Wizard Name" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%y - Year without century as a decimal number [00,99]." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "" - -#. module: base -#: help:ir.actions.act_window,limit:0 -msgid "Default limit for the list view" -msgstr "" - -#. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,src_model:0 -msgid "Source Object" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form -#: view:ir.actions.todo:0 -#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form -msgid "Config Wizard Steps" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_sc -msgid "ir.ui.view_sc" -msgstr "" - -#. module: base -#: field:ir.model.access,group_id:0 -#: field:ir.rule,rule_group:0 -msgid "Group" -msgstr "" - -#. module: base -#: field:ir.exports.line,name:0 -#: field:ir.translation,name:0 -#: field:res.partner.bank.type.field,name:0 -msgid "Field Name" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_uninstall -#: model:ir.ui.menu,name:base.menu_module_tree_uninstall -msgid "Uninstalled modules" -msgstr "" - -#. module: base -#: wizard_view:server.action.create,init:0 -#: wizard_field:server.action.create,init,type:0 -msgid "Select Action Type" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Configure" -msgstr "" - -#. module: base -#: model:res.country,name:base.tv -msgid "Tuvalu" -msgstr "" - -#. module: base -#: selection:ir.model,state:0 -#: selection:ir.model.grid,state:0 -msgid "Custom Object" -msgstr "" - -#. module: base -#: field:res.lang,date_format:0 -msgid "Date Format" -msgstr "" - -#. module: base -#: field:res.bank,email:0 -#: field:res.partner.address,email:0 -msgid "E-Mail" -msgstr "" - -#. module: base -#: model:res.country,name:base.an -msgid "Netherlands Antilles" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" -msgstr "" - -#. module: base -#: model:res.country,name:base.gf -msgid "French Guyana" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bosnian / bosanski jezik" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,attachment_use:0 -msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The read method is not implemented on this object !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_REWIND" -msgstr "" - -#. module: base -#: field:ir.actions.todo,note:0 -msgid "Text" -msgstr "" - -#. module: base -#: field:res.country,name:0 -msgid "Country Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.co -msgid "Colombia" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Schedule Upgrade" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,report_id:0 -msgid "Report Ref." -msgstr "" - -#. module: base -#: help:res.country,code:0 -msgid "The ISO country code in two chars.\n" -"You can use this field for quick search." -msgstr "" - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "Xor" -msgstr "" - -#. module: base -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "" - -#. module: base -#: view:ir.actions.wizard:0 -#: field:wizard.ir.model.menu.create.line,wizard_id:0 -msgid "Wizard" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CUT" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_wizard -#: view:ir.actions.wizard:0 -#: model:ir.ui.menu,name:base.menu_ir_action_wizard -msgid "Wizards" -msgstr "" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Extended Interface" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - -#. module: base -#: help:ir.actions.server,action_id:0 -msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export done" -msgstr "" - -#. module: base -#: view:ir.model:0 -msgid "Model Description" -msgstr "" - -#. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expression" -msgstr "" - -#. module: base -#: model:res.country,name:base.jo -msgid "Jordan" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the model '%s' !" -msgstr "" - -#. module: base -#: model:res.country,name:base.er -msgid "Eritrea" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Configure simple view" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bulgarian / български" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_actions -msgid "ir.actions.actions" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_report_custom -#: view:ir.report.custom:0 -msgid "Custom Report" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Bar Chart" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_ERROR" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDEX" -msgstr "" - -#. module: base -#: model:res.country,name:base.rs -msgid "Serbia" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard View" -msgstr "" - -#. module: base -#: model:res.country,name:base.kh -msgid "Cambodia, Kingdom of" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_form -#: view:ir.sequence:0 -#: model:ir.ui.menu,name:base.menu_ir_sequence_form -#: model:ir.ui.menu,name:base.next_id_5 -msgid "Sequences" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_QUESTION" -msgstr "" - -#. module: base -#: model:res.country,name:base.pg -msgid "Papua New Guinea" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_4 -msgid "Basic Partner" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "," -msgstr "" - -#. module: base -#: model:res.country,name:base.es -msgid "Spain" -msgstr "" - #. module: base #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 @@ -568,1459 +82,33 @@ msgid "You may have to reinstall some language pack." msgstr "" #. module: base -#: field:res.partner.address,mobile:0 -msgid "Mobile" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE" msgstr "" #. module: base -#: model:res.country,name:base.om -msgid "Oman" +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_payterm_form -#: model:ir.model,name:base.model_res_payterm -msgid "Payment term" -msgstr "" - -#. module: base -#: model:res.country,name:base.nu -msgid "Niue" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Work Days" -msgstr "" - -#. module: base -#: help:ir.values,action_id:0 -msgid "This field is not used, it only helps you to select the right action." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_menu_create -#: view:wizard.ir.model.menu.create:0 -msgid "Create Menu" -msgstr "" - -#. module: base -#: model:res.country,name:base.in -msgid "India" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_module -msgid "maintenance contract modules" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "client_action_multi, client_action_relate" -msgstr "" - -#. module: base -#: model:res.country,name:base.ad -msgid "Andorra, Principality of" -msgstr "" - -#. module: base -#: field:ir.module.category,child_ids:0 -#: field:res.partner.category,child_ids:0 -msgid "Child Categories" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "TGZ Archive" -msgstr "" - -#. module: base -#: field:res.partner.som,factor:0 -msgid "Factor" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%B - Full month name." -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_type:0 -#: field:ir.actions.todo,type:0 -#: field:ir.server.object.lines,type:0 -#: field:ir.translation,type:0 -#: field:ir.values,key:0 -#: view:res.partner:0 -msgid "Type" +#: view:ir.actions.act_window:0 +msgid "Open Window" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_FILE" -msgstr "" - -#. module: base -#: model:res.country,name:base.gu -msgid "Guam (USA)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_grid -msgid "Objects Security Grid" +msgid "STOCK_DIALOG_QUESTION" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_DOWN" +msgid "terp-account" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OK" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -#: selection:workflow.activity,kind:0 -msgid "Dummy" -msgstr "" - -#. module: base -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You try to bypass an access rule (Document type: %s)." -msgstr "" - -#. module: base -#: model:res.country,name:base.ky -msgid "Cayman Islands" -msgstr "" - -#. module: base -#: field:ir.rule,operand:0 -msgid "Operand" -msgstr "" - -#. module: base -#: field:ir.sequence,name:0 -#: field:ir.sequence.type,name:0 -msgid "Sequence Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.td -msgid "Chad" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish (AR) / Español (AR)" -msgstr "" - -#. module: base -#: model:res.country,name:base.ug -msgid "Uganda" -msgstr "" - -#. module: base -#: model:res.country,name:base.ne -msgid "Niger" -msgstr "" - -#. module: base -#: model:res.country,name:base.ba -msgid "Bosnia-Herzegovina" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,alignment:0 -msgid "Alignment" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid ">=" -msgstr "" - -#. module: base -#: view:res.lang:0 -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 "" - -#. module: base -#: field:res.partner.event,planned_cost:0 -msgid "Planned Cost" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_config -msgid "ir.model.config" -msgstr "" - -#. module: base -#: field:ir.module.module,website:0 -#: field:res.partner,website:0 -msgid "Website" -msgstr "" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - -#. module: base -#: view:ir.module.repository:0 -msgid "Repository" -msgstr "" - -#. module: base -#: model:res.country,name:base.gs -msgid "S. Georgia & S. Sandwich Isls." -msgstr "" - -#. module: base -#: field:ir.actions.url,url:0 -msgid "Action URL" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_FILL" -msgstr "" - -#. module: base -#: model:res.country,name:base.mh -msgid "Marshall Islands" -msgstr "" - -#. module: base -#: model:res.country,name:base.ht -msgid "Haiti" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "RML" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_main -msgid "Partners by Categories" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Pie charts need exactly two fields" -msgstr "" - -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "" - -#. module: base -#: model:res.country,name:base.md -msgid "Moldavia" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Features" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -#: field:maintenance.contract.module,version:0 -msgid "Version" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc0_op:0 -#: field:ir.report.custom.fields,fc1_op:0 -#: field:ir.report.custom.fields,fc2_op:0 -#: field:ir.report.custom.fields,fc3_op:0 -msgid "Relation" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_exports -msgid "ir.exports" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MISSING_IMAGE" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Define New Users" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REMOVE" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "raw" -msgstr "" - -#. module: base -#: help:ir.actions.server,email:0 -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 "" - -#. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "" - -#. module: base -#: field:res.partner,user_id:0 -msgid "Dedicated Salesman" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "-" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The search method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:res.payterm,name:0 -msgid "Payment Term (short name)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_bank -#: view:res.bank:0 -#: field:res.partner.bank,bank:0 -msgid "Bank" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "Examples" -msgstr "" - -#. module: base -#: field:ir.module.module,reports_by_module:0 -msgid "Reports" -msgstr "" - -#. module: base -#: field:workflow,on_create:0 -msgid "On Create" -msgstr "" - -#. module: base -#: wizard_view:base.module.import,init:0 -msgid "Please give your module .ZIP file to import." -msgstr "" - -#. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,user:0 -#: field:res.users,login:0 -msgid "Login" -msgstr "" - -#. module: base -#: view:maintenance.contract:0 -#: field:maintenance.contract,module_ids:0 -msgid "Covered Modules" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COPY" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request_link -msgid "res.request.link" -msgstr "" - -#. module: base -#: wizard_button:module.module.update,init,update:0 -msgid "Check new modules" -msgstr "" - -#. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_server_action -#: view:ir.actions.server:0 -#: model:ir.ui.menu,name:base.menu_server_action -msgid "Server Actions" -msgstr "" - -#. module: base -#: model:res.country,name:base.tp -msgid "East Timor" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "Simple domain setup" -msgstr "" - -#. module: base -#: field:res.currency,accuracy:0 -msgid "Computational Accuracy" -msgstr "" - -#. module: base -#: model:res.country,name:base.kg -msgid "Kyrgyz Republic (Kyrgyzstan)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line -msgid "wizard.ir.model.menu.create.line" -msgstr "" - -#. module: base -#: field:ir.attachment,res_id:0 -msgid "Attached ID" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Day: %(day)s" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND_AND_REPLACE" -msgstr "" - -#. module: base -#: model:res.country,name:base.mv -msgid "Maldives" -msgstr "" - -#. module: base -#: help:ir.values,res_id:0 -msgid "Keep 0 if the action must appear on all resources." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_rule -msgid "ir.rule" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Days" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,width:0 -msgid "Fixed Width" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-calendar" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Some installed modules depends on the module you plan to desinstall :\n %s" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_YES" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_custom -#: model:ir.ui.menu,name:base.menu_ir_action_report_custom -msgid "Report Custom" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "7. %H:%M:%S ==> 18:25:20" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_form -#: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form -#: view:res.partner:0 -msgid "Partners" -msgstr "" - -#. module: base -#: help:ir.actions.server,message:0 -msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" -msgstr "" - -#. module: base -#: field:ir.attachment,res_model:0 -msgid "Attached Model" -msgstr "" - -#. module: base -#: field:ir.actions.server,trigger_name:0 -msgid "Trigger Name" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_access -msgid "ir.model.access" -msgstr "" - -#. module: base -#: field:ir.cron,priority:0 -#: field:ir.ui.view,priority:0 -#: field:res.request,priority:0 -#: field:res.request.link,priority:0 -msgid "Priority" -msgstr "" - -#. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Legend (for prefix, suffix)" -msgstr "" - -#. module: base -#: selection:ir.server.object.lines,type:0 -msgid "Formula" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Can not remove root user!" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_LEFT" -msgstr "" - -#. module: base -#: model:res.country,name:base.mw -msgid "Malawi" -msgstr "" - -#. module: base -#: field:res.partner.address,type:0 -msgid "Address Type" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Auto" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "End of Request" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "References" -msgstr "" - -#. module: base -#: view:res.lang:0 -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 "" - -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Note that this operation may take a few minutes." -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,view_type:0 -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Tree" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Could you check your contract information ?" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLEAR" -msgstr "" - -#. module: base -#: help:res.users,password:0 -msgid "Keep empty if you don't want the user to be able to connect on the system." -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_mode:0 -#: field:res.config.view,view:0 -msgid "View Mode" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented search_memory method !" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish / Español" -msgstr "" - -#. module: base -#: field:res.company,logo:0 -msgid "Logo" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PROPERTIES" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Uninstall (beta)" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,target:0 -#: selection:ir.actions.url,target:0 -msgid "New Window" -msgstr "" - -#. module: base -#: model:res.country,name:base.bs -msgid "Bahamas" -msgstr "" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Commercial Prospect" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Couldn't generate the next id because some partners have an alphabetic id !" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: base -#: model:res.country,name:base.ie -msgid "Ireland" -msgstr "" - -#. module: base -#: wizard_field:module.module.update,update,update:0 -msgid "Number of modules updated" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented set_memory method !" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,groups_id:0 -#: model:ir.actions.act_window,name:base.action_res_groups -#: field:ir.actions.report.xml,groups_id:0 -#: field:ir.actions.todo,groups_id:0 -#: field:ir.actions.wizard,groups_id:0 -#: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 -#: field:ir.ui.menu,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups -#: view:res.groups:0 -#: view:res.users:0 -#: field:res.users,groups_id:0 -msgid "Groups" -msgstr "" - -#. module: base -#: model:res.country,name:base.bz -msgid "Belize" -msgstr "" - -#. module: base -#: model:res.country,name:base.ge -msgid "Georgia" -msgstr "" - -#. module: base -#: model:res.country,name:base.pl -msgid "Poland" -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "To be removed" -msgstr "" - -#. module: base -#: field:ir.values,meta:0 -msgid "Meta Datas" -msgstr "" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "This wizard will detect new terms in the application so that you can update them manually." -msgstr "" - -#. module: base -#: help:ir.actions.server,expression:0 -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 "" - -#. module: base -#: field:ir.model,name:0 -#: field:ir.model.fields,model:0 -#: field:ir.model.grid,name:0 -#: field:ir.values,model:0 -msgid "Object Name" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Field" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_COLOR" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NO" -msgstr "" - -#. module: base -#: model:res.country,name:base.st -msgid "Saint Tome (Sao Tome) and Principe" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Invoice" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REDO" -msgstr "" - -#. module: base -#: model:res.country,name:base.bb -msgid "Barbados" -msgstr "" - -#. module: base -#: model:res.country,name:base.mg -msgid "Madagascar" -msgstr "" - -#. module: base -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: base -#: field:ir.actions.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 -#: view:ir.ui.menu:0 -#: field:ir.ui.menu,name:0 -msgid "Menu" -msgstr "" - -#. module: base -#: field:res.currency,rate:0 -msgid "Current Rate" -msgstr "" - -#. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Original View" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Action To Launch" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -#: selection:ir.rule,operator:0 -msgid "in" -msgstr "" - -#. module: base -#: field:ir.actions.url,target:0 -msgid "Action Target" -msgstr "" - -#. module: base -#: model:res.country,name:base.ai -msgid "Anguilla" -msgstr "" - -#. module: base -#: field:ir.model.config,password_check:0 -msgid "Confirmation" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Enter at least one field !" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,name:0 -msgid "Shortcut Name" -msgstr "" - -#. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "" - -#. module: base -#: help:ir.actions.server,write_id:0 -msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." -msgstr "" - -#. module: base -#: model:res.country,name:base.zw -msgid "Zimbabwe" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_export -msgid "Import / Export" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_user_form -#: view:res.users:0 -msgid "Configure User" -msgstr "" - -#. module: base -#: field:ir.actions.server,email:0 -msgid "Email Address" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -#: field:workflow.activity,action_id:0 -msgid "Server Action" -msgstr "" - -#. module: base -#: model:res.country,name:base.tt -msgid "Trinidad and Tobago" -msgstr "" - -#. module: base -#: model:res.country,name:base.lv -msgid "Latvia" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Values" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mappings" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Customization" -msgstr "" - -#. module: base -#: model:res.country,name:base.py -msgid "Paraguay" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "left" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_close -msgid "ir.actions.act_window_close" -msgstr "" - -#. module: base -#: field:ir.server.object.lines,col1:0 -msgid "Destination" -msgstr "" - -#. module: base -#: model:res.country,name:base.lt -msgid "Lithuania" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT_PREVIEW" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "" - -#. module: base -#: model:res.country,name:base.si -msgid "Slovenia" -msgstr "" - -#. module: base -#: view:res.partner.canal:0 -#: field:res.partner.event,canal_id:0 -msgid "Channel" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%p - Equivalent of either AM or PM." -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Actions" -msgstr "" - -#. module: base -#: field:maintenance.contract,date_stop:0 -msgid "Ending Date" -msgstr "" - -#. module: base -#: model:res.country,name:base.nz -msgid "New Zealand" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_7 -msgid "Openstuff.net" -msgstr "" - -#. module: base -#: model:res.country,name:base.nf -msgid "Norfolk Island" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PLAY" -msgstr "" - -#. module: base -#: field:ir.rule,operator:0 -msgid "Operator" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Installation Done" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OPEN" -msgstr "" - -#. module: base -#: field:ir.actions.server,action_id:0 -#: selection:ir.actions.server,state:0 -msgid "Client Action" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "right" -msgstr "" - -#. module: base -#: model:res.country,name:base.bd -msgid "Bangladesh" -msgstr "" - -#. module: base -#: constraint:res.company:0 -msgid "Error! You can not create recursive companies." -msgstr "" - -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Valid" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "XSL" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_other_form -#: model:ir.ui.menu,name:base.menu_partner_other_form -msgid "Others Partners" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Can not upgrade module '%s'. It is not installed." -msgstr "" - -#. module: base -#: model:res.country,name:base.cu -msgid "Cuba" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%S - Second as a decimal number [00,61]." -msgstr "" - -#. module: base -#: model:res.country,name:base.am -msgid "Armenia" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year with century: %(year)s" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Daily" -msgstr "" - -#. module: base -#: model:res.country,name:base.se -msgid "Sweden" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Gantt" -msgstr "" - -#. module: base -#: view:ir.property:0 -msgid "Property" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type -#: view:res.partner.bank.type:0 -msgid "Bank Account Type" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-project" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Action Configuration" -msgstr "" - -#. module: base -#: model:res.country,name:base.at -msgid "Austria" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Calendar" -msgstr "" - -#. module: base -#: field:workflow.activity,signal_send:0 -msgid "Signal (subflow.*)" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_17 -msgid "HR sector" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -msgid "Module dependency" -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Draft" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_CENTER" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Choose Your Mode" -msgstr "" - -#. module: base -#: field:res.company,rml_footer1:0 -msgid "Report Footer 1" -msgstr "" - -#. module: base -#: field:res.company,rml_footer2:0 -msgid "Report Footer 2" -msgstr "" - -#. module: base -#: view:ir.model.access:0 -#: model:ir.ui.menu,name:base.menu_security_access -#: view:res.groups:0 -#: field:res.groups,model_access:0 -msgid "Access Controls" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -#: field:ir.module.module,dependencies_id:0 -msgid "Dependencies" -msgstr "" - -#. module: base -#: field:res.partner,parent_id:0 -msgid "Main Company" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,bgcolor:0 -msgid "Background Color" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "If you use a formula type, use a python expression using the variable 'object'." -msgstr "" - -#. module: base -#: field:res.partner.address,birthdate:0 -msgid "Birthdate" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_contact -#: model:ir.ui.menu,name:base.menu_partner_title_contact -msgid "Contact Titles" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_som -msgid "res.partner.som" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_activity -msgid "workflow.activity" -msgstr "" - -#. module: base -#: field:ir.model.fields,select_level:0 -msgid "Searchable" -msgstr "" - -#. module: base -#: model:res.country,name:base.uy -msgid "Uruguay" -msgstr "" - -#. module: base -#: view:res.partner.event:0 -msgid "Document Link" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_title -msgid "res.partner.title" -msgstr "" - -#. module: base -#: field:ir.sequence,prefix:0 -msgid "Prefix" -msgstr "" - -#. module: base -#: field:ir.actions.server,loop_action:0 -msgid "Loop Action" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "German / Deutsch" -msgstr "" - -#. module: base -#: help:ir.actions.server,trigger_name:0 -msgid "Select the Signal name that is to be used as the trigger." -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Fields Mapping" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "" - -#. module: base -#: wizard_button:module.upgrade,next,start:0 -msgid "Start Upgrade" -msgstr "" - -#. module: base -#: field:ir.default,ref_id:0 -msgid "ID Ref." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "French / Français" -msgstr "" - -#. module: base -#: model:res.country,name:base.mt -msgid "Malta" -msgstr "" - -#. module: base -#: field:ir.actions.server,fields_lines:0 -msgid "Field Mappings." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 -#: view:ir.module.module:0 -#: field:ir.module.module.dependency,module_id:0 -#: rml:ir.module.reference:0 -msgid "Module" -msgstr "" - -#. module: base -#: field:ir.attachment,description:0 -#: field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 -#: view:res.partner.event:0 -#: field:res.partner.event,description:0 -#: view:res.request:0 -msgid "Description" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_attachment -msgid "ir.attachment" -msgstr "" - -#. module: base -#: field:res.users,action_id:0 -msgid "Home Action" -msgstr "" - -#. module: base -#: field:res.lang,grouping:0 -msgid "Separator Format" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export language" -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Unvalidated" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_9 -msgid "Database Structure" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard -#: wizard_view:res.partner.spam_send,init:0 -msgid "Mass Mailing" -msgstr "" - -#. module: base -#: model:res.country,name:base.yt -msgid "Mayotte" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "You can also import .po files." -msgstr "" - -#. module: base -#: code:addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "Unable to find a valid contract" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify an action to launch !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_RIGHT" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_function -msgid "Function of the contact" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_upgrade -#: model:ir.ui.menu,name:base.menu_module_tree_upgrade -msgid "Modules to be installed, upgraded or removed" -msgstr "" - -#. module: base -#: view:res.payterm:0 -msgid "Payment Term" -msgstr "" - -#. module: base -#: field:ir.report.custom,footer:0 -msgid "Report Footer" -msgstr "" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Right-to-Left" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Please check that all your lines have %d columns." -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import language" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_cron_act -#: view:ir.cron:0 -#: model:ir.ui.menu,name:base.menu_ir_cron_act -msgid "Scheduled Actions" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: base @@ -2031,20 +119,49 @@ msgid "Title" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Recursivity Detected." +#: wizard_field:res.partner.sms_send,init,text:0 +msgid "SMS Message" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_grid +msgid "Objects Security Grid" +msgstr "" + +#. module: base +#: model:res.country,name:base.cm +msgid "Cameroon" +msgstr "" + +#. module: base +#: model:res.country,name:base.bf +msgid "Burkina Faso" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "terp-account" +msgid "STOCK_SORT_ASCENDING" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Recursion error in modules dependencies !" +#: view:ir.model:0 +#: view:res.groups:0 +msgid "Access Rules" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONNECT" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base @@ -2053,8 +170,47 @@ msgid "Create a Menu" msgstr "" #. module: base -#: help:res.partner,vat:0 -msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "" + +#. module: base +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "" + +#. module: base +#: model:res.country,name:base.tg +msgid "Togo" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.report.custom,model:0 +#: field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 +#: field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 +#: field:ir.default,field_tbl:0 +#: view:ir.model:0 +#: field:ir.model,model:0 +#: field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 +#: field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 +#: field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 +#: field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 +#: field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +msgid "Object" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " msgstr "" #. module: base @@ -2063,21 +219,86 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Email Configuration" +msgstr "" + +#. module: base +#: model:res.country,name:base.cc +msgid "Cocos (Keeling) Islands" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Hungarian / Magyar" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_default +msgid "ir.default" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "" + +#. module: base +#: view:res.company:0 +msgid "Header/Footer" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_ERROR" +msgstr "" + +#. module: base +#: field:ir.actions.server,wkf_model_id:0 +msgid "Workflow On" +msgstr "" + #. module: base #: model:res.country,name:base.dm msgid "Dominica" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch / Nederlands" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "" + +#. module: base +#: field:ir.sequence,padding:0 +msgid "Number padding" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form #: model:ir.ui.menu,name:base.menu_action_res_roles_form @@ -2094,13 +315,100 @@ msgid "Countries" msgstr "" #. module: base -#: view:ir.rule.group:0 -msgid "Record rules" +#: field:ir.rule,operator:0 +msgid "Operator" msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "" + +#. module: base +#: model:res.country,name:base.pm +msgid "Saint Pierre and Miquelon" +msgstr "" + +#. module: base +#: model:res.country,name:base.to +msgid "Tonga" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "" + +#. module: base +#: model:res.country,name:base.vu +msgid "Vanuatu" +msgstr "" + +#. module: base +#: wizard_view:server.action.create,step_1:0 +#: wizard_field:server.action.create,step_1,report:0 +msgid "Select Report" +msgstr "" + +#. module: base +#: view:ir.actions.wizard:0 +#: field:wizard.ir.model.menu.create.line,wizard_id:0 +msgid "Wizard" +msgstr "" + +#. module: base +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "" + +#. module: base +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "1cm 28cm 20cm 28cm" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "" + +#. module: base +#: model:res.country,name:base.mo +msgid "Macau" +msgstr "" + +#. module: base +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" msgstr "" #. module: base @@ -2109,8 +417,27 @@ msgid "12. %w ==> 5 ( Friday is the 6th day)" msgstr "" #. module: base -#: constraint:res.partner.category:0 -msgid "Error ! You can not create recursive categories." +#: field:ir.rule.group,global:0 +msgid "Global" +msgstr "" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "" + +#. module: base +#: field:ir.model.config,password:0 +#: field:maintenance.contract,password:0 +#: field:maintenance.contract.wizard,password:0 +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:res.users,password:0 +msgid "Password" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" msgstr "" #. module: base @@ -2127,8 +454,44 @@ msgid "Regexp to search module on the repository webpage:\n" msgstr "" #. module: base -#: view:res.lang:0 -msgid "%M - Minute as a decimal number [00,59]." +#: field:ir.default,field_name:0 +msgid "Object Field" +msgstr "" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_simple_view +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 "" + +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" + +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "" + +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" msgstr "" #. module: base @@ -2136,6 +499,21 @@ msgstr "" msgid "Tajikistan" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "" + +#. module: base +#: model:res.country,name:base.tr +msgid "Turkey" +msgstr "" + +#. module: base +#: model:res.country,name:base.fk +msgid "Falkland Islands" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_values_form_action #: model:ir.ui.menu,name:base.menu_values_form_action @@ -2147,15 +525,95 @@ msgstr "" msgid "GPL-2 or later version" msgstr "" +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NEW" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_custom +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.custom" +msgstr "" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CANCEL" +msgstr "" + #. module: base #: selection:res.partner.event,type:0 msgid "Prospect Contact" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_actions_wizard -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.wizard" +#: selection:ir.report.custom.fields,operation:0 +msgid "None" +msgstr "" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "" + +#. module: base +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "" + +#. module: base +#: field:ir.actions.report.custom,type:0 +#: field:ir.actions.report.xml,type:0 +#: field:ir.report.custom,type:0 +msgid "Report Type" +msgstr "" + +#. module: base +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_tree +#: model:ir.ui.menu,name:base.menu_action_res_company_tree +msgid "Company's Structure" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "" + +#. module: base +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" msgstr "" #. module: base @@ -2164,8 +622,19 @@ msgid "Nauru" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_property -msgid "ir.property" +#: model:res.country,name:base.no +msgid "Norway" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "4. %b, %B ==> Dec, December" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Load an Official Translation" msgstr "" #. module: base @@ -2177,9 +646,8 @@ msgid "Form" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Can not define a column %s. Reserved keyword !" +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" msgstr "" #. module: base @@ -2187,14 +655,83 @@ msgstr "" msgid "Montenegro" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_QUIT" msgstr "" #. module: base -#: view:ir.cron:0 -msgid "Technical Data" +#: help:ir.actions.server,loop_action:0 +msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "waiting" +msgstr "" + +#. module: base +#: model:res.country,name:base.va +msgid "Holy See (Vatican City State)" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Connect Events to Actions" +msgstr "" + +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,fc0_op:0 +#: field:ir.report.custom.fields,fc1_op:0 +#: field:ir.report.custom.fields,fc2_op:0 +#: field:ir.report.custom.fields,fc3_op:0 +msgid "Relation" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_TOP" +msgstr "" + +#. module: base +#: field:ir.values,meta_unpickle:0 +msgid "Metadata" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%m - Month as a decimal number [01,12]." +msgstr "" + +#. module: base +#: field:ir.actions.todo,state:0 +#: field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 +#: field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 +#: field:res.bank,state:0 +#: view:res.country.state:0 +#: field:res.partner.bank,state_id:0 +#: field:res.request,state:0 +#: field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +msgid "State" msgstr "" #. module: base @@ -2203,6 +740,26 @@ msgstr "" msgid "Categories" msgstr "" +#. module: base +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "" + +#. module: base +#: model:res.country,name:base.id +msgid "Indonesia" +msgstr "" + #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 @@ -2214,11 +771,27 @@ msgstr "" msgid "Libya" msgstr "" +#. module: base +#: field:ir.module.category,parent_id:0 +#: field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-purchase" msgstr "" +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "" + +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" +msgstr "" + #. module: base #: wizard_field:module.module.update,init,repositories:0 msgid "Repositories" @@ -2234,24 +807,115 @@ msgstr "" msgid "Liechtenstein" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +#: selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND_AND_REPLACE" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_ltd msgid "Ltd" msgstr "" +#. module: base +#: selection:res.request,state:0 +msgid "active" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +msgid "Wizard Name" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%y - Year without century as a decimal number [00,99]." +msgstr "" + +#. module: base +#: model:res.country,name:base.as +msgid "American Samoa" +msgstr "" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Custom Field" +msgstr "" + +#. module: base +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" +msgstr "" + #. module: base #: field:res.partner,ean13:0 msgid "EAN13" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree +msgid "Repository list" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +msgid "wizard.ir.model.menu.create.line" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" msgstr "" #. module: base -#: selection:maintenance.contract,state:0 -msgid "Unvalid" +#: view:ir.module.module:0 +msgid "Cancel Uninstall" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "" + +#. module: base +#: view:workflow:0 +#: field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +msgid "Workflow" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,type:0 +#: field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 +#: field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 +#: field:ir.actions.url,type:0 +#: field:ir.actions.wizard,type:0 +msgid "Action Type" +msgstr "" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "" + +#. module: base +#: model:res.country,name:base.vn +msgid "Vietnam" +msgstr "" + +#. module: base +#: model:res.country,name:base.sk +msgid "Slovak Republic" msgstr "" #. module: base @@ -2264,11 +928,87 @@ msgstr "" msgid "6. %d, %m ==> 05, 12" msgstr "" +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "" + +#. module: base +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,report_rml:0 +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: view:ir.actions.todo:0 +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +msgid "Config Wizard Steps" +msgstr "" + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "" + +#. module: base +#: field:ir.model.access,group_id:0 +#: field:ir.rule,rule_group:0 +msgid "Group" +msgstr "" + +#. module: base +#: model:res.country,name:base.sm +msgid "San Marino" +msgstr "" + #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "" + +#. module: base +#: model:res.country,name:base.kw +msgid "Kuwait" +msgstr "" + +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "" + +#. module: base +#: field:ir.actions.server,sms:0 +#: selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "" + +#. module: base +#: model:res.country,name:base.cr +msgid "Costa Rica" +msgstr "" + +#. module: base +#: field:ir.exports.line,name:0 +#: field:ir.translation,name:0 +#: field:res.partner.bank.type.field,name:0 +msgid "Field Name" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window #: model:ir.model,name:base.model_res_lang @@ -2278,8 +1018,33 @@ msgid "Languages" msgstr "" #. module: base -#: model:res.country,name:base.pw -msgid "Palau" +#: field:workflow.workitem,inst_id:0 +msgid "Instance" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." +msgstr "" + +#. module: base +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: base +#: model:res.country,name:base.ng +msgid "Nigeria" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "txt" +msgstr "" + +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." msgstr "" #. module: base @@ -2288,14 +1053,20 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." +#: view:ir.module.module:0 +msgid "Schedule Upgrade" msgstr "" #. module: base -#: model:res.country,name:base.au -msgid "Australia" +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form +#: view:res.currency:0 +msgid "Currencies" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Configure" msgstr "" #. module: base @@ -2303,14 +1074,70 @@ msgstr "" 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 "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "" + #. module: base #: rml:ir.module.reference:0 msgid "Menu :" msgstr "" #. module: base -#: selection:ir.model.fields,state:0 -msgid "Base Field" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + +#. module: base +#: model:res.country,name:base.zr +msgid "Zaire" +msgstr "" + +#. module: base +#: field:res.lang,date_format:0 +msgid "Date Format" +msgstr "" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "" + +#. module: base +#: field:res.bank,email:0 +#: field:res.partner.address,email:0 +msgid "E-Mail" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export Name" +msgstr "" + +#. module: base +#: model:res.country,name:base.an +msgid "Netherlands Antilles" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + +#. module: base +#: model:res.country,name:base.hk +msgid "Hong Kong" msgstr "" #. module: base @@ -2319,9 +1146,18 @@ msgid "New modules" msgstr "" #. module: base -#: field:ir.actions.report.xml,report_sxw_content:0 -#: field:ir.actions.report.xml,report_sxw_content_data:0 -msgid "SXW content" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" + +#. module: base +#: help:ir.actions.server,name:0 +msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" +msgstr "" + +#. module: base +#: field:res.currency,rate:0 +msgid "Current Rate" msgstr "" #. module: base @@ -2329,6 +1165,16 @@ msgstr "" msgid "Action to Trigger" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" +msgstr "" + #. module: base #: field:ir.report.custom.fields,fc0_operande:0 #: field:ir.report.custom.fields,fc1_operande:0 @@ -2344,6 +1190,16 @@ msgstr "" msgid "Default" msgstr "" +#. module: base +#: model:res.country,name:base.dk +msgid "Denmark" +msgstr "" + +#. module: base +#: model:res.country,name:base.ph +msgid "Philippines" +msgstr "" + #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -2351,15 +1207,61 @@ msgid "Required" msgstr "" #. module: base -#: field:ir.model.fields,domain:0 -#: field:ir.rule,domain:0 -#: field:res.partner.title,domain:0 -msgid "Domain" +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" msgstr "" #. module: base -#: field:res.request.history,name:0 -msgid "Summary" +#: field:res.country,code:0 +msgid "Country Code" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Greek / Ελληνικά" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Tree" +msgstr "" + +#. module: base +#: model:res.country,name:base.ma +msgid "Morocco" +msgstr "" + +#. module: base +#: view:res.request.history:0 +msgid "Request History" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bosnian / bosanski jezik" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "10. %S ==> 20" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,attachment_use:0 +msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." +msgstr "" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Partial" msgstr "" #. module: base @@ -2368,8 +1270,55 @@ msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ o msgstr "" #. module: base -#: view:res.company:0 -msgid "Header/Footer" +#: view:res.lang:0 +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "" + +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +msgid "Trigger On" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_request_link +msgid "res.request.link" +msgstr "" + +#. module: base +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" +msgstr "" + +#. module: base +#: model:res.country,name:base.ee +msgid "Estonia" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 +#: view:res.partner.event:0 +msgid "Partner Events" +msgstr "" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +msgstr "" + +#. module: base +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%a - Abbreviated weekday name." msgstr "" #. module: base @@ -2378,18 +1327,33 @@ msgid "Lebanon" msgstr "" #. module: base -#: wizard_field:module.lang.import,init,name:0 -msgid "Language name" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" msgstr "" #. module: base -#: model:res.country,name:base.va -msgid "Holy See (Vatican City State)" +#: rml:ir.module.reference:0 +msgid "Introspection report on objects" msgstr "" #. module: base -#: help:ir.actions.server,condition:0 -msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" +#: model:res.country,name:base.pf +msgid "Polynesia (French)" +msgstr "" + +#. module: base +#: field:res.country,name:0 +msgid "Country Name" +msgstr "" + +#. module: base +#: field:res.company,name:0 +msgid "Company Name" +msgstr "" + +#. module: base +#: model:res.country,name:base.co +msgid "Colombia" msgstr "" #. module: base @@ -2398,13 +1362,35 @@ msgid "Module .ZIP file" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_16 -msgid "Telecom sector" +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +#: wizard_button:res.partner.sms_send,init,send:0 +msgid "Send SMS" msgstr "" #. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Object" +#: field:ir.actions.report.custom,report_id:0 +msgid "Report Ref." +msgstr "" + +#. module: base +#: field:res.roles,child_id:0 +msgid "Children" +msgstr "" + +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + +#. module: base +#: help:res.country,code:0 +msgid "The ISO country code in two chars.\n" +"You can use this field for quick search." +msgstr "" + +#. module: base +#: model:res.country,name:base.pw +msgid "Palau" msgstr "" #. module: base @@ -2412,6 +1398,21 @@ msgstr "" msgid "Subscribed" msgstr "" +#. module: base +#: model:res.country,name:base.ke +msgid "Kenya" +msgstr "" + +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "Select the object on which the action will work (read, write, create)." +msgstr "" + +#. module: base +#: model:res.country,name:base.np +msgid "Nepal" +msgstr "" + #. module: base #: wizard_view:module.lang.install,init:0 #: wizard_view:module.upgrade,next:0 @@ -2423,16 +1424,98 @@ msgstr "" msgid "Incoming Transitions" msgstr "" +#. module: base +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" +msgstr "" + +#. module: base +#: wizard_field:module.lang.import,init,name:0 +msgid "Language name" +msgstr "" + +#. module: base +#: field:res.partner,parent_id:0 +msgid "Main Company" +msgstr "" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Extended Interface" +msgstr "" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "" + #. module: base #: model:res.country,name:base.sr msgid "Suriname" msgstr "" #. module: base -#: field:ir.values,key2:0 -#: view:res.partner.event.type:0 -#: field:res.partner.event.type,name:0 -msgid "Event Type" +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level Objects" +msgstr "" + +#. module: base +#: field:ir.actions.report.custom,multi:0 +#: field:ir.actions.report.xml,multi:0 +msgid "On multiple doc." +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "" + +#. module: base +#: help:ir.actions.server,action_id:0 +msgid "Select the Action Window, Report, Wizard to be executed." +msgstr "" + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 +#: field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +msgid "View Type" +msgstr "" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field +msgid "acc_number" +msgstr "" + +#. module: base +#: view:ir.model:0 +msgid "Model Description" +msgstr "" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Unvalid" +msgstr "" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "Bulk SMS send" msgstr "" #. module: base @@ -2441,20 +1524,95 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: field:res.partner.canal,name:0 +msgid "Channel Name" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Pie Chart" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "" + +#. module: base +#: help:ir.values,key2:0 +msgid "The kind of action or button in the client side that will trigger the action." +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "" + +#. module: base +#: model:res.country,name:base.jo +msgid "Jordan" +msgstr "" + +#. module: base +#: view:ir.rule.group:0 +msgid "Multiple rules on same objects are joined using operator OR" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system." +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: model:res.country,name:base.md +msgid "Moldavia" +msgstr "" + +#. module: base +#: help:ir.model.fields,on_delete:0 +msgid "On delete property for many2one fields" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +msgid "Update Modules List" +msgstr "" + +#. module: base +#: model:res.country,name:base.er +msgid "Eritrea" +msgstr "" + +#. module: base +#: model:res.country,name:base.cd +msgid "Congo, The Democratic Republic of the" +msgstr "" + +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bulgarian / български" msgstr "" #. module: base @@ -2463,9 +1621,8 @@ msgid "License" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Invalid operation" +#: model:res.country,name:base.re +msgid "Reunion (French)" msgstr "" #. module: base @@ -2474,22 +1631,92 @@ msgid "STOCK_SAVE_AS" msgstr "" #. module: base -#: field:ir.actions.server,srcmodel_id:0 -msgid "Model" +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_custom_action +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." +#: view:res.request:0 +#: field:res.request,body:0 +#: field:res.request.history,req_id:0 +msgid "Request" msgstr "" #. module: base -#: field:ir.actions.act_window.view,view_id:0 -#: field:ir.default,page:0 -#: selection:ir.translation,type:0 -#: field:wizard.ir.model.menu.create.line,view_id:0 -msgid "View" +#: model:ir.model,name:base.model_ir_report_custom +msgid "ir.report.custom" +msgstr "" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" +msgstr "" + +#. module: base +#: field:ir.model.fields,model_id:0 +#: field:ir.values,res_id:0 +msgid "Object ID" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +msgid "Default Properties" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Slovenian / slovenščina" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "" + +#. module: base +#: field:ir.actions.server,message:0 +#: wizard_field:res.partner.spam_send,init,text:0 +msgid "Message" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +msgstr "" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_info:0 +msgid "Modules to update" +msgstr "" + +#. module: base +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action2 +msgid "Company Architecture" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" msgstr "" #. module: base @@ -2498,8 +1725,89 @@ msgid "Open a Window" msgstr "" #. module: base -#: model:res.country,name:base.gq -msgid "Equatorial Guinea" +#: model:res.country,name:base.bv +msgid "Bouvet Island" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDEX" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + +#. module: base +#: field:ir.report.custom,print_orientation:0 +msgid "Print orientation" +msgstr "" + +#. module: base +#: model:res.country,name:base.rs +msgid "Serbia" +msgstr "" + +#. module: base +#: view:res.payterm:0 +msgid "Payment Term" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "" + +#. module: base +#: help:ir.actions.server,sequence:0 +msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,header:0 +msgid "Add RML header" +msgstr "" + +#. module: base +#: model:res.country,name:base.cx +msgid "Christmas Island" +msgstr "" + +#. module: base +#: model:res.country,name:base.kh +msgid "Cambodia, Kingdom of" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "" + +#. module: base +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "" + +#. module: base +#: model:res.country,name:base.gr +msgid "Greece" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "User Interface" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + +#. module: base +#: field:res.request,trigger_date:0 +msgid "Trigger Date" msgstr "" #. module: base @@ -2508,16 +1816,36 @@ msgid "Module Import" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the field '%s' !" +#: selection:module.lang.install,init,lang:0 +msgid "Croatian / hrvatski jezik" msgstr "" #. module: base -#: field:res.bank,zip:0 -#: field:res.partner.address,zip:0 -#: field:res.partner.bank,zip:0 -msgid "Zip" +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + +#. module: base +#: model:res.country,name:base.mv +msgid "Maldives" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form +#: view:ir.sequence:0 +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +msgid "Sequences" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." msgstr "" #. module: base @@ -2525,24 +1853,90 @@ msgstr "" msgid "Author" msgstr "" +#. module: base +#: help:ir.actions.server,code:0 +msgid "Python code to be executed" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +msgid "XSL path" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%b - Abbreviated month name." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDELETE" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." +msgstr "" + #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: field:ir.actions.report.xml,attachment_use:0 +msgid "Reload from Attachment" +msgstr "" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner Category" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 +msgid "Trigger" +msgstr "" + +#. module: base +#: help:ir.actions.server,write_id:0 +msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." +msgstr "" + +#. module: base +#: field:res.partner,supplier:0 +msgid "Supplier" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" msgstr "" #. module: base -#: model:res.country,name:base.gh -msgid "Ghana" +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Close" +msgstr "" + +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" msgstr "" #. module: base @@ -2550,6 +1944,11 @@ msgstr "" msgid "Direction" msgstr "" +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Full" +msgstr "" + #. module: base #: model:ir.model,name:base.model_wizard_module_update_translations msgid "wizard.module.update_translations" @@ -2576,14 +1975,18 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "You try to remove a module that is installed or will be installed" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "The kind of action or button in the client side that will trigger the action." +#: rml:ir.module.reference:0 +msgid "," +msgstr "" + +#. module: base +#: field:res.users,menu_id:0 +msgid "Menu Action" msgstr "" #. module: base @@ -2597,9 +2000,36 @@ msgid "Guatemala" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_form -#: model:ir.ui.menu,name:base.menu_workflow -msgid "Workflows" +#: field:ir.model.fields,view_load:0 +msgid "View Auto-Load" +msgstr "" + +#. module: base +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIRECTORY" +msgstr "" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "" + +#. module: base +#: model:res.country,name:base.es +msgid "Spain" msgstr "" #. module: base @@ -2608,6 +2038,81 @@ msgstr "" msgid "Configuration Wizard" msgstr "" +#. module: base +#: view:res.request.link:0 +msgid "Request Link" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "" + +#. module: base +#: field:res.partner.address,mobile:0 +msgid "Mobile" +msgstr "" + +#. module: base +#: model:res.country,name:base.om +msgid "Oman" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "Html from html" +msgstr "" + +#. module: base +#: field:res.lang,time_format:0 +msgid "Time Format" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Iteration" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_low_workflow +msgid "Workflow Items" +msgstr "" + +#. module: base +#: field:res.request,ref_doc2:0 +msgid "Document Ref 2" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +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 "" + +#. module: base +#: field:res.request,ref_doc1:0 +msgid "Document Ref 1" +msgstr "" + +#. module: base +#: model:res.country,name:base.ga +msgid "Gabon" +msgstr "" + +#. module: base +#: model:res.country,name:base.nu +msgid "Niue" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Work Days" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_roles msgid "res.roles" @@ -2619,3837 +2124,11 @@ msgid "0=Very Urgent\n" "10=Not urgent" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Skip" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request_link-act -#: model:ir.ui.menu,name:base.menu_res_request_link_act -msgid "Accepted Links in Requests" -msgstr "" - -#. module: base -#: model:res.country,name:base.ls -msgid "Lesotho" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.grant_menu_access -#: model:ir.ui.menu,name:base.menu_grant_menu_access -msgid "Grant Access To Menus" -msgstr "" - -#. module: base -#: model:res.country,name:base.ke -msgid "Kenya" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occurred while validating the field(s) %s: %s" -msgstr "" - -#. module: base -#: model:res.country,name:base.sm -msgid "San Marino" -msgstr "" - -#. module: base -#: model:res.country,name:base.bm -msgid "Bermuda" -msgstr "" - -#. module: base -#: model:res.country,name:base.pe -msgid "Peru" -msgstr "" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Set NULL" -msgstr "" - -#. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "" - -#. module: base -#: model:res.country,name:base.bj -msgid "Benin" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONNECT" -msgstr "" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Not Searchable" -msgstr "" - -#. module: base -#: field:res.partner.event.type,key:0 -msgid "Key" -msgstr "" - -#. module: base -#: field:ir.cron,nextcall:0 -msgid "Next Call Date" -msgstr "" - -#. module: base -#: field:res.company,rml_header:0 -msgid "RML Header" -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,app_id:0 -msgid "API ID" -msgstr "" - -#. module: base -#: model:res.country,name:base.mu -msgid "Mauritius" -msgstr "" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "Scan for new modules" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_repository -msgid "Module Repository" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_security -msgid "Security" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Using a relation field which uses an unknown object" -msgstr "" - -#. module: base -#: model:res.country,name:base.za -msgid "South Africa" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_wizard_module_lang_export -msgid "wizard.module.lang.export" -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "Installed" -msgstr "" - -#. module: base -#: model:res.country,name:base.sn -msgid "Senegal" -msgstr "" - -#. module: base -#: model:res.country,name:base.hu -msgid "Hungary" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_groups -msgid "res.groups" -msgstr "" - -#. module: base -#: model:res.country,name:base.br -msgid "Brazil" -msgstr "" - -#. module: base -#: field:ir.sequence,number_next:0 -msgid "Next Number" -msgstr "" - -#. module: base -#: view:res.currency:0 -#: field:res.currency,rate_ids:0 -msgid "Rates" -msgstr "" - -#. module: base -#: model:res.country,name:base.sy -msgid "Syria" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "======================================================" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child2:0 -msgid "Field child2" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child3:0 -msgid "Field child3" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child0:0 -msgid "Field child0" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child1:0 -msgid "Field child1" -msgstr "" - -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "draft" -msgstr "" - -#. module: base -#: field:res.currency.rate,name:0 -#: field:res.partner,date:0 -#: field:res.partner.event,date:0 -#: field:res.request,date_sent:0 -msgid "Date" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_sxw:0 -msgid "SXW path" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Groups are used to defined access rights on each screen and menu." -msgstr "" - -#. module: base -#: field:ir.ui.menu,parent_id:0 -#: field:wizard.ir.model.menu.create,menu_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.custom,multi:0 -#: help:ir.actions.report.xml,multi:0 -msgid "If set to true, the action will not be displayed on the right toolbar of a form view." -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: base -#: field:res.lang,decimal_point:0 -msgid "Decimal Separator" -msgstr "" - -#. module: base -#: view:res.partner:0 -#: view:res.request:0 -#: field:res.request,history:0 -msgid "History" -msgstr "" - -#. module: base -#: field:ir.attachment,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: base -#: model:res.country,name:base.mx -msgid "Mexico" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Swedish / svenska" -msgstr "" - -#. module: base -#: field:res.company,child_ids:0 -msgid "Child Companies" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "" - -#. module: base -#: model:res.country,name:base.ni -msgid "Nicaragua" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The write method is not implemented on this object !" -msgstr "" - -#. module: base -#: view:res.partner.event:0 -msgid "General Description" -msgstr "" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Sale Opportunity" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Maintenance contract added !" -msgstr "" - -#. module: base -#: field:ir.rule,field_id:0 -#: selection:ir.translation,type:0 -msgid "Field" -msgstr "" - -#. module: base -#: model:res.country,name:base.ve -msgid "Venezuela" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "9. %j ==> 340" -msgstr "" - -#. module: base -#: model:res.country,name:base.zm -msgid "Zambia" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_xml -#: model:ir.ui.menu,name:base.menu_ir_action_report_xml -msgid "Report Xml" -msgstr "" - -#. module: base -#: help:res.partner,user_id:0 -msgid "The internal user that is in charge of communicating with this partner if any." -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Upgrade" -msgstr "" - -#. module: base -#: model:res.country,name:base.ci -msgid "Ivory Coast (Cote D'Ivoire)" -msgstr "" - -#. module: base -#: model:res.country,name:base.kz -msgid "Kazakhstan" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,name:0 -#: field:ir.actions.todo,name:0 -#: field:ir.cron,name:0 -#: field:ir.model.access,name:0 -#: field:ir.model.fields,name:0 -#: field:ir.module.category,name:0 -#: field:ir.module.module,name:0 -#: field:ir.module.module.dependency,name:0 -#: rml:ir.module.reference:0 -#: field:ir.module.repository,name:0 -#: field:ir.property,name:0 -#: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 -#: field:ir.values,name:0 -#: field:maintenance.contract.module,name:0 -#: field:res.bank,name:0 -#: field:res.config.view,name:0 -#: field:res.lang,name:0 -#: field:res.partner,name:0 -#: field:res.partner.bank.type,name:0 -#: field:res.request.link,name:0 -#: field:res.users,name:0 -#: field:workflow,name:0 -#: field:workflow.activity,name:0 -msgid "Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.ms -msgid "Montserrat" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_app -msgid "Application Terms" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Average" -msgstr "" - -#. module: base -#: field:ir.module.module,demo:0 -msgid "Demo data" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_instance_form -#: model:ir.ui.menu,name:base.menu_workflow_instance -msgid "Instances" -msgstr "" - -#. module: base -#: model:res.country,name:base.aq -msgid "Antarctica" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_view -msgid "ir.actions.act_window.view" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Web" -msgstr "" - -#. module: base -#: field:res.partner.event,planned_revenue:0 -msgid "Planned Revenue" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -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 "" - -#. module: base -#: model:res.country,name:base.et -msgid "Ethiopia" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." -msgstr "" - -#. module: base -#: view:res.roles:0 -msgid "Role" -msgstr "" - -#. module: base -#: help:res.country.state,code:0 -msgid "The state code in three chars.\n" -"" -msgstr "" - -#. module: base -#: model:res.country,name:base.sj -msgid "Svalbard and Jan Mayen Islands" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "Test" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,groupby:0 -msgid "Group By" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_WARNING" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_IN" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "closed" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "get" -msgstr "" - -#. module: base -#: help:ir.model.fields,on_delete:0 -msgid "On delete property for many2one fields" -msgstr "" - -#. module: base -#: field:ir.actions.server,write_id:0 -msgid "Write Id" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,domain:0 -msgid "Domain Value" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ITALIC" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "SMS Configuration" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_access_act -#: model:ir.ui.menu,name:base.menu_ir_access_act -msgid "Access Controls List" -msgstr "" - -#. module: base -#: model:res.country,name:base.um -msgid "USA Minor Outlying Islands" -msgstr "" - -#. module: base -#: field:res.partner.bank,state:0 -#: field:res.partner.bank.type.field,bank_type_id:0 -msgid "Bank Type" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "The name of the group can not start with \"-\"" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,end:0 -#: wizard_view:module.upgrade,start:0 -msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -msgstr "" - -#. module: base -#: view:ir.ui.view_sc:0 -#: field:res.partner.title,shortcut:0 -msgid "Shortcut" -msgstr "" - -#. module: base -#: field:ir.model.data,date_init:0 -msgid "Init Date" -msgstr "" - -#. module: base -#: field:workflow.activity,flow_start:0 -msgid "Flow Start" -msgstr "" - -#. module: base -#: view:ir.model:0 -#: view:ir.model.fields:0 -msgid "Security on Groups" -msgstr "" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank Account Owner" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_values_form -#: model:ir.ui.menu,name:base.menu_values_form -msgid "Client Actions Connections" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,resource:0 -msgid "Resource Name" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Hours" -msgstr "" - -#. module: base -#: model:res.country,name:base.gp -msgid "Guadeloupe (French)" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,cumulate:0 -msgid "Accumulate" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Tree can only be used in tabular reports" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Directory" -msgstr "" - -#. module: base -#: field:wizard.ir.model.menu.create,name:0 -msgid "Menu Name" -msgstr "" - -#. module: base -#: field:ir.report.custom,title:0 -msgid "Report Title" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fontcolor:0 -msgid "Font color" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_DESCENDING" -msgstr "" - -#. module: base -#: model:res.country,name:base.my -msgid "Malaysia" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request_history -msgid "res.request.history" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Client Action Configuration" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_address_form -#: model:ir.model,name:base.model_res_partner_address -#: view:res.partner.address:0 -msgid "Partner Addresses" -msgstr "" - -#. module: base -#: model:res.country,name:base.cv -msgid "Cape Verde" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_res_partner_event -#: field:res.partner,events:0 -#: field:res.partner.event,name:0 -msgid "Events" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles -#: model:ir.ui.menu,name:base.menu_action_res_roles -msgid "Roles Structure" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_url -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.url" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_STOP" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %r, expected an integer." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND_MULTIPLE" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_addess_tree -#: view:res.partner:0 -msgid "Partner Contacts" -msgstr "" - -#. module: base -#: wizard_field:module.module.update,update,add:0 -msgid "Number of modules added" -msgstr "" - -#. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The create method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:workflow.triggers,workitem_id:0 -msgid "Workitem" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_OUT" -msgstr "" - -#. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Email Configuration" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-mrp" -msgstr "" - -#. module: base -#: field:ir.actions.server,trigger_obj_id:0 -msgid "Trigger On" -msgstr "" - -#. module: base -#: model:res.country,name:base.fj -msgid "Fiji" -msgstr "" - -#. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "" - -#. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%m - Month as a decimal number [01,12]." -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export Data" -msgstr "" - -#. module: base -#: model:res.country,name:base.fm -msgid "Micronesia" -msgstr "" - -#. module: base -#: view:res.request.history:0 -msgid "Request History" -msgstr "" - -#. module: base -#: field:ir.module.module,menus_by_module:0 -#: view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#: model:res.country,name:base.il -msgid "Israel" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_server_action_create -msgid "Create Action" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "html" -msgstr "" - -#. module: base -#: field:res.lang,time_format:0 -msgid "Time Format" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Your system will be upgraded." -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Defined Reports" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-tools" -msgstr "" - -#. module: base -#: view:ir.actions.report.xml:0 -msgid "Report xml" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_module_open_categ -#: model:ir.actions.act_window,name:base.open_module_tree -#: view:ir.module.module:0 -#: model:ir.ui.menu,name:base.menu_module_tree -#: field:wizard.module.lang.export,modules:0 -msgid "Modules" -msgstr "" - -#. module: base -#: selection:workflow.activity,kind:0 -#: field:workflow.activity,subflow_id:0 -#: field:workflow.workitem,subflow_id:0 -msgid "Subflow" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDO" -msgstr "" - -#. module: base -#: field:workflow.transition,signal:0 -msgid "Signal (button Name)" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_bank_form -#: model:ir.ui.menu,name:base.menu_action_res_bank_form -#: view:res.bank:0 -#: field:res.partner,bank_ids:0 -msgid "Banks" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-sale" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%d - Day of the month as a decimal number [01,31]." -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Romanian / limba română" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ADD" -msgstr "" - -#. module: base -#: field:ir.cron,doall:0 -msgid "Repeat Missed" -msgstr "" - -#. module: base -#: help:ir.actions.server,state:0 -msgid "Type of the Action that is to be executed" -msgstr "" - -#. module: base -#: field:ir.server.object.lines,server_id:0 -msgid "Object Mapping" -msgstr "" - -#. module: base -#: help:res.currency,rate:0 -#: help:res.currency.rate,rate:0 -msgid "The rate of the currency to the currency of rate 1" -msgstr "" - -#. module: base -#: model:res.country,name:base.uk -msgid "United Kingdom" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Create / Write" -msgstr "" - -#. module: base -#: help:res.partner.category,active:0 -msgid "The active field allows you to hide the category without removing it." -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Object:" -msgstr "" - -#. module: base -#: model:res.country,name:base.bw -msgid "Botswana" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_partner -#: model:ir.ui.menu,name:base.menu_partner_title_partner -#: view:res.partner.title:0 -msgid "Partner Titles" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Service" -msgstr "" - -#. module: base -#: help:ir.actions.act_window,auto_refresh:0 -msgid "Add an auto-refresh on the view" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_download:0 -msgid "Modules to download" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_workitem_form -#: model:ir.ui.menu,name:base.menu_workflow_workitem -msgid "Workitems" -msgstr "" - -#. module: base -#: field:wizard.module.lang.export,advice:0 -msgid "Advice" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Lithuanian / Lietuvių kalba" -msgstr "" - -#. module: base -#: help:ir.actions.server,record_id:0 -msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Couldn't find tag '%s' in parent view !" -msgstr "" - -#. module: base -#: field:ir.ui.view,inherit_id:0 -msgid "Inherited View" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_translation -msgid "ir.translation" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_install -#: model:ir.ui.menu,name:base.menu_module_tree_install -msgid "Installed modules" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_get method is not implemented on this object !" -msgstr "" - -#. module: base -#: model:res.country,name:base.lc -msgid "Saint Lucia" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract -#: view:maintenance.contract:0 -msgid "Maintenance Contract" -msgstr "" - -#. module: base -#: help:ir.actions.server,trigger_obj_id:0 -msgid "Select the object from the model on which the workflow will executed." -msgstr "" - -#. module: base -#: field:ir.model,state:0 -#: field:ir.model.fields,state:0 -#: field:ir.model.grid,state:0 -msgid "Manually Created" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_create:0 -msgid "Create Access" -msgstr "" - -#. module: base -#: field:res.partner.address,state_id:0 -msgid "Fed. State" -msgstr "" - -#. module: base -#: model:res.country,name:base.io -msgid "British Indian Ocean Territory" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mapping" -msgstr "" - -#. module: base -#: field:maintenance.contract,date_start:0 -msgid "Starting Date" -msgstr "" - -#. module: base -#: view:ir.model:0 -#: field:ir.model.fields,ttype:0 -msgid "Field Type" -msgstr "" - -#. module: base -#: field:res.country.state,code:0 -msgid "State Code" -msgstr "" - -#. module: base -#: field:ir.model.fields,on_delete:0 -msgid "On delete" -msgstr "" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Left-to-Right" -msgstr "" - -#. module: base -#: field:res.lang,translatable:0 -msgid "Translatable" -msgstr "" - -#. module: base -#: model:res.country,name:base.vn -msgid "Vietnam" -msgstr "" - -#. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not Implemented" -msgstr "" - -#. module: base -#: field:res.partner.category,complete_name:0 -msgid "Full Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.mz -msgid "Mozambique" -msgstr "" - -#. module: base -#: field:ir.actions.server,message:0 -#: wizard_field:res.partner.spam_send,init,text:0 -msgid "Message" -msgstr "" - -#. module: base -#: field:ir.actions.act_window.view,multi:0 -msgid "On Multiple Doc." -msgstr "" - -#. module: base -#: field:res.partner,address:0 -#: view:res.partner.address:0 -msgid "Contacts" -msgstr "" - -#. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_upgrade -#: model:ir.ui.menu,name:base.menu_wizard_upgrade -msgid "Apply Scheduled Upgrades" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.maintenance -msgid "Maintenance" -msgstr "" - -#. module: base -#: model:res.country,name:base.mp -msgid "Northern Mariana Islands" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "module,type,name,res_id,src,value" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_management -msgid "Modules Management" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation_untrans -#: model:ir.ui.menu,name:base.menu_action_translation_untrans -msgid "Untranslated terms" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" -msgstr "" - -#. module: base -#: view:workflow.transition:0 -msgid "Transition" -msgstr "" - -#. module: base -#: field:ir.actions.todo,active:0 -#: field:ir.cron,active:0 -#: field:ir.module.repository,active:0 -#: field:ir.sequence,active:0 -#: field:res.bank,active:0 -#: field:res.currency,active:0 -#: field:res.lang,active:0 -#: field:res.partner,active:0 -#: field:res.partner.address,active:0 -#: field:res.partner.canal,active:0 -#: field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 -#: field:res.request,active:0 -#: field:res.users,active:0 -msgid "Active" -msgstr "" - -#. module: base -#: model:res.country,name:base.na -msgid "Namibia" -msgstr "" - -#. module: base -#: model:res.country,name:base.mn -msgid "Mongolia" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "" - -#. module: base -#: view:res.partner.som:0 -msgid "Partner State of Mind" -msgstr "" - -#. module: base -#: selection:ir.ui.view,type:0 -msgid "mdx" -msgstr "" - -#. module: base -#: model:res.country,name:base.bi -msgid "Burundi" -msgstr "" - -#. module: base -#: wizard_button:base.module.import,import,open_window:0 -#: wizard_button:module.upgrade,end,end:0 -#: wizard_button:module.upgrade,start,end:0 -#: wizard_button:server.action.create,init,end:0 -#: wizard_button:server.action.create,step_1,end:0 -#: view:wizard.module.lang.export:0 -msgid "Close" -msgstr "" - -#. module: base -#: model:res.country,name:base.bt -msgid "Bhutan" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_11 -msgid "Textile Suppliers" -msgstr "" - -#. module: base -#: selection:ir.actions.url,target:0 -msgid "This Window" -msgstr "" - -#. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_config_view -msgid "res.config.view" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDENT" -msgstr "" - -#. module: base -#: view:workflow.workitem:0 -msgid "Workflow Workitems" -msgstr "" - -#. module: base -#: model:res.country,name:base.vc -msgid "Saint Vincent & Grenadines" -msgstr "" - -#. module: base -#: field:ir.model.config,password:0 -#: field:maintenance.contract,password:0 -#: field:maintenance.contract.wizard,password:0 -#: wizard_field:res.partner.sms_send,init,password:0 -#: field:res.users,password:0 -msgid "Password" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_fields -#: view:ir.model:0 -#: field:ir.model,field_id:0 -#: model:ir.model,name:base.model_ir_model_fields -#: view:ir.model.fields:0 -#: field:ir.model.grid,field_id:0 -#: field:ir.property,fields_id:0 -#: field:ir.report.custom,fields_child0:0 -#: model:ir.ui.menu,name:base.ir_model_model_fields -msgid "Fields" -msgstr "" - -#. module: base -#: wizard_view:base.module.import,import:0 -msgid "Module successfully imported !" -msgstr "" - -#. module: base -#: model:res.country,name:base.mk -msgid "Macedonia" -msgstr "" - -#. module: base -#: field:res.company,rml_header2:0 -msgid "RML Internal Header" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a4" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field -msgid "acc_number" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_partner_address_form -msgid "Addresses" -msgstr "" - -#. module: base -#: model:res.country,name:base.mm -msgid "Myanmar" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (CN) / 简体中文" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_NEXT" -msgstr "" - -#. module: base -#: field:res.bank,street:0 -#: field:res.partner.address,street:0 -#: field:res.partner.bank,street:0 -msgid "Street" -msgstr "" - -#. module: base -#: model:res.country,name:base.yu -msgid "Yugoslavia" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Note that this operation my take a few minutes." -msgstr "" - -#. module: base -#: field:ir.model.data,name:0 -msgid "XML Identifier" -msgstr "" - -#. module: base -#: model:res.country,name:base.ca -msgid "Canada" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_name:0 -msgid "Internal Name" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Unknown" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users_my -msgid "Change My Preferences" -msgstr "" - -#. module: base -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,text:0 -msgid "SMS Message" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EDIT" -msgstr "" - -#. module: base -#: model:res.country,name:base.cm -msgid "Cameroon" -msgstr "" - -#. module: base -#: model:res.country,name:base.bf -msgid "Burkina Faso" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_FORWARD" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Skipped" -msgstr "" - -#. module: base -#: selection:ir.model.fields,state:0 -msgid "Custom Field" -msgstr "" - -#. module: base -#: model:res.country,name:base.cc -msgid "Cocos (Keeling) Islands" -msgstr "" - -#. module: base -#: field:workflow.instance,uid:0 -msgid "User ID" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "11. %U or %W ==> 48 (49th week)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type_field -msgid "Bank type fields" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "type,name,res_id,src,value" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch / Nederlands" -msgstr "" - -#. module: base -#: wizard_view:server.action.create,step_1:0 -#: wizard_field:server.action.create,step_1,report:0 -msgid "Select Report" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc1_condition:0 -#: field:ir.report.custom.fields,fc2_condition:0 -#: field:ir.report.custom.fields,fc3_condition:0 -msgid "condition" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SAVE" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "1cm 28cm 20cm 28cm" -msgstr "" - #. module: base #: field:ir.sequence,suffix:0 msgid "Suffix" msgstr "" -#. module: base -#: model:res.country,name:base.mo -msgid "Macau" -msgstr "" - -#. module: base -#: model:ir.actions.report.xml,name:base.res_partner_address_report -msgid "Labels" -msgstr "" - -#. module: base -#: wizard_field:res.partner.spam_send,init,from:0 -msgid "Sender's email" -msgstr "" - -#. module: base -#: field:ir.default,field_name:0 -msgid "Object Field" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Records were modified in the meanwhile" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NEW" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "None" -msgstr "" - -#. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "" - -#. module: base -#: view:res.partner:0 -msgid "General" -msgstr "" - -#. module: base -#: field:workflow.transition,act_to:0 -msgid "Destination Activity" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_search method is not implemented on this object !" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Connect Events to Actions" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ABOUT" -msgstr "" - -#. module: base -#: field:ir.module.category,parent_id:0 -#: field:res.partner.category,parent_id:0 -msgid "Parent Category" -msgstr "" - -#. module: base -#: model:res.country,name:base.fi -msgid "Finland" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 -#: selection:res.partner.title,domain:0 -msgid "Contact" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_menu -msgid "ir.ui.menu" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Uninstall" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_currency_rate -msgid "Currency Rate" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Module %s: Invalid Quality Certificate" -msgstr "" - -#. module: base -#: model:res.country,name:base.kw -msgid "Kuwait" -msgstr "" - -#. module: base -#: field:workflow.workitem,inst_id:0 -msgid "Instance" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,attachment:0 -msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." -msgstr "" - -#. module: base -#: model:res.country,name:base.ng -msgid "Nigeria" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDERLINE" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Values for Event Type" -msgstr "" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Always Searchable" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "" - -#. module: base -#: model:res.country,name:base.hk -msgid "Hong Kong" -msgstr "" - -#. module: base -#: help:ir.actions.server,name:0 -msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_BOLD" -msgstr "" - -#. module: base -#: model:res.country,name:base.ph -msgid "Philippines" -msgstr "" - -#. module: base -#: model:res.country,name:base.ma -msgid "Morocco" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-graph" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "2. %a ,%A ==> Fri, Friday" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -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 "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 -#: view:res.partner.event:0 -msgid "Partner Events" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%a - Abbreviated weekday name." -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Introspection report on objects" -msgstr "" - -#. module: base -#: model:res.country,name:base.pf -msgid "Polynesia (French)" -msgstr "" - -#. module: base -#: field:res.company,name:0 -msgid "Company Name" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard -#: wizard_button:res.partner.sms_send,init,send:0 -msgid "Send SMS" -msgstr "" - -#. module: base -#: model:res.country,name:base.np -msgid "Nepal" -msgstr "" - -#. module: base -#: field:res.partner.event,event_ical_id:0 -msgid "iCal id" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_function_form -#: model:ir.ui.menu,name:base.menu_partner_function_form -#: view:res.partner.function:0 -msgid "Partner Functions" -msgstr "" - -#. module: base -#: wizard_view:res.partner.sms_send,init:0 -msgid "Bulk SMS send" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%Y - Year with century as a decimal number." -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Pie Chart" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Seconde: %(sec)s" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner,ref:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -msgid "Code" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Can not create the module file:\n %s" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_update -#: model:ir.ui.menu,name:base.menu_module_update -msgid "Update Modules List" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Continue" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form -#: model:ir.ui.menu,name:base.menu_ir_property_form -msgid "Default Properties" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Slovenian / slovenščina" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,attachment_use:0 -msgid "Reload from Attachment" -msgstr "" - -#. module: base -#: model:res.country,name:base.bv -msgid "Bouvet Island" -msgstr "" - -#. module: base -#: field:ir.report.custom,print_orientation:0 -msgid "Print orientation" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export a Translation File" -msgstr "" - -#. module: base -#: field:ir.attachment,name:0 -msgid "Attachment Name" -msgstr "" - -#. module: base -#: wizard_field:module.lang.import,init,data:0 -#: field:wizard.module.lang.export,data:0 -msgid "File" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Add User" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_configuration_wizard -msgid "ir.actions.configuration.wizard" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%b - Abbreviated month name." -msgstr "" - -#. module: base -#: field:res.partner,supplier:0 -#: model:res.partner.category,name:base.res_partner_category_8 -msgid "Supplier" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -#: selection:ir.actions.server,state:0 -msgid "Multi Actions" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Close" -msgstr "" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Full" -msgstr "" - -#. module: base -#: model:res.country,name:base.as -msgid "American Samoa" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_model -#: model:ir.model,name:base.model_ir_model -#: model:ir.ui.menu,name:base.ir_model_model_menu -msgid "Objects" -msgstr "" - -#. module: base -#: view:res.request.link:0 -msgid "Request Link" -msgstr "" - -#. module: base -#: field:ir.module.module,url:0 -#: field:ir.module.repository,url:0 -msgid "URL" -msgstr "" - -#. module: base -#: help:res.country,name:0 -msgid "The full name of the country." -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Iteration" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify the Partner Email address !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "UserError" -msgstr "" - -#. module: base -#: model:res.country,name:base.ae -msgid "United Arab Emirates" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_RECORD" -msgstr "" - -#. module: base -#: model:res.country,name:base.re -msgid "Reunion (French)" -msgstr "" - -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - -#. module: base -#: model:res.country,name:base.cz -msgid "Czech Republic" -msgstr "" - -#. module: base -#: model:res.country,name:base.sb -msgid "Solomon Islands" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "" - -#. module: base -#: view:ir.translation:0 -#: model:ir.ui.menu,name:base.menu_translation -msgid "Translations" -msgstr "" - -#. module: base -#: field:ir.sequence,padding:0 -msgid "Number padding" -msgstr "" - -#. module: base -#: model:res.country,name:base.ua -msgid "Ukraine" -msgstr "" - -#. module: base -#: model:res.country,name:base.to -msgid "Tonga" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_category -#: view:ir.module.category:0 -msgid "Module Category" -msgstr "" - -#. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reference Guide" -msgstr "" - -#. module: base -#: model:res.country,name:base.ml -msgid "Mali" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNINDENT" -msgstr "" - -#. module: base -#: field:ir.cron,interval_number:0 -msgid "Interval Number" -msgstr "" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Partial" -msgstr "" - -#. module: base -#: model:res.country,name:base.tk -msgid "Tokelau" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_xsl:0 -msgid "XSL path" -msgstr "" - -#. module: base -#: model:res.country,name:base.bn -msgid "Brunei Darussalam" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 -#: field:ir.ui.view,type:0 -#: field:wizard.ir.model.menu.create.line,view_type:0 -msgid "View Type" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_2 -msgid "User Interface" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_INFO" -msgstr "" - -#. module: base -#: field:ir.attachment,create_date:0 -msgid "Date Created" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_todo -msgid "ir.actions.todo" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Get file" -msgstr "" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "This function will check for new modules in the 'addons' path and on module repositories:" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_BACK" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#: code:osv/orm.py:0 -#, python-format -msgid "AccessError" -msgstr "" - -#. module: base -#: model:res.country,name:base.dz -msgid "Algeria" -msgstr "" - -#. module: base -#: model:res.country,name:base.be -msgid "Belgium" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You cannot perform this operation." -msgstr "" - -#. module: base -#: field:ir.translation,lang:0 -#: wizard_field:module.lang.install,init,lang:0 -#: field:res.partner,lang:0 -#: field:res.users,context_lang:0 -#: field:wizard.module.lang.export,lang:0 -#: field:wizard.module.update_translations,lang:0 -msgid "Language" -msgstr "" - -#. module: base -#: model:res.country,name:base.gm -msgid "Gambia" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form -#: view:res.company:0 -msgid "Companies" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented get_memory method !" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -#: field:ir.actions.server,code:0 -#: selection:ir.actions.server,state:0 -msgid "Python Code" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Can not create the module file: %s !" -msgstr "" - -#. module: base -#: model:ir.module.module,description:base.module_meta_information -msgid "The kernel of OpenERP, needed for all installation." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form -#: model:ir.ui.menu,name:base.menu_partner_customer_form -msgid "Customers Partners" -msgstr "" - -#. module: base -#: wizard_button:base.module.import,init,end:0 -#: selection:ir.actions.todo,state:0 -#: wizard_button:module.lang.import,init,end:0 -#: wizard_button:module.lang.install,init,end:0 -#: wizard_button:module.module.update,init,end:0 -#: wizard_button:module.upgrade,next,end:0 -#: wizard_button:res.partner.sms_send,init,end:0 -#: wizard_button:res.partner.spam_send,init,end:0 -#: view:wizard.ir.model.menu.create:0 -#: view:wizard.module.lang.export:0 -#: view:wizard.module.update_translations:0 -msgid "Cancel" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify server option --smtp-from !" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "PO File" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_9 -msgid "Components Supplier" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 -#: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 -#: model:ir.ui.menu,name:base.menu_action_res_users -#: model:ir.ui.menu,name:base.menu_users -#: view:res.groups:0 -#: field:res.groups,users:0 -#: field:res.roles,users:0 -#: view:res.users:0 -msgid "Users" -msgstr "" - -#. module: base -#: field:ir.module.module,published_version:0 -msgid "Published Version" -msgstr "" - -#. module: base -#: model:res.country,name:base.is -msgid "Iceland" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Roles are used to defined available actions, provided by workflows." -msgstr "" - -#. module: base -#: model:res.country,name:base.de -msgid "Germany" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Week of the year: %(woy)s" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_14 -msgid "Bad customers" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HARDDISK" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reports :" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_APPLY" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_form -#: model:ir.ui.menu,name:base.menu_maintenance_contract -msgid "Your Maintenance Contracts" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Please note that you will have to logout and relog if you change your password." -msgstr "" - -#. module: base -#: model:res.country,name:base.gy -msgid "Guyana" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-2" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese (BR) / português (BR)" -msgstr "" - -#. module: base -#: field:ir.actions.server,record_id:0 -msgid "Create Id" -msgstr "" - -#. module: base -#: model:res.country,name:base.hn -msgid "Honduras" -msgstr "" - -#. module: base -#: model:res.country,name:base.eg -msgid "Egypt" -msgstr "" - -#. module: base -#: help:ir.actions.server,model_id:0 -msgid "Select the object on which the action will work (read, write, create)." -msgstr "" - -#. module: base -#: view:ir.model:0 -msgid "Fields Description" -msgstr "" - -#. module: base -#: code:tools/translate.py:0 -#, python-format -msgid "Bad file format" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CDROM" -msgstr "" - -#. module: base -#: field:ir.model.fields,readonly:0 -#: field:res.partner.bank.type.field,readonly:0 -msgid "Readonly" -msgstr "" - -#. module: base -#: field:res.partner.event,type:0 -msgid "Type of Event" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_type -#: model:ir.ui.menu,name:base.menu_ir_sequence_type -msgid "Sequence Types" -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "To be installed" -msgstr "" - -#. module: base -#: model:ir.module.module,shortdesc:base.module_meta_information -msgid "Base" -msgstr "" - -#. module: base -#: model:res.country,name:base.lr -msgid "Liberia" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -#: view:ir.model:0 -#: view:res.groups:0 -#: view:res.partner:0 -#: field:res.partner,comment:0 -#: field:res.partner.function,ref:0 -msgid "Notes" -msgstr "" - -#. module: base -#: field:ir.property,value:0 -#: selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 -#: field:ir.values,value:0 -#: field:ir.values,value_unpickle:0 -msgid "Value" -msgstr "" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update Translations" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "" - -#. module: base -#: model:res.country,name:base.mc -msgid "Monaco" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Minutes" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,end:0 -#: wizard_view:module.upgrade,start:0 -msgid "The modules have been upgraded / installed !" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -#: view:wizard.module.lang.export:0 -msgid "Help" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "" - -#. module: base -#: code:tools/amount_to_text_en.py:0 -#, python-format -msgid "Number too large '%d', can not translate it" -msgstr "" - -#. module: base -#: wizard_button:server.action.create,step_1,create:0 -msgid "Create" -msgstr "" - -#. module: base -#: field:ir.exports,export_fields:0 -msgid "Export ID" -msgstr "" - -#. module: base -#: model:res.country,name:base.fr -msgid "France" -msgstr "" - -#. module: base -#: field:workflow.activity,flow_stop:0 -msgid "Flow Stop" -msgstr "" - -#. module: base -#: model:res.country,name:base.ar -msgid "Argentina" -msgstr "" - -#. module: base -#: model:res.country,name:base.af -msgid "Afghanistan, Islamic State of" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry -msgid "country_id" -msgstr "" - -#. module: base -#: field:ir.report.custom,frequency:0 -msgid "Frequency" -msgstr "" - -#. module: base -#: field:ir.cron,interval_type:0 -msgid "Interval Unit" -msgstr "" - -#. module: base -#: field:maintenance.contract,kind:0 -#: field:workflow.activity,kind:0 -msgid "Kind" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Manual" -msgstr "" - -#. module: base -#: field:res.bank,fax:0 -#: field:res.partner.address,fax:0 -msgid "Fax" -msgstr "" - -#. module: base -#: field:res.lang,thousands_sep:0 -msgid "Thousands Separator" -msgstr "" - -#. module: base -#: field:res.request,create_date:0 -msgid "Created Date" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Line Plot" -msgstr "" - -#. module: base -#: help:ir.actions.server,loop_action:0 -msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (TW) / 正體字" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_UP" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request -msgid "res.request" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" -msgstr "" - -#. module: base -#: field:ir.default,company_id:0 -#: field:ir.property,company_id:0 -#: field:ir.values,company_id:0 -#: view:res.company:0 -#: field:res.users,company_id:0 -msgid "Company" -msgstr "" - -#. module: base -#: field:ir.attachment,datas:0 -msgid "File Content" -msgstr "" - -#. module: base -#: model:res.country,name:base.pa -msgid "Panama" -msgstr "" - -#. module: base -#: selection:ir.report.custom,state:0 -msgid "Unsubscribed" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Skip Step" -msgstr "" - -#. module: base -#: model:res.country,name:base.pn -msgid "Pitcairn Island" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_event_type-act -#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act -msgid "Active Partner Events" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_rule -#: model:ir.ui.menu,name:base.menu_action_rule -msgid "Record Rules" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Day of the year: %(doy)s" -msgstr "" - -#. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "" - -#. module: base -#: view:ir.model:0 -#: view:ir.model.fields:0 -#: view:ir.property:0 -#: model:ir.ui.menu,name:base.next_id_15 -msgid "Properties" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%A - Full weekday name." -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Selection" -msgstr "" - -#. module: base -#: field:ir.rule,domain_force:0 -msgid "Force Domain" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_attachment -#: view:ir.attachment:0 -#: model:ir.ui.menu,name:base.menu_action_attachment -msgid "Attachments" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Validate" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_wizard -msgid "maintenance.contract.wizard" -msgstr "" - -#. module: base -#: field:ir.actions.server,child_ids:0 -msgid "Other Actions" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Done" -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Validated" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_write:0 -msgid "Write Access" -msgstr "" - -#. module: base -#: field:res.bank,city:0 -#: field:res.partner,city:0 -#: field:res.partner.address,city:0 -#: field:res.partner.bank,city:0 -msgid "City" -msgstr "" - -#. module: base -#: model:res.country,name:base.qa -msgid "Qatar" -msgstr "" - -#. module: base -#: model:res.country,name:base.it -msgid "Italy" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<>" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<=" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Estonian / Eesti keel" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese / português" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3 or later version" -msgstr "" - -#. module: base -#: field:workflow.activity,action:0 -msgid "Python Action" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Unknown position in inherited view %s !" -msgstr "" - -#. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "" - -#. module: base -#: field:ir.report.custom,repeat_header:0 -msgid "Repeat Header" -msgstr "" - -#. module: base -#: field:res.users,address_id:0 -msgid "Address" -msgstr "" - -#. module: base -#: field:ir.module.module,latest_version:0 -msgid "Installed version" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_workflow_root -msgid "Workflow Definitions" -msgstr "" - -#. module: base -#: model:res.country,name:base.mr -msgid "Mauritania" -msgstr "" - -#. module: base -#: view:workflow.activity:0 -#: field:workflow.workitem,act_id:0 -msgid "Activity" -msgstr "" - -#. module: base -#: field:res.company,parent_id:0 -msgid "Parent Company" -msgstr "" - -#. module: base -#: field:res.currency.rate,rate:0 -msgid "Rate" -msgstr "" - -#. module: base -#: model:res.country,name:base.cg -msgid "Congo" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_exports_line -msgid "ir.exports.line" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_country_state -msgid "Country state" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form_all -#: model:ir.ui.menu,name:base.menu_ir_property_form_all -msgid "All Properties" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_window -#: model:ir.ui.menu,name:base.menu_ir_action_window -msgid "Window Actions" -msgstr "" - -#. module: base -#: model:res.country,name:base.kn -msgid "Saint Kitts & Nevis Anguilla" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HOME" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence -msgid "ir.sequence" -msgstr "" - -#. module: base -#: help:ir.actions.server,srcmodel_id:0 -msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "Not Installed" -msgstr "" - -#. module: base -#: field:workflow.activity,out_transitions:0 -msgid "Outgoing Transitions" -msgstr "" - -#. module: base -#: field:ir.ui.menu,icon:0 -msgid "Icon" -msgstr "" - -#. module: base -#: wizard_button:module.lang.import,init,finish:0 -#: wizard_button:module.lang.install,start,end:0 -#: wizard_button:module.module.update,update,open_window:0 -msgid "Ok" -msgstr "" - -#. module: base -#: model:res.country,name:base.mq -msgid "Martinique (French)" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request-act -#: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 -#: view:res.request:0 -msgid "Requests" -msgstr "" - -#. module: base -#: model:res.country,name:base.ye -msgid "Yemen" -msgstr "" - -#. module: base -#: selection:workflow.activity,split_mode:0 -msgid "Or" -msgstr "" - -#. module: base -#: model:res.country,name:base.pk -msgid "Pakistan" -msgstr "" - -#. module: base -#: model:res.country,name:base.al -msgid "Albania" -msgstr "" - -#. module: base -#: model:res.country,name:base.ws -msgid "Samoa" -msgstr "" - -#. module: base -#: field:ir.ui.menu,child_id:0 -msgid "Child IDs" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Problem in configuration `Record Id` in Server Action!" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ValidateError" -msgstr "" - -#. module: base -#: wizard_button:base.module.import,init,import:0 -#: model:ir.actions.wizard,name:base.wizard_base_module_import -#: model:ir.ui.menu,name:base.menu_wizard_module_import -msgid "Import module" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DISCONNECT" -msgstr "" - -#. module: base -#: model:res.country,name:base.la -msgid "Laos" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Email" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Resynchronise Terms" -msgstr "" - -#. module: base -#: model:res.country,name:base.tg -msgid "Togo" -msgstr "" - -#. module: base -#: selection:workflow.activity,kind:0 -msgid "Stop All" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "3. %x ,%X ==> 12/05/08, 18:25:20" -msgstr "" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Cascade" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Field %d should be a figure" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - -#. module: base -#: field:res.groups,comment:0 -msgid "Comment" -msgstr "" - -#. module: base -#: model:res.country,name:base.ro -msgid "Romania" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PREFERENCES" -msgstr "" - -#. module: base -#: field:res.country.state,name:0 -msgid "State Name" -msgstr "" - -#. module: base -#: field:workflow.activity,join_mode:0 -msgid "Join Mode" -msgstr "" - -#. module: base -#: field:res.users,context_tz:0 -msgid "Timezone" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_LAST" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_xml -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.xml" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." -msgstr "" - -#. module: base -#: wizard_button:module.lang.install,init,start:0 -msgid "Start installation" -msgstr "" - -#. module: base -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_2 -msgid "OpenERP Partners" -msgstr "" - -#. module: base -#: model:res.country,name:base.by -msgid "Belarus" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,name:0 -#: field:ir.actions.act_window_close,name:0 -#: field:ir.actions.actions,name:0 -#: field:ir.actions.server,name:0 -#: field:ir.actions.url,name:0 -msgid "Action Name" -msgstr "" - -#. module: base -#: selection:res.request,priority:0 -msgid "Normal" -msgstr "" - -#. module: base -#: field:res.bank,street2:0 -#: field:res.partner.address,street2:0 -msgid "Street2" -msgstr "" - -#. module: base -#: field:ir.cron,user_id:0 -#: field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 -#: field:res.partner.event,user_id:0 -#: view:res.users:0 -msgid "User" -msgstr "" - -#. module: base -#: model:res.country,name:base.pr -msgid "Puerto Rico" -msgstr "" - -#. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "" - -#. module: base -#: field:ir.module.repository,filter:0 -msgid "Filter" -msgstr "" - -#. module: base -#: model:res.country,name:base.ch -msgid "Switzerland" -msgstr "" - -#. module: base -#: model:res.country,name:base.gd -msgid "Grenada" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "" - -#. module: base -#: selection:server.action.create,init,type:0 -msgid "Open Report" -msgstr "" - -#. module: base -#: field:res.currency,rounding:0 -msgid "Rounding factor" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_company -msgid "res.company" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,end:0 -#: wizard_view:module.upgrade,start:0 -msgid "System upgrade done" -msgstr "" - -#. module: base -#: model:res.country,name:base.so -msgid "Somalia" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_simple_view_form -msgid "Configure Simple View" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_13 -msgid "Important customers" -msgstr "" - -#. module: base -#: field:res.request,act_to:0 -#: field:res.request.history,act_to:0 -msgid "To" -msgstr "" - -#. module: base -#: field:ir.cron,args:0 -msgid "Arguments" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "sxw" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The value \"%s\" for the field \"%s\" is not in the selection" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - -#. module: base -#: field:res.partner,customer:0 -#: model:res.partner.category,name:base.res_partner_category_0 -#: selection:res.partner.event,partner_type:0 -msgid "Customer" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,name:0 -#: field:ir.report.custom,name:0 -msgid "Report Name" -msgstr "" - -#. module: base -#: field:ir.module.module,shortdesc:0 -msgid "Short Description" -msgstr "" - -#. module: base -#: field:res.partner.event,partner_type:0 -msgid "Partner Relation" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,context:0 -msgid "Context Value" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Hour 00->24: %(h24)s" -msgstr "" - -#. module: base -#: field:res.request.history,date_sent:0 -msgid "Date sent" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "" - -#. module: base -#: field:ir.actions.act_window.view,sequence:0 -#: field:ir.actions.server,sequence:0 -#: field:ir.actions.todo,sequence:0 -#: field:ir.module.repository,sequence:0 -#: field:ir.report.custom.fields,sequence:0 -#: view:ir.sequence:0 -#: field:ir.ui.menu,sequence:0 -#: field:ir.ui.view_sc,sequence:0 -#: field:res.partner.bank,sequence:0 -#: field:wizard.ir.model.menu.create.line,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: base -#: model:res.country,name:base.tn -msgid "Tunisia" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,name:0 -msgid "Wizard Info" -msgstr "" - -#. module: base -#: help:ir.cron,numbercall:0 -msgid "Number of time the function is called,\n" -"a negative number indicates that the function will always be called" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Install" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "Legends for Date and Time Formats" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Monthly" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_som-act -#: model:ir.ui.menu,name:base.menu_res_partner_som-act -msgid "States of mind" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_ASCENDING" -msgstr "" - -#. module: base -#: view:ir.model:0 -#: view:res.groups:0 -msgid "Access Rules" -msgstr "" - -#. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "" - -#. module: base -#: field:res.roles,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.report.custom,model:0 -#: field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 -#: field:ir.actions.wizard,model:0 -#: field:ir.cron,model:0 -#: field:ir.default,field_tbl:0 -#: view:ir.model:0 -#: field:ir.model,model:0 -#: field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 -#: field:ir.model.grid,model:0 -#: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 -#: field:ir.ui.view,model:0 -#: field:ir.values,model_id:0 -#: field:res.request.link,object:0 -#: field:wizard.ir.model.menu.create,model_id:0 -#: field:workflow.triggers,model:0 -msgid "Object" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_default -msgid "ir.default" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Minute: %(min)s" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%w - Weekday as a decimal number [0(Sunday),6]." -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export translation file" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,user_id:0 -msgid "User Ref." -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_base_config -#: model:ir.ui.menu,name:base.menu_config -#: view:res.company:0 -msgid "Configuration" -msgstr "" - -#. module: base -#: field:ir.actions.server,expression:0 -msgid "Loop Expression" -msgstr "" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "" - -#. module: base -#: field:ir.actions.todo,start_on:0 -msgid "Start On" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_5 -msgid "Gold Partner" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner -#: field:res.company,partner_id:0 -#: field:res.partner.address,partner_id:0 -#: field:res.partner.bank,partner_id:0 -#: field:res.partner.event,partner_id:0 -#: selection:res.partner.title,domain:0 -msgid "Partner" -msgstr "" - -#. module: base -#: model:res.country,name:base.tr -msgid "Turkey" -msgstr "" - -#. module: base -#: model:res.country,name:base.fk -msgid "Falkland Islands" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "odt" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,type:0 -#: field:ir.actions.report.xml,type:0 -#: field:ir.report.custom,type:0 -msgid "Report Type" -msgstr "" - -#. module: base -#: field:ir.actions.todo,state:0 -#: field:ir.module.module,state:0 -#: field:ir.module.module.dependency,state:0 -#: field:ir.report.custom,state:0 -#: field:maintenance.contract,state:0 -#: field:res.bank,state:0 -#: view:res.country.state:0 -#: field:res.partner.bank,state_id:0 -#: field:res.request,state:0 -#: field:workflow.instance,state:0 -#: field:workflow.workitem,state:0 -msgid "State" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "Other proprietary" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation -#: model:ir.ui.menu,name:base.menu_action_translation -msgid "All terms" -msgstr "" - -#. module: base -#: model:res.country,name:base.no -msgid "Norway" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "4. %b, %B ==> Dec, December" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Load an Official Translation" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_10 -msgid "Open Source Service Company" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "waiting" -msgstr "" - -#. module: base -#: field:ir.attachment,link:0 -msgid "Link" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_triggers -msgid "workflow.triggers" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,report_id:0 -msgid "Report Ref" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-hr" -msgstr "" - -#. module: base -#: help:ir.actions.wizard,multi:0 -msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND" -msgstr "" - -#. module: base -#: model:res.country,name:base.hm -msgid "Heard and McDonald Islands" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_id:0 -msgid "View Ref." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch (Belgium) / Nederlands (Belgïe)" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_repository_tree -#: view:ir.module.repository:0 -#: model:ir.ui.menu,name:base.menu_module_repository_tree -msgid "Repository list" -msgstr "" - -#. module: base -#: field:res.company,rml_header1:0 -msgid "Report Header" -msgstr "" - -#. module: base -#: field:res.roles,child_id:0 -msgid "Children" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,type:0 -#: field:ir.actions.act_window_close,type:0 -#: field:ir.actions.actions,type:0 -#: field:ir.actions.server,state:0 -#: field:ir.actions.server,type:0 -#: field:ir.actions.url,type:0 -#: field:ir.actions.wizard,type:0 -msgid "Action Type" -msgstr "" - -#. module: base -#: field:res.partner.bank.type,field_ids:0 -msgid "Type fields" -msgstr "" - -#. module: base -#: field:ir.module.module,category_id:0 -msgid "Category" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FLOPPY" -msgstr "" - -#. module: base -#: field:ir.actions.server,sms:0 -#: selection:ir.actions.server,state:0 -msgid "SMS" -msgstr "" - -#. module: base -#: model:res.country,name:base.cr -msgid "Costa Rica" -msgstr "" - -#. module: base -#: code:addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "Your can't submit bug reports due to uncovered modules: %s" -msgstr "" - -#. module: base -#: view:ir.model:0 -#: view:res.request:0 -msgid "Status" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form -#: view:res.currency:0 -msgid "Currencies" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Hour 00->12: %(h12)s" -msgstr "" - -#. module: base -#: help:res.partner.address,active:0 -msgid "Uncheck the active field to hide the contact." -msgstr "" - -#. module: base -#: model:res.country,name:base.dk -msgid "Denmark" -msgstr "" - -#. module: base -#: field:res.country,code:0 -msgid "Country Code" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_instance -msgid "workflow.instance" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "10. %S ==> 20" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "undefined get method !" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_madam -msgid "Madam" -msgstr "" - -#. module: base -#: model:res.country,name:base.ee -msgid "Estonia" -msgstr "" - -#. module: base -#: model:res.country,name:base.nl -msgid "Netherlands" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_4 -msgid "Low Level Objects" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom -msgid "ir.report.custom" -msgstr "" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Purchase Offer" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_values -msgid "ir.values" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_FIT" -msgstr "" - -#. module: base -#: model:res.country,name:base.cd -msgid "Congo, The Democratic Republic of the" -msgstr "" - -#. module: base -#: view:res.request:0 -#: field:res.request,body:0 -#: field:res.request.history,req_id:0 -msgid "Request" -msgstr "" - -#. module: base -#: model:res.country,name:base.jp -msgid "Japan" -msgstr "" - -#. module: base -#: field:ir.cron,numbercall:0 -msgid "Number of Calls" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Language file loaded." -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_info:0 -msgid "Modules to update" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_BOTTOM" -msgstr "" - -#. module: base -#: help:ir.actions.server,sequence:0 -msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,header:0 -msgid "Add RML header" -msgstr "" - -#. module: base -#: model:res.country,name:base.gr -msgid "Greece" -msgstr "" - -#. module: base -#: field:res.request,trigger_date:0 -msgid "Trigger Date" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Croatian / hrvatski jezik" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_FORWARD" -msgstr "" - -#. module: base -#: help:ir.actions.server,code:0 -msgid "Python code to be executed" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - -#. module: base -#: view:res.partner.category:0 -msgid "Partner Category" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -#: selection:ir.actions.server,state:0 -msgid "Trigger" -msgstr "" - -#. module: base -#: field:ir.model.fields,translate:0 -msgid "Translate" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" -msgstr "" - -#. module: base -#: field:res.request.history,body:0 -msgid "Body" -msgstr "" - -#. module: base -#: wizard_button:res.partner.spam_send,init,send:0 -msgid "Send Email" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_FONT" -msgstr "" - -#. module: base -#: field:res.users,menu_id:0 -msgid "Menu Action" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "choose" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Graph" -msgstr "" - -#. module: base -#: field:res.partner,child_ids:0 -#: field:res.request,ref_partner_id:0 -msgid "Partner Ref." -msgstr "" - -#. module: base -#: field:ir.report.custom,print_format:0 -msgid "Print format" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_low_workflow -msgid "Workflow Items" -msgstr "" - -#. module: base -#: field:res.request,ref_doc2:0 -msgid "Document Ref 2" -msgstr "" - -#. module: base -#: field:res.request,ref_doc1:0 -msgid "Document Ref 1" -msgstr "" - -#. module: base -#: model:res.country,name:base.ga -msgid "Gabon" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_data -msgid "ir.model.data" -msgstr "" - #. module: base #: view:ir.model:0 #: view:res.groups:0 @@ -6462,8 +2141,8 @@ msgid "Greenland" msgstr "" #. module: base -#: help:ir.actions.report.xml,report_rml:0 -msgid "The .rml path of the file or NULL if the content is in report_rml_content" +#: selection:res.request,priority:0 +msgid "Low" msgstr "" #. module: base @@ -6471,6 +2150,27 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Skip" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "" + +#. module: base +#: model:res.country,name:base.in +msgid "India" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -6486,26 +2186,60 @@ msgstr "" msgid "New Caledonia (French)" msgstr "" +#. module: base +#: model:res.country,name:base.ls +msgid "Lesotho" +msgstr "" + +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function Name" msgstr "" #. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Cancel" +#: rml:ir.module.reference:0 +msgid "View :" msgstr "" #. module: base -#: model:res.country,name:base.cy -msgid "Cyprus" +#: model:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Grant Access To Menus" msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: field:res.partner.category,name:0 +msgid "Category Name" +msgstr "" + +#. module: base +#: view:res.config.view:0 +msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." +msgstr "" + +#. module: base +#: model:res.country,name:base.tz +msgid "Tanzania" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "" + +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" msgstr "" #. module: base @@ -6514,14 +2248,136 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: model:res.country,name:base.cz +msgid "Czech Republic" +msgstr "" + +#. module: base +#: model:res.country,name:base.mr +msgid "Mauritania" +msgstr "" + +#. module: base +#: model:res.country,name:base.sb +msgid "Solomon Islands" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "" + +#. module: base +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + +#. module: base +#: model:res.country,name:base.ad +msgid "Andorra, Principality of" +msgstr "" + +#. module: base +#: field:ir.module.category,child_ids:0 +#: field:res.partner.category,child_ids:0 +msgid "Child Categories" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" msgstr "" +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "TGZ Archive" +msgstr "" + +#. module: base +#: model:res.country,name:base.bm +msgid "Bermuda" +msgstr "" + +#. module: base +#: model:res.country,name:base.pe +msgid "Peru" +msgstr "" + +#. module: base +#: field:res.partner.som,factor:0 +msgid "Factor" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "" + +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_type:0 +#: field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 +#: field:ir.translation,type:0 +#: field:ir.values,key:0 +#: view:res.partner:0 +msgid "Type" +msgstr "" + +#. module: base +#: model:res.country,name:base.bj +msgid "Benin" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Skipped" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 -msgid "terp-report" +msgid "STOCK_ZOOM_IN" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "8. %I:%M:%S %p ==> 06:25:20 PM" +msgstr "" + +#. module: base +#: model:res.country,name:base.mx +msgid "Mexico" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "" + +#. module: base +#: model:res.country,name:base.gu +msgid "Guam (USA)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "" + +#. module: base +#: view:ir.translation:0 +#: model:ir.ui.menu,name:base.menu_translation +msgid "Translations" msgstr "" #. module: base @@ -6530,20 +2386,75 @@ msgstr "" msgid "RML content" msgstr "" +#. module: base +#: field:ir.report.custom.fields,field_child3:0 +msgid "Field child3" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Incoming transitions" msgstr "" +#. module: base +#: model:res.country,name:base.tn +msgid "Tunisia" +msgstr "" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Not Searchable" +msgstr "" + #. module: base #: model:res.country,name:base.cn msgid "China" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password empty !" +#: field:res.partner.event.type,key:0 +msgid "Key" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OK" +msgstr "" + +#. module: base +#: field:ir.cron,nextcall:0 +msgid "Next Call Date" +msgstr "" + +#. module: base +#: field:res.company,rml_header:0 +msgid "RML Header" +msgstr "" + +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + +#. module: base +#: model:res.country,name:base.ua +msgid "Ukraine" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +#: selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "" + +#. module: base +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" msgstr "" #. module: base @@ -6557,8 +2468,54 @@ msgid "workflow" msgstr "" #. module: base -#: model:res.country,name:base.id -msgid "Indonesia" +#: wizard_field:res.partner.sms_send,init,app_id:0 +msgid "API ID" +msgstr "" + +#. module: base +#: model:res.country,name:base.ky +msgid "Cayman Islands" +msgstr "" + +#. module: base +#: field:ir.rule.group,rules:0 +msgid "Tests" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category +#: view:ir.module.category:0 +msgid "Module Category" +msgstr "" + +#. module: base +#: model:res.country,name:base.mu +msgid "Mauritius" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "Scan for new modules" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_repository +msgid "Module Repository" +msgstr "" + +#. module: base +#: model:res.country,name:base.ml +msgid "Mali" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" msgstr "" #. module: base @@ -6567,8 +2524,14 @@ msgid "At Once" msgstr "" #. module: base -#: selection:ir.actions.server,state:0 -msgid "Write Object" +#: model:ir.ui.menu,name:base.menu_security +msgid "Security" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +msgid "Report Custom" msgstr "" #. module: base @@ -6576,6 +2539,16 @@ msgstr "" msgid "Bulgaria" msgstr "" +#. module: base +#: field:ir.cron,interval_number:0 +msgid "Interval Number" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND" +msgstr "" + #. module: base #: model:res.country,name:base.ao msgid "Angola" @@ -6586,6 +2559,21 @@ msgstr "" msgid "French Southern Territories" msgstr "" +#. module: base +#: model:res.country,name:base.td +msgid "Chad" +msgstr "" + +#. module: base +#: model:res.country,name:base.za +msgid "South Africa" +msgstr "" + +#. module: base +#: model:res.country,name:base.tk +msgid "Tokelau" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" @@ -6596,6 +2584,37 @@ msgstr "" msgid "STOCK_HELP" msgstr "" +#. module: base +#: view:ir.model.access:0 +#: model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 +#: field:res.groups,model_access:0 +msgid "Access Controls" +msgstr "" + +#. module: base +#: model:res.country,name:base.bn +msgid "Brunei Darussalam" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_lang_export +msgid "wizard.module.lang.export" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Installed" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +msgid "Partner Functions" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_currency #: field:res.company,currency_id:0 @@ -6606,8 +2625,18 @@ msgid "Currency" msgstr "" #. module: base -#: field:res.partner.canal,name:0 -msgid "Channel Name" +#: view:res.lang:0 +msgid "%Y - Year with century as a decimal number." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish (AR) / Español (AR)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" msgstr "" #. module: base @@ -6616,14 +2645,64 @@ msgid "5. %y, %Y ==> 08, 2008" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 -#: field:ir.values,res_id:0 -msgid "Object ID" +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" msgstr "" #. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Landscape" +#: model:res.country,name:base.sa +msgid "Saudi Arabia" +msgstr "" + +#. module: base +#: model:res.country,name:base.hu +msgid "Hungary" +msgstr "" + +#. module: base +#: model:res.country,name:base.ne +msgid "Niger" +msgstr "" + +#. module: base +#: model:res.country,name:base.ba +msgid "Bosnia-Herzegovina" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" +msgstr "" + +#. module: base +#: model:res.country,name:base.br +msgid "Brazil" +msgstr "" + +#. module: base +#: help:ir.rule.group,rules:0 +msgid "The rule is satisfied if at least one test is True" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Weeks" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" msgstr "" #. module: base @@ -6631,16 +2710,115 @@ msgstr "" msgid "Administration" msgstr "" +#. module: base +#: field:ir.sequence,number_next:0 +msgid "Next Number" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid "child_of" msgstr "" +#. module: base +#: view:res.currency:0 +#: field:res.currency,rate_ids:0 +msgid "Rates" +msgstr "" + +#. module: base +#: view:res.lang:0 +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 "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_BACK" +msgstr "" + +#. module: base +#: model:res.country,name:base.sy +msgid "Syria" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "======================================================" +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child2:0 +msgid "Field child2" +msgstr "" + +#. module: base +#: field:ir.values,key2:0 +#: view:res.partner.event.type:0 +#: field:res.partner.event.type,name:0 +msgid "Event Type" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child0:0 +msgid "Field child0" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child1:0 +msgid "Field child1" +msgstr "" + +#. module: base +#: field:ir.module.module,website:0 +#: field:res.partner,website:0 +msgid "Website" +msgstr "" + +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Field Selection" +msgstr "" + +#. module: base +#: view:res.roles:0 +msgid "Role" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "https://translations.launchpad.net/openobject" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" msgstr "" +#. module: base +#: model:res.country,name:base.dz +msgid "Algeria" +msgstr "" + #. module: base #: field:ir.report.custom.fields,operation:0 #: field:ir.ui.menu,icon_pict:0 @@ -6648,24 +2826,123 @@ msgstr "" msgid "unknown" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_som-act +#: model:ir.ui.menu,name:base.menu_res_partner_som-act +msgid "States of mind" +msgstr "" + +#. module: base +#: model:res.country,name:base.gs +msgid "S. Georgia & S. Sandwich Isls." +msgstr "" + +#. module: base +#: field:ir.actions.url,url:0 +msgid "Action URL" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "" + #. module: base #: field:ir.ui.view_sc,res_id:0 msgid "Resource Ref." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "" + +#. module: base +#: model:res.country,name:base.mh +msgid "Marshall Islands" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" +msgstr "" + +#. module: base +#: field:res.currency.rate,name:0 +#: field:res.partner,date:0 +#: field:res.partner.event,date:0 +#: field:res.request,date_sent:0 +msgid "Date" +msgstr "" + #. module: base #: model:res.country,name:base.ki msgid "Kiribati" msgstr "" +#. module: base +#: model:res.country,name:base.ht +msgid "Haiti" +msgstr "" + #. module: base #: model:res.country,name:base.iq msgid "Iraq" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Action to Launch" +#: view:ir.attachment:0 +#: field:ir.attachment,datas:0 +msgid "Data" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "RML" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +msgid "Partners by Categories" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +#: model:ir.ui.menu,name:base.next_id_12 +#: view:res.request:0 +msgid "Requests" +msgstr "" + +#. module: base +#: model:res.country,name:base.cl +msgid "Chile" +msgstr "" + +#. module: base +#: field:ir.translation,lang:0 +#: wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 +#: field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "" + +#. module: base +#: model:res.country,name:base.gm +msgid "Gambia" msgstr "" #. module: base @@ -6674,6 +2951,25 @@ msgstr "" msgid "Module import" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form +#: view:res.company:0 +msgid "Companies" +msgstr "" + +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.custom,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "If set to true, the action will not be displayed on the right toolbar of a form view." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -6681,8 +2977,13 @@ msgid "Suppliers Partners" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_sequence_type -msgid "ir.sequence.type" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "" + +#. module: base +#: model:res.country,name:base.be +msgid "Belgium" msgstr "" #. module: base @@ -6690,6 +2991,36 @@ msgstr "" msgid "CSV File" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: base +#: field:res.lang,decimal_point:0 +msgid "Decimal Separator" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" +msgstr "" + +#. module: base +#: field:ir.model.data,date_init:0 +msgid "Init Date" +msgstr "" + +#. module: base +#: field:res.company,rml_header2:0 +msgid "RML Internal Header" +msgstr "" + #. module: base #: selection:ir.model,state:0 #: selection:ir.model.grid,state:0 @@ -6719,15 +3050,31 @@ msgstr "" msgid "Dependencies :" msgstr "" +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-partner" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Bad query." +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +#: field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +msgid "Python Code" +msgstr "" + +#. module: base +#: model:res.country,name:base.gq +msgid "Equatorial Guinea" msgstr "" #. module: base @@ -6735,14 +3082,30 @@ msgstr "" msgid "Field Label" msgstr "" +#. module: base +#: model:ir.module.module,description:base.module_meta_information +msgid "The kernel of OpenERP, needed for all installation." +msgstr "" + +#. module: base +#: field:ir.actions.act_window,view_mode:0 +#: field:res.config.view,view:0 +msgid "View Mode" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Swedish / svenska" +msgstr "" + #. module: base #: model:res.country,name:base.dj msgid "Djibouti" msgstr "" #. module: base -#: field:ir.translation,value:0 -msgid "Translation Value" +#: field:ir.report.custom,frequency:0 +msgid "Frequency" msgstr "" #. module: base @@ -6751,18 +3114,59 @@ msgid "Antigua and Barbuda" msgstr "" #. module: base -#: field:ir.actions.server,condition:0 -#: field:ir.report.custom.fields,fc0_condition:0 -#: field:workflow.transition,condition:0 -msgid "Condition" +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +msgid "Import a Translation File" msgstr "" #. module: base -#: model:res.country,name:base.zr -msgid "Zaire" +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.ui.menu,name:base.menu_partner_customer_form +msgid "Customers Partners" msgstr "" #. module: base +#: field:res.company,child_ids:0 +msgid "Child Companies" +msgstr "" + +#. module: base +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_management +msgid "Modules Management" +msgstr "" + +#. module: base +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" +msgstr "" + +#. module: base +#: model:res.country,name:base.ni +msgid "Nicaragua" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "" + +#. module: base +#: model:res.country,name:base.ck +msgid "Cook Islands" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:workflow.instance,res_id:0 @@ -6779,8 +3183,28 @@ msgid "Information" msgstr "" #. module: base -#: view:wizard.module.lang.export:0 -msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." +#: selection:wizard.module.lang.export,format:0 +msgid "PO File" +msgstr "" + +#. module: base +#: view:res.partner.event:0 +msgid "General Description" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MISSING_IMAGE" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" + +#. module: base +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6793,6 +3217,27 @@ msgstr "" msgid "Next Configuration Wizard" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_rule_group +msgid "ir.rule.group" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation Done" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Maintenance contract added !" +msgstr "" + +#. module: base +#: field:ir.rule,field_id:0 +#: selection:ir.translation,type:0 +msgid "Field" +msgstr "" + #. module: base #: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 @@ -6800,13 +3245,18 @@ msgid "Other" msgstr "" #. module: base -#: view:res.request:0 -msgid "Reply" +#: help:ir.actions.server,email:0 +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 "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Turkish / Türkçe" +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "" + +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" msgstr "" #. module: base @@ -6814,6 +3264,21 @@ msgstr "" msgid "Import New Language" msgstr "" +#. module: base +#: model:res.country,name:base.ve +msgid "Venezuela" +msgstr "" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Installed version" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "9. %j ==> 340" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form #: model:ir.ui.menu,name:base.menu_workflow_activity @@ -6822,11 +3287,73 @@ msgstr "" msgid "Activities" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + +#. module: base +#: field:ir.ui.menu,parent_id:0 +#: field:wizard.ir.model.menu.create,menu_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "" + +#. module: base +#: model:res.country,name:base.is +msgid "Iceland" +msgstr "" + +#. module: base +#: model:res.country,name:base.zm +msgid "Zambia" +msgstr "" + #. module: base #: field:ir.actions.act_window,auto_refresh:0 msgid "Auto-Refresh" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + +#. module: base +#: model:res.country,name:base.mw +msgid "Malawi" +msgstr "" + +#. module: base +#: field:ir.attachment,name:0 +msgid "Attachment Name" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Upgrade" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + +#. module: base +#: model:res.country,name:base.ci +msgid "Ivory Coast (Cote D'Ivoire)" +msgstr "" + #. module: base #: selection:ir.report.custom.fields,fc0_op:0 #: selection:ir.report.custom.fields,fc1_op:0 @@ -6837,9 +3364,157 @@ msgid "=" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Second field should be figures" +#: field:res.payterm,name:0 +msgid "Payment Term (short name)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_bank +#: view:res.bank:0 +#: field:res.partner.bank,bank:0 +msgid "Bank" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,name:0 +#: field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 +#: field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 +#: field:ir.module.category,name:0 +#: field:ir.module.module,name:0 +#: field:ir.module.module.dependency,name:0 +#: rml:ir.module.reference:0 +#: field:ir.module.repository,name:0 +#: field:ir.property,name:0 +#: field:ir.report.custom.fields,name:0 +#: field:ir.rule.group,name:0 +#: field:ir.values,name:0 +#: field:maintenance.contract.module,name:0 +#: field:res.bank,name:0 +#: field:res.config.view,name:0 +#: field:res.lang,name:0 +#: field:res.partner,name:0 +#: field:res.partner.bank.type,name:0 +#: field:res.request.link,name:0 +#: field:res.users,name:0 +#: field:workflow,name:0 +#: field:workflow.activity,name:0 +msgid "Name" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_property +msgid "ir.property" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "" + +#. module: base +#: model:res.country,name:base.ms +msgid "Montserrat" +msgstr "" + +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "" + +#. module: base +#: wizard_view:server.action.create,init:0 +#: wizard_field:server.action.create,init,type:0 +msgid "Select Action Type" +msgstr "" + +#. module: base +#: field:workflow,on_create:0 +msgid "On Create" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "" + +#. module: base +#: model:res.country,name:base.gy +msgid "Guyana" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Resynchronise Terms" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese (BR) / português (BR)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +msgid "ir.sequence.type" +msgstr "" + +#. module: base +#: field:ir.actions.server,record_id:0 +msgid "Create Id" +msgstr "" + +#. module: base +#: model:res.country,name:base.hn +msgid "Honduras" +msgstr "" + +#. module: base +#: field:ir.ui.view,arch:0 +#: field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "" + +#. module: base +#: view:maintenance.contract:0 +#: field:maintenance.contract,module_ids:0 +msgid "Covered Modules" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Average" +msgstr "" + +#. module: base +#: field:res.users,context_tz:0 +msgid "Timezone" msgstr "" #. module: base @@ -6849,11 +3524,8 @@ msgid "Access Controls Grid" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_actions -#: model:ir.ui.menu,name:base.menu_custom_action -#: model:ir.ui.menu,name:base.menu_ir_sequence_actions -#: model:ir.ui.menu,name:base.next_id_6 -msgid "Actions" +#: field:ir.module.module,demo:0 +msgid "Demo data" msgstr "" #. module: base @@ -6861,36 +3533,139 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_instance_form +#: model:ir.ui.menu,name:base.menu_workflow_instance +msgid "Instances" +msgstr "" + +#. module: base +#: model:res.country,name:base.aq +msgid "Antarctica" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "" + +#. module: base +#: wizard_button:module.upgrade,end,config:0 +#: wizard_button:module.upgrade,start,config:0 +msgid "Start configuration" +msgstr "" + +#. module: base +#: model:res.country,name:base.na +msgid "Namibia" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "" + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "" + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "" + +#. module: base +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: view:ir.actions.server:0 +#: model:ir.ui.menu,name:base.menu_server_action +msgid "Server Actions" +msgstr "" + +#. module: base +#: model:res.country,name:base.tp +msgid "East Timor" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Web" +msgstr "" + #. module: base #: help:res.bank,bic:0 msgid "Bank Identifier Code" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflow Definitions" +msgstr "" + #. module: base #: model:res.country,name:base.tm msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/maintenance/maintenance.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#: code:report/custom.py:0 -#, python-format -msgid "Error" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" msgstr "" #. module: base -#: model:res.country,name:base.pm -msgid "Saint Pierre and Miquelon" +#: field:workflow.activity,action:0 +msgid "Python Action" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" + +#. module: base +#: field:res.partner.event,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" + +#. module: base +#: view:ir.rule.group:0 +msgid "Record rules" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +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 "" + +#. module: base +#: help:res.country,name:0 +msgid "The full name of the country." +msgstr "" + +#. module: base +#: model:res.country,name:base.et +msgid "Ethiopia" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." msgstr "" #. module: base @@ -6898,19 +3673,88 @@ msgstr "" msgid "Add or not the coporate RML header" msgstr "" +#. module: base +#: help:res.country.state,code:0 +msgid "The state code in three chars.\n" +"" +msgstr "" + +#. module: base +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "Test" +msgstr "" + +#. module: base +#: field:ir.actions.act_window.view,view_id:0 +#: field:ir.default,page:0 +#: selection:ir.translation,type:0 +#: field:wizard.ir.model.menu.create.line,view_id:0 +msgid "View" +msgstr "" + #. module: base #: field:res.partner.event,document:0 msgid "Document" msgstr "" +#. module: base +#: model:res.country,name:base.kg +msgid "Kyrgyz Republic (Kyrgyzstan)" +msgstr "" + +#. module: base +#: view:ir.model:0 +#: view:ir.model.fields:0 +msgid "Security on Groups" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REFRESH" msgstr "" +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Hours" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_STOP" +msgid "STOCK_HOME" +msgstr "" + +#. module: base +#: field:res.bank,zip:0 +#: field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FILE" +msgstr "" + +#. module: base +#: model:res.country,name:base.uz +msgid "Uzbekistan" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be installed" msgstr "" #. module: base @@ -6918,24 +3762,140 @@ msgstr "" msgid "Update" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act +#: view:ir.cron:0 +#: model:ir.ui.menu,name:base.menu_ir_cron_act +msgid "Scheduled Actions" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_module +msgid "maintenance contract modules" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_meta_information +msgid "Base" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "" + +#. module: base +#: view:res.partner:0 +#: view:res.request:0 +#: field:res.request,history:0 +msgid "History" +msgstr "" + +#. module: base +#: model:res.country,name:base.mk +msgid "FYROM" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be removed" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_WARNING" +msgstr "" + +#. module: base +#: model:res.country,name:base.lr +msgid "Liberia" +msgstr "" + #. module: base #: model:ir.actions.report.xml,name:base.ir_module_reference_print msgid "Technical guide" msgstr "" +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "" + +#. module: base +#: help:ir.values,res_id:0 +msgid "Keep 0 if the action must appear on all resources." +msgstr "" + +#. module: base +#: field:ir.cron,interval_type:0 +msgid "Interval Unit" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONVERT" msgstr "" #. module: base -#: model:res.country,name:base.tz -msgid "Tanzania" +#: view:ir.attachment:0 +#: view:ir.model:0 +#: view:res.groups:0 +#: view:res.partner:0 +#: field:res.partner,comment:0 +#: field:res.partner.function,ref:0 +msgid "Notes" msgstr "" #. module: base -#: model:res.country,name:base.cx -msgid "Christmas Island" +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "" + +#. module: base +#: field:ir.property,value:0 +#: selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 +#: field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "" + +#. module: base +#: field:ir.actions.server,write_id:0 +msgid "Write Id" +msgstr "" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +msgid "Code" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" msgstr "" #. module: base @@ -6943,11 +3903,74 @@ msgstr "" msgid "Other Actions Configuration" msgstr "" +#. module: base +#: model:res.country,name:base.mc +msgid "Monaco" +msgstr "" + +#. module: base +#: field:res.company,rml_footer1:0 +msgid "Report Footer 1" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_EXECUTE" msgstr "" +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "The modules have been upgraded / installed !" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 +msgid "Help" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "" + +#. module: base +#: field:ir.module.category,module_nr:0 +msgid "Number of Modules" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "SMS Configuration" +msgstr "" + +#. module: base +#: view:ir.cron:0 +msgid "Technical Data" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_partner_canal-act #: model:ir.model,name:base.model_res_partner_canal @@ -6955,21 +3978,115 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "draft" +msgstr "" + +#. module: base +#: model:res.country,name:base.kn +msgid "Saint Kitts & Nevis Anguilla" +msgstr "" + +#. module: base +#: help:ir.actions.server,condition:0 +msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Schedule for Installation" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "" + #. module: base #: selection:ir.model.fields,select_level:0 msgid "Advanced Search" msgstr "" +#. module: base +#: view:res.lang:0 +msgid "7. %H:%M:%S ==> 18:25:20" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form +#: view:res.partner:0 +msgid "Partners" +msgstr "" + +#. module: base +#: help:ir.actions.server,message:0 +msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +msgid "Bank Type" +msgstr "" + +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export ID" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" msgstr "" +#. module: base +#: model:res.country,name:base.fr +msgid "France" +msgstr "" + +#. module: base +#: field:ir.cron,priority:0 +#: field:ir.ui.view,priority:0 +#: field:res.request,priority:0 +#: field:res.request.link,priority:0 +msgid "Priority" +msgstr "" + #. module: base #: field:ir.translation,src:0 msgid "Source" @@ -6981,8 +4098,18 @@ msgid "Keep empty for a private address, not related to partner." msgstr "" #. module: base -#: model:res.country,name:base.vu -msgid "Vanuatu" +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Legend (for prefix, suffix)" +msgstr "" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" msgstr "" #. module: base @@ -6991,15 +4118,92 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" msgstr "" #. module: base -#: wizard_button:module.upgrade,end,config:0 -#: wizard_button:module.upgrade,start,config:0 -msgid "Start configuration" +#: view:res.partner.bank:0 +msgid "Bank Account Owner" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form +#: model:ir.ui.menu,name:base.menu_values_form +msgid "Client Actions Connections" +msgstr "" + +#. module: base +#: field:ir.ui.view,name:0 +msgid "View Name" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,resource:0 +msgid "Resource Name" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 +msgid "Multi Actions" +msgstr "" + +#. module: base +#: model:res.country,name:base.af +msgid "Afghanistan, Islamic State of" +msgstr "" + +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "" + +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." +msgstr "" + +#. module: base +#: view:res.company:0 +#: view:res.partner:0 +msgid "General Information" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +msgid "Not Installable" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_window +#: model:ir.ui.menu,name:base.menu_ir_action_window +msgid "Window Actions" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group By" +msgstr "" + +#. module: base +#: model:res.country,name:base.gp +msgid "Guadeloupe (French)" +msgstr "" + +#. module: base +#: field:ir.translation,value:0 +msgid "Translation Value" msgstr "" #. module: base @@ -7007,25 +4211,131 @@ msgstr "" msgid "Catalan / Català" msgstr "" +#. module: base +#: view:res.request:0 +msgid "End of Request" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Accumulate" +msgstr "" + +#. module: base +#: view:res.request:0 +msgid "References" +msgstr "" + #. module: base #: model:res.country,name:base.do msgid "Dominican Republic" msgstr "" +#. module: base +#: view:res.lang:0 +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 "" + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COLOR_PICKER" msgstr "" #. module: base -#: model:res.country,name:base.sa -msgid "Saudi Arabia" +#: selection:ir.ui.menu,icon:0 +msgid "terp-product" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "" + +#. module: base +#: model:res.country,name:base.gh +msgid "Ghana" +msgstr "" + +#. module: base +#: field:maintenance.contract,kind:0 +#: field:workflow.activity,kind:0 +msgid "Kind" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" +msgstr "" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of Calls" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Could you check your contract information ?" +msgstr "" + +#. module: base +#: model:res.country,name:base.hm +msgid "Heard and McDonald Islands" +msgstr "" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created Date" +msgstr "" + +#. module: base +#: wizard_button:base.module.import,init,end:0 +#: selection:ir.actions.todo,state:0 +#: wizard_button:module.lang.import,init,end:0 +#: wizard_button:module.lang.install,init,end:0 +#: wizard_button:module.module.update,init,end:0 +#: wizard_button:module.upgrade,next,end:0 +#: wizard_button:res.partner.sms_send,init,end:0 +#: wizard_button:res.partner.spam_send,init,end:0 +#: view:wizard.ir.model.menu.create:0 +#: view:wizard.module.lang.export:0 +#: view:wizard.module.update_translations:0 +msgid "Cancel" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory" +msgstr "" + +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Line Plot" +msgstr "" + +#. module: base +#: field:wizard.ir.model.menu.create,name:0 +msgid "Menu Name" msgstr "" #. module: base @@ -7038,6 +4348,31 @@ msgstr "" msgid "Relation Field" msgstr "" +#. module: base +#: help:res.users,password:0 +msgid "Keep empty if you don't want the user to be able to connect on the system." +msgstr "" + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report Title" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish / Español" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,fontcolor:0 +msgid "Font color" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (TW) / 正體字" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -7048,9 +4383,24 @@ msgstr "" msgid "Action on Multiple Doc." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_DESCENDING" +msgstr "" + #. module: base #: view:wizard.module.lang.export:0 -msgid "https://translations.launchpad.net/openobject" +msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." +msgstr "" + +#. module: base +#: model:res.country,name:base.my +msgid "Malaysia" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" msgstr "" #. module: base @@ -7059,14 +4409,67 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Client Action Configuration" +msgstr "" + +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "" + #. module: base #: field:ir.actions.todo,start_date:0 msgid "Start Date" msgstr "" #. module: base -#: field:ir.actions.report.xml,report_xml:0 -msgid "XML path" +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.model,name:base.model_res_partner_address +#: model:ir.ui.menu,name:base.menu_partner_address_form +#: view:res.partner.address:0 +msgid "Partner Addresses" +msgstr "" + +#. module: base +#: model:res.country,name:base.us +msgid "United States" +msgstr "" + +#. module: base +#: field:ir.default,company_id:0 +#: field:ir.property,company_id:0 +#: field:ir.values,company_id:0 +#: view:res.company:0 +#: field:res.users,company_id:0 +msgid "Company" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "" + +#. module: base +#: model:res.country,name:base.so +msgid "Somalia" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window,target:0 +#: selection:ir.actions.url,target:0 +msgid "New Window" msgstr "" #. module: base @@ -7074,11 +4477,31 @@ msgstr "" msgid "Guinea" msgstr "" +#. module: base +#: model:res.country,name:base.pa +msgid "Panama" +msgstr "" + #. module: base #: model:res.country,name:base.lu msgid "Luxembourg" msgstr "" +#. module: base +#: model:res.country,name:base.cv +msgid "Cape Verde" +msgstr "" + +#. module: base +#: model:res.country,name:base.bs +msgid "Bahamas" +msgstr "" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "" + #. module: base #: model:ir.actions.todo,note:base.config_wizard_step_user msgid "Create your users.\n" @@ -7087,13 +4510,89 @@ msgid "Create your users.\n" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NETWORK" msgstr "" #. module: base -#: view:ir.values:0 -msgid "tree_but_action, client_print_multi" +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: base +#: model:res.country,name:base.ie +msgid "Ireland" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +#: model:ir.ui.menu,name:base.menu_partner_customer_form_new +msgid "New Partner" +msgstr "" + +#. module: base +#: wizard_field:module.module.update,update,update:0 +msgid "Number of modules updated" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Skip Step" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_res_partner_event +#: field:res.partner,events:0 +#: field:res.partner.event,name:0 +msgid "Events" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles +#: model:ir.ui.menu,name:base.menu_action_res_roles +msgid "Roles Structure" +msgstr "" + +#. module: base +#: model:res.country,name:base.pn +msgid "Pitcairn Island" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.url" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_STOP" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +msgid "Active Partner Events" msgstr "" #. module: base @@ -7101,20 +4600,91 @@ msgstr "" msgid "El Salvador" msgstr "" +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-graph" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "" + +#. module: base +#: wizard_field:module.module.update,update,add:0 +msgid "Number of modules added" +msgstr "" + #. module: base #: field:res.bank,phone:0 #: field:res.partner.address,phone:0 msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +msgstr "" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,groups_id:0 +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.report.xml,groups_id:0 +#: field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 +#: field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 +#: field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups +#: view:res.groups:0 +#: view:res.users:0 +#: field:res.users,groups_id:0 +msgid "Groups" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French / Français" +msgstr "" + #. module: base #: field:res.groups,menu_access:0 msgid "Access Menu" msgstr "" #. module: base -#: model:res.country,name:base.th -msgid "Thailand" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch (Belgium) / Nederlands (Belgïe)" +msgstr "" + +#. module: base +#: view:ir.model:0 +#: view:ir.model.fields:0 +#: view:ir.property:0 +#: model:ir.ui.menu,name:base.next_id_15 +msgid "Properties" msgstr "" #. module: base @@ -7125,11 +4695,111 @@ msgstr "" msgid ">" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" +msgstr "" + +#. module: base +#: field:workflow.triggers,workitem_id:0 +msgid "Workitem" +msgstr "" + +#. module: base +#: model:res.country,name:base.ge +msgid "Georgia" +msgstr "" + +#. module: base +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry +msgid "country_id" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "" + +#. module: base +#: model:res.country,name:base.pl +msgid "Poland" +msgstr "" + #. module: base #: field:ir.model.access,perm_unlink:0 msgid "Delete Permission" msgstr "" +#. module: base +#: field:workflow.activity,signal_send:0 +msgid "Signal (subflow.*)" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_OUT" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "" + +#. module: base +#: field:ir.values,meta:0 +msgid "Meta Datas" +msgstr "" + +#. module: base +#: field:ir.model,name:0 +#: field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 +#: field:ir.values,model:0 +msgid "Object Name" +msgstr "" + +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: view:ir.actions.wizard:0 +#: model:ir.ui.menu,name:base.menu_ir_action_wizard +msgid "Wizards" +msgstr "" + +#. module: base +#: field:ir.rule,domain_force:0 +msgid "Force Domain" +msgstr "" + +#. module: base +#: help:ir.actions.server,expression:0 +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 "" + +#. module: base +#: model:ir.model,name:base.model_ir_cron +msgid "ir.cron" +msgstr "" + #. module: base #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 @@ -7141,28 +4811,77 @@ msgstr "" msgid "Object Relation" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: view:ir.attachment:0 +#: model:ir.ui.menu,name:base.menu_action_attachment +msgid "Attachments" +msgstr "" + +#. module: base +#: field:res.request,act_to:0 +#: field:res.request.history,act_to:0 +msgid "To" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Validate" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_wizard +msgid "maintenance.contract.wizard" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT" msgstr "" #. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "<" +#: view:res.partner:0 +msgid "General" msgstr "" #. module: base -#: model:res.country,name:base.uz -msgid "Uzbekistan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_actions_act_window -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_window" +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "" + +#. module: base +#: field:ir.actions.server,child_ids:0 +msgid "Other Actions" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "" + +#. module: base +#: field:workflow.activity,out_transitions:0 +msgid "Outgoing Transitions" +msgstr "" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" msgstr "" #. module: base @@ -7171,13 +4890,131 @@ msgid "Virgin Islands (USA)" msgstr "" #. module: base -#: model:res.country,name:base.tw -msgid "Taiwan" +#: help:res.partner,vat:0 +msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." msgstr "" #. module: base -#: view:ir.rule:0 -msgid "If you don't force the domain, it will use the simple domain setup" +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" +msgstr "" + +#. module: base +#: model:res.country,name:base.cy +msgid "Cyprus" +msgstr "" + +#. module: base +#: field:ir.model.access,perm_write:0 +msgid "Write Access" +msgstr "" + +#. module: base +#: model:res.country,name:base.bb +msgid "Barbados" +msgstr "" + +#. module: base +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "" + +#. module: base +#: field:res.bank,city:0 +#: field:res.partner,city:0 +#: field:res.partner.address,city:0 +#: field:res.partner.bank,city:0 +msgid "City" +msgstr "" + +#. module: base +#: model:res.country,name:base.mg +msgid "Madagascar" +msgstr "" + +#. module: base +#: model:res.country,name:base.it +msgid "Italy" +msgstr "" + +#. module: base +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 +msgid "Custom Object" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 +#: view:ir.ui.menu:0 +#: field:ir.ui.menu,name:0 +msgid "Menu" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + +#. module: base +#: model:res.country,name:base.fm +msgid "Micronesia" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Estonian / Eesti keel" +msgstr "" + +#. module: base +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "" + +#. module: base +#: help:ir.rule.group,global:0 +msgid "Make the rule global, otherwise it needs to be put on a group or user" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_UP" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Action To Launch" +msgstr "" + +#. module: base +#: model:res.country,name:base.um +msgid "USA Minor Outlying Islands" +msgstr "" + +#. module: base +#: field:ir.actions.url,target:0 +msgid "Action Target" msgstr "" #. module: base @@ -7186,6 +5023,26 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "uk_UK" +msgstr "" + +#. module: base +#: model:res.country,name:base.ai +msgid "Anguilla" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese / português" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.act_window,usage:0 #: field:ir.actions.act_window_close,usage:0 @@ -7197,24 +5054,103 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" +msgstr "" + +#. module: base +#: model:res.country,name:base.il +msgid "Israel" +msgstr "" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "Confirmation" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_server_action_create +msgid "Create Action" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" msgstr "" #. module: base -#: selection:ir.module.module,state:0 -msgid "Not Installable" +#: field:ir.ui.view_sc,name:0 +msgid "Shortcut Name" msgstr "" #. module: base -#: rml:ir.module.reference:0 -msgid "View :" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base -#: field:ir.model.fields,view_load:0 -msgid "View Auto-Load" +#: model:res.country,name:base.pg +msgid "Papua New Guinea" +msgstr "" + +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "" + +#. module: base +#: field:ir.module.module,url:0 +#: field:ir.module.repository,url:0 +msgid "URL" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" +msgstr "" + +#. module: base +#: field:res.users,address_id:0 +msgid "Address" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Your system will be upgraded." +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +msgid "Configure User" +msgstr "" + +#. module: base +#: field:ir.report.custom,print_format:0 +msgid "Print format" msgstr "" #. module: base @@ -7227,12 +5163,64 @@ msgstr "" msgid "End Date" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-calendar" +msgstr "" + #. module: base #: field:ir.exports,resource:0 #: field:ir.property,res_id:0 msgid "Resource" msgstr "" +#. module: base +#: field:ir.actions.server,email:0 +msgid "Email Address" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-tools" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +msgid "Payment term" +msgstr "" + +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Report xml" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_open_categ +#: model:ir.actions.act_window,name:base.open_module_tree +#: view:ir.module.module:0 +#: model:ir.ui.menu,name:base.menu_module_tree +#: field:wizard.module.lang.export,modules:0 +msgid "Modules" +msgstr "" + +#. module: base +#: selection:workflow.activity,kind:0 +#: field:workflow.activity,subflow_id:0 +#: field:workflow.workitem,subflow_id:0 +msgid "Subflow" +msgstr "" + +#. module: base +#: help:ir.values,action_id:0 +msgid "This field is not used, it only helps you to select the right action." +msgstr "" + +#. module: base +#: model:res.country,name:base.tt +msgid "Trinidad and Tobago" +msgstr "" + #. module: base #: field:maintenance.contract,name:0 #: field:maintenance.contract.wizard,name:0 @@ -7240,8 +5228,110 @@ msgid "Contract ID" msgstr "" #. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "center" +#: model:res.country,name:base.lv +msgid "Latvia" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Values" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_INFO" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_upgrade +#: model:ir.ui.menu,name:base.menu_wizard_upgrade +msgid "Apply Scheduled Upgrades" +msgstr "" + +#. module: base +#: view:workflow.activity:0 +#: field:workflow.workitem,act_id:0 +msgid "Activity" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: model:ir.ui.menu,name:base.menu_action_res_bank_form +#: view:res.bank:0 +#: field:res.partner,bank_ids:0 +msgid "Banks" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "" + +#. module: base +#: view:ir.ui.view_sc:0 +#: field:res.partner.title,shortcut:0 +msgid "Shortcut" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-sale" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mappings" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%d - Day of the month as a decimal number [01,31]." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Romanian / limba română" +msgstr "" + +#. module: base +#: field:res.company,parent_id:0 +msgid "Parent Company" +msgstr "" + +#. module: base +#: field:ir.values,object:0 +msgid "Is Object" +msgstr "" + +#. module: base +#: field:ir.cron,doall:0 +msgid "Repeat Missed" +msgstr "" + +#. module: base +#: help:ir.actions.server,state:0 +msgid "Type of the Action that is to be executed" +msgstr "" + +#. module: base +#: field:ir.server.object.lines,server_id:0 +msgid "Object Mapping" +msgstr "" + +#. module: base +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "" + +#. module: base +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" msgstr "" #. module: base @@ -7252,8 +5342,133 @@ msgid "States" msgstr "" #. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group or user" +#: model:res.country,name:base.ug +msgid "Uganda" +msgstr "" + +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "" + +#. module: base +#: model:res.country,name:base.cg +msgid "Congo" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Create / Write" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "Examples" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +msgid "Customization" +msgstr "" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category without removing it." +msgstr "" + +#. module: base +#: model:res.country,name:base.py +msgid "Paraguay" +msgstr "" + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Object:" +msgstr "" + +#. module: base +#: model:res.country,name:base.st +msgid "Saint Tome (Sao Tome) and Principe" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base +#: model:res.country,name:base.bw +msgid "Botswana" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "" + +#. module: base +#: view:ir.model:0 +#: view:res.request:0 +msgid "Status" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +msgid "Report Xml" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +msgid "Partner Titles" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_xml:0 +msgid "XML path" +msgstr "" + +#. module: base +#: help:ir.actions.act_window,auto_refresh:0 +msgid "Add an auto-refresh on the view" +msgstr "" + +#. module: base +#: model:res.country,name:base.lt +msgid "Lithuania" +msgstr "" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Base Field" msgstr "" #. module: base @@ -7269,8 +5484,9 @@ msgid "Access" msgstr "" #. module: base -#: model:res.country,name:base.sk -msgid "Slovak Republic" +#: field:res.partner,child_ids:0 +#: field:res.request,ref_partner_id:0 +msgid "Partner Ref." msgstr "" #. module: base @@ -7279,8 +5495,23 @@ msgid "Aruba" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Weeks" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_DOWN" +msgstr "" + +#. module: base +#: model:res.country,name:base.tw +msgid "Taiwan" +msgstr "" + +#. module: base +#: model:res.country,name:base.ar +msgid "Argentina" +msgstr "" + +#. module: base +#: help:res.partner,user_id:0 +msgid "The internal user that is in charge of communicating with this partner if any." msgstr "" #. module: base @@ -7288,19 +5519,98 @@ msgstr "" msgid "Group Name" msgstr "" +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_download:0 +msgid "Modules to download" +msgstr "" + +#. module: base +#: model:res.country,name:base.ch +msgid "Switzerland" +msgstr "" + #. module: base #: model:res.country,name:base.bh msgid "Bahrain" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_12 -msgid "Segmentation" +#: field:res.bank,fax:0 +#: field:res.partner.address,fax:0 +msgid "Fax" +msgstr "" + +#. module: base +#: model:res.country,name:base.ye +msgid "Yemen" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_workitem_form +#: model:ir.ui.menu,name:base.menu_workflow_workitem +msgid "Workitems" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND" +msgid "STOCK_PRINT_PREVIEW" +msgstr "" + +#. module: base +#: field:wizard.module.lang.export,advice:0 +msgid "Advice" +msgstr "" + +#. module: base +#: model:res.country,name:base.si +msgid "Slovenia" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_attachment +msgid "ir.attachment" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom_fields +msgid "ir.report.custom.fields" +msgstr "" + +#. module: base +#: model:res.country,name:base.uk +msgid "United Kingdom" +msgstr "" + +#. module: base +#: model:res.country,name:base.de +msgid "Germany" +msgstr "" + +#. module: base +#: help:ir.actions.server,srcmodel_id:0 +msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Not Installed" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Lithuanian / Lietuvių kalba" +msgstr "" + +#. module: base +#: field:res.users,action_id:0 +msgid "Home Action" +msgstr "" + +#. module: base +#: field:ir.ui.menu,icon:0 +msgid "Icon" msgstr "" #. module: base @@ -7310,31 +5620,154 @@ msgstr "" msgid "Add Maintenance Contract" msgstr "" +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +msgid "Ok" +msgstr "" + +#. module: base +#: field:res.lang,grouping:0 +msgid "Separator Format" +msgstr "" + +#. module: base +#: model:res.country,name:base.pk +msgid "Pakistan" +msgstr "" + +#. module: base +#: field:ir.ui.view,inherit_id:0 +msgid "Inherited View" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: base +#: model:res.country,name:base.mq +msgid "Martinique (French)" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%p - Equivalent of either AM or PM." +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 msgid "Limit" msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Actions" +msgstr "" + #. module: base #: help:ir.actions.server,wkf_model_id:0 msgid "Workflow to be executed on this model." msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + +#. module: base +#: model:res.country,name:base.sn +msgid "Senegal" +msgstr "" + +#. module: base +#: model:res.country,name:base.ws +msgid "Samoa" +msgstr "" + +#. module: base +#: model:res.country,name:base.nz +msgid "New Zealand" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "" + #. module: base #: model:res.country,name:base.jm msgid "Jamaica" msgstr "" +#. module: base +#: model:res.country,name:base.al +msgid "Albania" +msgstr "" + +#. module: base +#: field:maintenance.contract,date_stop:0 +msgid "Ending Date" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "" + +#. module: base +#: model:res.country,name:base.nf +msgid "Norfolk Island" +msgstr "" + +#. module: base +#: model:res.country,name:base.kz +msgid "Kazakhstan" +msgstr "" + #. module: base #: model:res.country,name:base.az msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Warning" +#: model:ir.actions.act_window,name:base.open_module_tree_install +#: model:ir.ui.menu,name:base.menu_module_tree_install +msgid "Installed modules" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Your Maintenance Contracts" +msgstr "" + +#. module: base +#: field:ir.ui.menu,child_id:0 +msgid "Child IDs" +msgstr "" + +#. module: base +#: model:res.country,name:base.ae +msgid "United Arab Emirates" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 +#: view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 +#: rml:ir.module.reference:0 +msgid "Module" msgstr "" #. module: base @@ -7342,19 +5775,50 @@ msgstr "" msgid "Arabic / الْعَرَبيّة" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: model:res.country,name:base.gi msgid "Gibraltar" msgstr "" +#. module: base +#: field:ir.actions.server,action_id:0 +#: selection:ir.actions.server,state:0 +msgid "Client Action" +msgstr "" + #. module: base #: model:res.country,name:base.vg msgid "Virgin Islands (British)" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PREVIOUS" +#: model:res.country,name:base.bd +msgid "Bangladesh" +msgstr "" + +#. module: base +#: field:workflow.transition,signal:0 +msgid "Signal (button Name)" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "" + +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" msgstr "" #. module: base @@ -7363,18 +5827,40 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" msgstr "" #. module: base -#: model:res.country,name:base.rw -msgid "Rwanda" +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" msgstr "" #. module: base -#: constraint:res.partner:0 -msgid "The VAT doesn't seem to be correct." +#: field:ir.actions.server,loop_action:0 +msgid "Loop Action" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +#: field:maintenance.contract.module,version:0 +msgid "Version" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +#: view:maintenance.contract:0 +msgid "Maintenance Contract" +msgstr "" + +#. module: base +#: help:ir.actions.server,trigger_obj_id:0 +msgid "Select the object from the model on which the workflow will executed." +msgstr "" + +#. module: base +#: model:res.country,name:base.la +msgid "Laos" msgstr "" #. module: base @@ -7388,8 +5874,19 @@ msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" #. module: base -#: model:res.country,name:base.ck -msgid "Cook Islands" +#: selection:ir.actions.server,state:0 +msgid "Email" +msgstr "" + +#. module: base +#: view:res.partner.canal:0 +#: field:res.partner.event,canal_id:0 +msgid "Channel" +msgstr "" + +#. module: base +#: field:ir.model.access,perm_create:0 +msgid "Create Access" msgstr "" #. module: base @@ -7397,19 +5894,30 @@ msgstr "" msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +#: model:ir.ui.menu,name:base.menu_partner_other_form +msgid "Others Partners" +msgstr "" + #. module: base #: field:ir.model.data,noupdate:0 msgid "Non Updatable" msgstr "" #. module: base -#: model:res.country,name:base.sg -msgid "Singapore" +#: model:res.country,name:base.cu +msgid "Cuba" msgstr "" #. module: base -#: selection:ir.actions.act_window,target:0 -msgid "Current Window" +#: field:res.partner.address,state_id:0 +msgid "Fed. State" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%S - Second as a decimal number [00,61]." msgstr "" #. module: base @@ -7418,19 +5926,59 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NETWORK" +#: selection:wizard.module.lang.export,state:0 +msgid "get" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_country -#: field:res.bank,country:0 -#: view:res.country:0 -#: field:res.country.state,country_id:0 -#: field:res.partner,country:0 -#: field:res.partner.address,country_id:0 -#: field:res.partner.bank,country_id:0 -msgid "Country" +#: model:res.country,name:base.yt +msgid "Mayotte" +msgstr "" + +#. module: base +#: model:res.country,name:base.ro +msgid "Romania" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%w - Weekday as a decimal number [0(Sunday),6]." +msgstr "" + +#. module: base +#: model:res.country,name:base.am +msgid "Armenia" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields +#: view:ir.model:0 +#: field:ir.model,field_id:0 +#: model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 +#: field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 +#: field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +msgid "Fields" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: model:ir.ui.menu,name:base.menu_config +#: view:res.company:0 +msgid "Configuration" +msgstr "" + +#. module: base +#: field:maintenance.contract,date_start:0 +msgid "Starting Date" +msgstr "" + +#. module: base +#: view:ir.model:0 +#: field:ir.model.fields,ttype:0 +msgid "Field Type" msgstr "" #. module: base @@ -7439,24 +5987,168 @@ msgstr "" msgid "Complete Name" msgstr "" +#. module: base +#: field:res.country.state,code:0 +msgid "State Code" +msgstr "" + +#. module: base +#: field:ir.model.fields,on_delete:0 +msgid "On delete" +msgstr "" + +#. module: base +#: view:res.request:0 +msgid "Reply" +msgstr "" + +#. module: base +#: field:ir.cron,function:0 +#: field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +msgid "Function" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Cancel" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" msgstr "" #. module: base -#: field:ir.values,object:0 -msgid "Is Object" +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 +msgid "in" msgstr "" #. module: base -#: field:res.partner.category,name:0 -msgid "Category Name" +#: selection:ir.ui.menu,icon:0 +msgid "terp-report" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_15 -msgid "IT sector" +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +msgid "Workflows" +msgstr "" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" +msgstr "" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Left-to-Right" +msgstr "" + +#. module: base +#: help:ir.actions.wizard,multi:0 +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." +msgstr "" + +#. module: base +#: field:res.lang,translatable:0 +msgid "Translatable" +msgstr "" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Daily" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "3. %x ,%X ==> 12/05/08, 18:25:20" +msgstr "" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Cascade" +msgstr "" + +#. module: base +#: model:res.country,name:base.se +msgid "Sweden" +msgstr "" + +#. module: base +#: model:res.country,name:base.au +msgid "Australia" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard View" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Gantt" +msgstr "" + +#. module: base +#: view:ir.property:0 +msgid "Property" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type +#: view:res.partner.bank.type:0 +msgid "Bank Account Type" +msgstr "" + +#. module: base +#: field:res.partner.category,complete_name:0 +msgid "Full Name" +msgstr "" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-project" +msgstr "" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "" + +#. module: base +#: field:ir.model.fields,domain:0 +#: field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "" + +#. module: base +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base @@ -7464,6 +6156,16 @@ msgstr "" msgid "%X - Appropriate time representation." msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Action Configuration" +msgstr "" + +#. module: base +#: model:res.country,name:base.qa +msgid "Qatar" +msgstr "" + #. module: base #: view:res.company:0 msgid "Your Logo - Use a size of about 450x150 pixels." @@ -7475,14 +6177,45 @@ msgid "The Separator Format should be like [,n] where 0 < n :starting from Unit msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form_new -#: model:ir.ui.menu,name:base.menu_partner_customer_form_new -msgid "New Partner" +#: model:res.country,name:base.at +msgid "Austria" msgstr "" #. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Portrait" +#: model:res.country,name:base.mz +msgid "Mozambique" +msgstr "" + +#. module: base +#: model:res.country,name:base.tv +msgid "Tuvalu" +msgstr "" + +#. module: base +#: field:workflow.activity,join_mode:0 +msgid "Join Mode" +msgstr "" + +#. module: base +#: model:res.country,name:base.jp +msgid "Japan" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" +msgstr "" + +#. module: base +#: field:ir.actions.act_window.view,multi:0 +msgid "On Multiple Doc." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" msgstr "" #. module: base @@ -7491,8 +6224,26 @@ msgid "Wizard Button" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIRECTORY" +#: model:res.country,name:base.nl +msgid "Netherlands" +msgstr "" + +#. module: base +#: field:res.partner,address:0 +#: view:res.partner.address:0 +msgid "Contacts" +msgstr "" + +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Graph" msgstr "" #. module: base @@ -7505,21 +6256,123 @@ msgstr "" msgid "ir.actions.server" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "" + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "right" +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Draft" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.maintenance +msgid "Maintenance" +msgstr "" + +#. module: base +#: model:res.country,name:base.sj +msgid "Svalbard and Jan Mayen Islands" +msgstr "" + +#. module: base +#: view:res.config.view:0 +msgid "Choose Your Mode" +msgstr "" + #. module: base #: view:ir.actions.report.custom:0 msgid "Report custom" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +#: field:workflow.activity,action_id:0 +msgid "Server Action" +msgstr "" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 +#: field:res.users,login:0 +msgid "Login" +msgstr "" + +#. module: base +#: model:res.country,name:base.mp +msgid "Northern Mariana Islands" +msgstr "" + +#. module: base +#: model:res.country,name:base.by +msgid "Belarus" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,name:0 +#: field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 +#: field:ir.actions.server,name:0 +#: field:ir.actions.url,name:0 +msgid "Action Name" +msgstr "" + #. module: base #: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" +#. module: base +#: field:res.company,rml_footer2:0 +msgid "Report Footer 2" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_11 msgid "Configuration Wizards" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "" + +#. module: base +#: field:res.bank,street2:0 +#: field:res.partner.address,street2:0 +msgid "Street2" +msgstr "" + #. module: base #: field:workflow.activity,split_mode:0 msgid "Split Mode" @@ -7531,13 +6384,28 @@ msgid "Localisation" msgstr "" #. module: base -#: selection:res.config.view,view:0 -msgid "Simplified Interface" +#: view:ir.module.module:0 +#: field:ir.module.module,dependencies_id:0 +msgid "Dependencies" msgstr "" #. module: base -#: model:res.country,name:base.cl -msgid "Chile" +#: field:ir.cron,user_id:0 +#: field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 +#: field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Action to Launch" +msgstr "" + +#. module: base +#: model:res.country,name:base.pr +msgid "Puerto Rico" msgstr "" #. module: base @@ -7546,9 +6414,25 @@ msgid "STOCK_REVERT_TO_SAVED" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_import -#: model:ir.ui.menu,name:base.menu_wizard_lang_import -msgid "Import a Translation File" +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "" + +#. module: base +#: model:res.country,name:base.lc +msgid "Saint Lucia" +msgstr "" + +#. module: base +#: field:ir.actions.server,condition:0 +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:workflow.transition,condition:0 +msgid "Condition" msgstr "" #. module: base @@ -7557,8 +6441,29 @@ msgid "This field is not used, it only helps you to select a good model." msgstr "" #. module: base -#: field:ir.ui.view,name:0 -msgid "View Name" +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation_untrans +#: model:ir.ui.menu,name:base.menu_action_translation_untrans +msgid "Untranslated terms" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base @@ -7567,8 +6472,73 @@ msgid "Italian / Italiano" msgstr "" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +msgid "Import module" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users +#: field:ir.actions.todo,users_id:0 +#: field:ir.default,uid:0 +#: field:ir.rule.group,users:0 +#: model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users +#: view:res.groups:0 +#: field:res.groups,users:0 +#: field:res.roles,users:0 +#: view:res.users:0 +msgid "Users" +msgstr "" + +#. module: base +#: view:workflow.transition:0 +msgid "Transition" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "" + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contact Titles" +msgstr "" + +#. module: base +#: field:ir.module.repository,filter:0 +msgid "Filter" +msgstr "" + +#. module: base +#: field:ir.actions.todo,active:0 +#: field:ir.cron,active:0 +#: field:ir.module.repository,active:0 +#: field:ir.sequence,active:0 +#: field:res.bank,active:0 +#: field:res.currency,active:0 +#: field:res.lang,active:0 +#: field:res.partner,active:0 +#: field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 +#: field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 +#: field:res.request,active:0 +#: field:res.users,active:0 +msgid "Active" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -7576,11 +6546,21 @@ msgstr "" msgid "Croatia" msgstr "" +#. module: base +#: model:res.country,name:base.mn +msgid "Mongolia" +msgstr "" + #. module: base #: field:ir.actions.server,mobile:0 msgid "Mobile No" msgstr "" +#. module: base +#: model:res.country,name:base.th +msgid "Thailand" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_by_category #: model:ir.actions.act_window,name:base.action_partner_category_form @@ -7590,6 +6570,11 @@ msgstr "" msgid "Partner Categories" msgstr "" +#. module: base +#: model:res.country,name:base.gd +msgid "Grenada" +msgstr "" + #. module: base #: field:ir.sequence,code:0 #: field:ir.sequence.type,code:0 @@ -7602,8 +6587,48 @@ msgid "a5" msgstr "" #. module: base -#: model:res.country,name:base.sc -msgid "Seychelles" +#: selection:server.action.create,init,type:0 +msgid "Open Report" +msgstr "" + +#. module: base +#: field:res.currency,rounding:0 +msgid "Rounding factor" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Field" +msgstr "" + +#. module: base +#: model:res.country,name:base.bz +msgid "Belize" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" +msgstr "" + +#. module: base +#: field:ir.model.fields,select_level:0 +msgid "Searchable" +msgstr "" + +#. module: base +#: model:res.country,name:base.uy +msgid "Uruguay" +msgstr "" + +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "" + +#. module: base +#: view:res.partner.som:0 +msgid "Partner State of Mind" msgstr "" #. module: base @@ -7612,20 +6637,65 @@ msgstr "" msgid "Bank Accounts" msgstr "" +#. module: base +#: selection:ir.ui.view,type:0 +msgid "mdx" +msgstr "" + #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" msgstr "" #. module: base -#: view:res.company:0 -#: view:res.partner:0 -msgid "General Information" +#: model:res.country,name:base.eg +msgid "Egypt" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-product" +#: field:ir.sequence,prefix:0 +msgid "Prefix" +msgstr "" + +#. module: base +#: model:res.country,name:base.rw +msgid "Rwanda" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "German / Deutsch" +msgstr "" + +#. module: base +#: help:ir.actions.server,trigger_name:0 +msgid "Select the Signal name that is to be used as the trigger." +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Fields Mapping" +msgstr "" + +#. module: base +#: model:res.country,name:base.bi +msgid "Burundi" +msgstr "" + +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:module.upgrade,end,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:server.action.create,step_1,end:0 +#: view:wizard.module.lang.export:0 +msgid "Close" +msgstr "" + +#. module: base +#: field:ir.sequence,name:0 +#: field:ir.sequence.type,name:0 +msgid "Sequence Name" msgstr "" #. module: base @@ -7633,22 +6703,158 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "System upgrade done" +msgstr "" + +#. module: base +#: model:res.country,name:base.sc +msgid "Seychelles" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_simple_view_form +msgid "Configure Simple View" +msgstr "" + +#. module: base +#: wizard_button:module.upgrade,next,start:0 +msgid "Start Upgrade" +msgstr "" + +#. module: base +#: model:res.country,name:base.bt +msgid "Bhutan" +msgstr "" + +#. module: base +#: field:ir.default,ref_id:0 +msgid "ID Ref." +msgstr "" + #. module: base #: field:res.partner.bank,owner_name:0 msgid "Account Owner" msgstr "" #. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,fc1_condition:0 +#: field:ir.report.custom.fields,fc2_condition:0 +#: field:ir.report.custom.fields,fc3_condition:0 +msgid "condition" +msgstr "" + +#. module: base +#: model:res.country,name:base.sg +msgid "Singapore" +msgstr "" + +#. module: base +#: model:res.country,name:base.mt +msgid "Malta" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_report_custom +#: view:ir.report.custom:0 +msgid "Custom Report" +msgstr "" + +#. module: base +#: field:ir.actions.server,fields_lines:0 +msgid "Field Mappings." +msgstr "" + +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + +#. module: base +#: field:ir.cron,args:0 +msgid "Arguments" +msgstr "" + +#. module: base +#: field:ir.attachment,res_model:0 #: field:workflow,osv:0 #: field:workflow.instance,res_type:0 msgid "Resource Object" msgstr "" #. module: base -#: field:ir.cron,function:0 -#: field:res.partner.address,function:0 -#: selection:workflow.activity,kind:0 -msgid "Function" +#: selection:ir.actions.report.xml,report_type:0 +msgid "sxw" +msgstr "" + +#. module: base +#: field:ir.module.module,shortdesc:0 +msgid "Short Description" +msgstr "" + +#. module: base +#: model:res.country,name:base.gf +msgid "French Guyana" +msgstr "" + +#. module: base +#: selection:ir.actions.url,target:0 +msgid "This Window" +msgstr "" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "" + +#. module: base +#: field:ir.model,state:0 +#: field:ir.model.fields,state:0 +#: field:ir.model.grid,state:0 +msgid "Manually Created" +msgstr "" + +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "" + +#. module: base +#: field:ir.attachment,description:0 +#: field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 +#: view:res.partner.event:0 +#: field:res.partner.event,description:0 +#: view:res.request:0 +msgid "Description" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,name:0 +msgid "Wizard Info" msgstr "" #. module: base @@ -7656,30 +6862,135 @@ msgstr "" msgid "Delivery" msgstr "" +#. module: base +#: field:res.bank,street:0 +#: field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "" + #. module: base #: field:ir.attachment,preview:0 msgid "Image Preview" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" + +#. module: base +#: view:workflow.workitem:0 +msgid "Workflow Workitems" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "" + +#. module: base +#: model:res.country,name:base.vc +msgid "Saint Vincent & Grenadines" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "" +#. module: base +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: selection:res.partner.event,partner_type:0 +msgid "Customer" +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Unvalidated" +msgstr "" + #. module: base #: model:res.country,name:base.gw msgid "Guinea Bissau" msgstr "" +#. module: base +#: field:ir.actions.report.custom,name:0 +#: field:ir.report.custom,name:0 +msgid "Report Name" +msgstr "" + #. module: base #: view:workflow.instance:0 msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Partners: " +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +#: wizard_view:res.partner.spam_send,init:0 +msgid "Mass Mailing" +msgstr "" + +#. module: base +#: model:res.country,name:base.io +msgid "British Indian Ocean Territory" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_country +#: field:res.bank,country:0 +#: view:res.country:0 +#: field:res.country.state,country_id:0 +#: field:res.partner,country:0 +#: field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 +msgid "Country" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" +msgstr "" + +#. module: base +#: field:res.partner.event,partner_type:0 +msgid "Partner Relation" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,context:0 +msgid "Context Value" msgstr "" #. module: base @@ -7692,29 +7003,89 @@ msgstr "" msgid "Unsubscribe Report" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" + +#. module: base +#: model:res.country,name:base.zw +msgid "Zimbabwe" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 msgid "Create Object" msgstr "" +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_1 -msgid "Prospect" +#: field:res.request.history,name:0 +msgid "Summary" +msgstr "" + +#. module: base +#: field:res.request.history,date_sent:0 +msgid "Date sent" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_function +msgid "Function of the contact" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_upgrade +#: model:ir.ui.menu,name:base.menu_module_tree_upgrade +msgid "Modules to be installed, upgraded or removed" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + +#. module: base +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "" + +#. module: base +#: model:res.country,name:base.mm +msgid "Myanmar" +msgstr "" + +#. module: base +#: field:ir.actions.act_window.view,sequence:0 +#: field:ir.actions.server,sequence:0 +#: field:ir.actions.todo,sequence:0 +#: field:ir.module.repository,sequence:0 +#: field:ir.report.custom.fields,sequence:0 +#: view:ir.sequence:0 +#: field:ir.ui.menu,sequence:0 +#: field:ir.ui.view_sc,sequence:0 +#: field:res.partner.bank,sequence:0 +#: field:wizard.ir.model.menu.create.line,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "11. %U or %W ==> 48 (49th week)" msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 -msgid "Polish / Język polski" -msgstr "" - -#. module: base -#: field:ir.exports,name:0 -msgid "Export Name" +msgid "Russian / русский язык" msgstr "" #. module: base @@ -7722,18 +7093,79 @@ msgstr "" msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" +#. module: base +#: help:ir.cron,numbercall:0 +msgid "Number of time the function is called,\n" +"a negative number indicates that the function will always be called" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (CN) / 简体中文" +msgstr "" + +#. module: base +#: view:ir.rule.group:0 +msgid "The rule is satisfied if all test are True (AND)" +msgstr "" + +#. module: base +#: field:ir.report.custom,footer:0 +msgid "Report Footer" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_NEXT" +msgstr "" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Right-to-Left" +msgstr "" + +#. module: base +#: model:res.country,name:base.yu +msgid "Yugoslavia" +msgstr "" + #. module: base #: wizard_view:module.lang.install,init:0 msgid "Choose a language to install:" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner +#: field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 +#: field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 +#: selection:res.partner.title,domain:0 +msgid "Partner" +msgstr "" + #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Russian / русский язык" +#: view:ir.module.module:0 +msgid "Cancel Install" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Note that this operation my take a few minutes." +msgstr "" + +#. module: base +#: field:ir.model.data,name:0 +msgid "XML Identifier" msgstr "" From 0be72d6460c3ec08f49f15aa78f2b9d14487455b Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 16 May 2009 23:40:48 +0300 Subject: [PATCH 123/251] Update Greek translation. bzr revid: p_christ@hol.gr-20090516204048-a49f5lpbkeff2xe1 --- bin/addons/base/i18n/el_GR.po | 2086 ++++++++++++++------------------- 1 file changed, 899 insertions(+), 1187 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 2e8861c0e5d..0011412f86b 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -4,19 +4,20 @@ # * base # # P. Christeas , 2009. +# P. Christeas , 2009. msgid "" msgstr "" "Project-Id-Version: el_GR\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-29 07:54:57+0000\n" -"PO-Revision-Date: 2009-02-17 11:35GMT\n" -"Last-Translator: P. Christeas \n" -"Language-Team: Ellhnika \n" +"POT-Creation-Date: 2009-05-16 20:02:15+0000\n" +"PO-Revision-Date: 2009-05-16 23:26+0300\n" +"Last-Translator: P. Christeas \n" +"Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 0.3\n" #. module: base #: model:res.country,name:base.ca @@ -65,8 +66,17 @@ msgstr "Άγνωστο" #. module: base #: view:wizard.module.update_translations:0 -msgid "This wizard will detect new terms in the application so that you can update them manually." -msgstr "Αυτός ο αυτοματισμός θα ανιχνεύσει τους νέους όρους στην εφαρμογή έτσι ώστε μπορείτε να τους ενημερώσετε με το χέρι." +msgid "" +"This wizard will detect new terms in the application so that you can update " +"them manually." +msgstr "" +"Αυτός ο αυτοματισμός θα ανιχνεύσει τους νέους όρους στην εφαρμογή έτσι ώστε " +"μπορείτε να τους ενημερώσετε με το χέρι." + +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" #. module: base #: view:res.lang:0 @@ -104,8 +114,8 @@ msgid "terp-account" msgstr "" #. module: base -#: model:res.country,name:base.sz -msgid "Swaziland" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: base @@ -197,7 +207,9 @@ msgstr "Αντικείμενο" #. module: base #: view:wizard.module.lang.export:0 msgid "To browse official translations, you can visit this link: " -msgstr "Για να κοιτάξετε τις επίσημες μεταφράσεις, μπορείτε να επισκεφτείτε αυτήν την σύνδεση:" +msgstr "" +"Για να κοιτάξετε τις επίσημες μεταφράσεις, μπορείτε να επισκεφτείτε αυτήν " +"την σύνδεση:" #. module: base #: model:ir.actions.act_window,name:base.action_module_category_tree @@ -232,7 +244,9 @@ msgstr "Δεν έχει αρχίσει " #. module: base #: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e.[[ object.partner_id.name ]]" msgstr "" #. module: base @@ -242,12 +256,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CDROM" +msgid "STOCK_ZOOM_100" msgstr "" #. module: base @@ -395,8 +404,8 @@ msgid "Macau" msgstr "" #. module: base -#: model:res.country,name:base.bj -msgid "Benin" +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" msgstr "" #. module: base @@ -405,9 +414,9 @@ msgid "12. %w ==> 5 ( Friday is the 6th day)" msgstr "" #. module: base -#: constraint:res.partner.category:0 -msgid "Error ! You can not create recursive categories." -msgstr "" +#: field:ir.rule.group,global:0 +msgid "Global" +msgstr "Καθολικό" #. module: base #: selection:res.partner.event,partner_type:0 @@ -450,8 +459,10 @@ msgstr "" #: model:ir.actions.todo,note:base.config_wizard_simple_view 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" +"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 "" @@ -462,8 +473,8 @@ msgid "Start On" msgstr "Έναρξη" #. module: base -#: model:res.partner.category,name:base.res_partner_category_5 -msgid "Gold Partner" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base @@ -509,11 +520,6 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" -#. module: base -#: model:res.country,name:base.fj -msgid "Fiji" -msgstr "" - #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -594,9 +600,9 @@ msgid "terp-administration" msgstr "" #. module: base -#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 -msgid "Partner Ref." -msgstr "Εταιρική Αναφ." +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -657,11 +663,13 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_QUIT" -msgstr "ΑΠΟΘΕΜΑ_ ΕΓΚΑΤΑΛΕΙΠΕΤΑΙ" +msgstr "" #. module: base #: help:ir.actions.server,loop_action:0 -msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." +msgid "" +"Select the action that will be executed. Loop action will not be avaliable " +"inside loop." msgstr "" #. module: base @@ -680,8 +688,13 @@ msgid "Connect Events to Actions" msgstr "" #. module: base -#: model:res.country,name:base.cs -msgid "Serbia and Montenegro" +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" msgstr "" #. module: base @@ -711,17 +724,11 @@ msgstr "" #: field:ir.actions.todo,state:0 field:ir.module.module,state:0 #: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 #: field:maintenance.contract,state:0 field:res.bank,state:0 -#: view:res.country.state:0 field:res.partner.bank,state_id:0 #: field:res.request,state:0 field:workflow.instance,state:0 #: field:workflow.workitem,state:0 msgid "State" msgstr "Κατάσταση" -#. module: base -#: view:res.country.state:0 field:res.partner.bank,state_id:0 -msgid "State" -msgstr "Πολιτεία" - #. module: base #: view:res.partner:0 field:res.partner,category_id:0 msgid "Categories" @@ -769,9 +776,9 @@ msgid "terp-purchase" msgstr "" #. module: base -#: field:ir.values,object:0 -msgid "Is Object" -msgstr "" +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "Όνομα Επαφής" #. module: base #: model:res.country,name:base.fi @@ -843,11 +850,6 @@ msgstr "Μοντέλο" msgid "EAN13" msgstr "EAN13" -#. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 @@ -895,8 +897,13 @@ msgid "Default limit for the list view" msgstr "Όριο προεπιλογής για την διαμόρφωση καταλόγων" #. module: base -#: model:res.partner.category,name:base.res_partner_category_12 -msgid "Segmentation" +#: model:res.country,name:base.vn +msgid "Vietnam" +msgstr "" + +#. module: base +#: model:res.country,name:base.sk +msgid "Slovak Republic" msgstr "" #. module: base @@ -926,7 +933,8 @@ msgstr "" #. module: base #: help:ir.actions.report.xml,report_rml:0 -msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgid "" +"The .rml path of the file or NULL if the content is in report_rml_content" msgstr "" #. module: base @@ -960,11 +968,6 @@ msgstr "" msgid "STOCK_FLOPPY" msgstr "" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - #. module: base #: model:res.country,name:base.kw msgid "Kuwait" @@ -993,6 +996,7 @@ msgstr "Ονομασία Πεδίου" #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window +#: model:ir.model,name:base.model_res_lang #: model:ir.ui.menu,name:base.menu_res_lang_act_window view:res.lang:0 msgid "Languages" msgstr "Γλώσσες" @@ -1004,18 +1008,19 @@ msgstr "Περίπτωση" #. module: base #: help:ir.actions.report.xml,attachment:0 -msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" +msgid "" +"This is the filename of the attachment used to store the printing result. " +"Keep empty to not save the printed reports. You can use a python expression " +"with the object and time variables." msgstr "" #. module: base #: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Το όνομα αντικειμένου πρέπει να αρχίζει με x_ και να μήν περιέχει ειδικούς χαρακτήρες!" +msgid "" +"The Object name must start with x_ and not contain any special character !" +msgstr "" +"Το όνομα αντικειμένου πρέπει να αρχίζει με x_ και να μήν περιέχει ειδικούς " +"χαρακτήρες!" #. module: base #: model:res.country,name:base.ng @@ -1023,8 +1028,8 @@ msgid "Nigeria" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Ukrainian / украї́нська мо́ва" +#: selection:ir.actions.report.xml,report_type:0 +msgid "txt" msgstr "" #. module: base @@ -1043,9 +1048,10 @@ msgid "Schedule Upgrade" msgstr "Προγραμματισμένη αναβάθμιση " #. module: base -#: model:res.country,name:base.au -msgid "Australia" -msgstr "" +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 +msgid "Currencies" +msgstr "Νομίσματα" #. module: base #: selection:ir.actions.todo,type:0 @@ -1054,8 +1060,12 @@ msgstr "Διαμορφώστε" #. module: base #: help:res.partner,lang:0 -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 "Εάν η επιλεγμένη γλώσσα υπάρχει στο σύστημα, όλα τα έγγραφα σχετικά με αυτόν τον συνεργάτη θα τυπωθούν σε αυτήν την γλώσσα. Εάν όχι, θα είναι αγγλικά." +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 "" +"Εάν η επιλεγμένη γλώσσα υπάρχει στο σύστημα, όλα τα έγγραφα σχετικά με αυτόν " +"τον συνεργάτη θα τυπωθούν σε αυτήν την γλώσσα. Εάν όχι, θα είναι αγγλικά." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1098,9 +1108,9 @@ msgid "E-Mail" msgstr "Ηλεκτρονικό ταχυδρομείο" #. module: base -#: field:workflow.instance,uid:0 -msgid "User ID" -msgstr "Ταυτότητα χρήστη" +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "" #. module: base #: field:ir.exports,name:0 @@ -1143,13 +1153,14 @@ msgid "Current Rate" msgstr "" #. module: base -#: model:res.country,name:base.gf -msgid "French Guyana" -msgstr "" +#: view:ir.cron:0 +#, fuzzy +msgid "Action to Trigger" +msgstr "Τύπος δράσης" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" msgstr "" #. module: base @@ -1187,14 +1198,19 @@ msgstr "" msgid "Required" msgstr "Απαιτείται" +#. module: base +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" +msgstr "" + #. module: base #: field:res.country,code:0 msgid "Country Code" msgstr "" #. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Original View" +#: selection:module.lang.install,init,lang:0 +msgid "Greek / Ελληνικά" msgstr "" #. module: base @@ -1230,14 +1246,11 @@ msgstr "" msgid "10. %S ==> 20" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_ui_menu -msgid "ir.ui.menu" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 -msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." +msgid "" +"If you check this, then the second time the user prints with same attachment " +"name, it returns the previous report." msgstr "" #. module: base @@ -1247,7 +1260,9 @@ msgstr "" #. module: base #: help:ir.actions.server,subject:0 -msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" +msgid "" +"Specify the subject. You can use fields from the object, e.g. `Hello " +"[[ object.partner_id.name ]]`" msgstr "" #. module: base @@ -1384,6 +1399,11 @@ msgstr "" msgid "Kenya" msgstr "" +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "Select the object on which the action will work (read, write, create)." +msgstr "" + #. module: base #: model:res.country,name:base.np msgid "Nepal" @@ -1400,8 +1420,8 @@ msgid "Incoming Transitions" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "el_GR" +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" msgstr "" #. module: base @@ -1439,6 +1459,11 @@ msgstr "" msgid "On multiple doc." msgstr "Σε πολλαπλά έγγραφα" +#. module: base +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "" + #. module: base #: help:ir.actions.server,action_id:0 msgid "Select the Action Window, Report, Wizard to be executed." @@ -1513,7 +1538,8 @@ msgstr "" #. module: base #: help:ir.values,key2:0 -msgid "The kind of action or button in the client side that will trigger the action." +msgid "" +"The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base @@ -1536,6 +1562,11 @@ msgstr "" msgid "Sequence Type" msgstr "" +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" + #. module: base #: model:res.country,name:base.md msgid "Moldavia" @@ -1600,11 +1631,6 @@ msgstr "" msgid "Actions" msgstr "Ενέργειες" -#. module: base -#: view:ir.values:0 -msgid "tree_but_action, client_print_multi" -msgstr "" - #. module: base #: view:res.request:0 field:res.request,body:0 #: field:res.request.history,req_id:0 @@ -1621,11 +1647,6 @@ msgstr "" msgid "Continue" msgstr "Συνέχεια" -#. module: base -#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 -msgid "Version" -msgstr "" - #. module: base #: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 msgid "Object ID" @@ -1731,7 +1752,9 @@ msgstr "" #. module: base #: help:ir.actions.server,sequence:0 -msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." +msgid "" +"Important when you deal with multiple actions, the execution order will be " +"decided based on this, low number is higher priority." msgstr "" #. module: base @@ -1790,6 +1813,12 @@ msgstr "" msgid "Croatian / hrvatski jezik" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +#, fuzzy +msgid "Date Created" +msgstr "Δημιουργήστε" + #. module: base #: model:res.country,name:base.mv msgid "Maldives" @@ -1837,9 +1866,18 @@ msgstr "" msgid "STOCK_UNDELETE" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: view:wizard.module.lang.export:0 -msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." +msgid "" +"To improve some terms of the official translations of OpenERP, you should " +"modify the terms directly on the launchpad interface. If you made lots of " +"translations for your own module, you can also publish all your translation " +"at once." msgstr "" #. module: base @@ -1864,12 +1902,13 @@ msgstr "" #. module: base #: help:ir.actions.server,write_id:0 -msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." +msgid "" +"Provide the field name that the record id refers to for the write operation. " +"If it is empty it will refer to the active id of the object." msgstr "" #. module: base #: field:res.partner,supplier:0 -#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "" @@ -1880,7 +1919,9 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e. [[ object.partner_id.name ]]" msgstr "" #. module: base @@ -1929,21 +1970,11 @@ msgstr "Προβολές" msgid "Rules" msgstr "Κανόνες" -#. module: base -#: model:res.partner.category,name:base.res_partner_category_4 -msgid "Basic Partner" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SELECT_FONT" msgstr "" -#. module: base -#: model:ir.model,name:base.model_res_lang -msgid "res.lang" -msgstr "" - #. module: base #: rml:ir.module.reference:0 msgid "," @@ -2009,8 +2040,8 @@ msgid "Request Link" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_title -msgid "res.partner.title" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2029,8 +2060,8 @@ msgid "Oman" msgstr "" #. module: base -#: field:ir.report.custom,print_format:0 -msgid "Print format" +#: selection:ir.actions.report.xml,report_type:0 +msgid "Html from html" msgstr "" #. module: base @@ -2055,7 +2086,9 @@ msgstr "" #. module: base #: wizard_view:module.lang.install,start:0 -msgid "The selected language has been successfully installed. You must change the preferences of the user and open a new menu to view changes." +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 "" #. module: base @@ -2079,8 +2112,8 @@ msgid "Work Days" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -msgid "Module dependency" +#: model:ir.model,name:base.model_res_roles +msgid "res.roles" msgstr "" #. module: base @@ -2127,8 +2160,8 @@ msgid "Create Menu" msgstr "Δημιουργία Μενού" #. module: base -#: field:ir.actions.server,expression:0 -msgid "Loop Expression" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" msgstr "" #. module: base @@ -2143,7 +2176,10 @@ msgstr "" #. module: base #: help:ir.ui.menu,groups_id:0 -msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." +msgid "" +"If you have groups, the visibility of this menu will be based on these " +"groups. If this field is empty, Open ERP will compute visibility based on " +"the related object's read access." msgstr "" #. module: base @@ -2184,7 +2220,10 @@ msgstr "Όνομα κατηγορίας" #. module: base #: view:res.config.view:0 -msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." +msgid "" +"Choose the simplified interface if you are testing OpenERP for the first " +"time. Less used options or fields are automatically hidden. You will be able " +"to change this, later, through the Administration menu." msgstr "" #. module: base @@ -2198,15 +2237,14 @@ msgid "STOCK_JUSTIFY_CENTER" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_actions_report_xml -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.xml" -msgstr "" +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "Ταυτότητα χρήστη" #. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Καθολικό" +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "Ετικέτες" #. module: base #: field:res.request,act_from:0 field:res.request.history,act_from:0 @@ -2293,11 +2331,11 @@ msgstr "Ηλεκτρονικό ταχυδρομείο αποστολέα " #: field:ir.server.object.lines,type:0 field:ir.translation,type:0 #: field:ir.values,key:0 view:res.partner:0 msgid "Type" -msgstr "Είδος ημερολογίου" +msgstr "Τύπος" #. module: base -#: view:ir.module.module:0 -msgid "Defined Reports" +#: model:res.country,name:base.bj +msgid "Benin" msgstr "" #. module: base @@ -2320,6 +2358,11 @@ msgstr "" msgid "Mexico" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -2447,9 +2490,9 @@ msgid "Mauritius" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" -msgstr "" +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "Οδηγός αναφοράς" #. module: base #: wizard_view:module.module.update,init:0 @@ -2529,7 +2572,9 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" +msgid "" +"Only one client action will be execute, last " +"clinent action will be consider in case of multiples clients actions" msgstr "" #. module: base @@ -2583,6 +2628,11 @@ msgstr "" msgid "Spanish (AR) / Español (AR)" msgstr "" +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "ωθήσεις ροής της δουλειάς" + #. module: base #: view:res.lang:0 msgid "5. %y, %Y ==> 08, 2008" @@ -2593,6 +2643,11 @@ msgstr "" msgid "module,type,name,res_id,src,value" msgstr "" +#. module: base +#: model:res.country,name:base.sa +msgid "Saudi Arabia" +msgstr "" + #. module: base #: model:res.country,name:base.hu msgid "Hungary" @@ -2639,8 +2694,9 @@ msgid ">=" msgstr ">=" #. module: base -#: model:ir.model,name:base.model_ir_actions_todo -msgid "ir.actions.todo" +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" msgstr "" #. module: base @@ -2660,7 +2716,9 @@ msgstr "Πάρτε το αρχείο" #. module: base #: wizard_view:module.module.update,init:0 -msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgid "" +"This function will check for new modules in the 'addons' path and on module " +"repositories:" msgstr "" #. module: base @@ -2680,7 +2738,10 @@ msgstr "Ποσοστά" #. module: base #: view:res.lang:0 -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." +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 "" #. module: base @@ -2749,11 +2810,6 @@ msgstr "" msgid "Iran" msgstr "" -#. module: base -#: help:ir.actions.server,record_id:0 -msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." -msgstr "" - #. module: base #: model:res.country,name:base.dz msgid "Algeria" @@ -2828,7 +2884,7 @@ msgid "Iraq" msgstr "" #. module: base -#: view:ir.attachment:0 +#: view:ir.attachment:0 field:ir.attachment,datas:0 msgid "Data" msgstr "" @@ -2884,6 +2940,11 @@ msgstr "" msgid "Module import" msgstr "Εισαγωγή ενότητας" +#. module: base +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form #: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 @@ -2893,7 +2954,9 @@ msgstr "Επιχειρήσεις" #. module: base #: help:ir.actions.act_window.view,multi:0 #: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 -msgid "If set to true, the action will not be displayed on the right toolbar of a form view." +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." msgstr "" #. module: base @@ -2932,11 +2995,6 @@ msgstr "" msgid "SXW path" msgstr "Πορεία SXW" -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "type,name,res_id,src,value" -msgstr "τύπος, όνομα, res_id, src, αξία" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_PLAY" @@ -2976,11 +3034,9 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 field:res.bank,code:0 -#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 -#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 -msgid "Code" -msgstr "Κωδικός" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2993,9 +3049,10 @@ msgid "terp-partner" msgstr "" #. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Installation Done" -msgstr "" +#: field:ir.attachment,create_uid:0 +#, fuzzy +msgid "Creator" +msgstr "Δημιουργήστε" #. module: base #: view:ir.actions.server:0 field:ir.actions.server,code:0 @@ -3013,6 +3070,11 @@ msgstr "" msgid "Field Label" msgstr "Ετικέτα τομέων" +#. module: base +#: model:ir.module.module,description:base.module_meta_information +msgid "The kernel of OpenERP, needed for all installation." +msgstr "" + #. module: base #: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 msgid "View Mode" @@ -3091,13 +3153,14 @@ msgid "Source Activity" msgstr "" #. module: base -#: field:ir.model.data,res_id:0 field:ir.translation,res_id:0 -#: field:workflow.instance,res_id:0 field:workflow.triggers,res_id:0 +#: field:ir.attachment,res_id:0 field:ir.model.data,res_id:0 +#: field:ir.translation,res_id:0 field:workflow.instance,res_id:0 +#: field:workflow.triggers,res_id:0 msgid "Resource ID" msgstr "" #. module: base -#: field:ir.model,info:0 field:ir.model.grid,info:0 +#: view:ir.cron:0 field:ir.model,info:0 field:ir.model.grid,info:0 #: view:maintenance.contract:0 msgid "Information" msgstr "Πληροφορίες" @@ -3122,11 +3185,6 @@ msgstr "" msgid "Define New Users" msgstr "" -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Valid" -msgstr "" - #. module: base #: model:res.country,name:base.nt msgid "Neutral Zone" @@ -3147,6 +3205,11 @@ msgstr "" msgid "ir.rule.group" msgstr "" +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation Done" +msgstr "" + #. module: base #: view:maintenance.contract.wizard:0 msgid "Maintenance contract added !" @@ -3164,7 +3227,10 @@ msgstr "Άλλος" #. module: base #: help:ir.actions.server,email:0 -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" +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 "" #. module: base @@ -3177,11 +3243,6 @@ msgstr "Τύπος" msgid "Role Name" msgstr "Όνομα ρόλου" -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" - #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -3193,9 +3254,9 @@ msgid "Venezuela" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_9 -msgid "Components Supplier" -msgstr "" +#: field:ir.module.module,latest_version:0 +msgid "Installed version" +msgstr "Εγκατεστημένη έκδοση" #. module: base #: view:res.lang:0 @@ -3245,21 +3306,11 @@ msgstr "" msgid "-" msgstr "" -#. module: base -#: model:res.country,name:base.vg -msgid "Virgin Islands (British)" -msgstr "" - #. module: base #: model:res.country,name:base.mw msgid "Malawi" msgstr "" -#. module: base -#: model:res.country,name:base.sj -msgid "Svalbard and Jan Mayen Islands" -msgstr "" - #. module: base #: field:ir.attachment,name:0 msgid "Attachment Name" @@ -3281,8 +3332,8 @@ msgid "Week of the year: %(woy)s" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_14 -msgid "Bad customers" +#: model:res.country,name:base.ci +msgid "Ivory Coast (Cote D'Ivoire)" msgstr "" #. module: base @@ -3324,9 +3375,8 @@ msgstr "" #: field:ir.rule.group,name:0 field:ir.values,name:0 #: field:maintenance.contract.module,name:0 field:res.bank,name:0 #: field:res.config.view,name:0 field:res.lang,name:0 field:res.partner,name:0 -#: field:res.partner.address,name:0 field:res.partner.bank.type,name:0 -#: field:res.request.link,name:0 field:res.users,name:0 field:workflow,name:0 -#: field:workflow.activity,name:0 +#: field:res.partner.bank.type,name:0 field:res.request.link,name:0 +#: field:res.users,name:0 field:workflow,name:0 field:workflow.activity,name:0 msgid "Name" msgstr "Ονομασία" @@ -3368,7 +3418,9 @@ msgstr "" #. module: base #: view:res.users:0 -msgid "Please note that you will have to logout and relog if you change your password." +msgid "" +"Please note that you will have to logout and relog if you change your " +"password." msgstr "" #. module: base @@ -3476,11 +3528,6 @@ msgstr "Όλες οι ιδιότητες" msgid "Start configuration" msgstr "Έναρξη Διαμόρφωσης" -#. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" -msgstr "" - #. module: base #: model:res.country,name:base.na msgid "Namibia" @@ -3512,11 +3559,6 @@ msgstr "" msgid "Server Actions" msgstr "Ενέργειες στο διακομιστή" -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "choose" -msgstr "" - #. module: base #: model:res.country,name:base.tp msgid "East Timor" @@ -3543,8 +3585,8 @@ msgid "Turkmenistan" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_10 -msgid "Open Source Service Company" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" msgstr "" #. module: base @@ -3569,12 +3611,14 @@ msgstr "Κανόνες αρχείων" #. module: base #: wizard_view:module.lang.import,init:0 -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:" +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 "" #. module: base -#: model:res.country,name:base.uk -msgid "United Kingdom" +#: help:res.country,name:0 +msgid "The full name of the country." msgstr "" #. module: base @@ -3630,8 +3674,8 @@ msgid "Kyrgyz Republic (Kyrgyzstan)" msgstr "" #. module: base -#: field:res.partner.event,type:0 -msgid "Type of Event" +#: view:ir.model:0 view:ir.model.fields:0 +msgid "Security on Groups" msgstr "" #. module: base @@ -3666,11 +3710,6 @@ msgstr "" msgid "STOCK_FILE" msgstr "" -#. module: base -#: field:ir.attachment,res_id:0 -msgid "Attached ID" -msgstr "Συνημμένη ταυτότητα" - #. module: base #: model:res.country,name:base.uz msgid "Uzbekistan" @@ -3699,9 +3738,10 @@ msgid "maintenance contract modules" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Day: %(day)s" -msgstr "" +#: model:ir.module.module,shortdesc:base.module_meta_information +#, fuzzy +msgid "Base" +msgstr "Τράπεζες" #. module: base #: model:ir.model,name:base.model_ir_actions_wizard @@ -3720,8 +3760,8 @@ msgid "History" msgstr "Ιστορικό" #. module: base -#: model:res.country,name:base.tw -msgid "Taiwan" +#: model:res.country,name:base.mk +msgid "FYROM" msgstr "" #. module: base @@ -3771,11 +3811,6 @@ msgstr "" msgid "Notes" msgstr "Σημειώσεις" -#. module: base -#: help:ir.actions.server,model_id:0 -msgid "Select the obect on which the action will work (read, write, create)." -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_rule msgid "ir.rule" @@ -3804,9 +3839,11 @@ msgid "Update Translations" msgstr "Αναπροσαρμογή Μεταφράσεων" #. module: base -#: rml:ir.module.reference:0 -msgid "Dependencies :" -msgstr "" +#: selection:ir.translation,type:0 field:res.bank,code:0 +#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 +msgid "Code" +msgstr "Κωδικός" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3853,11 +3890,6 @@ msgstr "" msgid "Domain Value" msgstr "Αξία περιοχών" -#. module: base -#: rml:ir.module.reference:0 -msgid "Reference Guide" -msgstr "Οδηγός αναφοράς" - #. module: base #: selection:ir.translation,type:0 view:wizard.module.lang.export:0 msgid "Help" @@ -3885,9 +3917,10 @@ msgid "SMS Configuration" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_triggers -msgid "workflow.triggers" -msgstr "ωθήσεις ροής της δουλειάς" +#: view:ir.cron:0 +#, fuzzy +msgid "Technical Data" +msgstr "Τεχνικός οδηγός" #. module: base #: model:ir.actions.act_window,name:base.res_partner_canal-act @@ -3919,7 +3952,9 @@ msgstr "" #. module: base #: help:ir.actions.server,condition:0 -msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" +msgid "" +"Condition that is to be tested before action is executed, e.g. object." +"list_price > object.cost_price" msgstr "" #. module: base @@ -3951,13 +3986,15 @@ msgstr "Συνεργάτες" #. module: base #: help:ir.actions.server,message:0 -msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" +msgid "" +"Specify the message. You can use the fields from the object. e.g. `Dear " +"[[ object.partner_id.name ]]`" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 -msgid "Attached Model" -msgstr "Συνημμένο πρότυπο" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "" #. module: base #: field:res.partner.bank,state:0 @@ -4072,6 +4109,13 @@ msgstr "" msgid "Address Type" msgstr "Τύπος διευθύνσεων" +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "" +"Provide the field name where the record id is stored after the create " +"operations. If it is empty, you can not track the new record." +msgstr "" + #. module: base #: view:res.company:0 view:res.partner:0 msgid "General Information" @@ -4140,7 +4184,10 @@ msgstr "" #. module: base #: view:res.lang:0 -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." +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 "" #. module: base @@ -4159,9 +4206,9 @@ msgid "terp-product" msgstr "" #. module: base -#: field:res.request,act_to:0 field:res.request.history,act_to:0 -msgid "To" -msgstr "Προς" +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "" #. module: base #: model:res.country,name:base.gh @@ -4178,11 +4225,6 @@ msgstr "Είδος" msgid "ir.exports.line" msgstr "" -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "right" -msgstr "" - #. module: base #: field:ir.cron,numbercall:0 msgid "Number of Calls" @@ -4249,7 +4291,9 @@ msgstr "Όνομα επιλογών" #. module: base #: help:res.partner,supplier:0 -msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." +msgid "" +"Check this box if the partner is a supplier. If it's not checked, purchase " +"people will not see it when encoding a purchase order." msgstr "" #. module: base @@ -4259,7 +4303,8 @@ msgstr "" #. module: base #: help:res.users,password:0 -msgid "Keep empty if you don't want the user to be able to connect on the system." +msgid "" +"Keep empty if you don't want the user to be able to connect on the system." msgstr "" #. module: base @@ -4299,7 +4344,10 @@ msgstr "" #. module: base #: view:wizard.module.lang.export:0 -msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." +msgid "" +"The official translations pack of all OpenERP/OpenObjects module are managed " +"through launchpad. We use their online interface to synchronize all " +"translations efforts." msgstr "" #. module: base @@ -4364,9 +4412,9 @@ msgid "STOCK_PROPERTIES" msgstr "" #. module: base -#: field:ir.attachment,datas:0 -msgid "File Content" -msgstr "Περιεκτικότητα σε αρχεία" +#: model:res.country,name:base.so +msgid "Somalia" +msgstr "" #. module: base #: model:res.partner.title,name:base.res_partner_title_sir @@ -4412,7 +4460,8 @@ msgstr "" #: model:ir.actions.todo,note:base.config_wizard_step_user msgid "" "Create your users.\n" -"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" +"You will be able to assign groups to users. Groups define the access rights " +"of each users on the different objects of the system.\n" " " msgstr "" @@ -4431,6 +4480,12 @@ msgstr "" msgid "Ireland" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +#: model:ir.ui.menu,name:base.menu_partner_customer_form_new +msgid "New Partner" +msgstr "" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4469,8 +4524,8 @@ msgid "Pitcairn Island" msgstr "" #. module: base -#: field:res.lang,thousands_sep:0 -msgid "Thousands Separator" +#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 +msgid "ir.actions.url" msgstr "" #. module: base @@ -4568,8 +4623,8 @@ msgid "Created Menus" msgstr "Δημιουργημένες επιλογές" #. module: base -#: model:res.country,name:base.bz -msgid "Belize" +#: selection:module.lang.install,init,lang:0 +msgid "Dutch (Belgium) / Nederlands (Belgïe)" msgstr "" #. module: base @@ -4602,9 +4657,9 @@ msgid "Georgia" msgstr "" #. module: base -#: field:ir.module.module,installed_version:0 -msgid "Installed version" -msgstr "Εγκατεστημένη έκδοση" +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field_contry @@ -4631,11 +4686,6 @@ msgstr "" msgid "Signal (subflow.*)" msgstr "" -#. module: base -#: model:res.country,name:base.ci -msgid "Ivory Coast (Cote D'Ivoire)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ABOUT" @@ -4682,7 +4732,10 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -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`." +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 "" #. module: base @@ -4696,11 +4749,6 @@ msgstr "" msgid "And" msgstr "και" -#. module: base -#: field:ir.module.module,shortdesc:0 -msgid "Short Description" -msgstr "" - #. module: base #: field:ir.model.fields,relation:0 msgid "Object Relation" @@ -4713,21 +4761,13 @@ msgid "Attachments" msgstr "Συνημμένα" #. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 -msgid "in" -msgstr "" +#: field:res.request,act_to:0 field:res.request.history,act_to:0 +msgid "To" +msgstr "Προς" #. module: base -#: model:res.partner.category,name:base.res_partner_category_11 -msgid "Textile Suppliers" -msgstr "" - -#. module: base -#: model:res.country,name:base.sa -msgid "Saudi Arabia" +#: view:maintenance.contract.wizard:0 +msgid "_Validate" msgstr "" #. module: base @@ -4761,7 +4801,7 @@ msgid "Report Header" msgstr "Επιγραφή αναφοράς" #. module: base -#: view:ir.actions.server:0 +#: field:ir.actions.server,child_ids:0 msgid "Other Actions" msgstr "Άλλες ενέργειες" @@ -4792,7 +4832,9 @@ msgstr "" #. module: base #: help:res.partner,vat:0 -msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." +msgid "" +"Value Added Tax number. Check the box if the partner is subjected to the " +"VAT. Used by the VAT legal statement." msgstr "" #. module: base @@ -4836,11 +4878,6 @@ msgstr "Πόλη" msgid "Madagascar" msgstr "" -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" -msgstr "" - #. module: base #: model:res.country,name:base.it msgid "Italy" @@ -4922,6 +4959,11 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "uk_UK" +msgstr "" + #. module: base #: model:res.country,name:base.ai msgid "Anguilla" @@ -5032,11 +5074,6 @@ msgstr "Διεύθυνση" msgid "Your system will be upgraded." msgstr "Το σύστημά σας θα αναβαθμιστεί." -#. module: base -#: model:res.country,name:base.vn -msgid "Vietnam" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form #: view:res.users:0 @@ -5044,8 +5081,8 @@ msgid "Configure User" msgstr "" #. module: base -#: help:res.country,name:0 -msgid "The full name of the country." +#: field:ir.report.custom,print_format:0 +msgid "Print format" msgstr "" #. module: base @@ -5192,8 +5229,8 @@ msgid "Parent Company" msgstr "" #. module: base -#: view:ir.model:0 view:ir.model.fields:0 -msgid "Security on Groups" +#: field:ir.values,object:0 +msgid "Is Object" msgstr "" #. module: base @@ -5368,9 +5405,9 @@ msgid "Access" msgstr "Πρόσβαση" #. module: base -#: model:res.country,name:base.sk -msgid "Slovak Republic" -msgstr "" +#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "Εταιρική Αναφ." #. module: base #: model:res.country,name:base.aw @@ -5382,6 +5419,11 @@ msgstr "" msgid "STOCK_GO_DOWN" msgstr "" +#. module: base +#: model:res.country,name:base.tw +msgid "Taiwan" +msgstr "" + #. module: base #: model:res.country,name:base.ar msgid "Argentina" @@ -5389,7 +5431,9 @@ msgstr "" #. module: base #: help:res.partner,user_id:0 -msgid "The internal user that is in charge of communicating with this partner if any." +msgid "" +"The internal user that is in charge of communicating with this partner if " +"any." msgstr "" #. module: base @@ -5454,19 +5498,21 @@ msgstr "" msgid "ir.report.custom.fields" msgstr "" +#. module: base +#: model:res.country,name:base.uk +msgid "United Kingdom" +msgstr "" + #. module: base #: model:res.country,name:base.de msgid "Germany" msgstr "" -#. module: base -#: view:ir.module.module:0 -msgid "Uninstall (beta)" -msgstr "" - #. module: base #: help:ir.actions.server,srcmodel_id:0 -msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." +msgid "" +"Object in which you want to create / write the object. If it is empty then " +"refer to the Object field." msgstr "" #. module: base @@ -5579,11 +5625,6 @@ msgstr "" msgid "Or" msgstr "ή" -#. module: base -#: model:res.partner.category,name:base.res_partner_category_7 -msgid "Openstuff.net" -msgstr "" - #. module: base #: model:res.country,name:base.jm msgid "Jamaica" @@ -5620,11 +5661,6 @@ msgstr "" msgid "Azerbaijan" msgstr "" -#. module: base -#: model:ir.model,name:base.model_res_roles -msgid "res.roles" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -5675,8 +5711,8 @@ msgid "Client Action" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_RECORD" +#: model:res.country,name:base.vg +msgid "Virgin Islands (British)" msgstr "" #. module: base @@ -5690,8 +5726,8 @@ msgid "Signal (button Name)" msgstr "" #. module: base -#: model:res.country,name:base.lc -msgid "Saint Lucia" +#: view:ir.module.module:0 +msgid "Defined Reports" msgstr "" #. module: base @@ -5699,6 +5735,11 @@ msgstr "" msgid "Error! You can not create recursive companies." msgstr "" +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Czech / Čeština" @@ -5710,8 +5751,8 @@ msgid "Trigger Configuration" msgstr "" #. module: base -#: field:res.partner.event,event_ical_id:0 -msgid "iCal id" +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" msgstr "" #. module: base @@ -5719,6 +5760,11 @@ msgstr "" msgid "Loop Action" msgstr "" +#. module: base +#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 +msgid "Version" +msgstr "" + #. module: base #: model:ir.model,name:base.model_maintenance_contract #: view:maintenance.contract:0 @@ -5762,7 +5808,10 @@ msgstr "" #. module: base #: help:ir.actions.server,mobile:0 -msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" +msgid "" +"Provides fields that be used to fetch the mobile number, e.g. you select the " +"invoice, then `object.invoice_address_id.mobile` is the field which gives " +"the correct mobile number" msgstr "" #. module: base @@ -5776,11 +5825,6 @@ msgstr "" msgid "Non Updatable" msgstr "" -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "txt" -msgstr "" - #. module: base #: model:res.country,name:base.cu msgid "Cuba" @@ -5893,8 +5937,11 @@ msgid "Subscribe Report" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 -msgid "ir.actions.url" +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +msgid "in" msgstr "" #. module: base @@ -5908,6 +5955,11 @@ msgstr "" msgid "Workflows" msgstr "" +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5915,7 +5967,9 @@ msgstr "" #. module: base #: help:ir.actions.wizard,multi:0 -msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." +msgid "" +"If set to true, the wizard will not be displayed on the right toolbar of a " +"form view." msgstr "" #. module: base @@ -5944,10 +5998,9 @@ msgid "Sweden" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 -msgid "Currencies" -msgstr "Νομίσματα" +#: model:res.country,name:base.au +msgid "Australia" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -5961,11 +6014,6 @@ msgstr "" msgid "Gantt" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_sequence -msgid "ir.sequence" -msgstr "" - #. module: base #: view:ir.property:0 msgid "Property" @@ -5997,11 +6045,6 @@ msgstr "" msgid "Comment" msgstr "Σχόλιο" -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Validate" -msgstr "" - #. module: base #: field:ir.model.fields,domain:0 field:ir.rule,domain:0 #: field:res.partner.title,domain:0 @@ -6041,7 +6084,11 @@ msgstr "" #. module: base #: help:res.lang,grouping:0 -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." +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 "" #. module: base @@ -6114,7 +6161,7 @@ msgid "Graph" msgstr "" #. module: base -#: field:ir.module.module,latest_version:0 +#: field:ir.module.module,installed_version:0 msgid "Latest version" msgstr "Πιό πρόσφατη έκδοση" @@ -6139,14 +6186,14 @@ msgid "closed" msgstr "κλειστό" #. module: base -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" msgstr "" #. module: base -#: model:ir.actions.report.xml,name:base.res_partner_address_report -msgid "Labels" -msgstr "Ετικέτες" +#: selection:ir.report.custom.fields,alignment:0 +msgid "right" +msgstr "" #. module: base #: selection:maintenance.contract.wizard,state:0 @@ -6164,8 +6211,8 @@ msgid "Maintenance" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_2 -msgid "OpenERP Partners" +#: model:res.country,name:base.sj +msgid "Svalbard and Jan Mayen Islands" msgstr "" #. module: base @@ -6272,11 +6319,21 @@ msgstr "" msgid "STOCK_REVERT_TO_SAVED" msgstr "" +#. module: base +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUSTIFY_RIGHT" msgstr "" +#. module: base +#: model:res.country,name:base.lc +msgid "Saint Lucia" +msgstr "" + #. module: base #: field:ir.actions.server,condition:0 #: field:ir.report.custom.fields,fc0_condition:0 @@ -6312,7 +6369,9 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "If you use a formula type, use a python expression using the variable 'object'." +msgid "" +"If you use a formula type, use a python expression using the variable " +"'object'." msgstr "" #. module: base @@ -6374,11 +6433,6 @@ msgstr "Φίλτρο" msgid "Active" msgstr "Ενεργός" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tlh_TLH" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Polish / Język polski" @@ -6444,13 +6498,8 @@ msgid "Wizard Field" msgstr "" #. module: base -#: model:res.country,name:base.sc -msgid "Seychelles" -msgstr "" - -#. module: base -#: view:ir.cron:0 -msgid "Action to trigger" +#: model:res.country,name:base.bz +msgid "Belize" msgstr "" #. module: base @@ -6483,6 +6532,11 @@ msgstr "" msgid "Bank Accounts" msgstr "" +#. module: base +#: selection:ir.ui.view,type:0 +msgid "mdx" +msgstr "" + #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -6549,8 +6603,8 @@ msgid "System upgrade done" msgstr "Έγινα Βελτίωση συστημάτων" #. module: base -#: model:res.country,name:base.so -msgid "Somalia" +#: model:res.country,name:base.sc +msgid "Seychelles" msgstr "" #. module: base @@ -6584,11 +6638,6 @@ msgstr "" msgid "Account Owner" msgstr "" -#. module: base -#: model:res.partner.category,name:base.res_partner_category_13 -msgid "Important customers" -msgstr "" - #. module: base #: selection:ir.model.fields,on_delete:0 msgid "Set NULL" @@ -6611,11 +6660,6 @@ msgstr "" msgid "Malta" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "nl_BE" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_report_custom #: view:ir.report.custom:0 @@ -6632,18 +6676,14 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" -#. module: base -#: model:ir.model,name:base.model_res_groups -msgid "res.groups" -msgstr "" - #. module: base #: field:ir.cron,args:0 msgid "Arguments" msgstr "Ορίσματα" #. module: base -#: field:workflow,osv:0 field:workflow.instance,res_type:0 +#: field:ir.attachment,res_model:0 field:workflow,osv:0 +#: field:workflow.instance,res_type:0 msgid "Resource Object" msgstr "" @@ -6653,9 +6693,13 @@ msgid "sxw" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form_new -#: model:ir.ui.menu,name:base.menu_partner_customer_form_new -msgid "New Partner" +#: field:ir.module.module,shortdesc:0 +msgid "Short Description" +msgstr "" + +#. module: base +#: model:res.country,name:base.gf +msgid "French Guyana" msgstr "" #. module: base @@ -6691,6 +6735,11 @@ msgstr "Περιγραφή" msgid "STOCK_INDENT" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "τύπος, όνομα, res_id, src, αξία" + #. module: base #: field:ir.actions.wizard,name:0 msgid "Wizard Info" @@ -6753,9 +6802,7 @@ msgid "Export language" msgstr "Εξαγωγή γλώσσας" #. module: base -#: field:res.partner,customer:0 -#: model:res.partner.category,name:base.res_partner_category_0 -#: selection:res.partner.event,partner_type:0 +#: field:res.partner,customer:0 selection:res.partner.event,partner_type:0 msgid "Customer" msgstr "" @@ -6823,11 +6870,6 @@ msgstr "" msgid "Partner Relation" msgstr "" -#. module: base -#: model:res.country,name:base.mk -msgid "Macedonia" -msgstr "" - #. module: base #: field:ir.actions.act_window,context:0 msgid "Context Value" @@ -6878,11 +6920,6 @@ msgstr "" msgid "Date sent" msgstr "Ημερομηνία που στέλνεται" -#. module: base -#: model:res.partner.category,name:base.res_partner_category_1 -msgid "Prospect" -msgstr "" - #. module: base #: model:ir.model,name:base.model_res_partner_function msgid "Function of the contact" @@ -6932,7 +6969,9 @@ msgstr "" #. module: base #: help:res.partner.address,type:0 -msgid "Used to select automatically the right address according to the context in sales and purchases documents." +msgid "" +"Used to select automatically the right address according to the context in " +"sales and purchases documents." msgstr "" #. module: base @@ -6962,11 +7001,6 @@ msgstr "" msgid "STOCK_MEDIA_NEXT" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" - #. module: base #: selection:res.lang,direction:0 msgid "Right-to-Left" @@ -7014,961 +7048,639 @@ msgstr "" msgid "XML Identifier" msgstr "" -#. module: base -#: field:res.partner.function,name:0 -msgid "Function name" -msgstr "Όνομα λειτουργίας" - -#. module: base -#: field:ir.actions.server,otype:0 -msgid "Create Model" -msgstr "Δημιουργήστε πρότυπο" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Δεν μπορείτε να δημιουργήσετε αυτό το είδος εγγράφου! (%s)" - -#. module: base -#: field:ir.model.config,password_check:0 -msgid "confirmation" -msgstr "επιβεβαίωση" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import new language" -msgstr "Εισαγωγή νέας γλώσσας " - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The unlink method is not implemented on this object !" -msgstr "Η μέθοδος αυτή δεν εφαρμόζεται σε αυτό το αντικείμενο!" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_activity_form -#: model:ir.ui.menu,name:base.menu_workflow_activity -msgid "Activites" -msgstr "δραστηριότητες" - -#. module: base -#: field:ir.actions.server,address:0 -msgid "Email / Mobile" -msgstr "Ηλεκτρονικό ταχυδρομείο/κινητό" - -#. module: base -#: field:res.partner.address,email:0 -msgid "Default Email" -msgstr "Προεπιλεγμένο Ηλεκτρονικό Ταχυδρομείο" - -#. module: base -#: field:ir.actions.wizard,name:0 -#, fuzzy -msgid "Wizard info" -msgstr "Αυτόματος Οδηγός πληροφορίες" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Can not define a column %s. Reserved keyword !" -msgstr "Δεν μπορείτε να καθορίσετε στήλη '%s' . Κρατημένη λέξη " - -#. module: base -#: help:ir.ui.menu,groups_id:0 -msgid "If you put groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." -msgstr "Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον χρήστη. " - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_search method is not implemented on this object !" -msgstr "Η μέθοδος αναζήτησης ονόματος δεν εφαρμόζεται σε αυτό το αντικείμενο!" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Web:" -msgstr "Ιστός:" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "new" -msgstr "νέος" - -#. module: base -#: field:res.partner.address,name:0 -msgid "Contact Name" -msgstr "Όνομα Επαφής" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -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 "Αποθηκεύστε το έγγραφο σε ένα αρχείο '%s' και επεξεργαστείτε το με ειδικό λογισμικό ή έναν συντάκτη κειμένων. Η κωδικοποίηση αρχείων είναι utf-8. " - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password mismatch !" -msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν!" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "Αυτό το url '%s' πρέπει να παρέχει σε ένα αρχείο HTML με συνδέσεις στα αρθρώματα σε Zip" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ConcurrencyException" -msgstr "Εξαίρεση συναγωνισμού" - -#. module: base -#: field:ir.actions.server,state:0 -msgid "Action State" -msgstr "Κατάσταση δράσης" - -#. module: base -#: help:res.partner.category,active:0 -msgid "The active field allows you to hide the category, without removing it." -msgstr "Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι απαραίτητη η αφαίρεση του." - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." -msgstr "Αποθηκεύστε το παρόν έγγραφο σε ένα .CSV αρχείο και ανοίξτε το με το λογισμικό φύλλο (spreadsheet) σας. Η κωδικοποίηση αρχείων είναι utf-8. Πρέπει να μετατρέψετε την πιο πρόσφατη στήλη πριν κάνετε επανεισαγωγή." - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" -msgstr "Δεν μπορείτε να διαγράψετε το χρήστη admin γιατί χρησιμοποιείται εσωτερικά για τους πόρους που δημιουργούνται από OpenERP (αναπροσαρμογές, εγκατάσταση ενότητας,…)" - -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -#, fuzzy -msgid "Custom" -msgstr "Προσαρμοσμένο" - -#. module: base -#: field:res.partner.bank,state:0 -#: field:res.partner.bank.type.field,bank_type_id:0 -#, fuzzy -msgid "Bank type" -msgstr "Τραπ είδος" +#~ msgid "State 2" +#~ msgstr "Πολιτεία" + +#~ msgid "Attached ID" +#~ msgstr "Συνημμένη ταυτότητα" + +#~ msgid "Attached Model" +#~ msgstr "Συνημμένο πρότυπο" + +#~ msgid "File Content" +#~ msgstr "Περιεκτικότητα σε αρχεία" + +#~ msgid "Function name" +#~ msgstr "Όνομα λειτουργίας" + +#~ msgid "Create Model" +#~ msgstr "Δημιουργήστε πρότυπο" + +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Δεν μπορείτε να δημιουργήσετε αυτό το είδος εγγράφου! (%s)" + +#~ msgid "confirmation" +#~ msgstr "επιβεβαίωση" + +#~ msgid "Import new language" +#~ msgstr "Εισαγωγή νέας γλώσσας " + +#~ msgid "The unlink method is not implemented on this object !" +#~ msgstr "Η μέθοδος αυτή δεν εφαρμόζεται σε αυτό το αντικείμενο!" + +#~ msgid "Activites" +#~ msgstr "δραστηριότητες" + +#~ msgid "Email / Mobile" +#~ msgstr "Ηλεκτρονικό ταχυδρομείο/κινητό" + +#~ msgid "Default Email" +#~ msgstr "Προεπιλεγμένο Ηλεκτρονικό Ταχυδρομείο" -#. module: base -#: code:osv/fields.py:0 #, fuzzy -msgid "undefined get method !" -msgstr "ακαθόριστο λήψη!" - -#. module: base -#: code:osv/orm.py:0 -#, fuzzy -msgid "The read method is not implemented on this object !" -msgstr "διαβασμένο είναι όχι!" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_addess_tree -#: view:res.partner:0 +#~ msgid "Wizard info" +#~ msgstr "Αυτόματος Οδηγός πληροφορίες" + +#~ msgid "Can not define a column %s. Reserved keyword !" +#~ msgstr "Δεν μπορείτε να καθορίσετε στήλη '%s' . Κρατημένη λέξη " + +#~ msgid "" +#~ "If you put groups, the visibility of this menu will be based on these " +#~ "groups. If this field is empty, Open ERP will compute visibility based on " +#~ "the related object's read access." +#~ msgstr "" +#~ "Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές " +#~ "τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη " +#~ "διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον " +#~ "χρήστη. " + +#~ msgid "The name_search method is not implemented on this object !" +#~ msgstr "" +#~ "Η μέθοδος αναζήτησης ονόματος δεν εφαρμόζεται σε αυτό το αντικείμενο!" + +#~ msgid "Web:" +#~ msgstr "Ιστός:" + +#~ msgid "new" +#~ msgstr "νέος" + +#~ 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 "" +#~ "Αποθηκεύστε το έγγραφο σε ένα αρχείο '%s' και επεξεργαστείτε το με ειδικό " +#~ "λογισμικό ή έναν συντάκτη κειμένων. Η κωδικοποίηση αρχείων είναι utf-8. " + +#~ msgid "Password mismatch !" +#~ msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν!" + +#~ msgid "This url '%s' must provide an html file with links to zip modules" +#~ msgstr "" +#~ "Αυτό το url '%s' πρέπει να παρέχει σε ένα αρχείο HTML με συνδέσεις στα " +#~ "αρθρώματα σε Zip" + +#~ msgid "ConcurrencyException" +#~ msgstr "Εξαίρεση συναγωνισμού" + +#~ msgid "Action State" +#~ msgstr "Κατάσταση δράσης" + +#~ msgid "" +#~ "The active field allows you to hide the category, without removing it." +#~ msgstr "" +#~ "Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι " +#~ "απαραίτητη η αφαίρεση του." + +#~ msgid "" +#~ "Save this document to a .CSV file and open it with your favourite " +#~ "spreadsheet software. The file encoding is UTF-8. You have to translate " +#~ "the latest column before reimporting it." +#~ msgstr "" +#~ "Αποθηκεύστε το παρόν έγγραφο σε ένα .CSV αρχείο και ανοίξτε το με το " +#~ "λογισμικό φύλλο (spreadsheet) σας. Η κωδικοποίηση αρχείων είναι utf-8. " +#~ "Πρέπει να μετατρέψετε την πιο πρόσφατη στήλη πριν κάνετε επανεισαγωγή." + +#~ msgid "" +#~ "You can not remove the admin user as it is used internally for resources " +#~ "created by OpenERP (updates, module installation, ...)" +#~ msgstr "" +#~ "Δεν μπορείτε να διαγράψετε το χρήστη admin γιατί χρησιμοποιείται " +#~ "εσωτερικά για τους πόρους που δημιουργούνται από OpenERP (αναπροσαρμογές, " +#~ "εγκατάσταση ενότητας,…)" + #, fuzzy -msgid "Partner contacts" -msgstr "Επαφές συνεργάτη" +#~ msgid "Custom" +#~ msgstr "Προσαρμοσμένο" -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, fuzzy -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "Προσαρμοσμένο a όνομα με x!" +#~ msgid "Bank type" +#~ msgstr "Τραπ είδος" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "Unknown attribute % in % (table %)" -msgstr "Άγνωστο ιδιότητα σε πίνακας" +#~ msgid "undefined get method !" +#~ msgstr "ακαθόριστο λήψη!" -#. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "" +#, fuzzy +#~ msgid "The read method is not implemented on this object !" +#~ msgstr "διαβασμένο είναι όχι!" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "Wrong ID for the browse record, got %s, expected an integer." -msgstr "ID για εγγραφή s αναμένεται ακέραιος." +#~ msgid "Partner contacts" +#~ msgstr "Επαφές συνεργάτη" -#. module: base -#: field:ir.report.custom.fields,field_child2:0 -msgid "field child2" -msgstr "" +#, fuzzy +#~ msgid "Custom fields must have a name that starts with 'x_' !" +#~ msgstr "Προσαρμοσμένο a όνομα με x!" -#. module: base -#: field:ir.report.custom.fields,field_child3:0 -msgid "field child3" -msgstr "" +#, fuzzy +#~ msgid "Unknown attribute % in % (table %)" +#~ msgstr "Άγνωστο ιδιότητα σε πίνακας" -#. module: base -#: field:ir.report.custom.fields,field_child0:0 -msgid "field child0" -msgstr "" +#, fuzzy +#~ msgid "Wrong ID for the browse record, got %s, expected an integer." +#~ msgstr "ID για εγγραφή s αναμένεται ακέραιος." -#. module: base -#: field:ir.attachment,datas_fname:0 #, fuzzy -msgid "Data Filename" -msgstr "Δεδομένα Όνομα αρχείου" +#~ msgid "Data Filename" +#~ msgstr "Δεδομένα Όνομα αρχείου" -#. module: base -#: field:ir.module.repository,url:0 #, fuzzy -msgid "Url" -msgstr "Url" +#~ msgid "Url" +#~ msgstr "Url" -#. module: base -#: field:ir.actions.act_window,view_mode:0 -msgid "Mode of view" -msgstr "Κατάσταση προβολής" +#~ msgid "Mode of view" +#~ msgstr "Κατάσταση προβολής" -#. module: base -#: code:addons/base/module/module.py:0 #, fuzzy -msgid "" -"You try to install a module that depends on the module: %s.\n" -"But this module is not available in your system." -msgstr "Εσείς στο εγκατάσταση a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο είναι όχι διαθέσιμα σε." +#~ msgid "" +#~ "You try to install a module that depends on the module: %s.\n" +#~ "But this module is not available in your system." +#~ msgstr "" +#~ "Εσείς στο εγκατάσταση a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο " +#~ "εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s άρθρωμα, μονάδα, " +#~ "υπομονάδα, Δομικό Στοιχείο είναι όχι διαθέσιμα σε." -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "Unknown position in inherited view %s !" -msgstr "Άγνωστο θέση σε s!" +#~ msgid "Unknown position in inherited view %s !" +#~ msgstr "Άγνωστο θέση σε s!" -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy -msgid "Warning: using a relation field which uses an unknown object" -msgstr "Προειδοποίηση a άγνωστο" +#~ msgid "Warning: using a relation field which uses an unknown object" +#~ msgstr "Προειδοποίηση a άγνωστο" -#. module: base -#: code:addons/base/module/module.py:0 #, fuzzy -msgid "You try to remove a module that is installed or will be installed" -msgstr "Εσείς στο a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο είναι ή" +#~ msgid "You try to remove a module that is installed or will be installed" +#~ msgstr "Εσείς στο a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο είναι ή" -#. module: base -#: code:addons/base/module/module.py:0 #, fuzzy -msgid "" -"Can not create the module file:\n" -" %s" -msgstr "" -"όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο\n" -" s" +#~ msgid "" +#~ "Can not create the module file:\n" +#~ " %s" +#~ msgstr "" +#~ "όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο\n" +#~ " s" -#. module: base -#: field:ir.model.fields,model_id:0 #, fuzzy -msgid "Object id" -msgstr "Αντικείμενο id" +#~ msgid "Object id" +#~ msgstr "Αντικείμενο id" -#. module: base -#: field:ir.model.fields,state:0 field:ir.model,state:0 #, fuzzy -msgid "Manualy Created" -msgstr "Δημιουργήθηκε" +#~ msgid "Manualy Created" +#~ msgstr "Δημιουργήθηκε" -#. module: base -#: view:ir.ui.view:0 #, fuzzy -msgid "User Interface - Views" -msgstr "Χρήστης Περιβάλλον Προβολές" +#~ msgid "User Interface - Views" +#~ msgstr "Χρήστης Περιβάλλον Προβολές" -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, fuzzy -msgid "You can not remove the model '%s' !" -msgstr "Εσείς όχι s!" +#~ msgid "You can not remove the model '%s' !" +#~ msgstr "Εσείς όχι s!" -#. module: base -#: field:ir.report.custom.fields,field_child1:0 -msgid "field child1" -msgstr "" +#, fuzzy +#~ msgid "The write method is not implemented on this object !" +#~ msgstr "είναι όχι!" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "The write method is not implemented on this object !" -msgstr "είναι όχι!" +#~ msgid "The copy method is not implemented on this object !" +#~ msgstr "αντιγραφή είναι όχι!" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "The copy method is not implemented on this object !" -msgstr "αντιγραφή είναι όχι!" +#~ msgid "Left-to-right" +#~ msgstr "Αριστερά στο δεξιά" + +#, fuzzy +#~ msgid "" +#~ "Check this box if the partner if a supplier. If it's not checked, " +#~ "purchase people will not see it when encoding a purchase order." +#~ msgstr "Έλεγχος a s όχι όχι κωδικοποίηση a." + +#~ msgid "Password empty !" +#~ msgstr "Κωδικός πρόσβασης κενός!" -#. module: base -#: selection:res.lang,direction:0 #, fuzzy -msgid "Left-to-right" -msgstr "Αριστερά στο δεξιά" +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Εσείς όχι σε s" -#. module: base -#: help:res.partner,supplier:0 #, fuzzy -msgid "Check this box if the partner if a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." -msgstr "Έλεγχος a s όχι όχι κωδικοποίηση a." +#~ msgid "Recursion error in modules dependencies !" +#~ msgstr "Αναδρομή σφάλμα σε Επιλογές - δυνατότητες - λειτουργίες εξαρτήσεις!" -#. module: base -#: code:report/report_sxw.py:0 -#, python-format -msgid "print" -msgstr "" +#~ msgid "AccessError" +#~ msgstr "Σφάλμα πρόσβασης" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password empty !" -msgstr "Κωδικός πρόσβασης κενός!" +#, fuzzy +#~ msgid "The create method is not implemented on this object !" +#~ msgstr "είναι όχι!" -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, fuzzy -msgid "You can not write in this document! (%s)" -msgstr "Εσείς όχι σε s" +#~ msgid "Action type" +#~ msgstr "Ενέργεια είδος" -#. module: base -#: code:addons/base/module/module.py:0 #, fuzzy -msgid "Recursion error in modules dependencies !" -msgstr "Αναδρομή σφάλμα σε Επιλογές - δυνατότητες - λειτουργίες εξαρτήσεις!" +#~ msgid "# of Modules" +#~ msgstr "από Αρθρώματα" -#. module: base -#: code:addons/base/ir/ir_model.py:0 code:osv/orm.py:0 -#, python-format -msgid "AccessError" -msgstr "Σφάλμα πρόσβασης" +#, fuzzy +#~ msgid "Not implemented get_memory method !" +#~ msgstr "Not λήψη!" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "The create method is not implemented on this object !" -msgstr "είναι όχι!" +#~ msgid "You try to bypass an access rule (Document type: %s)." +#~ msgstr "Εσείς στο Έγγραφο είδος s." -#. module: base -#: field:ir.actions.wizard,type:0 #, fuzzy -msgid "Action type" -msgstr "Ενέργεια είδος" +#~ msgid "Action Url" +#~ msgstr "Ενέργεια Url" + +#~ msgid "Partners: " +#~ msgstr "Συνεργάτες:" -#. module: base -#: field:ir.module.category,module_nr:0 #, fuzzy -msgid "# of Modules" -msgstr "από Αρθρώματα" +#~ msgid "Childs Field" +#~ msgstr "Πεδίο" -#. module: base -#: code:osv/fields.py:0 #, fuzzy -msgid "Not implemented get_memory method !" -msgstr "Not λήψη!" +#~ msgid "Can not remove root user!" +#~ msgstr "όχι root!" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Bad query." -msgstr "" +#, fuzzy +#~ msgid "The search method is not implemented on this object !" +#~ msgstr "είναι όχι!" + +#~ msgid "Next call date" +#~ msgstr "Επόμενη ημερομηνία κλήσης" + +#~ msgid "Cumulate" +#~ msgstr "Συσσωρεύστε" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "You try to bypass an access rule (Document type: %s)." -msgstr "Εσείς στο Έγγραφο είδος s." +#~ msgid "Pie charts need exactly two fields" +#~ msgstr "Πίτα δύο" -#. module: base -#: field:ir.actions.url,url:0 #, fuzzy -msgid "Action Url" -msgstr "Ενέργεια Url" +#~ msgid "Create in Same Model" +#~ msgstr "Δημιουργία σε Ίδιο Μοντέλο" -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Partners: " -msgstr "Συνεργάτες:" +#~ msgid "Error !" +#~ msgstr "Σφάλμα" -#. module: base -#: field:ir.ui.view,field_parent:0 #, fuzzy -msgid "Childs Field" -msgstr "Πεδίο" +#~ msgid "" +#~ "Regexp to search module on the repository webpage:\n" +#~ "- The first parenthesis must match the name of the module.\n" +#~ "- The second parenthesis must match all the version number.\n" +#~ "- The last parenthesis must match the extension of the module." +#~ msgstr "" +#~ "στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο " +#~ "Ταιριάζω όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n " +#~ "δευτερόλεπτο Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, " +#~ "μονάδα, υπομονάδα, Δομικό Στοιχείο." + +#~ msgid "Reload an Official Translation" +#~ msgstr "Ξαναφορτώστε μια επίσημη μετάφραση" + +#~ msgid "Bad file format" +#~ msgstr "Κακή μορφή αρχείου" + +#~ msgid "Group by" +#~ msgstr "Ομαδοποίηση κατά" -#. module: base -#: code:addons/base/res/res_user.py:0 #, fuzzy -msgid "Can not remove root user!" -msgstr "όχι root!" +#~ msgid "You can not remove the field '%s' !" +#~ msgstr "Εσείς όχι s!" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "The search method is not implemented on this object !" -msgstr "είναι όχι!" +#~ msgid "" +#~ "\"%s\" contains too many dots. XML ids should not contain dots ! These " +#~ "are used to refer to other modules data, as in module.reference_id" +#~ msgstr "" +#~ "s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε " +#~ "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" + +#~ msgid "Account number" +#~ msgstr "Αριθμός λογαριασμού" + +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Δεν μπορείτε να διαβάσετε το παρόν έγγραφο! (%s)" -#. module: base -#: field:ir.cron,nextcall:0 -msgid "Next call date" -msgstr "Επόμενη ημερομηνία κλήσης" +#~ msgid "Export name" +#~ msgstr "Όνομα εξαγωγής" + +#~ msgid "Object field" +#~ msgstr "Τομέας αντικειμένου" + +#, fuzzy +#~ msgid "" +#~ "Some installed modules depends on the module you plan to desinstall :\n" +#~ " %s" +#~ msgstr "" +#~ "Κάποια προβλήματα Επιλογές - δυνατότητες - λειτουργίες εξαρτάται άρθρωμα, " +#~ "μονάδα, υπομονάδα, Δομικό Στοιχείο στο\n" +#~ " s" -#. module: base -#: field:ir.report.custom.fields,cumulate:0 -msgid "Cumulate" -msgstr "Συσσωρεύστε" +#~ msgid "Create in Other Model" +#~ msgstr "Δημιουργήστε σε άλλο πρότυπο" -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy -msgid "Pie charts need exactly two fields" -msgstr "Πίτα δύο" +#~ msgid "Make the rule global or it needs to be put on a group or user" +#~ msgstr "Make ή στο a ομάδα ή" -#. module: base -#: selection:ir.actions.server,otype:0 #, fuzzy -msgid "Create in Same Model" -msgstr "Δημιουργία σε Ίδιο Μοντέλο" +#~ msgid "Wizard name" +#~ msgstr "Αυτόματος Οδηγός όνομα" -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Error !" -msgstr "Σφάλμα" +#~ msgid "Directory:" +#~ msgstr "Κατάλογος:" + +#~ msgid "The name of the group can not start with \"-\"" +#~ msgstr "Το όνομα της ομάδας δεν μπορεί να αρχίσει με \"-\"" + +#~ msgid "Contacts Titles" +#~ msgstr "Τίτλοι επαφών" + +#~ msgid "Bank account owner" +#~ msgstr "Ιδιοκτήτης τραπεζικού λογαριασμού" -#. module: base -#: help:ir.module.repository,filter:0 #, fuzzy -msgid "" -"Regexp to search module on the repository webpage:\n" -"- The first parenthesis must match the name of the module.\n" -"- The second parenthesis must match all the version number.\n" -"- The last parenthesis must match the extension of the module." -msgstr "στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο Ταιριάζω όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n δευτερόλεπτο Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο." +#~ msgid "" +#~ "Save this document to a .tgz file. This archive containt UTF-8 %s files " +#~ "and may be uploaded to launchpad." +#~ msgstr "Αποθήκευση στο a αρχείο Αρχείο s και Μάιος στο." + +#~ msgid "Export Id" +#~ msgstr "Ταυτότητα εξαγωγής" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Reload an Official Translation" -msgstr "Ξαναφορτώστε μια επίσημη μετάφραση" +#~ msgid "This record was modified in the meanwhile" +#~ msgstr "Αυτό το αρχείο τροποποιήθηκε εν τω μεταξύ" -#. module: base -#: code:tools/translate.py:0 -#, python-format -msgid "Bad file format" -msgstr "Κακή μορφή αρχείου" - -#. module: base -#: field:ir.report.custom.fields,groupby:0 -msgid "Group by" -msgstr "Ομαδοποίηση κατά" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, fuzzy -msgid "You can not remove the field '%s' !" -msgstr "Εσείς όχι s!" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, fuzzy -msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" -msgstr "s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" - -#. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Αριθμός λογαριασμού" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Δεν μπορείτε να διαβάσετε το παρόν έγγραφο! (%s)" - -#. module: base -#: field:ir.exports,name:0 -msgid "Export name" -msgstr "Όνομα εξαγωγής" - -#. module: base -#: field:ir.default,field_name:0 -msgid "Object field" -msgstr "Τομέας αντικειμένου" - -#. module: base -#: code:addons/base/module/module.py:0 -#, fuzzy -msgid "" -"Some installed modules depends on the module you plan to desinstall :\n" -" %s" -msgstr "" -"Κάποια προβλήματα Επιλογές - δυνατότητες - λειτουργίες εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο στο\n" -" s" - -#. module: base -#: selection:ir.actions.server,otype:0 -msgid "Create in Other Model" -msgstr "Δημιουργήστε σε άλλο πρότυπο" - -#. module: base -#: help:ir.rule.group,global:0 -#, fuzzy -msgid "Make the rule global or it needs to be put on a group or user" -msgstr "Make ή στο a ομάδα ή" - -#. module: base -#: field:ir.actions.wizard,wiz_name:0 -#, fuzzy -msgid "Wizard name" -msgstr "Αυτόματος Οδηγός όνομα" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Directory:" -msgstr "Κατάλογος:" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "The name of the group can not start with \"-\"" -msgstr "Το όνομα της ομάδας δεν μπορεί να αρχίσει με \"-\"" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_contact -#: model:ir.ui.menu,name:base.menu_partner_title_contact -msgid "Contacts Titles" -msgstr "Τίτλοι επαφών" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank account owner" -msgstr "Ιδιοκτήτης τραπεζικού λογαριασμού" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, fuzzy -msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." -msgstr "Αποθήκευση στο a αρχείο Αρχείο s και Μάιος στο." - -#. module: base -#: field:ir.exports,export_fields:0 -msgid "Export Id" -msgstr "Ταυτότητα εξαγωγής" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This record was modified in the meanwhile" -msgstr "Αυτό το αρχείο τροποποιήθηκε εν τω μεταξύ" +#~ msgid "This method does not exist anymore" +#~ msgstr "Αυτή η μέθοδος δεν υπάρχει άλλο" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Αυτή η μέθοδος δεν υπάρχει άλλο" +#~ msgid "Tree can only be used in tabular reports" +#~ msgstr "Το δέντρο μπορεί μόνο να χρησιμοποιηθεί στις συνοπτικές αναφορές" -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Tree can only be used in tabular reports" -msgstr "Το δέντρο μπορεί μόνο να χρησιμοποιηθεί στις συνοπτικές αναφορές" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Τραπεζικοί λογαριασμοί" +#~ msgid "Bank accounts" +#~ msgstr "Τραπεζικοί λογαριασμοί" -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy -msgid "Bar charts need at least two fields" -msgstr "Ράβδος σε δύο" +#~ msgid "Bar charts need at least two fields" +#~ msgstr "Ράβδος σε δύο" -#. module: base -#: code:osv/fields.py:0 #, fuzzy -msgid "Not implemented search_memory method !" -msgstr "Not!" +#~ msgid "Not implemented search_memory method !" +#~ msgstr "Not!" -#. module: base -#: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 #, fuzzy -msgid "Type of view" -msgstr "Τύπος από" +#~ msgid "Type of view" +#~ msgstr "Τύπος από" -#. module: base -#: code:report/custom.py:0 #, fuzzy -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "από 2η είναι a!" +#~ msgid "" +#~ "The sum of the data (2nd field) is null.\n" +#~ "We can draw a pie chart !" +#~ msgstr "από 2η είναι a!" -#. module: base -#: model:ir.actions.act_window,name:base.grant_menu_access -#: model:ir.ui.menu,name:base.menu_grant_menu_access -msgid "Grant access to menu" -msgstr "Πρόσβαση επιχορήγησης στις επιλογές" +#~ msgid "Grant access to menu" +#~ msgstr "Πρόσβαση επιχορήγησης στις επιλογές" -#. module: base -#: help:res.partner,customer:0 -msgid "Check this box if the partner if a customer." -msgstr "Ελέγξτε αυτό το κιβώτιο εάν είναι συνεργάτης ή πελάτης." +#~ msgid "Check this box if the partner if a customer." +#~ msgstr "Ελέγξτε αυτό το κιβώτιο εάν είναι συνεργάτης ή πελάτης." -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Second field should be figures" -msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμοί" +#~ msgid "Second field should be figures" +#~ msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμοί" -#. module: base -#: field:ir.actions.actions,parent_id:0 #, fuzzy -msgid "Parent Action" -msgstr "Γονέας Ενέργεια" +#~ msgid "Parent Action" +#~ msgstr "Γονέας Ενέργεια" -#. module: base -#: code:addons/base/res/partner/partner.py:0 #, fuzzy -msgid "Couldn't generate the next id because some partners have an alphabetic id !" -msgstr "t id μερικές id!" +#~ msgid "" +#~ "Couldn't generate the next id because some partners have an alphabetic " +#~ "id !" +#~ msgstr "t id μερικές id!" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "Error occured while validating the field(s) %s: %s" -msgstr "Σφάλμα s s s" +#~ msgid "Error occured while validating the field(s) %s: %s" +#~ msgstr "Σφάλμα s s s" -#. module: base -#: help:ir.actions.wizard,multi:0 #, fuzzy -msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." -msgstr "στο αληθές όχι δεξιά από a." +#~ msgid "" +#~ "If set to true, the wizard will not be displayed on the right toolbar of " +#~ "a form views." +#~ msgstr "στο αληθές όχι δεξιά από a." -#. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Orignal View" -msgstr "Αρχική Άποψη" +#~ msgid "Orignal View" +#~ msgstr "Αρχική Άποψη" -#. module: base -#: field:res.partner.category,child_ids:0 #, fuzzy -msgid "Childs Category" -msgstr "Κατηγορία" +#~ msgid "Childs Category" +#~ msgstr "Κατηγορία" -#. module: base -#: field:ir.actions.wizard,multi:0 #, fuzzy -msgid "Action on multiple doc." -msgstr "Ενέργεια." +#~ msgid "Action on multiple doc." +#~ msgstr "Ενέργεια." -#. module: base -#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 -#: help:ir.actions.act_window.view,multi:0 #, fuzzy -msgid "If set to true, the action will not be displayed on the right toolbar of a form views." -msgstr "στο αληθές όχι δεξιά από a." +#~ msgid "" +#~ "If set to true, the action will not be displayed on the right toolbar of " +#~ "a form views." +#~ msgstr "στο αληθές όχι δεξιά από a." -#. module: base -#: model:ir.ui.menu,name:base.next_id_4 -msgid "Low Level" -msgstr "Χαμηλό επλιπεδο " +#~ msgid "Low Level" +#~ msgstr "Χαμηλό επλιπεδο " -#. module: base -#: field:res.company,child_ids:0 #, fuzzy -msgid "Childs Company" -msgstr "Εταιρία" +#~ msgid "Childs Company" +#~ msgstr "Εταιρία" -#. module: base -#: rml:ir.module.reference:0 #, fuzzy -msgid "Module:" -msgstr "Άρθρωμα:" +#~ msgid "Module:" +#~ msgstr "Άρθρωμα:" -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy -msgid "Enter at least one field !" -msgstr "Εισαγωγή σε!" +#~ msgid "Enter at least one field !" +#~ msgstr "Εισαγωγή σε!" -#. module: base -#: field:ir.actions.server,child_ids:0 selection:ir.actions.server,state:0 #, fuzzy -msgid "Others Actions" -msgstr "Άλλα Ενέργειες" +#~ msgid "Others Actions" +#~ msgstr "Άλλα Ενέργειες" -#. module: base -#: rml:ir.module.reference:0 -msgid "Name:" -msgstr "Όνομα:" +#~ msgid "Name:" +#~ msgstr "Όνομα:" -#. module: base -#: field:ir.ui.menu,child_id:0 #, fuzzy -msgid "Child ids" -msgstr "Παιδί" +#~ msgid "Child ids" +#~ msgstr "Παιδί" -#. module: base -#: view:ir.actions.server:0 #, fuzzy -msgid "Python code" -msgstr "Python" +#~ msgid "Python code" +#~ msgstr "Python" -#. module: base -#: help:res.partner,vat:0 #, fuzzy -msgid "Value Added Tax number" -msgstr "Τιμή Προστέθηκε Φόρος" +#~ msgid "Value Added Tax number" +#~ msgstr "Τιμή Προστέθηκε Φόρος" -#. module: base -#: field:ir.cron,numbercall:0 -msgid "Number of calls" -msgstr "Αριθμός κλήσεων" +#~ msgid "Number of calls" +#~ msgstr "Αριθμός κλήσεων" -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, fuzzy -msgid "Can not create the module file: %s !" -msgstr "όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο s!" +#~ msgid "Can not create the module file: %s !" +#~ msgstr "όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο s!" -#. module: base -#: selection:res.lang,direction:0 #, fuzzy -msgid "Right-to-left" -msgstr "Δεξιά στο αριστερά" +#~ msgid "Right-to-left" +#~ msgstr "Δεξιά στο αριστερά" -#. module: base -#: field:ir.report.custom,title:0 -msgid "Report title" -msgstr "Τίτλος εκθέσεων" +#~ msgid "Report title" +#~ msgstr "Τίτλος εκθέσεων" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "The perm_read method is not implemented on this object !" -msgstr "διαβασμένο είναι όχι!" +#~ msgid "The perm_read method is not implemented on this object !" +#~ msgstr "διαβασμένο είναι όχι!" -#. module: base -#: view:ir.actions.server:0 #, fuzzy -msgid "Access all the fields related to the current object easily just by defining name of the attribute, i.e. [[partner_id.name]] for Invoice Object" -msgstr "Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο Αντικείμενο" +#~ msgid "" +#~ "Access all the fields related to the current object easily just by " +#~ "defining name of the attribute, i.e. [[partner_id.name]] for Invoice " +#~ "Object" +#~ msgstr "" +#~ "Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο " +#~ "Αντικείμενο" -#. module: base -#: field:res.request,create_date:0 -msgid "Created date" -msgstr "Ημερομηνία δημιουργείας " +#~ msgid "Created date" +#~ msgstr "Ημερομηνία δημιουργείας " -#. module: base -#: view:ir.actions.server:0 #, fuzzy -msgid "Email / SMS" -msgstr "Email SMS" +#~ msgid "Email / SMS" +#~ msgstr "Email SMS" -#. module: base -#: field:ir.cron,doall:0 #, fuzzy -msgid "Repeat missed" -msgstr "Επανάληψη" +#~ msgid "Repeat missed" +#~ msgstr "Επανάληψη" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "Couldn't find tag '%s' in parent view !" -msgstr "t ετικέτα s σε!" +#~ msgid "Couldn't find tag '%s' in parent view !" +#~ msgstr "t ετικέτα s σε!" -#. module: base -#: field:res.roles,child_id:0 -msgid "Childs" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 #, fuzzy -msgid "Warning" -msgstr "Προειδοποίηση" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ValidateError" -msgstr "" +#~ msgid "Warning" +#~ msgstr "Προειδοποίηση" -#. module: base -#: rml:ir.module.reference:0 -msgid "Version:" -msgstr "Έκδοση:" +#~ msgid "Version:" +#~ msgstr "Έκδοση:" -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, fuzzy -msgid "You can not delete this document! (%s)" -msgstr "Εσείς όχι s" +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Εσείς όχι s" -#. module: base -#: rml:ir.module.reference:0 -msgid "Printed:" -msgstr "Τυπωμένο:" +#~ msgid "Printed:" +#~ msgstr "Τυπωμένο:" -#. module: base -#: code:addons/base/module/module.py:0 #, fuzzy -msgid "Can not upgrade module '%s'. It is not installed." -msgstr "όχι αναβάθμιση άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s είναι όχι." +#~ msgid "Can not upgrade module '%s'. It is not installed." +#~ msgstr "" +#~ "όχι αναβάθμιση άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s είναι όχι." -#. module: base -#: code:osv/fields.py:0 #, fuzzy -msgid "Not implemented set_memory method !" -msgstr "Not!" +#~ msgid "Not implemented set_memory method !" +#~ msgstr "Not!" -#. module: base -#: view:res.partner.category:0 #, fuzzy -msgid "Partner category" -msgstr "Συνεργάτης" +#~ msgid "Partner category" +#~ msgstr "Συνεργάτης" -#. module: base -#: model:ir.ui.menu,name:base.next_id_2 -msgid "Interface" -msgstr "Διεπαφή" +#~ msgid "Interface" +#~ msgstr "Διεπαφή" -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy -msgid "Field %d should be a figure" -msgstr "Πεδίο a" +#~ msgid "Field %d should be a figure" +#~ msgstr "Πεδίο a" -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not Implemented" -msgstr "Μη εφαρμοσμένο" +#~ msgid "Not Implemented" +#~ msgstr "Μη εφαρμοσμένο" -#. module: base -#: field:ir.module.module,shortdesc:0 #, fuzzy -msgid "Short description" -msgstr "Μικρή περιγραφή" +#~ msgid "Short description" +#~ msgstr "Μικρή περιγραφή" -#. module: base -#: help:ir.actions.report.xml,attachment:0 #, fuzzy -msgid "This is the prefix of the file name the print will be saved as attachement. Keep empty to not save the printed reports" -msgstr "είναι από αρχείο όνομα Διατήρηση κενό στο όχι" +#~ msgid "" +#~ "This is the prefix of the file name the print will be saved as " +#~ "attachement. Keep empty to not save the printed reports" +#~ msgstr "είναι από αρχείο όνομα Διατήρηση κενό στο όχι" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "The name_get method is not implemented on this object !" -msgstr "όνομα λήψη είναι όχι!" +#~ msgid "The name_get method is not implemented on this object !" +#~ msgstr "όνομα λήψη είναι όχι!" -#. module: base -#: view:ir.sequence:0 #, fuzzy -msgid "Year: %(year)s" -msgstr "Έτος έτος s" +#~ msgid "Year: %(year)s" +#~ msgstr "Έτος έτος s" -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form -#: model:ir.ui.menu,name:base.menu_ir_property_form #, fuzzy -msgid "Default properties" -msgstr "Εξ ορισμού ιδιότητες" +#~ msgid "Default properties" +#~ msgstr "Εξ ορισμού ιδιότητες" -#. module: base -#: code:addons/base/ir/ir_actions.py:0 #, fuzzy -msgid "Please specify the Partner Email address !" -msgstr "Συνεργάτης Email διεύθυνση!" +#~ msgid "Please specify the Partner Email address !" +#~ msgstr "Συνεργάτης Email διεύθυνση!" -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_partner -#: model:ir.ui.menu,name:base.menu_partner_title_partner -#: view:res.partner.title:0 #, fuzzy -msgid "Partners Titles" -msgstr "Τίτλοι" +#~ msgid "Partners Titles" +#~ msgstr "Τίτλοι" -#. module: base -#: wizard_view:module.lang.import,init:0 #, fuzzy -msgid "You have to import a .CSV file wich is encoded in UTF-8. Please check that the first line of your file is:" -msgstr "Εσείς στο a CSV αρχείο είναι σε Έλεγχος πρώτο γραμμή από αρχείο είναι:" +#~ msgid "" +#~ "You have to import a .CSV file wich is encoded in UTF-8. Please check " +#~ "that the first line of your file is:" +#~ msgstr "" +#~ "Εσείς στο a CSV αρχείο είναι σε Έλεγχος πρώτο γραμμή από αρχείο είναι:" -#. module: base -#: code:addons/base/ir/ir_actions.py:0 code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Σφάλμα" +#~ msgid "Error" +#~ msgstr "Σφάλμα" -#. module: base -#: field:res.currency,rate:0 #, fuzzy -msgid "Current rate" -msgstr "Τρέχον" +#~ msgid "Current rate" +#~ msgstr "Τρέχον" -#. module: base -#: field:res.payterm,name:0 #, fuzzy -msgid "Payment term (short name)" -msgstr "Πληρωμή όνομα" +#~ msgid "Payment term (short name)" +#~ msgstr "Πληρωμή όνομα" -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, fuzzy -msgid "Invalid operation" -msgstr "Άκυρο" +#~ msgid "Invalid operation" +#~ msgstr "Άκυρο" -#. module: base -#: field:res.partner.bank,owner_name:0 #, fuzzy -msgid "Account owner" -msgstr "Λογαριασμός ιδιοκτήτης" +#~ msgid "Account owner" +#~ msgstr "Λογαριασμός ιδιοκτήτης" -#. module: base -#: field:ir.exports.line,name:0 field:res.partner.bank.type.field,name:0 #, fuzzy -msgid "Field name" -msgstr "Όνομα πεδίου" +#~ msgid "Field name" +#~ msgstr "Όνομα πεδίου" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "The value \"%s\" for the field \"%s\" is not in the selection" -msgstr "τιμή s για s είναι όχι σε" +#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" +#~ msgstr "τιμή s για s είναι όχι σε" -#. module: base -#: wizard_view:module.lang.install,start:0 #, fuzzy -msgid "Installation done" -msgstr "Εγκατάσταση έτοιμο" +#~ msgid "Installation done" +#~ msgstr "Εγκατάσταση έτοιμο" -#. module: base -#: model:ir.ui.menu,name:base.menu_partner_address_form #, fuzzy -msgid "Addresses" -msgstr "Διευθύνσεις" +#~ msgid "Addresses" +#~ msgstr "Διευθύνσεις" -#. module: base -#: code:osv/orm.py:0 #, fuzzy -msgid "Please check that all your lines have %d columns." -msgstr "Έλεγχος όλα στήλες." - +#~ msgid "Please check that all your lines have %d columns." +#~ msgstr "Έλεγχος όλα στήλες." From 71f262c53cdefb5f4ef19042958013d53491a8ff Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 16 May 2009 23:41:00 +0300 Subject: [PATCH 124/251] Make server executable, again. bzr revid: p_christ@hol.gr-20090516204100-9oq62c0dfnxh2v4s --- bin/openerp-server.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 bin/openerp-server.py diff --git a/bin/openerp-server.py b/bin/openerp-server.py old mode 100644 new mode 100755 From b4336b315de6f2768a0b5416377b4d4c56f2ee04 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 17 May 2009 00:20:29 +0300 Subject: [PATCH 125/251] Allow importing .po files with deprecated strings. bzr revid: p_christ@hol.gr-20090516212029-r1olq8tm3m2cg6o1 --- bin/tools/translate.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 7bb61ac676e..aeca4c91710 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -184,6 +184,8 @@ class TinyPoFile(object): line = self.lines.pop(0).strip() while line.startswith('#'): + if line.startswith('#~ '): + break if line.startswith('#:'): if ' ' in line[2:].strip(): for lpart in line[2:].strip().split(' '): @@ -196,6 +198,14 @@ class TinyPoFile(object): while not line: # allow empty lines between comments and msgid line = self.lines.pop(0).strip() + if line.startswith('#~ '): + while line.startswith('#~ ') or not line.strip(): + if 0 == len(self.lines): + raise StopIteration() + line = self.lines.pop(0) + # This has been a deprecated entry, don't return anything + return self.next() + if not line.startswith('msgid'): raise Exception("malformed file: bad line: %s" % line) source = unquote(line[6:]) From 4b5d5be070a1481429166dddfba26d79698252e5 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 21 May 2009 14:33:11 +0300 Subject: [PATCH 126/251] Include html2html in packaging. bzr revid: p_christ@hol.gr-20090521113311-kvunb5cz565zo7l0 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index df44c3611d3..057cdb9d75f 100755 --- a/setup.py +++ b/setup.py @@ -177,7 +177,8 @@ setup(name = name, 'openerp-server.report.render', 'openerp-server.report.render.rml2pdf', 'openerp-server.report.render.rml2html', - 'openerp-server.report.render.rml2txt', + 'openerp-server.report.render.rml2txt', + 'openerp-server.report.render.html2html', 'openerp-server.wizard', 'openerp-server.report.render.odt2odt', 'openerp-server.workflow'] + \ From e8bdaad397fdebefe00e01c9e458114e9182b327 Mon Sep 17 00:00:00 2001 From: Panagiotis Kranidiotis Date: Thu, 28 May 2009 18:37:51 +0300 Subject: [PATCH 127/251] Greek translations for base, from launchpad. bzr revid: p_christ@hol.gr-20090528153751-4qmxv2rtx1qyvixd --- bin/addons/base/i18n/el_GR.po | 12876 ++++++++++++++++---------------- 1 file changed, 6553 insertions(+), 6323 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 0011412f86b..b2e03a24c6a 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -1,123 +1,1993 @@ -# translation of el_GR.po to Ellhnika # Translation of OpenERP Server. # This file contains the translation of the following modules: # * base # -# P. Christeas , 2009. -# P. Christeas , 2009. msgid "" msgstr "" -"Project-Id-Version: el_GR\n" +"Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-05-16 20:02:15+0000\n" -"PO-Revision-Date: 2009-05-16 23:26+0300\n" -"Last-Translator: P. Christeas \n" -"Language-Team: Greek \n" +"POT-Creation-Date: 2009-04-09 17:23+0000\n" +"PO-Revision-Date: 2009-05-23 13:48+0000\n" +"Last-Translator: Panagiotis Kranidiotis \n" +"Language-Team: nls@hellug.gr \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 0.3\n" - -#. module: base -#: model:res.country,name:base.ca -msgid "Canada" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_STOP" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,target:0 -msgid "Current Window" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "Legends for Date and Time Formats" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_name:0 -msgid "Internal Name" -msgstr "Εσωτερικό όνομα" +"X-Launchpad-Export-Date: 2009-05-28 09:14+0000\n" +"X-Generator: Launchpad (build Unknown)\n" +"X-Poedit-Country: GREECE\n" +"X-Poedit-Language: Greek\n" +"X-Poedit-SourceCharset: utf-8\n" #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" -msgstr "" +msgstr "Αγία Έλενα" #. module: base #: wizard_view:res.partner.sms_send,init:0 msgid "SMS - Gateway: clickatell" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Monthly" -msgstr "Μηνιαίο " - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Unknown" -msgstr "Άγνωστο" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "" -"This wizard will detect new terms in the application so that you can update " -"them manually." -msgstr "" -"Αυτός ο αυτοματισμός θα ανιχνεύσει τους νέους όρους στην εφαρμογή έτσι ώστε " -"μπορείτε να τους ενημερώσετε με το χέρι." - -#. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "" +msgstr "SMS - Gateway: clickatell" #. module: base #: view:res.lang:0 msgid "%j - Day of the year as a decimal number [001,366]." +msgstr "%j - Ημέρα του χρόνου σε δεκαδική μορφή [001,366]." + +#. module: base +#: field:ir.values,meta_unpickle:0 +msgid "Metadata" +msgstr "Metadata" + +#. module: base +#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "Προβολή Δομής" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not create this kind of document! (%s)" +msgstr "Δεν μπορείτε να δημιουργήσετε τέτοιο έγγραφο! (%s)" + +#. module: base +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "Code (eg:en__US)" + +#. module: base +#: view:workflow:0 field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +msgid "Workflow" +msgstr "Ροή έργασίας" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " +msgstr "To browse official translations, you can visit this link: " + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Hungarian / Magyar" +msgstr "Hungarian / Magyar" + +#. module: base +#: field:ir.actions.server,wkf_model_id:0 +msgid "Workflow On" msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "You may have to reinstall some language pack." +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "Created Views" + +#. module: base +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "Εκροές" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "Ετησίως" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Η μέθοδος αποσύνδεσης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "Επιλεγμένο Παράθυρο" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_simple_view +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 "" +"Choose between the \"Simplified Interface\" or the extended one.\n" +"Ιf 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" +" " + +#. module: base +#: code:report/custom.py:0 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Το άθροισμα των δεδομένων στο 2ο πεδίο είναι μηδενικό.\n" +"Αδύνατη η δημιουργία κυκλικού διαγράμματος !" + +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Νότια Κορέα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Ροές" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "ir.ui.view.custom" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_custom +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.custom" +msgstr "ir.actions.report.custom" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_SAVE" -msgstr "" +msgid "STOCK_CANCEL" +msgstr "ΑΠΟΘΕΜΑ_ΑΚΥΡΩΣΗ" #. module: base -#: model:ir.actions.act_window,name:base.action_res_users_my -msgid "Change My Preferences" -msgstr "Αλλαγή προτιμήσεων" +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "Ταξινόμηση ανά" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "Αριθμός Προσαύξησης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_tree +#: model:ir.ui.menu,name:base.menu_action_res_company_tree +msgid "Company's Structure" +msgstr "Δομή Εταιρίας" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom_fields +msgid "ir.report.custom.fields" +msgstr "ir.report.custom.fields" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "new" +msgstr "νέο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_TOP" +msgstr "ΑΠΟΘΕΜΑ_ΠΗΓΑΙΝΕ_ΕΠΑΝΩ" + +#. module: base +#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 +msgid "On multiple doc." +msgstr "Σε πολλαπλά έγγραφα." + +#. module: base +#: field:ir.module.category,module_nr:0 +msgid "Number of Modules" +msgstr "Number of Modules" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "Μέγιστο Μέγεθος" + +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "Όνομα Επαφής" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +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 "Αποθηκέυστε αυτό το έγγραφο σε %s αρχείο και επεξργαστείτε το με επεξεργαστή κειμένου ή άλλο πρόγραμμα. Η κωδικοποίηση του αρχείου είναι UTF-8." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password mismatch !" +msgstr "Το password δεν είναι το ίδιο!" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "This url '%s' must provide an html file with links to zip modules" +msgstr "This url '%s' must provide an html file with links to zip modules" + +#. module: base +#: selection:res.request,state:0 +msgid "active" +msgstr "ενεργό" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +msgid "Wizard Name" +msgstr "Όνομα Οδηγού" + +#. module: base +#: view:res.lang:0 +msgid "%y - Year without century as a decimal number [00,99]." +msgstr "%y - Χρονολογία χωρίς τον αιώνα, σε δεκαδική μορφή [00, 99]." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" + +#. module: base +#: help:ir.rule.group,rules:0 +msgid "The rule is satisfied if at least one test is True" +msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Get Max" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "Προεπιλεγμένο όριο για την προβολή λίστας" + +#. module: base +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Ανανέωση Ημερ/νίας" + +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "Πηγαίο Αντικείμενο" + +#. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form +msgid "Config Wizard Steps" +msgstr "Config Wizard Steps" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "ir.ui.view_sc" + +#. module: base +#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 +msgid "Group" +msgstr "Ομάδα" + +#. module: base +#: field:ir.exports.line,name:0 field:ir.translation,name:0 +#: field:res.partner.bank.type.field,name:0 +msgid "Field Name" +msgstr "Όνομα Πεδίου" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "Uninstalled modules" + +#. module: base +#: wizard_view:server.action.create,init:0 +#: wizard_field:server.action.create,init,type:0 +msgid "Select Action Type" +msgstr "Επιλογή Τύπου Κίνησης" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Configure" +msgstr "Ρυθμίσεις" + +#. module: base +#: model:res.country,name:base.tv +msgid "Tuvalu" +msgstr "Τουβαλού" + +#. module: base +#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +msgid "Custom Object" +msgstr "Παραμετροποιημένο αντικείμενο" + +#. module: base +#: field:res.lang,date_format:0 +msgid "Date Format" +msgstr "Μορφή Ημερ/νίας" + +#. module: base +#: field:res.bank,email:0 field:res.partner.address,email:0 +msgid "E-Mail" +msgstr "E-Mail" + +#. module: base +#: model:res.country,name:base.an +msgid "Netherlands Antilles" +msgstr "Ολλανδικές Αντίλλες" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" +msgstr "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" + +#. module: base +#: model:res.country,name:base.gf +msgid "French Guyana" +msgstr "Γαλλική Γουιάνα" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bosnian / bosanski jezik" +msgstr "Βοσνιακό / bosanski jezik" + +#. module: base +#: help:ir.actions.report.xml,attachment_use:0 +msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." +msgstr "Αν επιλέξετε αυτό, τη δεύτερη φορά που ο χρήστης θα εκτυπώσει το ίδιο όνομα συνημμένου, θα εκτυπωθεί η προηγούμενη αναφορά." + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Η μέθοδος ανάγνωσης δεν έχει αναπτυχθεί για αυτό το αντικείμενο!" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "STOCK_MEDIA_REWIND" + +#. module: base +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "Κείμενο" + +#. module: base +#: field:res.country,name:0 +msgid "Country Name" +msgstr "Όνομα Χώρας" + +#. module: base +#: model:res.country,name:base.co +msgid "Colombia" +msgstr "Κολομβία" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule Upgrade" +msgstr "Προγραμματισμός Αναβάθμισης" + +#. module: base +#: field:ir.actions.report.custom,report_id:0 +msgid "Report Ref." +msgstr "Report Ref." + +#. module: base +#: help:res.country,code:0 +msgid "" +"The ISO country code in two chars.\n" +"You can use this field for quick search." msgstr "" +"Κωδικός Χώρας (Διψήφιος ISO).\n" +"Χρησιμοποιήστε το για γρήγορη αναζήτηση." + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "Xή" + +#. module: base +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "Πωλήσεις & Αγορές" + +#. module: base +#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 +msgid "Wizard" +msgstr "Οδηγός" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" +msgstr "ΑΠΟΘΕΜΑ_ΑΠΟΚΟΠΗ" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard +msgid "Wizards" +msgstr "Οδηγοί" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Extended Interface" +msgstr "Εκτεταμένη Προβολή" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Τα ειδικά πεδία πρέπει να έχουν όνομα που ξεκινάει από 'x_' !" + +#. module: base +#: help:ir.actions.server,action_id:0 +msgid "Select the Action Window, Report, Wizard to be executed." +msgstr "Επιλογή Παραθύρου Κίνησης, Αναφοράς, Wizard προς εμφάνιση." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "Η Εξαγωγή Επετεύχθει" + +#. module: base +#: view:ir.model:0 +msgid "Model Description" +msgstr "Περιγραφή Μοντέλου" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "Trigger Expression" + +#. module: base +#: model:res.country,name:base.jo +msgid "Jordan" +msgstr "Ιορδανία" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not remove the model '%s' !" +msgstr "Δεν μπορείτε να διαγράψετε το μοντέλο '%s' !" + +#. module: base +#: model:res.country,name:base.er +msgid "Eritrea" +msgstr "Ερυθρέα" + +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "Ρυθμίσεις απλής προβολής" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bulgarian / български" +msgstr "Bulgarian / български" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "ir.actions.actions" + +#. module: base +#: model:ir.actions.act_window,name:base.action_report_custom +#: view:ir.report.custom:0 +msgid "Custom Report" +msgstr "Ειδική Αναφορά" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "Ιστόγραμμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_ERROR" +msgstr "STOCK_DIALOG_ERROR" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDEX" +msgstr "STOCK_INDEX" + +#. module: base +#: model:res.country,name:base.rs +msgid "Serbia" +msgstr "Σερβία" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard View" +msgstr "Προβολή Wizard" + +#. module: base +#: model:res.country,name:base.kh +msgid "Cambodia, Kingdom of" +msgstr "Καμπότζη, Βασίλειο της" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +msgid "Sequences" +msgstr "Συχνότητες" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_QUESTION" -msgstr "" +msgstr "STOCK_DIALOG_QUESTION" + +#. module: base +#: model:res.country,name:base.pg +msgid "Papua New Guinea" +msgstr "Παπούα Νέα Γουινέα" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_4 +msgid "Basic Partner" +msgstr "Βασικός Συνεργάτης" + +#. module: base +#: rml:ir.module.reference:0 +msgid "," +msgstr "," + +#. module: base +#: model:res.country,name:base.es +msgid "Spain" +msgstr "Ισπανία" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "You may have to reinstall some language pack." +msgstr "Πιθανόν να χρειαστεί να επανεγκαταστήσετε κάποιο πακέτο γλώσσας." + +#. module: base +#: field:res.partner.address,mobile:0 +msgid "Mobile" +msgstr "Κινητό" + +#. module: base +#: model:res.country,name:base.om +msgid "Oman" +msgstr "Ομάν" + +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +msgid "Payment term" +msgstr "Όροι Πληρωμής" + +#. module: base +#: model:res.country,name:base.nu +msgid "Niue" +msgstr "Νιούε" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Work Days" +msgstr "Ημέρες Εργασίας" + +#. module: base +#: help:ir.values,action_id:0 +msgid "This field is not used, it only helps you to select the right action." +msgstr "Αυτό το πεδίο δεν χρησιμοποιείται, απλά σας βοηθά να επιλέξετε την σωστή ενέργεια." + +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" +msgstr "Δημιουργήστε μενού" + +#. module: base +#: model:res.country,name:base.in +msgid "India" +msgstr "Ινδία" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_module +msgid "maintenance contract modules" +msgstr "modules συμβολαίου συντήρησης" + +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "client_action_multi, client_action_relate" + +#. module: base +#: model:res.country,name:base.ad +msgid "Andorra, Principality of" +msgstr "Andorra, Principality of" + +#. module: base +#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 +msgid "Child Categories" +msgstr "Υποκατηγορίες" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "TGZ Archive" +msgstr "Αρχείο TGZ" + +#. module: base +#: field:res.partner.som,factor:0 +msgid "Factor" +msgstr "Παράγοντας" + +#. module: base +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "%B - Πλήρες όνομα μήνα." + +#. module: base +#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 +#: field:ir.values,key:0 view:res.partner:0 +msgid "Type" +msgstr "Τύπος" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "terp-account" +msgid "STOCK_FILE" +msgstr "STOCK_FILE" + +#. module: base +#: model:res.country,name:base.gu +msgid "Guam (USA)" +msgstr "Guam (USA)" + +#. module: base +#: model:ir.model,name:base.model_ir_model_grid +msgid "Objects Security Grid" +msgstr "Objects Security Grid" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_DOWN" +msgstr "STOCK_GO_DOWN" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OK" +msgstr "STOCK_OK" + +#. module: base +#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "Εικονικό" + +#. module: base +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Invalid XML for View Architecture!" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "You try to bypass an access rule (Document type: %s)." +msgstr "Υπάρχουν κανόνες πρόσβασης για έγγραφα %s." + +#. module: base +#: model:res.country,name:base.ky +msgid "Cayman Islands" +msgstr "Cayman Islands" + +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 +msgid "Sequence Name" +msgstr "Όνομα Αρίθμησης" + +#. module: base +#: model:res.country,name:base.td +msgid "Chad" +msgstr "Chad" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish (AR) / Español (AR)" +msgstr "Spanish (AR) / Español (AR)" + +#. module: base +#: model:res.country,name:base.ug +msgid "Uganda" +msgstr "Uganda" + +#. module: base +#: model:res.country,name:base.ne +msgid "Niger" +msgstr "Νίγηρας" + +#. module: base +#: model:res.country,name:base.ba +msgid "Bosnia-Herzegovina" +msgstr "Bosnia-Herzegovina" + +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "Διάταξη" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr ">=" + +#. module: base +#: view:res.lang:0 +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 - Ο αριθμός της εβδομάδας στο χρόνο (με Δευτέρα πρώτη ημέρα της εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του νέου χρόνου πριν την πρώτη Δευτέρα θεωρούνται εβδομάδα 0." + +#. module: base +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" +msgstr "Προϋπολογισμένο Κόστος" + +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" +msgstr "ir.model.config" + +#. module: base +#: field:ir.module.module,website:0 field:res.partner,website:0 +msgid "Website" +msgstr "Ιστοσελίδα" + +#. module: base +#: field:ir.rule.group,rules:0 +msgid "Tests" +msgstr "Tests" + +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "Αποθήκη" + +#. module: base +#: model:res.country,name:base.gs +msgid "S. Georgia & S. Sandwich Isls." +msgstr "S. Georgia & S. Sandwich Isls." + +#. module: base +#: field:ir.actions.url,url:0 +msgid "Action URL" +msgstr "Action URL" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "STOCK_JUSTIFY_FILL" + +#. module: base +#: model:res.country,name:base.mh +msgid "Marshall Islands" +msgstr "Marshall Islands" + +#. module: base +#: model:res.country,name:base.ht +msgid "Haiti" +msgstr "Haiti" + +#. module: base +#: selection:ir.translation,type:0 +msgid "RML" +msgstr "RML" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +msgid "Partners by Categories" +msgstr "Συνεργάτες ανά Κατηγορίες" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Pie charts need exactly two fields" +msgstr "Το κυκλικό διάγραμμα χρειάζεται ακριβώς δύο πεδία" + +#. module: base +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Για εξαγωγή νέας γλώσσας, μην επιλέξετε καμμία γλώσσα." + +#. module: base +#: model:res.country,name:base.md +msgid "Moldavia" +msgstr "Moldavia" + +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "Χαρακτηριστικά" + +#. module: base +#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 +msgid "Version" +msgstr "Έκδοση" + +#. module: base +#: field:ir.report.custom.fields,fc0_op:0 +#: field:ir.report.custom.fields,fc1_op:0 +#: field:ir.report.custom.fields,fc2_op:0 +#: field:ir.report.custom.fields,fc3_op:0 +msgid "Relation" +msgstr "Σχέση" + +#. module: base +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Πρόσβαση Ανάγνωσης" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" +msgstr "ir.exports" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MISSING_IMAGE" +msgstr "STOCK_MISSING_IMAGE" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "Ορισμός Νέων Χρηστών" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "STOCK_REMOVE" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" msgstr "" +#. module: base +#: help:ir.actions.server,email:0 +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 "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" + +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Όνομα Ρόλου" + +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Αφοσιωμένος Πωλητής" + +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "-" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + +#. module: base +#: field:res.payterm,name:0 +msgid "Payment Term (short name)" +msgstr "Όρος Πληρωμής (σύντομα)" + +#. module: base +#: model:ir.model,name:base.model_res_bank view:res.bank:0 +#: field:res.partner.bank,bank:0 +msgid "Bank" +msgstr "Τράπεζα" + +#. module: base +#: view:res.lang:0 +msgid "Examples" +msgstr "Παραδείγματα" + +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "Αναφορές" + +#. module: base +#: field:workflow,on_create:0 +msgid "On Create" +msgstr "On Create" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Παρακαλώ επιλέξτε το αρχείο .ZIP για εισαγωγή του module" + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Προεπιλεγμένη Τιμή" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 +msgid "Login" +msgstr "Είσοδος" + +#. module: base +#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 +msgid "Covered Modules" +msgstr "Modules που καλύπτονται" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "STOCK_COPY" + +#. module: base +#: model:ir.model,name:base.model_res_request_link +msgid "res.request.link" +msgstr "res.request.link" + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "Έλγχος νέων modules" + +#. module: base +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comoros" + +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action +msgid "Server Actions" +msgstr "Server Actions" + +#. module: base +#: model:res.country,name:base.tp +msgid "East Timor" +msgstr "East Timor" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" +msgstr "Απλή μορφή τομέα" + +#. module: base +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" +msgstr "Ακρίβεια Υπολογισμού" + +#. module: base +#: model:res.country,name:base.kg +msgid "Kyrgyz Republic (Kyrgyzstan)" +msgstr "Kyrgyz Republic (Kyrgyzstan)" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +msgid "wizard.ir.model.menu.create.line" +msgstr "wizard.ir.model.menu.create.line" + +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "Attached ID" + +#. module: base +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "Ημέρα: %(day)s" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not read this document! (%s)" +msgstr "Δεν μπορείτε να διαβάσετε αυτό το έγγραφο! (%s)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND_AND_REPLACE" +msgstr "STOCK_FIND_AND_REPLACE" + +#. module: base +#: model:res.country,name:base.mv +msgid "Maldives" +msgstr "Maldives" + +#. module: base +#: help:ir.values,res_id:0 +msgid "Keep 0 if the action must appear on all resources." +msgstr "0 αν η ενέργεια πρέπει να εμφανίζεται σε όλους τους πόρους." + +#. module: base +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "ir.rule" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "Ημέρες" + +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" +msgstr "Προεπιλεγμένο Πλάτος" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-calendar" +msgstr "terp-calendar" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"Some installed modules depends on the module you plan to desinstall :\n" +" %s" +msgstr "" +"Some installed modules depends on the module you plan to desinstall :\n" +" %s" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "STOCK_YES" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +msgid "Report Custom" +msgstr "Ειδική Αναφορά" + +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Χρονολογία χωρίς τον αιώνα: %(y)s" + +#. module: base +#: view:res.lang:0 +msgid "7. %H:%M:%S ==> 18:25:20" +msgstr "7. %H:%M:%S ==> 18:25:20" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 +msgid "Partners" +msgstr "Συνεργάτες" + +#. module: base +#: help:ir.actions.server,message:0 +msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" +msgstr "Συγκεκριμενοποιήστε το μήνυμα. Μπορείτε να χρησιμοποιήσετε τα πεδία του αντικειμένου, π.χ. \"Αγαπητέ [[ object.partner_id.name ]]\"" + +#. module: base +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "Συνδεδεμένο Μοντέλο" + +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "Trigger Name" + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" +msgstr "ir.model.access" + +#. module: base +#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 +#: field:res.request,priority:0 field:res.request.link,priority:0 +msgid "Priority" +msgstr "Προτεραιότητα" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Source Activity" + +#. module: base +#: view:ir.sequence:0 +msgid "Legend (for prefix, suffix)" +msgstr "Legend (for prefix, suffix)" + +#. module: base +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "Formula" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Can not remove root user!" +msgstr "Can not remove root user!" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" +msgstr "STOCK_JUSTIFY_LEFT" + +#. module: base +#: model:res.country,name:base.mw +msgid "Malawi" +msgstr "Malawi" + +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "Τύπος Διεύθυνσης" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "Auto" + +#. module: base +#: view:res.request:0 +msgid "End of Request" +msgstr "Τέλος Αίτησης" + +#. module: base +#: view:res.request:0 +msgid "References" +msgstr "Παραπομπές" + +#. module: base +#: view:res.lang:0 +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 -Ο αριθμός της εβδομάδας στο έτος (Κυριακή πρώτη ημέρα της εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του χρόνου πριν την 1η Κυριακή θεωρούνται η εβδομάδα 0." + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "Αυτή η διαδικασία μπορεί να πάρει λίγα λεπτά." + +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Tree" +msgstr "Δέντρο" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Could you check your contract information ?" +msgstr "Παρακαλώ ελέγξτε τα στοιχεία σας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" +msgstr "STOCK_CLEAR" + +#. module: base +#: help:res.users,password:0 +msgid "Keep empty if you don't want the user to be able to connect on the system." +msgstr "Αφήστε το κενό αν δεν επιθυμείτε ο χρήστης να συνδέεται στο σύστημα." + +#. module: base +#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 +msgid "View Mode" +msgstr "Mode Προβολής" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Not implemented search_memory method !" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish / Español" +msgstr "Spanish / Español" + +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "Λογότυπο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "STOCK_PROPERTIES" + +#. module: base +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "Uninstall (beta)" + +#. module: base +#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 +msgid "New Window" +msgstr "Νέο Παράθυρο" + +#. module: base +#: model:res.country,name:base.bs +msgid "Bahamas" +msgstr "Bahamas" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "Εμπορική Προοπτική" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "Αδύνατη η δημιουργία του επόμενου id διότι κάποιοι συνεργάτες έχουν αλφαβητικό id!" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Συνημμένο" + +#. module: base +#: model:res.country,name:base.ie +msgid "Ireland" +msgstr "Ireland" + +#. module: base +#: wizard_field:module.module.update,update,update:0 +msgid "Number of modules updated" +msgstr "Αριθμός ενημερωμένων modules" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Not implemented set_memory method !" + +#. module: base +#: field:ir.actions.act_window,groups_id:0 +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 +#: view:res.users:0 field:res.users,groups_id:0 +msgid "Groups" +msgstr "Ομάδες" + +#. module: base +#: model:res.country,name:base.bz +msgid "Belize" +msgstr "Belize" + +#. module: base +#: model:res.country,name:base.ge +msgid "Georgia" +msgstr "Georgia" + +#. module: base +#: model:res.country,name:base.pl +msgid "Poland" +msgstr "Poland" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be removed" +msgstr "Προς διαγραφή" + +#. module: base +#: field:ir.values,meta:0 +msgid "Meta Datas" +msgstr "Meta Datas" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "This wizard will detect new terms in the application so that you can update them manually." + +#. module: base +#: help:ir.actions.server,expression:0 +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 "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`." + +#. module: base +#: field:ir.model,name:0 field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 field:ir.values,model:0 +msgid "Object Name" +msgstr "Όνομα Αντικειμένου" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Field" +msgstr "Πεδίο Wizard" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "STOCK_SELECT_COLOR" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" +msgstr "STOCK_NO" + +#. module: base +#: model:res.country,name:base.st +msgid "Saint Tome (Sao Tome) and Principe" +msgstr "Saint Tome (Sao Tome) and Principe" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" +msgstr "Τιμολόγιο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + +#. module: base +#: model:res.country,name:base.bb +msgid "Barbados" +msgstr "Barbados" + +#. module: base +#: model:res.country,name:base.mg +msgid "Madagascar" +msgstr "Madagascar" + +#. module: base +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Το όνομα πρέπει να ξεκινάει με x_ και να μην περιέχει ειδικούς χαρακτήρες" + +#. module: base +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "Next Wizard" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 +msgid "Menu" +msgstr "Menu" + +#. module: base +#: field:res.currency,rate:0 +msgid "Current Rate" +msgstr "Τρέχουσα Ισοτιμία" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" +msgstr "Αρχική Προβολή" + +#. module: base +#: view:ir.values:0 +msgid "Action To Launch" +msgstr "Επιλογή Ενέργειας" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +msgid "in" +msgstr "σε" + +#. module: base +#: field:ir.actions.url,target:0 +msgid "Action Target" +msgstr "Στόχος Ενέργειας" + +#. module: base +#: model:res.country,name:base.ai +msgid "Anguilla" +msgstr "Anguilla" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "Confirmation" +msgstr "Επιβεβαίωση" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Enter at least one field !" +msgstr "Συμπληρώστε ένα πεδίο τουλάχιστον!" + +#. module: base +#: field:ir.ui.view_sc,name:0 +msgid "Shortcut Name" +msgstr "Όνομα Συντόμευσης" + +#. module: base +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Πιστωτικό Όριο" + +#. module: base +#: help:ir.actions.server,write_id:0 +msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." +msgstr "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." + +#. module: base +#: model:res.country,name:base.zw +msgid "Zimbabwe" +msgstr "Zimbabwe" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" +msgstr "Εισαγωγές / Εξαγωγές" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +msgid "Configure User" +msgstr "Ρυθμίσεις Χρήστη" + +#. module: base +#: field:ir.actions.server,email:0 +msgid "Email Address" +msgstr "Email Address" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not write in this document! (%s)" +msgstr "Δεν μπορείτε να επέμβετε στο έγγραφο! (%s)" + +#. module: base +#: view:ir.actions.server:0 field:workflow.activity,action_id:0 +msgid "Server Action" +msgstr "Server Action" + +#. module: base +#: model:res.country,name:base.tt +msgid "Trinidad and Tobago" +msgstr "Trinidad and Tobago" + +#. module: base +#: model:res.country,name:base.lv +msgid "Latvia" +msgstr "Latvia (Λεττονία)" + +#. module: base +#: view:ir.values:0 +msgid "Values" +msgstr "Τιμές" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mappings" +msgstr "Field Mappings" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +msgid "Customization" +msgstr "Προσαρμογή" + +#. module: base +#: model:res.country,name:base.py +msgid "Paraguay" +msgstr "Paraguay" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "αριστερά" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" +msgstr "ir.actions.act_window_close" + +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "Προορισμός" + +#. module: base +#: model:res.country,name:base.lt +msgid "Lithuania" +msgstr "Lithuania" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT_PREVIEW" +msgstr "STOCK_PRINT_PREVIEW" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "The perm_read method is not implemented on this object !" + +#. module: base +#: model:res.country,name:base.si +msgid "Slovenia" +msgstr "Slovenia" + +#. module: base +#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 +msgid "Channel" +msgstr "Κανάλι" + +#. module: base +#: view:res.lang:0 +msgid "%p - Equivalent of either AM or PM." +msgstr "%p - Αντίστοιχο με το π.μ ή το μ.μ." + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Actions" +msgstr "Επαναληπτικές ενέργειες" + +#. module: base +#: field:maintenance.contract,date_stop:0 +msgid "Ending Date" +msgstr "Ημερ/νία Λήξης" + +#. module: base +#: model:res.country,name:base.nz +msgid "New Zealand" +msgstr "New Zealand" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "Openstuff.net" + +#. module: base +#: model:res.country,name:base.nf +msgid "Norfolk Island" +msgstr "Norfolk Island" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" +msgstr "STOCK_MEDIA_PLAY" + +#. module: base +#: field:ir.rule,operator:0 +msgid "Operator" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation Done" +msgstr "Η εγκατάσταση ολοκληρώθηκε" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "STOCK_OPEN" + +#. module: base +#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 +msgid "Client Action" +msgstr "Client Action" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "right" +msgstr "δεξιά" + +#. module: base +#: model:res.country,name:base.bd +msgid "Bangladesh" +msgstr "Bangladesh" + +#. module: base +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "Σφάλμα! Υπάρχει εταιρεία με την ίδια περιγραφή" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" +msgstr "Έγκυρο" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not delete this document! (%s)" +msgstr "Δεν μπορείτε να διαγράψετε αυτό το έγγραφο! (%s)" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "XSL" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +#: model:ir.ui.menu,name:base.menu_partner_other_form +msgid "Others Partners" +msgstr "Άλλοι Συνεργάτες" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "Can not upgrade module '%s'. It is not installed." + +#. module: base +#: model:res.country,name:base.cu +msgid "Cuba" +msgstr "Cuba" + +#. module: base +#: view:res.lang:0 +msgid "%S - Second as a decimal number [00,61]." +msgstr "%S - Το δευτερόλεπτο σε δεκαδική μορφή [00, 60]." + +#. module: base +#: model:res.country,name:base.am +msgid "Armenia" +msgstr "Armenia" + +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "Έτος με τον αιώνα: %(year)s" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Daily" +msgstr "Ημερήσια" + +#. module: base +#: model:res.country,name:base.se +msgid "Sweden" +msgstr "Sweden" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Gantt" +msgstr "Gantt" + +#. module: base +#: view:ir.property:0 +msgid "Property" +msgstr "Ιδιοκτησία" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type +#: view:res.partner.bank.type:0 +msgid "Bank Account Type" +msgstr "Τύπος Τραπεζικού Λογαριασμού" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-project" +msgstr "terp-project" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Action Configuration" +msgstr "Ρυθμίσεις Επαναληπτικών ενεργειών" + +#. module: base +#: model:res.country,name:base.at +msgid "Austria" +msgstr "Austria" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" +msgstr "Ημερολόγιο" + +#. module: base +#: field:workflow.activity,signal_send:0 +msgid "Signal (subflow.*)" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "Τμήμα Ανθρωπίνων Πόρων" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "Module dependency" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Draft" +msgstr "Πρόχειρα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "STOCK_JUSTIFY_CENTER" + +#. module: base +#: view:res.config.view:0 +msgid "Choose Your Mode" +msgstr "Επιλογή Mode" + +#. module: base +#: field:res.company,rml_footer1:0 +msgid "Report Footer 1" +msgstr "Report Footer 1" + +#. module: base +#: field:res.company,rml_footer2:0 +msgid "Report Footer 2" +msgstr "Report Footer 2" + +#. module: base +#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 field:res.groups,model_access:0 +msgid "Access Controls" +msgstr "Ρυθμίσεις Πρόσβασης" + +#. module: base +#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 +msgid "Dependencies" +msgstr "Dependencies" + +#. module: base +#: field:res.partner,parent_id:0 +msgid "Main Company" +msgstr "Κύρια Εταρεία" + +#. module: base +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "Χρώμα Φόντου" + +#. module: base +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "If you use a formula type, use a python expression using the variable 'object'." + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "Ημερ/νία γέννησης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contact Titles" +msgstr "Τίτλοι Επαφής" + +#. module: base +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "res.partner.som" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "workflow.activity" + +#. module: base +#: field:ir.model.fields,select_level:0 +msgid "Searchable" +msgstr "" + +#. module: base +#: model:res.country,name:base.uy +msgid "Uruguay" +msgstr "Uruguay" + +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "Document Link" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "res.partner.title" + +#. module: base +#: field:ir.sequence,prefix:0 +msgid "Prefix" +msgstr "Prefix" + +#. module: base +#: field:ir.actions.server,loop_action:0 +msgid "Loop Action" +msgstr "Loop Action" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "German / Deutsch" +msgstr "German / Deutsch" + +#. module: base +#: help:ir.actions.server,trigger_name:0 +msgid "Select the Signal name that is to be used as the trigger." +msgstr "Select the Signal name that is to be used as the trigger." + +#. module: base +#: view:ir.actions.server:0 +msgid "Fields Mapping" +msgstr "Fields Mapping" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Κύριε" + +#. module: base +#: wizard_button:module.upgrade,next,start:0 +msgid "Start Upgrade" +msgstr "Έναρξη Αναβάθμισης" + +#. module: base +#: field:ir.default,ref_id:0 +msgid "ID Ref." +msgstr "ID Ref." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French / Français" +msgstr "French / Français" + +#. module: base +#: model:res.country,name:base.mt +msgid "Malta" +msgstr "Malta" + +#. module: base +#: field:ir.actions.server,fields_lines:0 +msgid "Field Mappings." +msgstr "Field Mappings." + +#. module: base +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 +msgid "Module" +msgstr "Module" + +#. module: base +#: field:ir.attachment,description:0 field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 view:res.partner.event:0 +#: field:res.partner.event,description:0 view:res.request:0 +msgid "Description" +msgstr "Περιγραφή" + +#. module: base +#: model:ir.model,name:base.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: base +#: field:res.users,action_id:0 +msgid "Home Action" +msgstr "Home Action" + +#. module: base +#: field:res.lang,grouping:0 +msgid "Separator Format" +msgstr "Μορφή Διαχωριστή" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "Εξαγωγή Γλώσσας" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Unvalidated" +msgstr "Μη Επικυρωμένα" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "Αρχιτεκτονική Βάσης Δεδομένων" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +#: wizard_view:res.partner.spam_send,init:0 +msgid "Mass Mailing" +msgstr "Ομαδική Αλληλογραφία" + +#. module: base +#: model:res.country,name:base.yt +msgid "Mayotte" +msgstr "Mayotte" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "You can also import .po files." + +#. module: base +#: code:addons/base/maintenance/maintenance.py:0 +#, python-format +msgid "Unable to find a valid contract" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify an action to launch !" +msgstr "Παρακαλώ επιλέξτε ενέργειας προς εκτέλεση!" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "STOCK_JUSTIFY_RIGHT" + +#. module: base +#: model:ir.model,name:base.model_res_partner_function +msgid "Function of the contact" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_upgrade +#: model:ir.ui.menu,name:base.menu_module_tree_upgrade +msgid "Modules to be installed, upgraded or removed" +msgstr "Modules to be installed, upgraded or removed" + +#. module: base +#: view:res.payterm:0 +msgid "Payment Term" +msgstr "Όρος Πληρωμής" + +#. module: base +#: field:ir.report.custom,footer:0 +msgid "Report Footer" +msgstr "Report Footer" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Right-to-Left" +msgstr "Right-to-Left" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Παρακαλώ ελέγξτε ότι όλες οι γραμμές σας έχουν %d στήλες." + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "Εισαγωγή γλώσσας" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 +#: model:ir.ui.menu,name:base.menu_ir_cron_act +msgid "Scheduled Actions" +msgstr "Προγραμματισμένες ενέργειες" + #. module: base #: field:res.partner,title:0 field:res.partner.address,title:0 #: field:res.partner.title,name:0 @@ -125,179 +1995,57 @@ msgid "Title" msgstr "Τίτλος" #. module: base -#: wizard_field:res.partner.sms_send,init,text:0 -msgid "SMS Message" -msgstr "Μήνυμα SMS" - -#. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_grid -msgid "Objects Security Grid" -msgstr "" - -#. module: base -#: model:res.country,name:base.cm -msgid "Cameroon" -msgstr "" - -#. module: base -#: model:res.country,name:base.bf -msgid "Burkina Faso" +#: code:osv/orm.py:0 +#, python-format +msgid "Recursivity Detected." msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_ASCENDING" -msgstr "" +msgid "terp-account" +msgstr "terp-account" #. module: base -#: view:ir.model:0 view:res.groups:0 -msgid "Access Rules" -msgstr "Κανόνες πρόσβασης" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONNECT" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_FORWARD" -msgstr "" +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Recursion error in modules dependencies !" +msgstr "Recursion error in modules dependencies !" #. module: base #: view:ir.model:0 msgid "Create a Menu" -msgstr "" +msgstr "Create a Menu" #. module: base -#: wizard_field:module.lang.import,init,code:0 -msgid "Code (eg:en__US)" -msgstr "Κώδικας (eg:en__US)" - -#. module: base -#: field:res.roles,parent_id:0 -msgid "Parent" -msgstr "Γονέας" - -#. module: base -#: model:res.country,name:base.tg -msgid "Togo" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 -#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 -#: field:ir.model,model:0 field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 field:ir.model.grid,model:0 -#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 field:ir.ui.view,model:0 -#: field:ir.values,model_id:0 field:res.request.link,object:0 -#: field:wizard.ir.model.menu.create,model_id:0 -#: field:workflow.triggers,model:0 -msgid "Object" -msgstr "Αντικείμενο" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To browse official translations, you can visit this link: " -msgstr "" -"Για να κοιτάξετε τις επίσημες μεταφράσεις, μπορείτε να επισκεφτείτε αυτήν " -"την σύνδεση:" +#: help:res.partner,vat:0 +msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." +msgstr "Αριθμός ΦΠΑ. Επιλέξτε αυτό αν ο συνεργάτης πληρώνει ΦΠΑ. Χρησιμοποιείται στην περιοδική δήλωση ΦΠΑ." #. module: base #: model:ir.actions.act_window,name:base.action_module_category_tree #: model:ir.ui.menu,name:base.menu_action_module_category_tree msgid "Categories of Modules" -msgstr "Κατηγορίες ενοτήτων" - -#. module: base -#: view:ir.actions.server:0 -msgid "Email Configuration" -msgstr "" - -#. module: base -#: model:res.country,name:base.cc -msgid "Cocos (Keeling) Islands" -msgstr "" +msgstr "Κατηγορίες Modules" #. module: base #: selection:module.lang.install,init,lang:0 -msgid "Hungarian / Magyar" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_default -msgid "ir.default" -msgstr "" +msgid "Ukrainian / украї́нська мо́ва" +msgstr "Ukrainian / украї́нська мо́ва" #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "Δεν έχει αρχίσει " - -#. module: base -#: view:ir.actions.server:0 -msgid "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e.[[ object.partner_id.name ]]" -msgstr "" - -#. module: base -#: view:res.company:0 -msgid "Header/Footer" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" -msgstr "" +msgstr "Not Started" #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type_field -msgid "Bank type fields" -msgstr "Πεδία τύπων τράπεζας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_ERROR" -msgstr "" - -#. module: base -#: field:ir.actions.server,wkf_model_id:0 -msgid "Workflow On" -msgstr "" +msgstr "Russian Federation" #. module: base #: model:res.country,name:base.dm msgid "Dominica" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch / Nederlands" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export translation file" -msgstr "Εξαγωγή Αρχείου μεταφράσεων" - -#. module: base -#: field:ir.sequence,padding:0 -msgid "Number padding" -msgstr "" +msgstr "Dominica" #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form @@ -313,133 +2061,29 @@ msgid "Countries" msgstr "Χώρες" #. module: base -#: field:ir.rule,operator:0 -msgid "Operator" -msgstr "" +#: view:ir.rule.group:0 +msgid "Record rules" +msgstr "Κανόνες αρχείων" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Λήψη μέγιστου " - -#. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "μετάβαση ροής της δουλειάς" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Views" -msgstr "Δημιουργημένες απόψεις" - -#. module: base -#: selection:res.request,priority:0 -msgid "Normal" -msgstr "Κανονικό" - -#. module: base -#: model:res.country,name:base.pm -msgid "Saint Pierre and Miquelon" -msgstr "" - -#. module: base -#: model:res.country,name:base.to -msgid "Tonga" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,user_id:0 -msgid "User Ref." -msgstr "Χρήστης παρ." - -#. module: base -#: model:res.country,name:base.vu -msgid "Vanuatu" -msgstr "" - -#. module: base -#: wizard_view:server.action.create,step_1:0 -#: wizard_field:server.action.create,step_1,report:0 -msgid "Select Report" -msgstr "Επιλέξτε την αναφορά" - -#. module: base -#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 -msgid "Wizard" -msgstr "Αυτόματος Οδηγός" - -#. module: base -#: view:workflow.activity:0 -msgid "Outgoing transitions" -msgstr "Εξερχόμενες μεταβάσεις" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_REWIND" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Yearly" -msgstr "Ετήσια" - -#. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "1cm 28cm 20cm 28cm" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mapping" -msgstr "Χαρτογράφηση τομέων" - -#. module: base -#: model:res.country,name:base.mo -msgid "Macau" -msgstr "" - -#. module: base -#: field:ir.actions.server,expression:0 -msgid "Loop Expression" -msgstr "" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "ΦΠΑ" #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" -msgstr "" +msgstr "12. %w ==> 5 (Η Παρασκευή είναι η 6η ημέρα)" #. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Καθολικό" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" -msgstr "" - -#. module: base -#: field:ir.model.config,password:0 field:maintenance.contract,password:0 -#: field:maintenance.contract.wizard,password:0 -#: wizard_field:res.partner.sms_send,init,password:0 -#: field:res.users,password:0 -msgid "Password" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLEAR" -msgstr "" +#: constraint:res.partner.category:0 +msgid "Error ! You can not create recursive categories." +msgstr "Σφάλμα! Υπάρχει κατηγορία με την ίδια περιγραφή." #. module: base #: view:res.lang:0 msgid "%x - Appropriate date representation." -msgstr "" +msgstr "%x - Ορθή αναπαράσταση ημερ/νίας" #. module: base #: help:ir.module.repository,filter:0 @@ -449,192 +2093,52 @@ msgid "" "- The second parenthesis must match the whole version number.\n" "- The last parenthesis must match the extension of the module." msgstr "" +"Regexp to search module on the repository webpage:\n" +"- The first parenthesis must match the name of the module.\n" +"- The second parenthesis must match the whole version number.\n" +"- The last parenthesis must match the extension of the module." #. module: base -#: field:ir.default,field_name:0 -msgid "Object Field" -msgstr "" - -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_simple_view -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 "" - -#. module: base -#: field:ir.actions.todo,start_on:0 -msgid "Start On" -msgstr "Έναρξη" - -#. module: base -#: field:ir.rule,operand:0 -msgid "Operand" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "Εάν δεν επέμβετε θα χρησιμοποιηθεί απλή οργάνωση " - -#. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Μεταβάσεις" +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." +msgstr "%M - Τα λεπτά της ώρας σε δεκαδική μορφή [00, 59]." #. module: base #: model:res.country,name:base.tj msgid "Tajikistan" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_custom -msgid "ir.ui.view.custom" -msgstr "" - -#. module: base -#: model:res.country,name:base.tr -msgid "Turkey" -msgstr "" - -#. module: base -#: model:res.country,name:base.fk -msgid "Falkland Islands" -msgstr "" +msgstr "Tajikistan" #. module: base #: model:ir.actions.act_window,name:base.act_values_form_action #: model:ir.ui.menu,name:base.menu_values_form_action msgid "Connect Actions To Client Events" -msgstr "" +msgstr "Connect Actions To Client Events" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" -msgstr "" - -#. module: base -#: selection:workflow.activity,kind:0 -msgid "Stop All" -msgstr "Παύση όλων " - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NEW" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_custom -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.custom" -msgstr "" - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "Xor" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CANCEL" -msgstr "Ακύρωση αποθέματος " +msgstr "GPL-2 or later version" #. module: base #: selection:res.partner.event,type:0 msgid "Prospect Contact" -msgstr "Επαφή προοπτικής" +msgstr "Πιθανή Επαφή" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "None" -msgstr "Κανένα" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Sale Opportunity" -msgstr "Ευκαιρία πώλησης" - -#. module: base -#: field:ir.report.custom,sortby:0 -msgid "Sorted By" -msgstr "Ταξινόμηση κατά " - -#. module: base -#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 -#: field:ir.report.custom,type:0 -msgid "Report Type" -msgstr "Τύπος αναφοράς " - -#. module: base -#: field:ir.sequence,number_increment:0 -msgid "Increment Number" -msgstr "Αριθμός αύξησης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_tree -#: model:ir.ui.menu,name:base.menu_action_res_company_tree -msgid "Company's Structure" -msgstr "Δομή επιχείρησης" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "Other proprietary" -msgstr "Άλλη ιδιοκτησία" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "" - -#. module: base -#: model:res.country,name:base.sz -msgid "Swaziland" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PREVIOUS" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation -#: model:ir.ui.menu,name:base.menu_action_translation -msgid "All terms" -msgstr "Όλοι οι όροι" +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "ir.actions.wizard" #. module: base #: model:res.country,name:base.nr msgid "Nauru" -msgstr "" +msgstr "Nauru" #. module: base -#: model:res.country,name:base.no -msgid "Norway" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "4. %b, %B ==> Dec, December" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Load an Official Translation" -msgstr "" +#: model:ir.model,name:base.model_ir_property +msgid "ir.property" +msgstr "ir.property" #. module: base #: selection:ir.actions.act_window,view_type:0 @@ -642,148 +2146,43 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Form" -msgstr "Μορφή" - -#. module: base -#: field:workflow.transition,act_to:0 -msgid "Destination Activity" -msgstr "Δραστηριότητα προορισμού" +msgstr "Form" #. module: base #: model:res.country,name:base.me msgid "Montenegro" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_window" -msgstr "" +msgstr "Montenegro" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_QUIT" -msgstr "" +msgstr "STOCK_QUIT" #. module: base -#: help:ir.actions.server,loop_action:0 -msgid "" -"Select the action that will be executed. Loop action will not be avaliable " -"inside loop." -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "waiting" -msgstr "αναμονή" - -#. module: base -#: model:res.country,name:base.va -msgid "Holy See (Vatican City State)" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Connect Events to Actions" -msgstr "" - -#. module: base -#: field:res.partner.event,type:0 -msgid "Type of Event" -msgstr "" - -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Valid" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc0_op:0 -#: field:ir.report.custom.fields,fc1_op:0 -#: field:ir.report.custom.fields,fc2_op:0 -#: field:ir.report.custom.fields,fc3_op:0 -msgid "Relation" -msgstr "Σχέση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_TOP" -msgstr "" - -#. module: base -#: field:ir.values,meta_unpickle:0 -msgid "Metadata" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%m - Month as a decimal number [01,12]." -msgstr "" - -#. module: base -#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 -#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 -#: field:maintenance.contract,state:0 field:res.bank,state:0 -#: field:res.request,state:0 field:workflow.instance,state:0 -#: field:workflow.workitem,state:0 -msgid "State" -msgstr "Κατάσταση" +#: view:ir.cron:0 +msgid "Technical Data" +msgstr "Τεχνικά Δεδομένα" #. module: base #: view:res.partner:0 field:res.partner,category_id:0 msgid "Categories" msgstr "Κατηγορίες" -#. module: base -#: field:ir.report.custom.fields,report_id:0 -msgid "Report Ref" -msgstr "Αναφορά εκθέσεων" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-hr" -msgstr "" - -#. module: base -#: field:res.partner.bank.type.field,size:0 -msgid "Max. Size" -msgstr "Μέγιστο μέγεθος" - -#. module: base -#: model:res.country,name:base.id -msgid "Indonesia" -msgstr "" - #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be upgraded" -msgstr "Για να αναβαθμιστεί" +msgstr "Προς αναβάθμιση" #. module: base #: model:res.country,name:base.ly msgid "Libya" -msgstr "" - -#. module: base -#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 -msgid "Parent Category" -msgstr "Βασική κατηγορία" +msgstr "Libya" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-purchase" -msgstr "" - -#. module: base -#: field:res.partner.address,name:0 -msgid "Contact Name" -msgstr "Όνομα Επαφής" - -#. module: base -#: model:res.country,name:base.fi -msgid "Finland" -msgstr "" +msgstr "terp-purchase" #. module: base #: wizard_field:module.module.update,init,repositories:0 @@ -793,206 +2192,47 @@ msgstr "Χώροι αποθήκευσης" #. module: base #: model:res.country,name:base.cf msgid "Central African Republic" -msgstr "" +msgstr "Central African Republic" #. module: base #: model:res.country,name:base.li msgid "Liechtenstein" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 -msgid "Contact" -msgstr "Στοιχεία επικοινωνίας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND_AND_REPLACE" -msgstr "" +msgstr "Liechtenstein" #. module: base #: model:res.partner.title,name:base.res_partner_title_ltd msgid "Ltd" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "active" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,wiz_name:0 -msgid "Wizard Name" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%y - Year without century as a decimal number [00,99]." -msgstr "" - -#. module: base -#: model:res.country,name:base.as -msgid "American Samoa" -msgstr "" - -#. module: base -#: selection:ir.model.fields,state:0 -msgid "Custom Field" -msgstr "" - -#. module: base -#: field:ir.actions.server,srcmodel_id:0 -msgid "Model" -msgstr "Μοντέλο" +msgstr "ΕΠΕ" #. module: base #: field:res.partner,ean13:0 msgid "EAN13" msgstr "EAN13" -#. module: base -#: model:ir.actions.act_window,name:base.open_repository_tree -#: view:ir.module.repository:0 -#: model:ir.ui.menu,name:base.menu_module_repository_tree -msgid "Repository list" -msgstr "Κατάλογος αποθηκών" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line -msgid "wizard.ir.model.menu.create.line" -msgstr "" - #. module: base #: model:res.country,name:base.pt msgid "Portugal" -msgstr "" +msgstr "Portugal" #. module: base -#: view:ir.module.module:0 -msgid "Cancel Uninstall" -msgstr "Ακυρώστε την απεγκατάσταση" - -#. module: base -#: model:ir.model,name:base.model_res_currency_rate -msgid "Currency Rate" -msgstr "Ποσοστό νομίσματος" - -#. module: base -#: view:workflow:0 field:workflow.activity,wkf_id:0 -#: field:workflow.instance,wkf_id:0 -msgid "Workflow" -msgstr "Ροή Εργασιών" - -#. module: base -#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 -#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 -#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 -#: field:ir.actions.wizard,type:0 -msgid "Action Type" -msgstr "Τύπος δράσης" - -#. module: base -#: help:ir.actions.act_window,limit:0 -msgid "Default limit for the list view" -msgstr "Όριο προεπιλογής για την διαμόρφωση καταλόγων" - -#. module: base -#: model:res.country,name:base.vn -msgid "Vietnam" -msgstr "" - -#. module: base -#: model:res.country,name:base.sk -msgid "Slovak Republic" -msgstr "" +#: selection:maintenance.contract,state:0 +msgid "Unvalid" +msgstr "Άκυρο" #. module: base #: field:ir.module.module,certificate:0 msgid "Quality Certificate" -msgstr "" +msgstr "Πιστοποιητικό Ποιότητας" #. module: base #: view:res.lang:0 msgid "6. %d, %m ==> 05, 12" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,src_model:0 -msgid "Source Object" -msgstr "Αντικείμενο πηγής" - -#. module: base -#: model:ir.model,name:base.model_ir_model_data -msgid "ir.model.data" -msgstr "" - -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Object" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,report_rml:0 -msgid "" -"The .rml path of the file or NULL if the content is in report_rml_content" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form -#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form -msgid "Config Wizard Steps" -msgstr "Διαμόρφωση βημάτων" - -#. module: base -#: field:ir.module.module,category_id:0 -msgid "Category" -msgstr "Κατηγορία" - -#. module: base -#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 -msgid "Group" -msgstr "Ομάδα" - -#. module: base -#: model:res.country,name:base.sm -msgid "San Marino" -msgstr "" +msgstr "6. %d, %m ==> 05, 12" #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FLOPPY" -msgstr "" - -#. module: base -#: model:res.country,name:base.kw -msgid "Kuwait" -msgstr "" - -#. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Υπογραφή" - -#. module: base -#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 -msgid "SMS" -msgstr "SMS" - -#. module: base -#: model:res.country,name:base.cr -msgid "Costa Rica" -msgstr "" - -#. module: base -#: field:ir.exports.line,name:0 field:ir.translation,name:0 -#: field:res.partner.bank.type.field,name:0 -msgid "Field Name" -msgstr "Ονομασία Πεδίου" +msgstr "Κάντε κλικ εδώ αν ο Συνεργάτης είναι Πελάτης." #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window @@ -1002,171 +2242,56 @@ msgid "Languages" msgstr "Γλώσσες" #. module: base -#: field:workflow.workitem,inst_id:0 -msgid "Instance" -msgstr "Περίπτωση" - -#. module: base -#: help:ir.actions.report.xml,attachment:0 -msgid "" -"This is the filename of the attachment used to store the printing result. " -"Keep empty to not save the printed reports. You can use a python expression " -"with the object and time variables." -msgstr "" - -#. module: base -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Το όνομα αντικειμένου πρέπει να αρχίζει με x_ και να μήν περιέχει ειδικούς " -"χαρακτήρες!" - -#. module: base -#: model:res.country,name:base.ng -msgid "Nigeria" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "txt" -msgstr "" - -#. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "" +#: model:res.country,name:base.pw +msgid "Palau" +msgstr "Palau" #. module: base #: model:res.country,name:base.ec msgid "Ecuador" -msgstr "" +msgstr "Ecuador" #. module: base -#: view:ir.module.module:0 -msgid "Schedule Upgrade" -msgstr "Προγραμματισμένη αναβάθμιση " +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." +msgstr "Αποθηκεύστε αυτό το έγγραφο σε αρχείο .CSV και επεξεργαστείτε το με το υπολογιστικό πρόγραμμα της επιλογής σας. Η κωδικοποίηση του αρχείου είναι UTF-8. Πρέπει να μετεφράσετε την τελευταία στήλη πριν το επανεισάγετε." #. module: base -#: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 -msgid "Currencies" -msgstr "Νομίσματα" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Configure" -msgstr "Διαμορφώστε" +#: model:res.country,name:base.au +msgid "Australia" +msgstr "Australia" #. module: base #: help:res.partner,lang:0 -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 "" -"Εάν η επιλεγμένη γλώσσα υπάρχει στο σύστημα, όλα τα έγγραφα σχετικά με αυτόν " -"τον συνεργάτη θα τυπωθούν σε αυτήν την γλώσσα. Εάν όχι, θα είναι αγγλικά." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDERLINE" -msgstr "" +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 "Αν η επιλεγμένη γλώσσα έχει εισαχθεί στο σύστημα όλα τα έγγραφα από και προς αυτό τον Συνεργάτη θα εκτυπώνονται σε αυτή τη γλώσσα. Αν όχι, θα εκτυπώνονται στα αγγλικά." #. module: base #: rml:ir.module.reference:0 msgid "Menu :" -msgstr "" +msgstr "Menu :" #. module: base -#: field:ir.actions.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Values for Event Type" -msgstr "" - -#. module: base -#: model:res.country,name:base.zr -msgid "Zaire" -msgstr "" - -#. module: base -#: field:res.lang,date_format:0 -msgid "Date Format" -msgstr "" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Always Searchable" -msgstr "Πάντα προς αναζήτηση " - -#. module: base -#: field:res.bank,email:0 field:res.partner.address,email:0 -msgid "E-Mail" -msgstr "Ηλεκτρονικό ταχυδρομείο" - -#. module: base -#: view:ir.sequence:0 -msgid "Day: %(day)s" -msgstr "" - -#. module: base -#: field:ir.exports,name:0 -msgid "Export Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.an -msgid "Netherlands Antilles" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Minute: %(min)s" -msgstr "" - -#. module: base -#: model:res.country,name:base.hk -msgid "Hong Kong" -msgstr "" +#: selection:ir.model.fields,state:0 +msgid "Base Field" +msgstr "Base Field" #. module: base #: wizard_view:module.module.update,update:0 msgid "New modules" -msgstr "Νέα αρθρώματα" +msgstr "New modules" #. module: base -#: view:ir.sequence:0 -msgid "Hour 00->12: %(h12)s" -msgstr "" - -#. module: base -#: help:ir.actions.server,name:0 -msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" -msgstr "" - -#. module: base -#: field:res.currency,rate:0 -msgid "Current Rate" -msgstr "" +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" +msgstr "SXW content" #. module: base #: view:ir.cron:0 -#, fuzzy msgid "Action to Trigger" -msgstr "Τύπος δράσης" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_BOLD" -msgstr "" +msgstr "Action to Trigger" #. module: base #: field:ir.report.custom.fields,fc0_operande:0 @@ -1175,784 +2300,225 @@ msgstr "" #: field:ir.report.custom.fields,fc3_operande:0 #: selection:ir.translation,type:0 msgid "Constraint" -msgstr "" +msgstr "Constraint" #. module: base #: selection:ir.values,key:0 selection:res.partner.address,type:0 msgid "Default" -msgstr "" - -#. module: base -#: model:res.country,name:base.dk -msgid "Denmark" -msgstr "" - -#. module: base -#: model:res.country,name:base.ph -msgid "Philippines" -msgstr "" +msgstr "Προεπιλογή" #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 msgid "Required" -msgstr "Απαιτείται" +msgstr "Απαραίτητα" #. module: base -#: model:ir.model,name:base.model_ir_sequence -msgid "ir.sequence" -msgstr "" +#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "Τομέας" #. module: base -#: field:res.country,code:0 -msgid "Country Code" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Greek / Ελληνικά" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,view_type:0 -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Tree" -msgstr "Δέντρο" - -#. module: base -#: model:res.country,name:base.ma -msgid "Morocco" -msgstr "" - -#. module: base -#: view:res.request.history:0 -msgid "Request History" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_instance -msgid "workflow.instance" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bosnian / bosanski jezik" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "10. %S ==> 20" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,attachment_use:0 -msgid "" -"If you check this, then the second time the user prints with same attachment " -"name, it returns the previous report." -msgstr "" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Partial" +#: field:res.request.history,name:0 +msgid "Summary" msgstr "" #. module: base #: help:ir.actions.server,subject:0 -msgid "" -"Specify the subject. You can use fields from the object, e.g. `Hello " -"[[ object.partner_id.name ]]`" -msgstr "" +msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" +msgstr "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" #. module: base -#: view:res.lang:0 -msgid "2. %a ,%A ==> Fri, Friday" -msgstr "" - -#. module: base -#: field:ir.actions.server,trigger_obj_id:0 -msgid "Trigger On" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_madam -msgid "Madam" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request_link -msgid "res.request.link" -msgstr "" - -#. module: base -#: field:res.partner.event,planned_cost:0 -msgid "Planned Cost" -msgstr "" - -#. module: base -#: model:res.country,name:base.ee -msgid "Estonia" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 -msgid "Partner Events" -msgstr "" - -#. module: base -#: field:res.partner.bank.type,field_ids:0 -msgid "Type fields" -msgstr "Τύποι πεδίων " - -#. module: base -#: field:ir.actions.todo,note:0 -msgid "Text" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%a - Abbreviated weekday name." -msgstr "" +#: view:res.company:0 +msgid "Header/Footer" +msgstr "Header/Footer" #. module: base #: model:res.country,name:base.lb msgid "Lebanon" -msgstr "" +msgstr "Lebanon" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CUT" -msgstr "" +#: wizard_field:module.lang.import,init,name:0 +msgid "Language name" +msgstr "Όνομα Γλώσσας" #. module: base -#: rml:ir.module.reference:0 -msgid "Introspection report on objects" -msgstr "" +#: model:res.country,name:base.va +msgid "Holy See (Vatican City State)" +msgstr "Holy See (Vatican City State)" #. module: base -#: model:res.country,name:base.pf -msgid "Polynesia (French)" -msgstr "" - -#. module: base -#: field:res.country,name:0 -msgid "Country Name" -msgstr "Όνομα χώρας" - -#. module: base -#: field:res.company,name:0 -msgid "Company Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.co -msgid "Colombia" -msgstr "" +#: help:ir.actions.server,condition:0 +msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" +msgstr "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" #. module: base #: wizard_field:base.module.import,init,module_file:0 msgid "Module .ZIP file" -msgstr "" +msgstr "Module .ZIP file" #. module: base -#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard -#: wizard_button:res.partner.sms_send,init,send:0 -msgid "Send SMS" -msgstr "" +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "Τηλεπικοινωνίες" #. module: base -#: field:ir.actions.report.custom,report_id:0 -msgid "Report Ref." -msgstr "" - -#. module: base -#: field:res.roles,child_id:0 -msgid "Children" -msgstr "" - -#. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "" - -#. module: base -#: help:res.country,code:0 -msgid "" -"The ISO country code in two chars.\n" -"You can use this field for quick search." -msgstr "" - -#. module: base -#: model:res.country,name:base.pw -msgid "Palau" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" msgstr "" #. module: base #: selection:ir.report.custom,state:0 msgid "Subscribed" -msgstr "" - -#. module: base -#: model:res.country,name:base.ke -msgid "Kenya" -msgstr "" - -#. module: base -#: help:ir.actions.server,model_id:0 -msgid "Select the object on which the action will work (read, write, create)." -msgstr "" - -#. module: base -#: model:res.country,name:base.np -msgid "Nepal" -msgstr "" +msgstr "Καταχωρημένο" #. module: base #: wizard_view:module.lang.install,init:0 wizard_view:module.upgrade,next:0 msgid "System Upgrade" -msgstr "" +msgstr "Αναβάθμιση Συστήματος" #. module: base #: field:workflow.activity,in_transitions:0 msgid "Incoming Transitions" -msgstr "" - -#. module: base -#: field:res.partner.event,event_ical_id:0 -msgid "iCal id" -msgstr "" - -#. module: base -#: wizard_field:module.lang.import,init,name:0 -msgid "Language name" -msgstr "" - -#. module: base -#: field:res.partner,parent_id:0 -msgid "Main Company" -msgstr "" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Extended Interface" -msgstr "" - -#. module: base -#: field:res.country.state,name:0 -msgid "State Name" -msgstr "'Ονομα κατάστασης " +msgstr "Εισροές" #. module: base #: model:res.country,name:base.sr msgid "Suriname" -msgstr "" +msgstr "Suriname" #. module: base -#: model:ir.ui.menu,name:base.next_id_4 -msgid "Low Level Objects" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 -msgid "On multiple doc." -msgstr "Σε πολλαπλά έγγραφα" - -#. module: base -#: model:ir.model,name:base.model_res_groups -msgid "res.groups" -msgstr "" - -#. module: base -#: help:ir.actions.server,action_id:0 -msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 -#: field:wizard.ir.model.menu.create.line,view_type:0 -msgid "View Type" -msgstr "" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Simplified Interface" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ITALIC" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export done" -msgstr "Η Εξαγωγή έγινε " - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field -msgid "acc_number" -msgstr "" - -#. module: base -#: view:ir.model:0 -msgid "Model Description" -msgstr "" - -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Unvalid" -msgstr "" - -#. module: base -#: wizard_view:res.partner.sms_send,init:0 -msgid "Bulk SMS send" -msgstr "" +#: field:ir.values,key2:0 view:res.partner.event.type:0 +#: field:res.partner.event.type,name:0 +msgid "Event Type" +msgstr "Τύπος Συμβάντος" #. module: base #: view:res.partner.bank:0 model:res.partner.bank.type,name:base.bank_normal msgid "Bank account" msgstr "Τραπεζικός λογαριασμός" -#. module: base -#: field:res.partner.canal,name:0 -msgid "Channel Name" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_values -msgid "ir.values" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Pie Chart" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "" - -#. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Seconde: %(sec)s" -msgstr "" - -#. module: base -#: model:res.country,name:base.jo -msgid "Jordan" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "" +msgstr "Τύπος Αρίθμησης" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"You try to upgrade a module that depends on the module: %s.\n" +"But this module is not available in your system." msgstr "" +"You try to upgrade a module that depends on the module: %s.\n" +"But this module is not available in your system." #. module: base -#: model:res.country,name:base.md -msgid "Moldavia" -msgstr "" - -#. module: base -#: help:ir.model.fields,on_delete:0 -msgid "On delete property for many2one fields" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_update -#: model:ir.ui.menu,name:base.menu_module_update -msgid "Update Modules List" -msgstr "" - -#. module: base -#: model:res.country,name:base.er -msgid "Eritrea" -msgstr "" - -#. module: base -#: model:res.country,name:base.cd -msgid "Congo, The Democratic Republic of the" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Configure simple view" -msgstr "Ρύθμιση απλής προβολής" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bulgarian / български" -msgstr "" +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Διεύθυνση Συνεργάτη" #. module: base #: field:ir.module.module,license:0 msgid "License" -msgstr "Άδεια" +msgstr "Άδεια Χρήσης" #. module: base -#: model:res.country,name:base.re -msgid "Reunion (French)" -msgstr "" +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Invalid operation" +msgstr "Invalid operation" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SAVE_AS" +msgstr "STOCK_SAVE_AS" + +#. module: base +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" +msgstr "Μοντέλο" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"You try to install a module that depends on the module: %s.\n" +"But this module is not available in your system." msgstr "" +"You try to install a module that depends on the module: %s.\n" +"But this module is not available in your system." #. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_actions -#: model:ir.ui.menu,name:base.menu_custom_action -#: model:ir.ui.menu,name:base.menu_ir_sequence_actions -#: model:ir.ui.menu,name:base.next_id_6 -msgid "Actions" -msgstr "Ενέργειες" - -#. module: base -#: view:res.request:0 field:res.request,body:0 -#: field:res.request.history,req_id:0 -msgid "Request" -msgstr "Αίτημα" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom -msgid "ir.report.custom" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Continue" -msgstr "Συνέχεια" - -#. module: base -#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 -msgid "Object ID" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form -#: model:ir.ui.menu,name:base.menu_ir_property_form -msgid "Default Properties" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Slovenian / slovenščina" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Bar Chart" -msgstr "Ιστόγραμμα" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" -msgstr "" - -#. module: base -#: field:ir.actions.server,message:0 -#: wizard_field:res.partner.spam_send,init,text:0 -msgid "Message" -msgstr "Μήνυμα" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Language file loaded." -msgstr "Το αρχείο γλώσσας φορτώθηκε" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Purchase Offer" -msgstr "Προσφορά αγορών" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_info:0 -msgid "Modules to update" -msgstr "" - -#. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "" +#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 +#: selection:ir.translation,type:0 +#: field:wizard.ir.model.menu.create.line,view_id:0 +msgid "View" +msgstr "Προβολή" #. module: base #: view:ir.actions.act_window:0 msgid "Open a Window" -msgstr "Ανοίξτε ένα παράθυρο" +msgstr "Νεο Παράθυρο" #. module: base -#: model:res.country,name:base.bv -msgid "Bouvet Island" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDEX" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Συνοπτικός" - -#. module: base -#: field:ir.report.custom,print_orientation:0 -msgid "Print orientation" -msgstr "" - -#. module: base -#: model:res.country,name:base.rs -msgid "Serbia" -msgstr "" - -#. module: base -#: view:res.payterm:0 -msgid "Payment Term" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_BOTTOM" -msgstr "" - -#. module: base -#: help:ir.actions.server,sequence:0 -msgid "" -"Important when you deal with multiple actions, the execution order will be " -"decided based on this, low number is higher priority." -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,header:0 -msgid "Add RML header" -msgstr "" - -#. module: base -#: model:res.country,name:base.cx -msgid "Christmas Island" -msgstr "" - -#. module: base -#: model:res.country,name:base.kh -msgid "Cambodia, Kingdom of" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Landscape" -msgstr "Τοπίο" - -#. module: base -#: wizard_field:module.lang.import,init,data:0 -#: field:wizard.module.lang.export,data:0 -msgid "File" -msgstr "Αρχείο" - -#. module: base -#: model:res.country,name:base.gr -msgid "Greece" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_2 -msgid "User Interface" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Add User" -msgstr "Προσθήκη Χρήστη" - -#. module: base -#: field:res.request,trigger_date:0 -msgid "Trigger Date" -msgstr "" +#: model:res.country,name:base.gq +msgid "Equatorial Guinea" +msgstr "Equatorial Guinea" #. module: base #: wizard_view:base.module.import,init:0 msgid "Module Import" -msgstr "" +msgstr "Module Import" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Croatian / hrvatski jezik" -msgstr "" +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not remove the field '%s' !" +msgstr "Δεν μπορείτε να διαγράψετε το πεδίο '%s' !" #. module: base -#: field:ir.attachment,create_date:0 -#, fuzzy -msgid "Date Created" -msgstr "Δημιουργήστε" - -#. module: base -#: model:res.country,name:base.mv -msgid "Maldives" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 -#: model:ir.ui.menu,name:base.menu_ir_sequence_form -#: model:ir.ui.menu,name:base.next_id_5 -msgid "Sequences" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_FORWARD" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Roles are used to defined available actions, provided by workflows." -msgstr "" +#: field:res.bank,zip:0 field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "ΤΚ" #. module: base #: field:ir.module.module,author:0 msgid "Author" -msgstr "Συγγραφέας" - -#. module: base -#: help:ir.actions.server,code:0 -msgid "Python code to be executed" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_xsl:0 -msgid "XSL path" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%b - Abbreviated month name." -msgstr "" +msgstr "Δημιουργός" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDELETE" -msgstr "" - -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "" -"To improve some terms of the official translations of OpenERP, you should " -"modify the terms directly on the launchpad interface. If you made lots of " -"translations for your own module, you can also publish all your translation " -"at once." -msgstr "" +msgstr "STOCK_UNDELETE" #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,attachment_use:0 -msgid "Reload from Attachment" -msgstr "" - -#. module: base -#: view:res.partner.category:0 -msgid "Partner Category" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 -msgid "Trigger" -msgstr "" - -#. module: base -#: help:ir.actions.server,write_id:0 -msgid "" -"Provide the field name that the record id refers to for the write operation. " -"If it is empty it will refer to the active id of the object." -msgstr "" - -#. module: base -#: field:res.partner,supplier:0 -msgid "Supplier" -msgstr "" +msgstr "%c - Ορθή εμφάνιση ημερ/νίας και ώρας" #. module: base #: model:res.country,name:base.bo msgid "Bolivia" -msgstr "" +msgstr "Bolivia" #. module: base -#: view:ir.actions.server:0 -msgid "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e. [[ object.partner_id.name ]]" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Close" -msgstr "" - -#. module: base -#: field:res.request.history,body:0 -msgid "Body" -msgstr "Σώμα" - -#. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expression" -msgstr "" +#: model:res.country,name:base.gh +msgid "Ghana" +msgstr "Ghana" #. module: base #: field:res.lang,direction:0 msgid "Direction" msgstr "Κατεύθυνση" -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Full" -msgstr "" - #. module: base #: model:ir.model,name:base.model_wizard_module_update_translations msgid "wizard.module.update_translations" -msgstr "" +msgstr "wizard.module.update_translations" #. module: base #: view:ir.actions.act_window:0 @@ -1971,150 +2537,42 @@ msgid "Rules" msgstr "Κανόνες" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_FONT" -msgstr "" +#: code:addons/base/module/module.py:0 +#, python-format +msgid "You try to remove a module that is installed or will be installed" +msgstr "You try to remove a module that is installed or will be installed" #. module: base -#: rml:ir.module.reference:0 -msgid "," -msgstr "," - -#. module: base -#: field:res.users,menu_id:0 -msgid "Menu Action" -msgstr "" +#: help:ir.values,key2:0 +msgid "The kind of action or button in the client side that will trigger the action." +msgstr "The kind of action or button in the client side that will trigger the action." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PASTE" -msgstr "" +msgstr "STOCK_PASTE" #. module: base #: model:res.country,name:base.gt msgid "Guatemala" -msgstr "" +msgstr "Guatemala" #. module: base -#: field:ir.model.fields,view_load:0 -msgid "View Auto-Load" -msgstr "" - -#. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "Φ.Π.Α." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIRECTORY" -msgstr "" - -#. module: base -#: wizard_button:res.partner.spam_send,init,send:0 -msgid "Send Email" -msgstr "Αποστολή Email" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "<" -msgstr "<" - -#. module: base -#: model:res.country,name:base.es -msgid "Spain" -msgstr "" +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +msgid "Workflows" +msgstr "Ροές Εργασίας" #. module: base #: model:ir.actions.act_window,name:base.action_config_wizard_form #: model:ir.ui.menu,name:base.menu_config_module msgid "Configuration Wizard" -msgstr "" - -#. module: base -#: view:res.request.link:0 -msgid "Request Link" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_todo -msgid "ir.actions.todo" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_FIT" -msgstr "" - -#. module: base -#: field:res.partner.address,mobile:0 -msgid "Mobile" -msgstr "" - -#. module: base -#: model:res.country,name:base.om -msgid "Oman" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "Html from html" -msgstr "" - -#. module: base -#: field:res.lang,time_format:0 -msgid "Time Format" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Iteration" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_low_workflow -msgid "Workflow Items" -msgstr "" - -#. module: base -#: field:res.request,ref_doc2:0 -msgid "Document Ref 2" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -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 "" - -#. module: base -#: field:res.request,ref_doc1:0 -msgid "Document Ref 1" -msgstr "" - -#. module: base -#: model:res.country,name:base.ga -msgid "Gabon" -msgstr "" - -#. module: base -#: model:res.country,name:base.nu -msgid "Niue" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Work Days" -msgstr "" +msgstr "Configuration Wizard" #. module: base #: model:ir.model,name:base.model_res_roles msgid "res.roles" -msgstr "" +msgstr "res.roles" #. module: base #: help:ir.cron,priority:0 @@ -2122,402 +2580,126 @@ msgid "" "0=Very Urgent\n" "10=Not urgent" msgstr "" - -#. module: base -#: field:ir.sequence,suffix:0 -msgid "Suffix" -msgstr "Επίθεμα" - -#. module: base -#: view:ir.model:0 view:res.groups:0 -msgid "Access Rights" -msgstr "" - -#. module: base -#: model:res.country,name:base.gl -msgid "Greenland" -msgstr "" - -#. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Χαμηλή" - -#. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account Number" -msgstr "" +"0=Πολύ Επείγον\n" +"10=Μη επείγον" #. module: base #: view:res.users:0 msgid "Skip" -msgstr "Παράβλεψη" +msgstr "Skip" #. module: base -#: model:ir.actions.act_window,name:base.act_menu_create -#: view:wizard.ir.model.menu.create:0 -msgid "Create Menu" -msgstr "Δημιουργία Μενού" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_RECORD" -msgstr "" - -#. module: base -#: model:res.country,name:base.in -msgid "India" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "1. %c ==> Fri Dec 5 18:25:20 2008" -msgstr "" - -#. module: base -#: help:ir.ui.menu,groups_id:0 -msgid "" -"If you have groups, the visibility of this menu will be based on these " -"groups. If this field is empty, Open ERP will compute visibility based on " -"the related object's read access." -msgstr "" - -#. module: base -#: model:res.country,name:base.nc -msgid "New Caledonia (French)" -msgstr "" +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "Accepted Links in Requests" #. module: base #: model:res.country,name:base.ls msgid "Lesotho" -msgstr "" - -#. module: base -#: field:ir.model.fields,translate:0 -msgid "Translate" -msgstr "Μετάφραση" - -#. module: base -#: field:res.partner.function,name:0 -msgid "Function Name" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "View :" -msgstr "" +msgstr "Lesotho" #. module: base #: model:ir.actions.act_window,name:base.grant_menu_access #: model:ir.ui.menu,name:base.menu_grant_menu_access msgid "Grant Access To Menus" -msgstr "" +msgstr "Πρόσβαση στα Menu" #. module: base -#: field:res.partner.category,name:0 -msgid "Category Name" -msgstr "Όνομα κατηγορίας" +#: model:res.country,name:base.ke +msgid "Kenya" +msgstr "Kenya" #. module: base #: view:res.config.view:0 -msgid "" -"Choose the simplified interface if you are testing OpenERP for the first " -"time. Less used options or fields are automatically hidden. You will be able " -"to change this, later, through the Administration menu." -msgstr "" +msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." +msgstr "Επιλέξτε την απλοποιημένη μορφή αν δοκιμάζετε το OpenERP για πρώτη φορά. Οι λιγότερο συνηθισμένες επιλογές και πεδία δεν θα προβάλονται. Μπορείτε να το αλλάξετε αυτό αργότερα από το μενού της Διαχείρισης." #. module: base -#: model:res.country,name:base.tz -msgid "Tanzania" -msgstr "" +#: code:osv/orm.py:0 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Σφάλμα κατά την επικύρωση των πεδίων %s: %s" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_CENTER" -msgstr "" - -#. module: base -#: field:workflow.instance,uid:0 -msgid "User ID" -msgstr "Ταυτότητα χρήστη" - -#. module: base -#: model:ir.actions.report.xml,name:base.res_partner_address_report -msgid "Labels" -msgstr "Ετικέτες" - -#. module: base -#: field:res.request,act_from:0 field:res.request.history,act_from:0 -msgid "From" -msgstr "Από" - -#. module: base -#: model:res.country,name:base.cz -msgid "Czech Republic" -msgstr "" - -#. module: base -#: model:res.country,name:base.mr -msgid "Mauritania" -msgstr "" - -#. module: base -#: model:res.country,name:base.sb -msgid "Solomon Islands" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,target:0 -msgid "Target Window" -msgstr "Παράθυρο στόχων" - -#. module: base -#: constraint:res.partner:0 -msgid "The VAT doesn't seem to be correct." -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "client_action_multi, client_action_relate" -msgstr "" - -#. module: base -#: model:res.country,name:base.ad -msgid "Andorra, Principality of" -msgstr "" - -#. module: base -#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 -msgid "Child Categories" -msgstr "" - -#. module: base -#: wizard_button:server.action.create,init,step_1:0 -msgid "Next" -msgstr "Επόμενο" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "TGZ Archive" -msgstr "" +#: model:res.country,name:base.sm +msgid "San Marino" +msgstr "San Marino" #. module: base #: model:res.country,name:base.bm msgid "Bermuda" -msgstr "" +msgstr "Bermuda" #. module: base #: model:res.country,name:base.pe msgid "Peru" +msgstr "Peru" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "Set NULL" + +#. module: base +#: field:res.partner.event,som:0 field:res.partner.som,name:0 +msgid "State of Mind" msgstr "" -#. module: base -#: field:res.partner.som,factor:0 -msgid "Factor" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%B - Full month name." -msgstr "" - -#. module: base -#: wizard_field:res.partner.spam_send,init,from:0 -msgid "Sender's email" -msgstr "Ηλεκτρονικό ταχυδρομείο αποστολέα " - -#. module: base -#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 -#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 -#: field:ir.values,key:0 view:res.partner:0 -msgid "Type" -msgstr "Τύπος" - #. module: base #: model:res.country,name:base.bj msgid "Benin" -msgstr "" +msgstr "Benin" #. module: base -#: selection:ir.actions.todo,state:0 -msgid "Skipped" -msgstr "Παραβλέφθηκε" +#: view:ir.rule.group:0 +msgid "The rule is satisfied if all test are True (AND)" +msgstr "The rule is satisfied if all test are True (AND)" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_IN" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -msgstr "" - -#. module: base -#: model:res.country,name:base.mx -msgid "Mexico" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_title -msgid "res.partner.title" -msgstr "" - -#. module: base -#: model:res.country,name:base.gu -msgid "Guam (USA)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_actions -msgid "ir.actions.actions" -msgstr "" - -#. module: base -#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation -msgid "Translations" -msgstr "Μεταφράσεις" - -#. module: base -#: field:ir.actions.report.xml,report_rml_content:0 -#: field:ir.actions.report.xml,report_rml_content_data:0 -msgid "RML content" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child3:0 -msgid "Field child3" -msgstr "" - -#. module: base -#: view:workflow.activity:0 -msgid "Incoming transitions" -msgstr "Εισερχόμενες μεταβάσεις" - -#. module: base -#: model:res.country,name:base.tn -msgid "Tunisia" -msgstr "" +msgid "STOCK_CONNECT" +msgstr "STOCK_CONNECT" #. module: base #: selection:ir.model.fields,select_level:0 msgid "Not Searchable" msgstr "" -#. module: base -#: model:res.country,name:base.cn -msgid "China" -msgstr "" - #. module: base #: field:res.partner.event.type,key:0 msgid "Key" -msgstr "Κλειδί" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OK" -msgstr "" +msgstr "Key" #. module: base #: field:ir.cron,nextcall:0 msgid "Next Call Date" -msgstr "" +msgstr "Επόμενη Ημερ/νία Κλήσης" #. module: base #: field:res.company,rml_header:0 msgid "RML Header" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "" - -#. module: base -#: model:res.country,name:base.ua -msgid "Ukraine" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 -msgid "Dummy" -msgstr "" - -#. module: base -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Άκυρο XML για αρχιτεκτονική Προβολής!" - -#. module: base -#: model:ir.model,name:base.model_ir_exports -msgid "ir.exports" -msgstr "" - -#. module: base -#: model:res.country,name:base.eh -msgid "Western Sahara" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow -msgid "workflow" -msgstr "" +msgstr "RML Header" #. module: base #: wizard_field:res.partner.sms_send,init,app_id:0 msgid "API ID" -msgstr "" - -#. module: base -#: model:res.country,name:base.ky -msgid "Cayman Islands" -msgstr "" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Δοκιμές" - -#. module: base -#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 -msgid "Module Category" -msgstr "" +msgstr "API ID" #. module: base #: model:res.country,name:base.mu msgid "Mauritius" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reference Guide" -msgstr "Οδηγός αναφοράς" +msgstr "Mauritius" #. module: base #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" -msgstr "" +msgstr "Scan for new modules" #. module: base #: model:ir.model,name:base.model_ir_module_repository msgid "Module Repository" -msgstr "" - -#. module: base -#: model:res.country,name:base.ml -msgid "Mali" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNINDENT" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "At Once" -msgstr "" +msgstr "Module Repository" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -2525,845 +2707,240 @@ msgid "Security" msgstr "Ασφάλεια" #. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_custom -#: model:ir.ui.menu,name:base.menu_ir_action_report_custom -msgid "Report Custom" -msgstr "" - -#. module: base -#: model:res.country,name:base.bg -msgid "Bulgaria" -msgstr "" - -#. module: base -#: field:ir.cron,interval_number:0 -msgid "Interval Number" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND" -msgstr "" - -#. module: base -#: model:res.country,name:base.ao -msgid "Angola" -msgstr "" - -#. module: base -#: model:res.country,name:base.tf -msgid "French Southern Territories" -msgstr "" - -#. module: base -#: model:res.country,name:base.td -msgid "Chad" -msgstr "" +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Using a relation field which uses an unknown object" +msgstr "Using a relation field which uses an unknown object" #. module: base #: model:res.country,name:base.za msgid "South Africa" -msgstr "" - -#. module: base -#: model:res.country,name:base.tk -msgid "Tokelau" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "" -"Only one client action will be execute, last " -"clinent action will be consider in case of multiples clients actions" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HELP" -msgstr "" - -#. module: base -#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access -#: view:res.groups:0 field:res.groups,model_access:0 -msgid "Access Controls" -msgstr "Έλεγχοι Πρόσβασης" - -#. module: base -#: model:res.country,name:base.bn -msgid "Brunei Darussalam" -msgstr "" +msgstr "South Africa" #. module: base #: model:ir.model,name:base.model_wizard_module_lang_export msgid "wizard.module.lang.export" -msgstr "" +msgstr "wizard.module.lang.export" #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "Installed" -msgstr "Εγκατεστημένο" +msgstr "Installed" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_function_form -#: model:ir.ui.menu,name:base.menu_partner_function_form -#: view:res.partner.function:0 -msgid "Partner Functions" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 -#: view:res.currency:0 field:res.currency,name:0 -#: field:res.currency.rate,currency_id:0 -msgid "Currency" -msgstr "Νόμισμα" - -#. module: base -#: view:res.lang:0 -msgid "%Y - Year with century as a decimal number." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish (AR) / Español (AR)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_triggers -msgid "workflow.triggers" -msgstr "ωθήσεις ροής της δουλειάς" - -#. module: base -#: view:res.lang:0 -msgid "5. %y, %Y ==> 08, 2008" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "module,type,name,res_id,src,value" -msgstr "" - -#. module: base -#: model:res.country,name:base.sa -msgid "Saudi Arabia" -msgstr "" +#: model:res.country,name:base.sn +msgid "Senegal" +msgstr "Senegal" #. module: base #: model:res.country,name:base.hu msgid "Hungary" -msgstr "" +msgstr "Hungary" #. module: base -#: model:res.country,name:base.ne -msgid "Niger" -msgstr "" - -#. module: base -#: model:res.country,name:base.ba -msgid "Bosnia-Herzegovina" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,alignment:0 -msgid "Alignment" -msgstr "Στοίχιση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDO" -msgstr "" +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "res.groups" #. module: base #: model:res.country,name:base.br msgid "Brazil" -msgstr "" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Ο κανόνας ικανοποιείται εάν τουλάχιστον μια είναι επιλεγμένη" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Weeks" -msgstr "Εβδομάδες" - -#. module: base -#: selection:ir.rule,operator:0 -msgid ">=" -msgstr ">=" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_xml -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.xml" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_administration -msgid "Administration" -msgstr "Διαχείριση" +msgstr "Brazil" #. module: base #: field:ir.sequence,number_next:0 msgid "Next Number" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Get file" -msgstr "Πάρτε το αρχείο" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "" -"This function will check for new modules in the 'addons' path and on module " -"repositories:" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "raw" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "" +msgstr "Επόμενος Αριθμός" #. module: base #: view:res.currency:0 field:res.currency,rate_ids:0 msgid "Rates" msgstr "Ποσοστά" -#. module: base -#: view:res.lang:0 -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 "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_BACK" -msgstr "" - #. module: base #: model:res.country,name:base.sy msgid "Syria" -msgstr "" +msgstr "Syria" #. module: base #: view:res.lang:0 msgid "======================================================" -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Validated" -msgstr "" +msgstr "======================================================" #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" -msgstr "" +msgstr "Field child2" #. module: base -#: field:ir.values,key2:0 view:res.partner.event.type:0 -#: field:res.partner.event.type,name:0 -msgid "Event Type" -msgstr "" +#: field:ir.report.custom.fields,field_child3:0 +msgid "Field child3" +msgstr "Field child3" #. module: base #: field:ir.report.custom.fields,field_child0:0 msgid "Field child0" -msgstr "" +msgstr "Field child0" #. module: base #: field:ir.report.custom.fields,field_child1:0 msgid "Field child1" -msgstr "" - -#. module: base -#: field:ir.module.module,website:0 field:res.partner,website:0 -msgid "Website" -msgstr "Ιστοχώρος" +msgstr "Field child1" #. module: base #: field:ir.model.fields,selection:0 msgid "Field Selection" -msgstr "Επιλογή τομέων" +msgstr "Field Selection" #. module: base -#: view:res.roles:0 -msgid "Role" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "https://translations.launchpad.net/openobject" -msgstr "" - -#. module: base -#: model:res.country,name:base.ir -msgid "Iran" -msgstr "" - -#. module: base -#: model:res.country,name:base.dz -msgid "Algeria" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 -#: field:wizard.module.lang.export,state:0 -msgid "unknown" -msgstr "άγνωστο" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_som-act -#: model:ir.ui.menu,name:base.menu_res_partner_som-act -msgid "States of mind" -msgstr "Ψυχικές διαθέσεις" - -#. module: base -#: model:res.country,name:base.gs -msgid "S. Georgia & S. Sandwich Isls." -msgstr "" - -#. module: base -#: field:ir.actions.url,url:0 -msgid "Action URL" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REMOVE" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,res_id:0 -msgid "Resource Ref." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_FILL" -msgstr "" - -#. module: base -#: model:res.country,name:base.mh -msgid "Marshall Islands" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_access -msgid "ir.model.access" -msgstr "" +#: selection:res.request,state:0 +msgid "draft" +msgstr "πρόχειρα" #. module: base #: field:res.currency.rate,name:0 field:res.partner,date:0 #: field:res.partner.event,date:0 field:res.request,date_sent:0 msgid "Date" -msgstr "Ημερομηνία" +msgstr "Ημερ/νία" #. module: base -#: model:res.country,name:base.ki -msgid "Kiribati" -msgstr "" +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" +msgstr "SXW path" #. module: base -#: model:res.country,name:base.ht -msgid "Haiti" -msgstr "" - -#. module: base -#: model:res.country,name:base.iq -msgid "Iraq" -msgstr "" - -#. module: base -#: view:ir.attachment:0 field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "RML" -msgstr "" +msgstr "Δεδομένα" #. module: base #: view:res.users:0 msgid "Groups are used to defined access rights on each screen and menu." -msgstr "" +msgstr "Οι Ομάδες χρησιμοποιούνται για τον ορισμό δικαιωμάτων πρόσβασης στις οθόνες και τα μενού." #. module: base -#: model:ir.actions.act_window,name:base.action_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_main -msgid "Partners by Categories" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request-act -#: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 -msgid "Requests" -msgstr "Αιτήματα" - -#. module: base -#: model:res.country,name:base.cl -msgid "Chile" -msgstr "" - -#. module: base -#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 -#: field:res.partner,lang:0 field:res.users,context_lang:0 -#: field:wizard.module.lang.export,lang:0 -#: field:wizard.module.update_translations,lang:0 -msgid "Language" -msgstr "Γλώσσα" - -#. module: base -#: selection:ir.translation,type:0 -msgid "XSL" -msgstr "" - -#. module: base -#: model:res.country,name:base.gm -msgid "Gambia" -msgstr "" - -#. module: base -#: wizard_view:base.module.import,import:0 -#: wizard_view:base.module.import,init:0 -msgid "Module import" -msgstr "Εισαγωγή ενότητας" - -#. module: base -#: view:ir.values:0 -msgid "tree_but_action, client_print_multi" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 -msgid "Companies" -msgstr "Επιχειρήσεις" +#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 +msgid "Parent Menu" +msgstr "Επάνω Μενού" #. module: base #: help:ir.actions.act_window.view,multi:0 #: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_supplier_form -#: model:ir.ui.menu,name:base.menu_partner_supplier_form -msgid "Suppliers Partners" -msgstr "Συνεργάτες προμηθευτών" - -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "" - -#. module: base -#: model:res.country,name:base.be -msgid "Belgium" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "CSV File" +msgid "If set to true, the action will not be displayed on the right toolbar of a form view." msgstr "" #. module: base #: view:ir.attachment:0 msgid "Attached To" -msgstr "" +msgstr "Συνημμένο με" #. module: base #: field:res.lang,decimal_point:0 msgid "Decimal Separator" -msgstr "" +msgstr "Υποδιαστολή" #. module: base -#: field:ir.actions.report.xml,report_sxw:0 -msgid "SXW path" -msgstr "Πορεία SXW" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PLAY" -msgstr "" - -#. module: base -#: field:ir.model.data,date_init:0 -msgid "Init Date" -msgstr "" - -#. module: base -#: field:res.company,rml_header2:0 -msgid "RML Internal Header" -msgstr "" - -#. module: base -#: selection:ir.model,state:0 selection:ir.model.grid,state:0 -msgid "Base Object" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-crm" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_STRIKETHROUGH" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "(year)=" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Dependencies :" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Features" -msgstr "Χαρακτηριστικά γνωρίσματα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-partner" -msgstr "" +#: view:res.partner:0 view:res.request:0 field:res.request,history:0 +msgid "History" +msgstr "Ιστορικό" #. module: base #: field:ir.attachment,create_uid:0 -#, fuzzy msgid "Creator" -msgstr "Δημιουργήστε" +msgstr "Δημιουργός" #. module: base -#: view:ir.actions.server:0 field:ir.actions.server,code:0 -#: selection:ir.actions.server,state:0 -msgid "Python Code" -msgstr "Κώδικας Python" - -#. module: base -#: model:res.country,name:base.gq -msgid "Equatorial Guinea" -msgstr "" - -#. module: base -#: field:ir.model.fields,field_description:0 -msgid "Field Label" -msgstr "Ετικέτα τομέων" - -#. module: base -#: model:ir.module.module,description:base.module_meta_information -msgid "The kernel of OpenERP, needed for all installation." -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 -msgid "View Mode" -msgstr "" +#: model:res.country,name:base.mx +msgid "Mexico" +msgstr "Mexico" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Swedish / svenska" -msgstr "" - -#. module: base -#: model:res.country,name:base.dj -msgid "Djibouti" -msgstr "" - -#. module: base -#: field:ir.report.custom,frequency:0 -msgid "Frequency" -msgstr "Συχνότητα" - -#. module: base -#: model:res.country,name:base.ag -msgid "Antigua and Barbuda" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_import -#: model:ir.ui.menu,name:base.menu_wizard_lang_import -msgid "Import a Translation File" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form -#: model:ir.ui.menu,name:base.menu_partner_customer_form -msgid "Customers Partners" -msgstr "Συνεργάτες πελατών" +msgstr "Swedish / svenska" #. module: base #: field:res.company,child_ids:0 msgid "Child Companies" -msgstr "" +msgstr "Θυγατρικές Εταιρείες" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Διαβασμένη πρόσβαση" - -#. module: base -#: model:ir.ui.menu,name:base.menu_management -msgid "Modules Management" -msgstr "Διαχείριση ενοτήτων" - -#. module: base -#: field:ir.report.custom,repeat_header:0 -msgid "Repeat Header" -msgstr "Επαναλάβετε την επιγραφή" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" #. module: base #: model:res.country,name:base.ni msgid "Nicaragua" -msgstr "" +msgstr "Nicaragua" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "html" -msgstr "" - -#. module: base -#: model:res.country,name:base.ck -msgid "Cook Islands" -msgstr "" - -#. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "" - -#. module: base -#: field:ir.attachment,res_id:0 field:ir.model.data,res_id:0 -#: field:ir.translation,res_id:0 field:workflow.instance,res_id:0 -#: field:workflow.triggers,res_id:0 -msgid "Resource ID" -msgstr "" - -#. module: base -#: view:ir.cron:0 field:ir.model,info:0 field:ir.model.grid,info:0 -#: view:maintenance.contract:0 -msgid "Information" -msgstr "Πληροφορίες" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "PO File" -msgstr "" +#: code:osv/orm.py:0 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "Η μέθοδος εγγραφής δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" #. module: base #: view:res.partner.event:0 msgid "General Description" -msgstr "Γενική περιγραφή" +msgstr "Γενική Περιγραφή" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MISSING_IMAGE" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Define New Users" -msgstr "" - -#. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_rml:0 -msgid "RML path" -msgstr "" - -#. module: base -#: field:ir.actions.configuration.wizard,item_id:0 -msgid "Next Configuration Wizard" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Installation Done" -msgstr "" +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "Ευκαιρία Πώλησης" #. module: base #: view:maintenance.contract.wizard:0 msgid "Maintenance contract added !" -msgstr "" +msgstr "Το Συβόλαιο Συντήρησης προστέθηκε!" #. module: base #: field:ir.rule,field_id:0 selection:ir.translation,type:0 msgid "Field" msgstr "Πεδίο" -#. module: base -#: selection:ir.actions.todo,type:0 selection:res.partner.address,type:0 -msgid "Other" -msgstr "Άλλος" - -#. module: base -#: help:ir.actions.server,email:0 -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 "" - -#. module: base -#: selection:ir.server.object.lines,type:0 -msgid "Formula" -msgstr "Τύπος" - -#. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Όνομα ρόλου" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import New Language" -msgstr "" - #. module: base #: model:res.country,name:base.ve msgid "Venezuela" -msgstr "" - -#. module: base -#: field:ir.module.module,latest_version:0 -msgid "Installed version" -msgstr "Εγκατεστημένη έκδοση" +msgstr "Venezuela" #. module: base #: view:res.lang:0 msgid "9. %j ==> 340" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_activity_form -#: model:ir.ui.menu,name:base.menu_workflow_activity view:workflow:0 -#: field:workflow,activities:0 -msgid "Activities" -msgstr "Δραστηριότητες" - -#. module: base -#: field:res.partner,user_id:0 -msgid "Dedicated Salesman" -msgstr "διορισμένος πωλητής" - -#. module: base -#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export a Translation File" -msgstr "Εξάγετε ένα αρχείο μεταφράσεων" - -#. module: base -#: model:res.country,name:base.is -msgid "Iceland" -msgstr "" +msgstr "9. %j ==> 340" #. module: base #: model:res.country,name:base.zm msgid "Zambia" -msgstr "" +msgstr "Zambia" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "" +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +msgid "Report Xml" +msgstr "Αναφορά Xml" #. module: base -#: rml:ir.module.reference:0 -msgid "-" -msgstr "" - -#. module: base -#: model:res.country,name:base.mw -msgid "Malawi" -msgstr "" - -#. module: base -#: field:ir.attachment,name:0 -msgid "Attachment Name" -msgstr "Όνομα Συνημμένου" +#: help:res.partner,user_id:0 +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "Ο χρήστης, υπεύθυνος για την επικοινωνία με το συνεργάτη, αν υπάρχει." #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" -msgstr "Ακυρώστε τη βελτίωση" - -#. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Week of the year: %(woy)s" -msgstr "" +msgstr "Ακύρωση Αναβάθμισης" #. module: base #: model:res.country,name:base.ci msgid "Ivory Coast (Cote D'Ivoire)" -msgstr "" +msgstr "Ivory Coast (Cote D'Ivoire)" #. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 -msgid "=" -msgstr "=" - -#. module: base -#: field:res.payterm,name:0 -msgid "Payment Term (short name)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_bank view:res.bank:0 -#: field:res.partner.bank,bank:0 -msgid "Bank" -msgstr "Τράπεζα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HARDDISK" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reports :" -msgstr "" +#: model:res.country,name:base.kz +msgid "Kazakhstan" +msgstr "Kazakhstan" #. module: base #: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 @@ -3378,310 +2955,207 @@ msgstr "" #: field:res.partner.bank.type,name:0 field:res.request.link,name:0 #: field:res.users,name:0 field:workflow,name:0 field:workflow.activity,name:0 msgid "Name" -msgstr "Ονομασία" - -#. module: base -#: model:ir.model,name:base.model_ir_property -msgid "ir.property" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_APPLY" -msgstr "" +msgstr "Όνομα" #. module: base #: model:res.country,name:base.ms msgid "Montserrat" -msgstr "" +msgstr "Montserrat" #. module: base -#: field:ir.module.module,reports_by_module:0 -msgid "Reports" -msgstr "Αναφορές" - -#. module: base -#: wizard_view:server.action.create,init:0 -#: wizard_field:server.action.create,init,type:0 -msgid "Select Action Type" -msgstr "Επιλέξτε τον τύπο δράσης" - -#. module: base -#: field:workflow,on_create:0 -msgid "On Create" -msgstr "" - -#. module: base -#: wizard_view:base.module.import,init:0 -msgid "Please give your module .ZIP file to import." -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." -msgstr "" - -#. module: base -#: model:res.country,name:base.gy -msgid "Guyana" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-2" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Resynchronise Terms" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese (BR) / português (BR)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence_type -msgid "ir.sequence.type" -msgstr "" - -#. module: base -#: field:ir.actions.server,record_id:0 -msgid "Create Id" -msgstr "" - -#. module: base -#: model:res.country,name:base.hn -msgid "Honduras" -msgstr "" - -#. module: base -#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 -msgid "View Architecture" -msgstr "Αρχιτεκτονική άποψη" - -#. module: base -#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 -msgid "Covered Modules" -msgstr "" +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "Ορολογία Εφαρμογής" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Calculate Average" -msgstr "Υπολογίστε το μέσο όρο" - -#. module: base -#: field:res.users,context_tz:0 -msgid "Timezone" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_grid_security -#: model:ir.ui.menu,name:base.menu_ir_access_grid -msgid "Access Controls Grid" -msgstr "Πλέγμα ελέγχων προσπέλασης" +msgstr "Υπολογισμός Μέσου Όρου" #. module: base #: field:ir.module.module,demo:0 msgid "Demo data" -msgstr "Επίδεικτικά στοιχεία" - -#. module: base -#: selection:res.request,priority:0 -msgid "High" -msgstr "Υψηλή" +msgstr "Demo data" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_instance_form #: model:ir.ui.menu,name:base.menu_workflow_instance msgid "Instances" -msgstr "Περιπτώσεις" +msgstr "Instances" #. module: base #: model:res.country,name:base.aq msgid "Antarctica" +msgstr "Antarctica" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" msgstr "" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Export" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form_all -#: model:ir.ui.menu,name:base.menu_ir_property_form_all -msgid "All Properties" -msgstr "Όλες οι ιδιότητες" - -#. module: base -#: wizard_button:module.upgrade,end,config:0 -#: wizard_button:module.upgrade,start,config:0 -msgid "Start configuration" -msgstr "Έναρξη Διαμόρφωσης" - -#. module: base -#: model:res.country,name:base.na -msgid "Namibia" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DISCONNECT" -msgstr "" - -#. module: base -#: view:ir.model:0 -msgid "Fields Description" -msgstr "Περιγραφή πεδίων " - -#. module: base -#: wizard_button:module.module.update,init,update:0 -msgid "Check new modules" -msgstr "Έλεγχος για νέα αρθρώματα" - -#. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_server_action -#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action -msgid "Server Actions" -msgstr "Ενέργειες στο διακομιστή" - -#. module: base -#: model:res.country,name:base.tp -msgid "East Timor" -msgstr "" +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "ir.actions.act_window.view" #. module: base #: rml:ir.module.reference:0 msgid "Web" -msgstr "" - -#. module: base -#: help:res.bank,bic:0 -msgid "Bank Identifier Code" -msgstr "Κώδικας προσδιοριστικών τράπεζας" - -#. module: base -#: model:ir.ui.menu,name:base.menu_workflow_root -msgid "Workflow Definitions" -msgstr "" - -#. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CDROM" -msgstr "" - -#. module: base -#: field:workflow.activity,action:0 -msgid "Python Action" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "You can also import .po files." -msgstr "" +msgstr "Web" #. module: base #: field:res.partner.event,planned_revenue:0 msgid "Planned Revenue" -msgstr "Προγραμματισμένο εισόδημα" - -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Κανόνες αρχείων" +msgstr "Προγραμματισμένα Έσοδα" #. module: base #: wizard_view:module.lang.import,init:0 -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 "" - -#. module: base -#: help:res.country,name:0 -msgid "The full name of the country." -msgstr "" +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 "Πρέπει να εισάγετε ένα αρχείο .CSV με κωδικοποίηση UTF-8. Παρακαλώ ελέγξτε ότι η πρώτη γραμμή του αρχείου σας είναι:" #. module: base #: model:res.country,name:base.et msgid "Ethiopia" -msgstr "" +msgstr "Ethiopia" #. module: base #: view:res.lang:0 msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." -msgstr "" +msgstr "%H - Η Ώρα (24ωρη μορφή) σε δεκαδική μορφή [00, 23]." #. module: base -#: view:res.lang:0 -msgid "%M - Minute as a decimal number [00,59]." -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,header:0 -msgid "Add or not the coporate RML header" -msgstr "" +#: view:res.roles:0 +msgid "Role" +msgstr "Ρόλος" #. module: base #: help:res.country.state,code:0 msgid "The state code in three chars.\n" -msgstr "" +msgstr "Ο κωδικός πολιτείας αποτελείται από 3 χαρακτήρες\n" #. module: base -#: field:res.currency,accuracy:0 -msgid "Computational Accuracy" -msgstr "Υπολογιστική ακρίβεια" +#: model:res.country,name:base.sj +msgid "Svalbard and Jan Mayen Islands" +msgstr "Svalbard and Jan Mayen Islands" #. module: base #: view:ir.rule:0 msgid "Test" -msgstr "Έλεγχος" +msgstr "Test" #. module: base -#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 -#: selection:ir.translation,type:0 -#: field:wizard.ir.model.menu.create.line,view_id:0 -msgid "View" -msgstr "Προβολή" +#: field:ir.report.custom.fields,groupby:0 +msgid "Group By" +msgstr "Ομαδοποίηση Ανά" #. module: base -#: field:res.partner.event,document:0 -msgid "Document" -msgstr "Έγγραφο" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_WARNING" +msgstr "STOCK_DIALOG_WARNING" #. module: base -#: model:res.country,name:base.kg -msgid "Kyrgyz Republic (Kyrgyzstan)" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_IN" +msgstr "STOCK_ZOOM_IN" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "κλειστά" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "get" +msgstr "πάρε" + +#. module: base +#: help:ir.model.fields,on_delete:0 +msgid "On delete property for many2one fields" +msgstr "On delete property for many2one fields" + +#. module: base +#: field:ir.actions.server,write_id:0 +msgid "Write Id" +msgstr "Write Id" + +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "Τιμή Τομέα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "STOCK_ITALIC" + +#. module: base +#: view:ir.actions.server:0 +msgid "SMS Configuration" +msgstr "Ρύθμιση SMS" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "Λίστα Προσβάσεων" + +#. module: base +#: model:res.country,name:base.um +msgid "USA Minor Outlying Islands" +msgstr "USA Minor Outlying Islands" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +msgid "Bank Type" +msgstr "Τύπος Τράπεζας" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "The name of the group can not start with \"-\"" +msgstr "Το όνομα της ομάδας δεν μπορεί να ξεκινάει με \"-\"" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "Παρακαλώ επαναφορτώστε το menu tab (Ctrl+t Ctrl+r)." + +#. module: base +#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 +msgid "Shortcut" +msgstr "Συντόμευση" + +#. module: base +#: field:ir.model.data,date_init:0 +msgid "Init Date" +msgstr "Αρχική Ημερ/νία" + +#. module: base +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "Εκκίνηση Ροής" #. module: base #: view:ir.model:0 view:ir.model.fields:0 msgid "Security on Groups" -msgstr "" +msgstr "Ασφάλεια σε Ομάδες" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REFRESH" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank Account Owner" +msgstr "Ιδιοκτήτης Τραπεζικού Λογαριασμού" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form +#: model:ir.ui.menu,name:base.menu_values_form +msgid "Client Actions Connections" +msgstr "Client Actions Connections" + +#. module: base +#: field:ir.ui.view_sc,resource:0 +msgid "Resource Name" +msgstr "Περιγραφή Πόρου" #. module: base #: selection:ir.cron,interval_type:0 @@ -3689,154 +3163,1167 @@ msgid "Hours" msgstr "Ώρες" #. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_type -#: model:ir.ui.menu,name:base.menu_ir_sequence_type -msgid "Sequence Types" -msgstr "Τύποι ακολουθίας" +#: model:res.country,name:base.gp +msgid "Guadeloupe (French)" +msgstr "Guadeloupe (French)" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Accumulate" +msgstr "Συσσώρευση" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Tree can only be used in tabular reports" +msgstr "Το δέντρο μπορεί να χρησιμοποιηθεί μόνο σε αναφορές με μορφή πίνακα" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory" +msgstr "Φάκελλος" + +#. module: base +#: field:wizard.ir.model.menu.create,name:0 +msgid "Menu Name" +msgstr "Όνομα Μενού" + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report Title" +msgstr "Τίτλος Αναφοράς" + +#. module: base +#: field:ir.report.custom.fields,fontcolor:0 +msgid "Font color" +msgstr "Χρώμα γραμματοσειράς" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_HOME" -msgstr "" +msgid "STOCK_SORT_DESCENDING" +msgstr "STOCK_SORT_DESCENDING" #. module: base -#: field:res.bank,zip:0 field:res.partner.address,zip:0 -#: field:res.partner.bank,zip:0 -msgid "Zip" +#: model:res.country,name:base.my +msgid "Malaysia" +msgstr "Malaysia" + +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" +msgstr "res.request.history" + +#. module: base +#: view:ir.actions.server:0 +msgid "Client Action Configuration" +msgstr "Client Action Configuration" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.model,name:base.model_res_partner_address +#: view:res.partner.address:0 +msgid "Partner Addresses" +msgstr "Διευθύνσεις Συνεργάτη" + +#. module: base +#: model:res.country,name:base.cv +msgid "Cape Verde" +msgstr "Cape Verde (Πράσινο Ακρωτήριο)" + +#. module: base +#: model:ir.actions.act_window,name:base.act_res_partner_event +#: field:res.partner,events:0 field:res.partner.event,name:0 +msgid "Events" +msgstr "Συμβάντα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles +#: model:ir.ui.menu,name:base.menu_action_res_roles +msgid "Roles Structure" +msgstr "Διάρθρωση Ρόλων" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 +msgid "ir.actions.url" +msgstr "ir.actions.url" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_STOP" +msgstr "STOCK_MEDIA_STOP" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "Wrong ID for the browse record, got %r, expected an integer." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" +msgstr "STOCK_DND_MULTIPLE" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Στοιχεία Συνεργάτη" + +#. module: base +#: wizard_field:module.module.update,update,add:0 +msgid "Number of modules added" +msgstr "Number of modules added" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Απαιτούμενος Ρόλος" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "The create method is not implemented on this object !" + +#. module: base +#: field:workflow.triggers,workitem_id:0 +msgid "Workitem" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_FILE" +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "STOCK_DIALOG_AUTHENTICATION" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_OUT" +msgstr "STOCK_ZOOM_OUT" + +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 selection:ir.values,key:0 +msgid "Action" +msgstr "Ενέργεια" + +#. module: base +#: view:ir.actions.server:0 +msgid "Email Configuration" +msgstr "Ρυθμίσεις Email" + +#. module: base +#: model:ir.model,name:base.model_ir_cron +msgid "ir.cron" +msgstr "ir.cron" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "terp-mrp" + +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +msgid "Trigger On" +msgstr "Trigger On" + +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" +msgstr "Fiji" + +#. module: base +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Μέγεθος" + +#. module: base +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Sudan" + +#. module: base +#: view:res.lang:0 +msgid "%m - Month as a decimal number [01,12]." +msgstr "%m - Ο μήνας σε δεκαδική μορφή [01,12]" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "Εξαγωγή Δεδομένων" + +#. module: base +#: model:res.country,name:base.fm +msgid "Micronesia" +msgstr "Micronesia" + +#. module: base +#: view:res.request.history:0 +msgid "Request History" +msgstr "Αίτηση Ιστορικού" + +#. module: base +#: field:ir.module.module,menus_by_module:0 view:res.groups:0 +msgid "Menus" +msgstr "Μενού" + +#. module: base +#: model:res.country,name:base.il +msgid "Israel" +msgstr "Israel" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_server_action_create +msgid "Create Action" +msgstr "Δημιουργία Ενέργειας" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "html" + +#. module: base +#: field:res.lang,time_format:0 +msgid "Time Format" +msgstr "Μορφή Ώρας" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Your system will be upgraded." +msgstr "Το σύστημα θα αναβαθμιστεί" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "Καθορισμένες Αναφορές" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-tools" +msgstr "terp-tools" + +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Report xml" +msgstr "Αναφορά xml" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_open_categ +#: model:ir.actions.act_window,name:base.open_module_tree +#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree +#: field:wizard.module.lang.export,modules:0 +msgid "Modules" +msgstr "Modules" + +#. module: base +#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 +#: field:workflow.workitem,subflow_id:0 +msgid "Subflow" msgstr "" #. module: base -#: model:res.country,name:base.uz -msgid "Uzbekistan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" +msgstr "STOCK_UNDO" + +#. module: base +#: field:workflow.transition,signal:0 +msgid "Signal (button Name)" msgstr "" #. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "To be installed" -msgstr "Για να εγκατασταθεί" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update" -msgstr "Αναπροσαρμογή" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 -#: model:ir.ui.menu,name:base.menu_ir_cron_act -msgid "Scheduled Actions" -msgstr "Προγραμματισμένες ενέργειες" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_module -msgid "maintenance contract modules" -msgstr "" - -#. module: base -#: model:ir.module.module,shortdesc:base.module_meta_information -#, fuzzy -msgid "Base" +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 +#: field:res.partner,bank_ids:0 +msgid "Banks" msgstr "Τράπεζες" #. module: base -#: model:ir.model,name:base.model_ir_actions_wizard -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.wizard" +#: selection:ir.ui.menu,icon:0 +msgid "terp-sale" +msgstr "terp-sale" + +#. module: base +#: view:res.lang:0 +msgid "%d - Day of the month as a decimal number [01,31]." +msgstr "%d - Η ημέρα του μήνα σε δεκαδική μορφή [01, 31]." + +#. module: base +#: view:res.lang:0 +msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." +msgstr "%I - Η Ώρα (12ωρο) σε δεκαδική μορφή [01, 12]." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Romanian / limba română" +msgstr "Romanian / limba română" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" +msgstr "STOCK_ADD" + +#. module: base +#: field:ir.cron,doall:0 +msgid "Repeat Missed" msgstr "" #. module: base -#: field:ir.attachment,link:0 -msgid "Link" -msgstr "Σύνδεση" +#: help:ir.actions.server,state:0 +msgid "Type of the Action that is to be executed" +msgstr "Τύπος Ενέργειας για εκτέλεση" #. module: base -#: view:res.partner:0 view:res.request:0 field:res.request,history:0 -msgid "History" -msgstr "Ιστορικό" +#: field:ir.server.object.lines,server_id:0 +msgid "Object Mapping" +msgstr "" + +#. module: base +#: help:res.currency,rate:0 help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "Ισοτιμία νομίσματος" + +#. module: base +#: model:res.country,name:base.uk +msgid "United Kingdom" +msgstr "United Kingdom" + +#. module: base +#: view:ir.actions.server:0 +msgid "Create / Write" +msgstr "Δημιουργία / Εγγραφή" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category without removing it." +msgstr "The active field allows you to hide the category without removing it." + +#. module: base +#: rml:ir.module.reference:0 +msgid "Object:" +msgstr "Αντικείμενο:" + +#. module: base +#: model:res.country,name:base.bw +msgid "Botswana" +msgstr "Botswana" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +msgid "Partner Titles" +msgstr "Τίτλοι Συνεργάτη" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "Υπηρεσία" + +#. module: base +#: help:ir.actions.act_window,auto_refresh:0 +msgid "Add an auto-refresh on the view" +msgstr "Add an auto-refresh on the view" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_download:0 +msgid "Modules to download" +msgstr "Modules to download" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_workitem_form +#: model:ir.ui.menu,name:base.menu_workflow_workitem +msgid "Workitems" +msgstr "" + +#. module: base +#: field:wizard.module.lang.export,advice:0 +msgid "Advice" +msgstr "Συμβουλή" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Lithuanian / Lietuvių kalba" +msgstr "Lithuanian / Lietuvių kalba" + +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." +msgstr "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Couldn't find tag '%s' in parent view !" +msgstr "" + +#. module: base +#: field:ir.ui.view,inherit_id:0 +msgid "Inherited View" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base +#: model:ir.model,name:base.model_ir_rule_group +msgid "ir.rule.group" +msgstr "ir.rule.group" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_install +#: model:ir.ui.menu,name:base.menu_module_tree_install +msgid "Installed modules" +msgstr "Installed modules" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The name_get method is not implemented on this object !" +msgstr "The name_get method is not implemented on this object !" + +#. module: base +#: model:res.country,name:base.lc +msgid "Saint Lucia" +msgstr "Saint Lucia" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +#: view:maintenance.contract:0 +msgid "Maintenance Contract" +msgstr "Συμβόλαιο Συντήρησης" + +#. module: base +#: help:ir.actions.server,trigger_obj_id:0 +msgid "Select the object from the model on which the workflow will executed." +msgstr "" + +#. module: base +#: field:ir.model,state:0 field:ir.model.fields,state:0 +#: field:ir.model.grid,state:0 +msgid "Manually Created" +msgstr "Δημιουργημένα από Χρήστη" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Calculate Count" + +#. module: base +#: field:ir.model.access,perm_create:0 +msgid "Create Access" +msgstr "Δημιουργία Πρόσβασης" + +#. module: base +#: field:res.partner.address,state_id:0 +msgid "Fed. State" +msgstr "Fed. State" + +#. module: base +#: model:res.country,name:base.io +msgid "British Indian Ocean Territory" +msgstr "British Indian Ocean Territory" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "Field Mapping" + +#. module: base +#: field:maintenance.contract,date_start:0 +msgid "Starting Date" +msgstr "Ημερ/νία Εκκίνησης" + +#. module: base +#: view:ir.model:0 field:ir.model.fields,ttype:0 +msgid "Field Type" +msgstr "Τύπος Πεδίου" + +#. module: base +#: field:res.country.state,code:0 +msgid "State Code" +msgstr "Κωδικός Περιοχής" + +#. module: base +#: field:ir.model.fields,on_delete:0 +msgid "On delete" +msgstr "On delete" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Left-to-Right" +msgstr "Left-to-Right" + +#. module: base +#: field:res.lang,translatable:0 +msgid "Translatable" +msgstr "Translatable" + +#. module: base +#: model:res.country,name:base.vn +msgid "Vietnam" +msgstr "Vietnam" + +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Υπογραφή" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not Implemented" +msgstr "Μη ενεργοποιημένο" + +#. module: base +#: field:res.partner.category,complete_name:0 +msgid "Full Name" +msgstr "Πλήρες Όνομα" + +#. module: base +#: model:res.country,name:base.mz +msgid "Mozambique" +msgstr "Mozambique" + +#. module: base +#: field:ir.actions.server,message:0 +#: wizard_field:res.partner.spam_send,init,text:0 +msgid "Message" +msgstr "Μήνυμα" + +#. module: base +#: field:ir.actions.act_window.view,multi:0 +msgid "On Multiple Doc." +msgstr "On Multiple Doc." + +#. module: base +#: field:res.partner,address:0 view:res.partner.address:0 +msgid "Contacts" +msgstr "Στοιχεία" + +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_upgrade +#: model:ir.ui.menu,name:base.menu_wizard_upgrade +msgid "Apply Scheduled Upgrades" +msgstr "Apply Scheduled Upgrades" + +#. module: base +#: model:ir.ui.menu,name:base.maintenance +msgid "Maintenance" +msgstr "Συντήρηση" + +#. module: base +#: model:res.country,name:base.mp +msgid "Northern Mariana Islands" +msgstr "Northern Mariana Islands" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "module,type,name,res_id,src,value" + +#. module: base +#: model:ir.ui.menu,name:base.menu_management +msgid "Modules Management" +msgstr "Διαχείριση Modules" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation_untrans +#: model:ir.ui.menu,name:base.menu_action_translation_untrans +msgid "Untranslated terms" +msgstr "Μη μεταφρασμένοι όροι" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "wizard.ir.model.menu.create" + +#. module: base +#: view:workflow.transition:0 +msgid "Transition" +msgstr "Ροή" + +#. module: base +#: field:ir.actions.todo,active:0 field:ir.cron,active:0 +#: field:ir.module.repository,active:0 field:ir.sequence,active:0 +#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 +#: field:res.partner,active:0 field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 field:res.request,active:0 +#: field:res.users,active:0 +msgid "Active" +msgstr "Ενεργό" + +#. module: base +#: model:res.country,name:base.na +msgid "Namibia" +msgstr "Namibia" + +#. module: base +#: model:res.country,name:base.mn +msgid "Mongolia" +msgstr "Mongolia" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Δημιουργημένα Μενού" + +#. module: base +#: view:res.partner.som:0 +msgid "Partner State of Mind" +msgstr "" + +#. module: base +#: selection:ir.ui.view,type:0 +msgid "mdx" +msgstr "" + +#. module: base +#: model:res.country,name:base.bi +msgid "Burundi" +msgstr "Burundi" + +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:module.upgrade,end,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:server.action.create,step_1,end:0 +#: view:wizard.module.lang.export:0 +msgid "Close" +msgstr "Κλείσιμο" + +#. module: base +#: model:res.country,name:base.bt +msgid "Bhutan" +msgstr "Bhutan" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +msgstr "Προμηθευτές Υφασμάτων" + +#. module: base +#: selection:ir.actions.url,target:0 +msgid "This Window" +msgstr "Αυτό το παράθυρο" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Μορφή Αρχείου" + +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "res.config.view" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "STOCK_INDENT" + +#. module: base +#: view:workflow.workitem:0 +msgid "Workflow Workitems" +msgstr "Λειτουργία επαφής" + +#. module: base +#: model:res.country,name:base.vc +msgid "Saint Vincent & Grenadines" +msgstr "Saint Vincent & Grenadines" + +#. module: base +#: field:ir.model.config,password:0 field:maintenance.contract,password:0 +#: field:maintenance.contract.wizard,password:0 +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:res.users,password:0 +msgid "Password" +msgstr "Password" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 +#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +msgid "Fields" +msgstr "Πεδία" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Module successfully imported !" #. module: base #: model:res.country,name:base.mk -msgid "FYROM" -msgstr "" +msgid "Macedonia" +msgstr "F.Y.R.O.M." + +#. module: base +#: field:res.company,rml_header2:0 +msgid "RML Internal Header" +msgstr "RML Internal Header" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "Α4" + +#. module: base +#: view:ir.rule.group:0 +msgid "Multiple rules on same objects are joined using operator OR" +msgstr "Multiple rules on same objects are joined using operator OR" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field +msgid "acc_number" +msgstr "acc_number" + +#. module: base +#: model:ir.ui.menu,name:base.menu_partner_address_form +msgid "Addresses" +msgstr "Διευθύνσεις" + +#. module: base +#: model:res.country,name:base.mm +msgid "Myanmar" +msgstr "Myanmar" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (CN) / 简体中文" +msgstr "Chinese (CN) / 简体中文" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_NEXT" +msgstr "STOCK_MEDIA_NEXT" + +#. module: base +#: field:res.bank,street:0 field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" +msgstr "Οδός" + +#. module: base +#: model:res.country,name:base.yu +msgid "Yugoslavia" +msgstr "Yugoslavia" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Note that this operation my take a few minutes." +msgstr "Η διαδικασία αυτή μπορεί να πάρει μερικά λεπτά." + +#. module: base +#: field:ir.model.data,name:0 +msgid "XML Identifier" +msgstr "XML Identifier" + +#. module: base +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "Canada" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Internal Name" +msgstr "Εσωτερικό όνομα" #. module: base -#: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 -msgid "To be removed" -msgstr "Για να αφαιρεθεί" +msgid "Unknown" +msgstr "Άγνωστο" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" +msgstr "Αλλαγή Προτιμήσεων" + +#. module: base +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "Swaziland" + +#. module: base +#: wizard_field:res.partner.sms_send,init,text:0 +msgid "SMS Message" +msgstr "Μήνυμα SMS" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_WARNING" -msgstr "" +msgid "STOCK_EDIT" +msgstr "STOCK_EDIT" #. module: base -#: model:res.country,name:base.lr -msgid "Liberia" -msgstr "" +#: model:res.country,name:base.cm +msgid "Cameroon" +msgstr "Cameroon" #. module: base -#: model:ir.actions.report.xml,name:base.ir_module_reference_print -msgid "Technical guide" -msgstr "Τεχνικός οδηγός" +#: model:res.country,name:base.bf +msgid "Burkina Faso" +msgstr "Burkina Faso" #. module: base -#: field:ir.server.object.lines,col1:0 -msgid "Destination" -msgstr "Προορισμός" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" +msgstr "STOCK_MEDIA_FORWARD" #. module: base -#: help:ir.values,res_id:0 -msgid "Keep 0 if the action must appear on all resources." -msgstr "" +#: selection:ir.actions.todo,state:0 +msgid "Skipped" +msgstr "Skipped" #. module: base -#: field:ir.cron,interval_type:0 -msgid "Interval Unit" +#: selection:ir.model.fields,state:0 +msgid "Custom Field" +msgstr "Ειδικό Πεδίο" + +#. module: base +#: model:res.country,name:base.cc +msgid "Cocos (Keeling) Islands" +msgstr "Cocos (Keeling) Islands" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "User ID" + +#. module: base +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" + +#. module: base +#: view:res.lang:0 +msgid "11. %U or %W ==> 48 (49th week)" +msgstr "11. %U or %W ==> 48 (49η εβδομάδα)" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "Πεδία τύπου Τραπεζών" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "type,name,res_id,src,value" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch / Nederlands" +msgstr "Dutch / Nederlands" + +#. module: base +#: wizard_view:server.action.create,step_1:0 +#: wizard_field:server.action.create,step_1,report:0 +msgid "Select Report" +msgstr "Επιλογή Αναφοράς" + +#. module: base +#: field:ir.report.custom.fields,fc1_condition:0 +#: field:ir.report.custom.fields,fc2_condition:0 +#: field:ir.report.custom.fields,fc3_condition:0 +msgid "condition" +msgstr "συνθήκη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE" +msgstr "STOCK_SAVE" + +#. module: base +#: rml:ir.module.reference:0 +msgid "1cm 28cm 20cm 28cm" +msgstr "1cm 28cm 20cm 28cm" + +#. module: base +#: field:ir.sequence,suffix:0 +msgid "Suffix" +msgstr "Πρόσφυμα" + +#. module: base +#: model:res.country,name:base.mo +msgid "Macau" +msgstr "Macau" + +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "Ετικέτες" + +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "Εmail αποστολέα" + +#. module: base +#: field:ir.default,field_name:0 +msgid "Object Field" +msgstr "Πεδίο Αντικειμένου" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Records were modified in the meanwhile" +msgstr "Οι εγγραφές έχουν τροποποιηθεί στο μεταξύ" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NEW" +msgstr "STOCK_NEW" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "None" +msgstr "Κανένα" + +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Report Fields" + +#. module: base +#: view:res.partner:0 +msgid "General" +msgstr "Γενικό" + +#. module: base +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" +msgstr "Δραστηριότητα προορισμού" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The name_search method is not implemented on this object !" +msgstr "The name_search method is not implemented on this object !" + +#. module: base +#: view:ir.values:0 +msgid "Connect Events to Actions" +msgstr "Σύνδεση Συνβάντων με Ενέργειες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" + +#. module: base +#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "Βασική κατηγορία" + +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" +msgstr "Finland" + +#. module: base +#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "Στοιχεία επικοινωνίας" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Uninstall" +msgstr "Cancel Uninstall" + +#. module: base +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "Ισοτιμία Νομίσματος" + +#. module: base +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Module %s: Invalid Quality Certificate" +msgstr "Module %s: Invalid Quality Certificate" + +#. module: base +#: model:res.country,name:base.kw +msgid "Kuwait" +msgstr "Kuwait" + +#. module: base +#: field:workflow.workitem,inst_id:0 +msgid "Instance" +msgstr "Instance" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." +msgstr "Το όνομα αρχείου που θα αποθηκευθεί το αποτέλεσμα της εκτύπωσης. Αφήστε το κενό αν δεν επιθυμείτε να αποθηκεύετε τις εκτυπώσεις αναφορών. Μπορείτε να χρησιμοποιήσετε μια έκφραση python με τις παραμέτρους object και time." + +#. module: base +#: model:res.country,name:base.ng +msgid "Nigeria" +msgstr "Nigeria" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "STOCK_UNDERLINE" + +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "Τιμές για τον Τύπο Συμβάντος" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "Always Searchable" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" + +#. module: base +#: model:res.country,name:base.hk +msgid "Hong Kong" +msgstr "Hong Kong" + +#. module: base +#: help:ir.actions.server,name:0 +msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONVERT" +msgid "STOCK_ZOOM_100" +msgstr "STOCK_ZOOM_100" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" +msgstr "STOCK_BOLD" + +#. module: base +#: model:res.country,name:base.ph +msgid "Philippines" +msgstr "Philippines" + +#. module: base +#: model:res.country,name:base.ma +msgid "Morocco" +msgstr "Morocco" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-graph" +msgstr "terp-graph" + +#. module: base +#: view:res.lang:0 +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "2. %a ,%A ==> Παρ, Παρασκευή" + +#. module: base +#: wizard_view:module.lang.install,start:0 +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 "Η επιλεγμένη γλώσσα εγκαταστάθηκε επιτυχώς. Πρέπει να αλλάξετε τις Προτιμήσεις του χρήστη και να ανοίξετε ένα νέο μενού για να δείτε τις αλλαγές." + +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 +msgid "Partner Events" +msgstr "Συμβάντα Συνεργάτη" + +#. module: base +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" + +#. module: base +#: view:res.lang:0 +msgid "%a - Abbreviated weekday name." +msgstr "%a - Συντομο όνομα ημέρας" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Introspection report on objects" +msgstr "Introspection report on objects" + +#. module: base +#: model:res.country,name:base.pf +msgid "Polynesia (French)" +msgstr "Polynesia (French)" + +#. module: base +#: field:res.company,name:0 +msgid "Company Name" +msgstr "Όνομα Εταιρείας" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +#: wizard_button:res.partner.sms_send,init,send:0 +msgid "Send SMS" +msgstr "Αποστολή SMS" + +#. module: base +#: model:res.country,name:base.np +msgid "Nepal" +msgstr "Nepal" + +#. module: base +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" +msgstr "iCal id" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +msgid "Partner Functions" +msgstr "Λειτουργίες Συνεργατών" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "Bulk SMS send" msgstr "" #. module: base -#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 -#: field:res.partner,comment:0 field:res.partner.function,ref:0 -msgid "Notes" -msgstr "Σημειώσεις" +#: view:res.lang:0 +msgid "%Y - Year with century as a decimal number." +msgstr "%Y - Το έτος (πλήρως)." #. module: base -#: model:ir.model,name:base.model_ir_rule -msgid "ir.rule" -msgstr "" +#: selection:ir.report.custom,type:0 +msgid "Pie Chart" +msgstr "Κυκλικό Διάγραμμα" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Days" -msgstr "Ημέρες" - -#. module: base -#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 field:ir.values,value:0 -#: field:ir.values,value_unpickle:0 -msgid "Value" -msgstr "Αξία" - -#. module: base -#: field:ir.actions.server,write_id:0 -msgid "Write Id" -msgstr "" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update Translations" -msgstr "Αναπροσαρμογή Μεταφράσεων" +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "Δευτερόλεπτο: %(sec)s" #. module: base #: selection:ir.translation,type:0 field:res.bank,code:0 @@ -3846,409 +4333,370 @@ msgid "Code" msgstr "Κωδικός" #. module: base -#: field:ir.report.custom.fields,width:0 -msgid "Fixed Width" -msgstr "Σταθερό πλάτος" - -#. module: base -#: view:ir.actions.server:0 -msgid "Other Actions Configuration" -msgstr "Άλλη διαμόρφωση ενεργειών" - -#. module: base -#: model:res.country,name:base.mc -msgid "Monaco" -msgstr "" - -#. module: base -#: field:res.company,rml_footer1:0 -msgid "Report Footer 1" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EXECUTE" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Minutes" -msgstr "Πρακτικά" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "The modules have been upgraded / installed !" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "odt" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,domain:0 -msgid "Domain Value" -msgstr "Αξία περιοχών" - -#. module: base -#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 -msgid "Help" -msgstr "Βοήθεια" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request_link-act -#: model:ir.ui.menu,name:base.menu_res_request_link_act -msgid "Accepted Links in Requests" -msgstr "Αποδεκτές συνδέσεις στα αιτήματα" - -#. module: base -#: field:ir.module.category,module_nr:0 -msgid "Number of Modules" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_YES" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "SMS Configuration" -msgstr "" - -#. module: base -#: view:ir.cron:0 -#, fuzzy -msgid "Technical Data" -msgstr "Τεχνικός οδηγός" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_canal-act -#: model:ir.model,name:base.model_res_partner_canal -#: model:ir.ui.menu,name:base.menu_res_partner_canal-act -msgid "Channels" -msgstr "Κανάλια" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_access_act -#: model:ir.ui.menu,name:base.menu_ir_access_act -msgid "Access Controls List" -msgstr "Κατάλογος ελέγχων προσπέλασης" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Write Object" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "draft" -msgstr "σχέδιο" - -#. module: base -#: model:res.country,name:base.kn -msgid "Saint Kitts & Nevis Anguilla" -msgstr "" - -#. module: base -#: help:ir.actions.server,condition:0 +#: code:addons/base/module/module.py:0 +#, python-format msgid "" -"Condition that is to be tested before action is executed, e.g. object." -"list_price > object.cost_price" +"Can not create the module file:\n" +" %s" +msgstr "" +"Can not create the module file:\n" +" %s" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +msgid "Update Modules List" +msgstr "Ενημέρωση Λίστας Modules" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" +msgstr "Συνέχεια" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +msgid "Default Properties" +msgstr "Προεπιλεγμένες Ιδιότητες" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Slovenian / slovenščina" +msgstr "Slovenian / slovenščina" + +#. module: base +#: field:ir.actions.report.xml,attachment_use:0 +msgid "Reload from Attachment" +msgstr "Επαναφόρτωση από συνημμένο" + +#. module: base +#: model:res.country,name:base.bv +msgid "Bouvet Island" +msgstr "Bouvet Island" + +#. module: base +#: field:ir.report.custom,print_orientation:0 +msgid "Print orientation" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Schedule for Installation" -msgstr "Σχέδιο για την εγκατάσταση" +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "Εξαγωγή Αρχείου Μετάφρασης" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" +#: field:ir.attachment,name:0 +msgid "Attachment Name" +msgstr "Όνομα Συνημμένου" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Προηγμένη αναζήτηση" +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "Αρχείο" + +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "Προσθήκη Χρήστη" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "ir.actions.configuration.wizard" #. module: base #: view:res.lang:0 -msgid "7. %H:%M:%S ==> 18:25:20" -msgstr "" +msgid "%b - Abbreviated month name." +msgstr "%b - Σύντομο όνομα μήνα." #. module: base -#: model:ir.actions.act_window,name:base.action_partner_form -#: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 -msgid "Partners" -msgstr "Συνεργάτες" - -#. module: base -#: help:ir.actions.server,message:0 -msgid "" -"Specify the message. You can use the fields from the object. e.g. `Dear " -"[[ object.partner_id.name ]]`" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "" - -#. module: base -#: field:res.partner.bank,state:0 -#: field:res.partner.bank.type.field,bank_type_id:0 -msgid "Bank Type" -msgstr "" - -#. module: base -#: field:ir.actions.server,trigger_name:0 -msgid "Trigger Name" -msgstr "Όνομα ώθησης" - -#. module: base -#: wizard_button:server.action.create,step_1,create:0 -msgid "Create" -msgstr "Δημιουργήστε" - -#. module: base -#: field:ir.exports,export_fields:0 -msgid "Export ID" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -msgstr "Προτείνουμε να ξαναφορτώσετε την ετικέττα επιλογών (Ctrl+t Ctrl+r)." - -#. module: base -#: view:res.request:0 -msgid "Send" -msgstr "Στείλετε" - -#. module: base -#: model:res.country,name:base.fr -msgid "France" -msgstr "" - -#. module: base -#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 -#: field:res.request,priority:0 field:res.request.link,priority:0 -msgid "Priority" -msgstr "Προτεραιότητα" - -#. module: base -#: field:ir.translation,src:0 -msgid "Source" -msgstr "Πηγή" - -#. module: base -#: help:res.partner.address,partner_id:0 -msgid "Keep empty for a private address, not related to partner." -msgstr "" - -#. module: base -#: field:workflow.activity,flow_start:0 -msgid "Flow Start" -msgstr "Έναρξη ροής" - -#. module: base -#: view:ir.sequence:0 -msgid "Legend (for prefix, suffix)" -msgstr "" - -#. module: base -#: field:workflow.activity,flow_stop:0 -msgid "Flow Stop" -msgstr "Στάση ροής" - -#. module: base -#: view:res.company:0 -msgid "Internal Header/Footer" -msgstr "Εσωτερική επιγραφή/υποσημείωση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_LEFT" -msgstr "" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank Account Owner" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_values_form -#: model:ir.ui.menu,name:base.menu_values_form -msgid "Client Actions Connections" -msgstr "" - -#. module: base -#: field:ir.ui.view,name:0 -msgid "View Name" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,resource:0 -msgid "Resource Name" -msgstr "Όνομα των πόρων" +#: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 +msgid "Supplier" +msgstr "Προμηθευτής" #. module: base #: view:ir.actions.server:0 selection:ir.actions.server,state:0 msgid "Multi Actions" -msgstr "" - -#. module: base -#: model:res.country,name:base.af -msgid "Afghanistan, Islamic State of" -msgstr "" - -#. module: base -#: field:res.partner.address,type:0 -msgid "Address Type" -msgstr "Τύπος διευθύνσεων" - -#. module: base -#: help:ir.actions.server,record_id:0 -msgid "" -"Provide the field name where the record id is stored after the create " -"operations. If it is empty, you can not track the new record." -msgstr "" - -#. module: base -#: view:res.company:0 view:res.partner:0 -msgid "General Information" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Auto" -msgstr "Αυτόματο" - -#. module: base -#: selection:ir.module.module,state:0 -msgid "Not Installable" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_window -#: model:ir.ui.menu,name:base.menu_ir_action_window -msgid "Window Actions" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_activity -msgid "workflow.activity" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,groupby:0 -msgid "Group By" -msgstr "" - -#. module: base -#: model:res.country,name:base.gp -msgid "Guadeloupe (French)" -msgstr "" - -#. module: base -#: field:ir.translation,value:0 -msgid "Translation Value" -msgstr "Αξία μεταφράσεων" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Catalan / Català" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "End of Request" -msgstr "Τέλος του αιτήματος" - -#. module: base -#: field:ir.report.custom.fields,cumulate:0 -msgid "Accumulate" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "References" -msgstr "Αναφορές" - -#. module: base -#: model:res.country,name:base.do -msgid "Dominican Republic" -msgstr "" - -#. module: base -#: view:res.lang:0 -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 "" - -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Note that this operation may take a few minutes." -msgstr "Σημειώστε ότι αυτή η λειτουργία μπορεί να πάρει λεπτά." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COLOR_PICKER" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-product" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "choose" -msgstr "" - -#. module: base -#: model:res.country,name:base.gh -msgid "Ghana" -msgstr "" - -#. module: base -#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 -msgid "Kind" -msgstr "Είδος" - -#. module: base -#: model:ir.model,name:base.model_ir_exports_line -msgid "ir.exports.line" -msgstr "" - -#. module: base -#: field:ir.cron,numbercall:0 -msgid "Number of Calls" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Manual" -msgstr "Χειρωνακτικός" +msgstr "Multi Actions" #. module: base #: view:maintenance.contract.wizard:0 -msgid "Could you check your contract information ?" +msgid "_Close" +msgstr "_Close" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Full" +msgstr "Πλήρες" + +#. module: base +#: model:res.country,name:base.as +msgid "American Samoa" +msgstr "American Samoa" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" +msgstr "Objects" + +#. module: base +#: view:res.request.link:0 +msgid "Request Link" msgstr "" #. module: base -#: model:res.country,name:base.hm -msgid "Heard and McDonald Islands" +#: field:ir.module.module,url:0 field:ir.module.repository,url:0 +msgid "URL" +msgstr "URL" + +#. module: base +#: help:res.country,name:0 +msgid "The full name of the country." +msgstr "Πλήρες όνομα χώρας." + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Iteration" +msgstr "Επανάληψη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" +msgstr "terp-stock" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "UserError" + +#. module: base +#: model:res.country,name:base.ae +msgid "United Arab Emirates" +msgstr "United Arab Emirates" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "STOCK_MEDIA_RECORD" + +#. module: base +#: model:res.country,name:base.re +msgid "Reunion (French)" +msgstr "Reunion (French)" + +#. module: base +#: field:ir.rule.group,global:0 +msgid "Global" +msgstr "Παγκόσμια" + +#. module: base +#: model:res.country,name:base.cz +msgid "Czech Republic" +msgstr "Czech Republic" + +#. module: base +#: model:res.country,name:base.sb +msgid "Solomon Islands" +msgstr "Solomon Islands" + +#. module: base +#: view:res.lang:0 +msgid "8. %I:%M:%S %p ==> 06:25:20 PM" +msgstr "8. %I:%M:%S %p ==> 06:25:20 μ.μ." + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "The copy method is not implemented on this object !" + +#. module: base +#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation +msgid "Translations" +msgstr "Μεταφράσεις" + +#. module: base +#: field:ir.sequence,padding:0 +msgid "Number padding" msgstr "" #. module: base -#: field:res.request,create_date:0 -msgid "Created Date" -msgstr "" +#: model:res.country,name:base.ua +msgid "Ukraine" +msgstr "Ukraine" + +#. module: base +#: model:res.country,name:base.to +msgid "Tonga" +msgstr "Tonga" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 +msgid "Module Category" +msgstr "Module Category" + +#. module: base +#: model:res.country,name:base.us +msgid "United States" +msgstr "USA" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "Οδηγός αναφοράς" + +#. module: base +#: model:res.country,name:base.ml +msgid "Mali" +msgstr "Mali" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" +msgstr "STOCK_UNINDENT" + +#. module: base +#: field:ir.cron,interval_number:0 +msgid "Interval Number" +msgstr "Interval Number" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Partial" +msgstr "Μερικό" + +#. module: base +#: model:res.country,name:base.tk +msgid "Tokelau" +msgstr "Tokelau" + +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +msgid "XSL path" +msgstr "XSL path" + +#. module: base +#: model:res.country,name:base.bn +msgid "Brunei Darussalam" +msgstr "Brunei Darussalam" + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +msgid "View Type" +msgstr "Τύπος Προβολής" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "User Interface" +msgstr "User Interface" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_INFO" +msgstr "STOCK_DIALOG_INFO" + +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "Ημερ/νία Δημιουργίας" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "ir.actions.todo" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "Get file" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "This function will check for new modules in the 'addons' path and on module repositories:" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_BACK" +msgstr "STOCK_GO_BACK" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 code:osv/orm.py:0 +#, python-format +msgid "AccessError" +msgstr "AccessError" + +#. module: base +#: model:res.country,name:base.dz +msgid "Algeria" +msgstr "Algeria" + +#. module: base +#: model:res.country,name:base.be +msgid "Belgium" +msgstr "Belgium" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "You cannot perform this operation." +msgstr "Δεν μπορείτε να εκτελέσετε αυτή τη λειτουργία." + +#. module: base +#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "Γλώσσα" + +#. module: base +#: model:res.country,name:base.gm +msgid "Gambia" +msgstr "Gambia" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 +msgid "Companies" +msgstr "Εταιρείες" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Not implemented get_memory method !" + +#. module: base +#: view:ir.actions.server:0 field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +msgid "Python Code" +msgstr "Python Code" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Can not create the module file: %s !" +msgstr "Can not create the module file: %s !" + +#. module: base +#: model:ir.module.module,description:base.module_meta_information +msgid "The kernel of OpenERP, needed for all installation." +msgstr "The kernel of OpenERP, needed for all installation." + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.ui.menu,name:base.menu_partner_customer_form +msgid "Customers Partners" +msgstr "Πελάτες" #. module: base #: wizard_button:base.module.import,init,end:0 @@ -4265,2125 +4713,24 @@ msgid "Cancel" msgstr "Ακύρωση" #. module: base -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "" +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify server option --smtp-from !" +msgstr "Please specify server option --smtp-from !" #. module: base -#: rml:ir.module.reference:0 -msgid "Directory" -msgstr "" - -#. module: base -#: field:res.partner.event,som:0 field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Line Plot" -msgstr "" - -#. module: base -#: field:wizard.ir.model.menu.create,name:0 -msgid "Menu Name" -msgstr "Όνομα επιλογών" - -#. module: base -#: help:res.partner,supplier:0 -msgid "" -"Check this box if the partner is a supplier. If it's not checked, purchase " -"people will not see it when encoding a purchase order." -msgstr "" - -#. module: base -#: field:ir.model.fields,relation_field:0 -msgid "Relation Field" -msgstr "" - -#. module: base -#: help:res.users,password:0 -msgid "" -"Keep empty if you don't want the user to be able to connect on the system." -msgstr "" - -#. module: base -#: field:ir.report.custom,title:0 -msgid "Report Title" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish / Español" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fontcolor:0 -msgid "Font color" -msgstr "Χρώμα πηγών" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (TW) / 正體字" -msgstr "" - -#. module: base -#: field:workflow.triggers,instance_id:0 -msgid "Destination Instance" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,multi:0 -msgid "Action on Multiple Doc." -msgstr "" +#: selection:wizard.module.lang.export,format:0 +msgid "PO File" +msgstr "Αρχείο PO" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_DESCENDING" -msgstr "" +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base -#: view:wizard.module.lang.export:0 -msgid "" -"The official translations pack of all OpenERP/OpenObjects module are managed " -"through launchpad. We use their online interface to synchronize all " -"translations efforts." -msgstr "" - -#. module: base -#: model:res.country,name:base.my -msgid "Malaysia" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_config -msgid "ir.model.config" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title -msgid "Titles" -msgstr "Τίτλοι" - -#. module: base -#: model:ir.model,name:base.model_res_request_history -msgid "res.request.history" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Client Action Configuration" -msgstr "" - -#. module: base -#: field:res.company,logo:0 -msgid "Logo" -msgstr "Λογότυπο" - -#. module: base -#: field:ir.actions.todo,start_date:0 -msgid "Start Date" -msgstr "Μέρα έναρξης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_address_form -#: model:ir.model,name:base.model_res_partner_address -#: model:ir.ui.menu,name:base.menu_partner_address_form -#: view:res.partner.address:0 -msgid "Partner Addresses" -msgstr "Διευθύνσεις συνεργατών" - -#. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "" - -#. module: base -#: field:ir.default,company_id:0 field:ir.property,company_id:0 -#: field:ir.values,company_id:0 view:res.company:0 -#: field:res.users,company_id:0 -msgid "Company" -msgstr "Εταιρεία" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PROPERTIES" -msgstr "" - -#. module: base -#: model:res.country,name:base.so -msgid "Somalia" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 -msgid "New Window" -msgstr "Νέο παράθυρο" - -#. module: base -#: model:res.country,name:base.gn -msgid "Guinea" -msgstr "" - -#. module: base -#: model:res.country,name:base.pa -msgid "Panama" -msgstr "" - -#. module: base -#: model:res.country,name:base.lu -msgid "Luxembourg" -msgstr "" - -#. module: base -#: model:res.country,name:base.cv -msgid "Cape Verde" -msgstr "" - -#. module: base -#: model:res.country,name:base.bs -msgid "Bahamas" -msgstr "" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Commercial Prospect" -msgstr "" - -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_step_user -msgid "" -"Create your users.\n" -"You will be able to assign groups to users. Groups define the access rights " -"of each users on the different objects of the system.\n" -" " -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NETWORK" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: base -#: model:res.country,name:base.ie -msgid "Ireland" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form_new -#: model:ir.ui.menu,name:base.menu_partner_customer_form_new -msgid "New Partner" -msgstr "" - -#. module: base -#: wizard_field:module.module.update,update,update:0 -msgid "Number of modules updated" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EDIT" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Skip Step" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_res_partner_event -#: field:res.partner,events:0 field:res.partner.event,name:0 -msgid "Events" -msgstr "Γεγονότα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles -#: model:ir.ui.menu,name:base.menu_action_res_roles -msgid "Roles Structure" -msgstr "" - -#. module: base -#: model:res.country,name:base.pn -msgid "Pitcairn Island" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 -msgid "ir.actions.url" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_STOP" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_id:0 -msgid "View Ref." -msgstr "Άποψη παρ." - -#. module: base -#: selection:ir.report.custom,state:0 -msgid "Unsubscribed" -msgstr "Διαγραμμένος από τη συνδρομή" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_event_type-act -#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act -msgid "Active Partner Events" -msgstr "" - -#. module: base -#: model:res.country,name:base.sv -msgid "El Salvador" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Portrait" -msgstr "Πορτραίτο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-graph" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_rule -#: model:ir.ui.menu,name:base.menu_action_rule -msgid "Record Rules" -msgstr "Κανόνες αρχείων" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_addess_tree -#: view:res.partner:0 -msgid "Partner Contacts" -msgstr "" - -#. module: base -#: wizard_field:module.module.update,update,add:0 -msgid "Number of modules added" -msgstr "" - -#. module: base -#: field:res.bank,phone:0 field:res.partner.address,phone:0 -msgid "Phone" -msgstr "Τηλέφωνο" - -#. module: base -#: view:ir.sequence:0 -msgid "Day of the year: %(doy)s" -msgstr "" - -#. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Ρόλος που απαιτείται" - -#. module: base -#: field:ir.actions.act_window,groups_id:0 -#: model:ir.actions.act_window,name:base.action_res_groups -#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 -#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 -#: view:res.users:0 field:res.users,groups_id:0 -msgid "Groups" -msgstr "Ομάδες" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "French / Français" -msgstr "" - -#. module: base -#: field:res.groups,menu_access:0 -msgid "Access Menu" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Δημιουργημένες επιλογές" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch (Belgium) / Nederlands (Belgïe)" -msgstr "" - -#. module: base -#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 -#: model:ir.ui.menu,name:base.next_id_15 -msgid "Properties" -msgstr "Ιδιότητες" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid ">" -msgstr ">" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ADD" -msgstr "" - -#. module: base -#: field:workflow.triggers,workitem_id:0 -msgid "Workitem" -msgstr "" - -#. module: base -#: model:res.country,name:base.ge -msgid "Georgia" -msgstr "" - -#. module: base -#: field:res.lang,thousands_sep:0 -msgid "Thousands Separator" -msgstr "" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry -msgid "country_id" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "" - -#. module: base -#: model:res.country,name:base.pl -msgid "Poland" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "" - -#. module: base -#: field:workflow.activity,signal_send:0 -msgid "Signal (subflow.*)" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ABOUT" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_OUT" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Selection" -msgstr "Επιλογή" - -#. module: base -#: field:ir.values,meta:0 -msgid "Meta Datas" -msgstr "" - -#. module: base -#: field:ir.model,name:0 field:ir.model.fields,model:0 -#: field:ir.model.grid,name:0 field:ir.values,model:0 -msgid "Object Name" -msgstr "" - -#. module: base -#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 selection:ir.values,key:0 -msgid "Action" -msgstr "Ενέργεια" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_wizard -#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard -msgid "Wizards" -msgstr "" - -#. module: base -#: field:ir.rule,domain_force:0 -msgid "Force Domain" -msgstr "" - -#. module: base -#: help:ir.actions.server,expression:0 -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 "" - -#. module: base -#: model:ir.model,name:base.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "And" -msgstr "και" - -#. module: base -#: field:ir.model.fields,relation:0 -msgid "Object Relation" -msgstr "Σχέση αντικειμένου" - -#. module: base -#: model:ir.actions.act_window,name:base.action_attachment -#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment -msgid "Attachments" -msgstr "Συνημμένα" - -#. module: base -#: field:res.request,act_to:0 field:res.request.history,act_to:0 -msgid "To" -msgstr "Προς" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Validate" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_wizard -msgid "maintenance.contract.wizard" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_COLOR" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT" -msgstr "" - -#. module: base -#: view:res.partner:0 -msgid "General" -msgstr "Γενικό" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NO" -msgstr "" - -#. module: base -#: field:res.company,rml_header1:0 -msgid "Report Header" -msgstr "Επιγραφή αναφοράς" - -#. module: base -#: field:ir.actions.server,child_ids:0 -msgid "Other Actions" -msgstr "Άλλες ενέργειες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-mrp" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Done" -msgstr "Έγινε" - -#. module: base -#: field:workflow.activity,out_transitions:0 -msgid "Outgoing Transitions" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Invoice" -msgstr "Τιμολόγιο" - -#. module: base -#: model:res.country,name:base.vi -msgid "Virgin Islands (USA)" -msgstr "" - -#. module: base -#: help:res.partner,vat:0 -msgid "" -"Value Added Tax number. Check the box if the partner is subjected to the " -"VAT. Used by the VAT legal statement." -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Μήνες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "" - -#. module: base -#: model:res.country,name:base.cy -msgid "Cyprus" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_write:0 -msgid "Write Access" -msgstr "" - -#. module: base -#: model:res.country,name:base.bb -msgid "Barbados" -msgstr "" - -#. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Μέγεθος" - -#. module: base -#: field:res.bank,city:0 field:res.partner,city:0 -#: field:res.partner.address,city:0 field:res.partner.bank,city:0 -msgid "City" -msgstr "Πόλη" - -#. module: base -#: model:res.country,name:base.mg -msgid "Madagascar" -msgstr "" - -#. module: base -#: model:res.country,name:base.it -msgid "Italy" -msgstr "" - -#. module: base -#: selection:ir.model,state:0 selection:ir.model.grid,state:0 -msgid "Custom Object" -msgstr "Παραμετροποιημένο αντικείμενο" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<>" -msgstr "<>" - -#. module: base -#: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 -msgid "Menu" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<=" -msgstr "<=" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export Data" -msgstr "" - -#. module: base -#: model:res.country,name:base.fm -msgid "Micronesia" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_som -msgid "res.partner.som" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Estonian / Eesti keel" -msgstr "" - -#. module: base -#: field:ir.module.module,menus_by_module:0 view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group or user" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_UP" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Action To Launch" -msgstr "" - -#. module: base -#: model:res.country,name:base.um -msgid "USA Minor Outlying Islands" -msgstr "" - -#. module: base -#: field:ir.actions.url,target:0 -msgid "Action Target" -msgstr "" - -#. module: base -#: field:ir.report.custom,field_parent:0 field:ir.ui.view,field_parent:0 -msgid "Child Field" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - -#. module: base -#: model:res.country,name:base.ai -msgid "Anguilla" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese / português" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3 or later version" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,usage:0 -#: field:ir.actions.act_window_close,usage:0 field:ir.actions.actions,usage:0 -#: field:ir.actions.report.custom,usage:0 field:ir.actions.report.xml,usage:0 -#: field:ir.actions.server,usage:0 field:ir.actions.wizard,usage:0 -msgid "Action Usage" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request -msgid "res.request" -msgstr "" - -#. module: base -#: model:res.country,name:base.il -msgid "Israel" -msgstr "" - -#. module: base -#: field:ir.model.config,password_check:0 -msgid "Confirmation" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REDO" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_server_action_create -msgid "Create Action" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_workitem -msgid "workflow.workitem" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,name:0 -msgid "Shortcut Name" -msgstr "" - -#. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Πιστωτικό όριο" - -#. module: base -#: model:res.country,name:base.pg -msgid "Papua New Guinea" -msgstr "" - -#. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - -#. module: base -#: field:ir.module.module,url:0 field:ir.module.repository,url:0 -msgid "URL" -msgstr "URL" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Turkish / Türkçe" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_model -#: model:ir.model,name:base.model_ir_model -#: model:ir.ui.menu,name:base.ir_model_model_menu -msgid "Objects" -msgstr "Αντικείμενα" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_export -msgid "Import / Export" -msgstr "" - -#. module: base -#: field:res.users,address_id:0 -msgid "Address" -msgstr "Διεύθυνση" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Your system will be upgraded." -msgstr "Το σύστημά σας θα αναβαθμιστεί." - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_user_form -#: view:res.users:0 -msgid "Configure User" -msgstr "" - -#. module: base -#: field:ir.report.custom,print_format:0 -msgid "Print format" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUMP_TO" -msgstr "" - -#. module: base -#: field:ir.actions.todo,end_date:0 -msgid "End Date" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-calendar" -msgstr "" - -#. module: base -#: field:ir.exports,resource:0 field:ir.property,res_id:0 -msgid "Resource" -msgstr "" - -#. module: base -#: field:ir.actions.server,email:0 -msgid "Email Address" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-tools" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_payterm_form -#: model:ir.model,name:base.model_res_payterm -msgid "Payment term" -msgstr "" - -#. module: base -#: view:ir.actions.report.xml:0 -msgid "Report xml" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_module_open_categ -#: model:ir.actions.act_window,name:base.open_module_tree -#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree -#: field:wizard.module.lang.export,modules:0 -msgid "Modules" -msgstr "" - -#. module: base -#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 -#: field:workflow.workitem,subflow_id:0 -msgid "Subflow" -msgstr "" - -#. module: base -#: help:ir.values,action_id:0 -msgid "This field is not used, it only helps you to select the right action." -msgstr "" - -#. module: base -#: model:res.country,name:base.tt -msgid "Trinidad and Tobago" -msgstr "" - -#. module: base -#: field:maintenance.contract,name:0 field:maintenance.contract.wizard,name:0 -msgid "Contract ID" -msgstr "" - -#. module: base -#: model:res.country,name:base.lv -msgid "Latvia" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Values" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_INFO" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_upgrade -#: model:ir.ui.menu,name:base.menu_wizard_upgrade -msgid "Apply Scheduled Upgrades" -msgstr "" - -#. module: base -#: view:workflow.activity:0 field:workflow.workitem,act_id:0 -msgid "Activity" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_bank_form -#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 -#: field:res.partner,bank_ids:0 -msgid "Banks" -msgstr "Τράπεζες" - -#. module: base -#: model:ir.model,name:base.model_res_config_view -msgid "res.config.view" -msgstr "" - -#. module: base -#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 -msgid "Shortcut" -msgstr "Συντόμευση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-sale" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mappings" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%d - Day of the month as a decimal number [01,31]." -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Romanian / limba română" -msgstr "" - -#. module: base -#: field:res.company,parent_id:0 -msgid "Parent Company" -msgstr "" - -#. module: base -#: field:ir.values,object:0 -msgid "Is Object" -msgstr "" - -#. module: base -#: field:ir.cron,doall:0 -msgid "Repeat Missed" -msgstr "" - -#. module: base -#: help:ir.actions.server,state:0 -msgid "Type of the Action that is to be executed" -msgstr "" - -#. module: base -#: field:ir.server.object.lines,server_id:0 -msgid "Object Mapping" -msgstr "" - -#. module: base -#: field:ir.module.module,published_version:0 -msgid "Published Version" -msgstr "Δημοσιευμένη έκδοση" - -#. module: base -#: help:res.currency,rate:0 help:res.currency.rate,rate:0 -msgid "The rate of the currency to the currency of rate 1" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_country_state -#: model:ir.ui.menu,name:base.menu_country_state_partner -#: field:maintenance.contract.wizard,state:0 -msgid "States" -msgstr "Κράτη" - -#. module: base -#: model:res.country,name:base.ug -msgid "Uganda" -msgstr "" - -#. module: base -#: field:res.currency.rate,rate:0 -msgid "Rate" -msgstr "Ποσοστό" - -#. module: base -#: model:res.country,name:base.cg -msgid "Congo" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Create / Write" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "Examples" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Customization" -msgstr "" - -#. module: base -#: help:res.partner.category,active:0 -msgid "The active field allows you to hide the category without removing it." -msgstr "" - -#. module: base -#: model:res.country,name:base.py -msgid "Paraguay" -msgstr "" - -#. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Προκαθορισμένη αξία" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Object:" -msgstr "" - -#. module: base -#: model:res.country,name:base.st -msgid "Saint Tome (Sao Tome) and Principe" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_country_state -msgid "Country state" -msgstr "Κράτος χώρας" - -#. module: base -#: model:res.country,name:base.bw -msgid "Botswana" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "left" -msgstr "αριστερό" - -#. module: base -#: field:ir.model.fields,readonly:0 -#: field:res.partner.bank.type.field,readonly:0 -msgid "Readonly" -msgstr "Μόνο για ανάγνωση" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_sc -msgid "ir.ui.view_sc" -msgstr "" - -#. module: base -#: view:ir.model:0 view:res.request:0 -msgid "Status" -msgstr "Θέση" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_xml -#: model:ir.ui.menu,name:base.menu_ir_action_report_xml -msgid "Report Xml" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_partner -#: model:ir.ui.menu,name:base.menu_partner_title_partner -#: view:res.partner.title:0 -msgid "Partner Titles" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Service" -msgstr "Υπηρεσία" - -#. module: base -#: field:ir.actions.report.xml,report_xml:0 -msgid "XML path" -msgstr "" - -#. module: base -#: help:ir.actions.act_window,auto_refresh:0 -msgid "Add an auto-refresh on the view" -msgstr "" - -#. module: base -#: model:res.country,name:base.lt -msgid "Lithuania" -msgstr "" - -#. module: base -#: selection:ir.model.fields,state:0 -msgid "Base Field" -msgstr "" - -#. module: base -#: field:ir.attachment,datas_fname:0 field:wizard.module.lang.export,name:0 -msgid "Filename" -msgstr "" - -#. module: base -#: field:ir.model,access_ids:0 field:ir.model.grid,access_ids:0 -msgid "Access" -msgstr "Πρόσβαση" - -#. module: base -#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 -msgid "Partner Ref." -msgstr "Εταιρική Αναφ." - -#. module: base -#: model:res.country,name:base.aw -msgid "Aruba" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_DOWN" -msgstr "" - -#. module: base -#: model:res.country,name:base.tw -msgid "Taiwan" -msgstr "" - -#. module: base -#: model:res.country,name:base.ar -msgid "Argentina" -msgstr "" - -#. module: base -#: help:res.partner,user_id:0 -msgid "" -"The internal user that is in charge of communicating with this partner if " -"any." -msgstr "" - -#. module: base -#: field:res.groups,name:0 -msgid "Group Name" -msgstr "Όνομα ομάδας" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_download:0 -msgid "Modules to download" -msgstr "" - -#. module: base -#: model:res.country,name:base.ch -msgid "Switzerland" -msgstr "" - -#. module: base -#: model:res.country,name:base.bh -msgid "Bahrain" -msgstr "" - -#. module: base -#: field:res.bank,fax:0 field:res.partner.address,fax:0 -msgid "Fax" -msgstr "" - -#. module: base -#: model:res.country,name:base.ye -msgid "Yemen" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_workitem_form -#: model:ir.ui.menu,name:base.menu_workflow_workitem -msgid "Workitems" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT_PREVIEW" -msgstr "" - -#. module: base -#: field:wizard.module.lang.export,advice:0 -msgid "Advice" -msgstr "" - -#. module: base -#: model:res.country,name:base.si -msgid "Slovenia" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_attachment -msgid "ir.attachment" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom_fields -msgid "ir.report.custom.fields" -msgstr "" - -#. module: base -#: model:res.country,name:base.uk -msgid "United Kingdom" -msgstr "" - -#. module: base -#: model:res.country,name:base.de -msgid "Germany" -msgstr "" - -#. module: base -#: help:ir.actions.server,srcmodel_id:0 -msgid "" -"Object in which you want to create / write the object. If it is empty then " -"refer to the Object field." -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "Not Installed" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Lithuanian / Lietuvių kalba" -msgstr "" - -#. module: base -#: field:res.users,action_id:0 -msgid "Home Action" -msgstr "" - -#. module: base -#: field:ir.ui.menu,icon:0 -msgid "Icon" -msgstr "Εικονίδιο" - -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_maintenance_contract_add -#: view:maintenance.contract.wizard:0 -msgid "Add Maintenance Contract" -msgstr "" - -#. module: base -#: wizard_button:module.lang.import,init,finish:0 -#: wizard_button:module.lang.install,start,end:0 -#: wizard_button:module.module.update,update,open_window:0 -msgid "Ok" -msgstr "" - -#. module: base -#: field:res.lang,grouping:0 -msgid "Separator Format" -msgstr "" - -#. module: base -#: model:res.country,name:base.pk -msgid "Pakistan" -msgstr "" - -#. module: base -#: field:ir.ui.view,inherit_id:0 -msgid "Inherited View" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_translation -msgid "ir.translation" -msgstr "" - -#. module: base -#: model:res.country,name:base.mq -msgid "Martinique (French)" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%p - Equivalent of either AM or PM." -msgstr "" - -#. module: base -#: field:ir.actions.act_window,limit:0 field:ir.report.custom,limitt:0 -msgid "Limit" -msgstr "Όριο" - -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Actions" -msgstr "" - -#. module: base -#: help:ir.actions.server,wkf_model_id:0 -msgid "Workflow to be executed on this model." -msgstr "" - -#. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "" - -#. module: base -#: model:res.country,name:base.sn -msgid "Senegal" -msgstr "" - -#. module: base -#: model:res.country,name:base.ws -msgid "Samoa" -msgstr "" - -#. module: base -#: model:res.country,name:base.nz -msgid "New Zealand" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND" -msgstr "" - -#. module: base -#: selection:workflow.activity,split_mode:0 -msgid "Or" -msgstr "ή" - -#. module: base -#: model:res.country,name:base.jm -msgid "Jamaica" -msgstr "" - -#. module: base -#: model:res.country,name:base.al -msgid "Albania" -msgstr "" - -#. module: base -#: field:maintenance.contract,date_stop:0 -msgid "Ending Date" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_uninstall -#: model:ir.ui.menu,name:base.menu_module_tree_uninstall -msgid "Uninstalled modules" -msgstr "Αποεγκατεστημένα αρθρώματα" - -#. module: base -#: model:res.country,name:base.nf -msgid "Norfolk Island" -msgstr "" - -#. module: base -#: model:res.country,name:base.kz -msgid "Kazakhstan" -msgstr "" - -#. module: base -#: model:res.country,name:base.az -msgid "Azerbaijan" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_install -#: model:ir.ui.menu,name:base.menu_module_tree_install -msgid "Installed modules" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_form -#: model:ir.ui.menu,name:base.menu_maintenance_contract -msgid "Your Maintenance Contracts" -msgstr "" - -#. module: base -#: field:ir.ui.menu,child_id:0 -msgid "Child IDs" -msgstr "" - -#. module: base -#: model:res.country,name:base.ae -msgid "United Arab Emirates" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 view:ir.module.module:0 -#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 -msgid "Module" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Arabic / الْعَرَبيّة" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "" - -#. module: base -#: model:res.country,name:base.gi -msgid "Gibraltar" -msgstr "" - -#. module: base -#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 -msgid "Client Action" -msgstr "" - -#. module: base -#: model:res.country,name:base.vg -msgid "Virgin Islands (British)" -msgstr "" - -#. module: base -#: model:res.country,name:base.bd -msgid "Bangladesh" -msgstr "" - -#. module: base -#: field:workflow.transition,signal:0 -msgid "Signal (button Name)" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Defined Reports" -msgstr "" - -#. module: base -#: constraint:res.company:0 -msgid "Error! You can not create recursive companies." -msgstr "" - -#. module: base -#: model:res.country,name:base.fj -msgid "Fiji" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Czech / Čeština" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_menu -msgid "ir.ui.menu" -msgstr "" - -#. module: base -#: field:ir.actions.server,loop_action:0 -msgid "Loop Action" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 -msgid "Version" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract -#: view:maintenance.contract:0 -msgid "Maintenance Contract" -msgstr "" - -#. module: base -#: help:ir.actions.server,trigger_obj_id:0 -msgid "Select the object from the model on which the workflow will executed." -msgstr "" - -#. module: base -#: model:res.country,name:base.la -msgid "Laos" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Sum" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Day of the week (0:Monday): %(weekday)s" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Email" -msgstr "" - -#. module: base -#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 -msgid "Channel" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_create:0 -msgid "Create Access" -msgstr "" - -#. module: base -#: help:ir.actions.server,mobile:0 -msgid "" -"Provides fields that be used to fetch the mobile number, e.g. you select the " -"invoice, then `object.invoice_address_id.mobile` is the field which gives " -"the correct mobile number" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_other_form -#: model:ir.ui.menu,name:base.menu_partner_other_form -msgid "Others Partners" -msgstr "" - -#. module: base -#: field:ir.model.data,noupdate:0 -msgid "Non Updatable" -msgstr "" - -#. module: base -#: model:res.country,name:base.cu -msgid "Cuba" -msgstr "" - -#. module: base -#: field:res.partner.address,state_id:0 -msgid "Fed. State" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%S - Second as a decimal number [00,61]." -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Action Source" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "get" -msgstr "" - -#. module: base -#: model:res.country,name:base.yt -msgid "Mayotte" -msgstr "" - -#. module: base -#: model:res.country,name:base.ro -msgid "Romania" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%w - Weekday as a decimal number [0(Sunday),6]." -msgstr "" - -#. module: base -#: model:res.country,name:base.am -msgid "Armenia" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 -#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields -#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 -#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 -#: model:ir.ui.menu,name:base.ir_model_model_fields -msgid "Fields" -msgstr "Πεδία" - -#. module: base -#: model:ir.ui.menu,name:base.menu_base_config -#: model:ir.ui.menu,name:base.menu_config view:res.company:0 -msgid "Configuration" -msgstr "Διαμόρφωση" - -#. module: base -#: field:maintenance.contract,date_start:0 -msgid "Starting Date" -msgstr "" - -#. module: base -#: view:ir.model:0 field:ir.model.fields,ttype:0 -msgid "Field Type" -msgstr "Τύπος πεδίων " - -#. module: base -#: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 -msgid "Complete Name" -msgstr "Πλήρες όνομα" - -#. module: base -#: field:res.country.state,code:0 -msgid "State Code" -msgstr "" - -#. module: base -#: field:ir.model.fields,on_delete:0 -msgid "On delete" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "Reply" -msgstr "Απάντηση" - -#. module: base -#: field:ir.cron,function:0 field:res.partner.address,function:0 -#: selection:workflow.activity,kind:0 -msgid "Function" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year with century: %(year)s" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Cancel" -msgstr "" - -#. module: base -#: view:ir.report.custom:0 -msgid "Subscribe Report" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 -msgid "in" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-report" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_form -#: model:ir.ui.menu,name:base.menu_workflow -msgid "Workflows" -msgstr "" - -#. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Original View" -msgstr "" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Left-to-Right" -msgstr "" - -#. module: base -#: help:ir.actions.wizard,multi:0 -msgid "" -"If set to true, the wizard will not be displayed on the right toolbar of a " -"form view." -msgstr "" - -#. module: base -#: field:res.lang,translatable:0 -msgid "Translatable" -msgstr "Μεταφράσιμο " - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Daily" -msgstr "Καθημερινά" - -#. module: base -#: view:res.lang:0 -msgid "3. %x ,%X ==> 12/05/08, 18:25:20" -msgstr "" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Cascade" -msgstr "" - -#. module: base -#: model:res.country,name:base.se -msgid "Sweden" -msgstr "" - -#. module: base -#: model:res.country,name:base.au -msgid "Australia" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard View" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Gantt" -msgstr "" - -#. module: base -#: view:ir.property:0 -msgid "Property" -msgstr "Ιδιοκτησία" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type -#: view:res.partner.bank.type:0 -msgid "Bank Account Type" -msgstr "" - -#. module: base -#: field:res.partner.category,complete_name:0 -msgid "Full Name" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-project" -msgstr "" - -#. module: base -#: field:res.groups,comment:0 -msgid "Comment" -msgstr "Σχόλιο" - -#. module: base -#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 -#: field:res.partner.title,domain:0 -msgid "Domain" -msgstr "Τομέας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PREFERENCES" -msgstr "" - -#. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 -msgid "Subject" -msgstr "Θέμα" - -#. module: base -#: view:res.lang:0 -msgid "%X - Appropriate time representation." -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Action Configuration" -msgstr "" - -#. module: base -#: model:res.country,name:base.qa -msgid "Qatar" -msgstr "" - -#. module: base -#: view:res.company:0 -msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "" - -#. module: base -#: help:res.lang,grouping:0 -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 "" - -#. module: base -#: model:res.country,name:base.at -msgid "Austria" -msgstr "" - -#. module: base -#: model:res.country,name:base.mz -msgid "Mozambique" -msgstr "" - -#. module: base -#: model:res.country,name:base.tv -msgid "Tuvalu" -msgstr "" - -#. module: base -#: field:workflow.activity,join_mode:0 -msgid "Join Mode" -msgstr "" - -#. module: base -#: model:res.country,name:base.jp -msgid "Japan" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Calendar" -msgstr "Ημερολόγιο" - -#. module: base -#: field:ir.actions.act_window.view,multi:0 -msgid "On Multiple Doc." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_LAST" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Button" -msgstr "" - -#. module: base -#: model:res.country,name:base.nl -msgid "Netherlands" -msgstr "" - -#. module: base -#: field:res.partner,address:0 view:res.partner.address:0 -msgid "Contacts" -msgstr "Επαφές" - -#. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Graph" -msgstr "" - -#. module: base -#: field:ir.module.module,installed_version:0 -msgid "Latest version" -msgstr "Πιό πρόσφατη έκδοση" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_server -msgid "ir.actions.server" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_company -msgid "res.company" -msgstr "" - -#. module: base -#: wizard_button:module.lang.install,init,start:0 -msgid "Start installation" -msgstr "'Εναρξη Εγκατάστασης" - -#. module: base -#: selection:res.request,state:0 -msgid "closed" -msgstr "κλειστό" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -msgid "Module dependency" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "right" -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Draft" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND_MULTIPLE" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.maintenance -msgid "Maintenance" -msgstr "" - -#. module: base -#: model:res.country,name:base.sj -msgid "Svalbard and Jan Mayen Islands" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Choose Your Mode" -msgstr "" - -#. module: base -#: view:ir.actions.report.custom:0 -msgid "Report custom" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OPEN" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 field:workflow.activity,action_id:0 -msgid "Server Action" -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 -msgid "Login" -msgstr "" - -#. module: base -#: model:res.country,name:base.mp -msgid "Northern Mariana Islands" -msgstr "" - -#. module: base -#: model:res.country,name:base.by -msgid "Belarus" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 -#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 -#: field:ir.actions.url,name:0 -msgid "Action Name" -msgstr "" - -#. module: base -#: field:ir.actions.configuration.wizard,progress:0 -msgid "Configuration Progress" -msgstr "" - -#. module: base -#: field:res.company,rml_footer2:0 -msgid "Report Footer 2" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_11 -msgid "Configuration Wizards" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_view -msgid "ir.actions.act_window.view" -msgstr "" - -#. module: base -#: field:res.bank,street2:0 field:res.partner.address,street2:0 -msgid "Street2" -msgstr "" - -#. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_localisation -msgid "Localisation" -msgstr "" - -#. module: base -#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 -msgid "Dependencies" -msgstr "" - -#. module: base -#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 -#: view:res.users:0 -msgid "User" -msgstr "Χρήστης" - -#. module: base -#: view:ir.actions.server:0 -msgid "Action to Launch" -msgstr "" - -#. module: base -#: model:res.country,name:base.pr -msgid "Puerto Rico" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REVERT_TO_SAVED" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Uninstall (beta)" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_RIGHT" -msgstr "" - -#. module: base -#: model:res.country,name:base.lc -msgid "Saint Lucia" -msgstr "" - -#. module: base -#: field:ir.actions.server,condition:0 -#: field:ir.report.custom.fields,fc0_condition:0 -#: field:workflow.transition,condition:0 -msgid "Condition" -msgstr "Όρος" - -#. module: base -#: help:ir.values,model_id:0 -msgid "This field is not used, it only helps you to select a good model." -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,bgcolor:0 -msgid "Background Color" -msgstr "Χρώμα υποβάθρου" - -#. module: base -#: view:ir.rule:0 -msgid "Simple domain setup" -msgstr "Απλή οργάνωση περιοχών" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation_untrans -#: model:ir.ui.menu,name:base.menu_action_translation_untrans -msgid "Untranslated terms" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "" -"If you use a formula type, use a python expression using the variable " -"'object'." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Italian / Italiano" -msgstr "" - -#. module: base -#: wizard_button:base.module.import,init,import:0 -#: model:ir.actions.wizard,name:base.wizard_base_module_import -#: model:ir.ui.menu,name:base.menu_wizard_module_import -msgid "Import module" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" msgstr "" #. module: base @@ -6397,554 +4744,954 @@ msgid "Users" msgstr "Χρήστες" #. module: base -#: view:workflow.transition:0 -msgid "Transition" +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "Δημοσιοποιημένη Έκδοση" + +#. module: base +#: model:res.country,name:base.is +msgid "Iceland" +msgstr "Iceland" + +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "Οι ρόλοι χρησιμοποιούνται σε καθορισμένες ενέργειες που προκύπτουν από τις ροές εργασίας." + +#. module: base +#: model:res.country,name:base.de +msgid "Germany" +msgstr "Germany" + +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "Week of the year: %(woy)s" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "Κακοί πελάτες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "STOCK_HARDDISK" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "Αναφορές:" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "STOCK_APPLY" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Your Maintenance Contracts" +msgstr "Συμβόλαια Συντήρησης" + +#. module: base +#: view:res.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "Για να αλλαχθεί το password σας θα πρέπει να αποσυνδεθείτε και να επανασυνδεθείτε στο σύστημα." + +#. module: base +#: model:res.country,name:base.gy +msgid "Guyana" +msgstr "Guyana" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "GPL-3" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2" +msgstr "GPL-2" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese (BR) / português (BR)" +msgstr "Portugese (BR) / português (BR)" + +#. module: base +#: field:ir.actions.server,record_id:0 +msgid "Create Id" +msgstr "Create Id" + +#. module: base +#: model:res.country,name:base.hn +msgid "Honduras" +msgstr "Honduras" + +#. module: base +#: model:res.country,name:base.eg +msgid "Egypt" +msgstr "Egypt" + +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "Select the object on which the action will work (read, write, create)." +msgstr "Select the object on which the action will work (read, write, create)." + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "Περιγραφή Πεδίων" + +#. module: base +#: code:tools/translate.py:0 +#, python-format +msgid "Bad file format" +msgstr "Μορφή αρχείου εσφαλμένη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" +msgstr "STOCK_CDROM" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "Readonly" + +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "Τύπος Συμβάντος" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "Τύποι Αρίθμησης" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be installed" +msgstr "To be installed" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_meta_information +msgid "Base" +msgstr "Βάση" + +#. module: base +#: model:res.country,name:base.lr +msgid "Liberia" +msgstr "Liberia" + +#. module: base +#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 +#: field:res.partner,comment:0 field:res.partner.function,ref:0 +msgid "Notes" +msgstr "Σημειώσεις" + +#. module: base +#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "Τιμή" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "Ανανέωση Μεταφράσεων" + +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Set" + +#. module: base +#: model:res.country,name:base.mc +msgid "Monaco" +msgstr "Monaco" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "Λεπτά" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "The modules have been upgraded / installed !" +msgstr "The modules have been upgraded / installed !" + +#. module: base +#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 +msgid "Help" +msgstr "Βοήθεια" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: base +#: code:tools/amount_to_text_en.py:0 +#, python-format +msgid "Number too large '%d', can not translate it" +msgstr "ΠΟλύ μεγάλος αριθμός '%d', δε μεταφράζεται" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "Δημιουργήστε" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export ID" +msgstr "Export ID" + +#. module: base +#: model:res.country,name:base.fr +msgid "France" +msgstr "France" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" +msgstr "Στάση ροής" + +#. module: base +#: model:res.country,name:base.ar +msgid "Argentina" +msgstr "Argentina" + +#. module: base +#: model:res.country,name:base.af +msgid "Afghanistan, Islamic State of" +msgstr "Afghanistan, Islamic State of" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Error !" +msgstr "Σφάλμα!" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry +msgid "country_id" +msgstr "country_id" + +#. module: base +#: field:ir.report.custom,frequency:0 +msgid "Frequency" +msgstr "Συχνότητα" + +#. module: base +#: field:ir.cron,interval_type:0 +msgid "Interval Unit" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_translation_app -msgid "Application Terms" -msgstr "Όροι εφαρμογής" +#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 +msgid "Kind" +msgstr "Είδος" #. module: base -#: field:res.partner.address,birthdate:0 -msgid "Birthdate" -msgstr "Ημερομηνία γεννήσεως" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "This method does not exist anymore" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_contact -#: model:ir.ui.menu,name:base.menu_partner_title_contact -msgid "Contact Titles" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "Manual" + +#. module: base +#: field:res.bank,fax:0 field:res.partner.address,fax:0 +msgid "Fax" +msgstr "Fax" + +#. module: base +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "Διαχωριστής Χιλιάδων" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created Date" +msgstr "Ημερ/νία Δημιουργίας" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Line Plot" +msgstr "Γραμμικό Διάγραμμα" + +#. module: base +#: help:ir.actions.server,loop_action:0 +msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." +msgstr "Select the action that will be executed. Loop action will not be avaliable inside loop." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (TW) / 正體字" +msgstr "Chinese (TW) / 正體字" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_UP" +msgstr "STOCK_GO_UP" + +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" +msgstr "res.request" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "pdf" + +#. module: base +#: field:ir.default,company_id:0 field:ir.property,company_id:0 +#: field:ir.values,company_id:0 view:res.company:0 +#: field:res.users,company_id:0 +msgid "Company" +msgstr "Εταιρεία" + +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "Περιεχόμενα Φακέλου" + +#. module: base +#: model:res.country,name:base.pa +msgid "Panama" +msgstr "Panama" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "Μη καταχωρημένο" + +#. module: base +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Προεπισκόπηση" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Skip Step" +msgstr "Παράλειψη Βήματος" + +#. module: base +#: model:res.country,name:base.pn +msgid "Pitcairn Island" +msgstr "Pitcairn Island" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +msgid "Active Partner Events" +msgstr "Ενεργά Συμβάντα Συνεργάτη" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" +msgstr "Record Rules" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +msgstr "Ημέρα του χρόνου: %(day)s" + +#. module: base +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Ουδέτερη Ζώνη" + +#. module: base +#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 +#: model:ir.ui.menu,name:base.next_id_15 +msgid "Properties" +msgstr "Ιδιότητες" + +#. module: base +#: view:res.lang:0 +msgid "%A - Full weekday name." +msgstr "%A - Πλήρες όνομα ημέρας εβδομάδας" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Μήνες" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "Επιλογή" + +#. module: base +#: field:ir.rule,domain_force:0 +msgid "Force Domain" +msgstr "Force Domain" + +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment +msgid "Attachments" +msgstr "Συνημμένα" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Validate" +msgstr "_Validate" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_wizard +msgid "maintenance.contract.wizard" +msgstr "maintenance.contract.wizard" + +#. module: base +#: field:ir.actions.server,child_ids:0 +msgid "Other Actions" +msgstr "Άλλες Ενέργειες" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "Ολοκληρωμένο" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" +msgstr "Επικυρωμένο" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Δίδα" + +#. module: base +#: field:ir.model.access,perm_write:0 +msgid "Write Access" +msgstr "Δικαίωμα Εγγραφής" + +#. module: base +#: field:res.bank,city:0 field:res.partner,city:0 +#: field:res.partner.address,city:0 field:res.partner.bank,city:0 +msgid "City" +msgstr "Πόλη" + +#. module: base +#: model:res.country,name:base.qa +msgid "Qatar" +msgstr "Qatar" + +#. module: base +#: model:res.country,name:base.it +msgid "Italy" +msgstr "Italy" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "<>" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" +msgstr "<=" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Estonian / Eesti keel" +msgstr "Estonian / Eesti keel" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese / português" +msgstr "Portugese / português" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "GPL-3 or later version" + +#. module: base +#: field:workflow.activity,action:0 +msgid "Python Action" +msgstr "Python Action" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Unknown position in inherited view %s !" +msgstr "Unknown position in inherited view %s !" + +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Πιθανότητα (0,50)" + +#. module: base +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" +msgstr "Repeat Header" + +#. module: base +#: field:res.users,address_id:0 +msgid "Address" +msgstr "Διεύθυνση" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Installed version" +msgstr "Εγκατεστημένη Έκδοση" + +#. module: base +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflow Definitions" +msgstr "Ορισμοί Ροών Εργασίας" + +#. module: base +#: model:res.country,name:base.mr +msgid "Mauritania" +msgstr "Μαυριτανία" + +#. module: base +#: view:workflow.activity:0 field:workflow.workitem,act_id:0 +msgid "Activity" +msgstr "Activity" + +#. module: base +#: field:res.company,parent_id:0 +msgid "Parent Company" +msgstr "Μητρική Εταιρεία" + +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "Ποσοστό" + +#. module: base +#: model:res.country,name:base.cg +msgid "Congo" +msgstr "Congo" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" +msgstr "ir.exports.line" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "STOCK_MEDIA_PAUSE" + +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "Νομός" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "Όλες οι ιδιότητες" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_window +#: model:ir.ui.menu,name:base.menu_ir_action_window +msgid "Window Actions" +msgstr "Ενέργειες Παραθύρου" + +#. module: base +#: model:res.country,name:base.kn +msgid "Saint Kitts & Nevis Anguilla" +msgstr "Saint Kitts & Nevis Anguilla" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HOME" +msgstr "STOCK_HOME" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" +msgstr "ir.sequence" + +#. module: base +#: help:ir.actions.server,srcmodel_id:0 +msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." +msgstr "Object in which you want to create / write the object. If it is empty then refer to the Object field." + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Not Installed" +msgstr "Not Installed" + +#. module: base +#: field:workflow.activity,out_transitions:0 +msgid "Outgoing Transitions" +msgstr "Εκροές" + +#. module: base +#: field:ir.ui.menu,icon:0 +msgid "Icon" +msgstr "Εικονίδιο" + +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +msgid "Ok" +msgstr "ΟΚ" + +#. module: base +#: model:res.country,name:base.mq +msgid "Martinique (French)" +msgstr "Martinique (French)" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 +msgid "Requests" +msgstr "Αιτήσεις" + +#. module: base +#: model:res.country,name:base.ye +msgid "Yemen" +msgstr "Yemen" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "Or" + +#. module: base +#: model:res.country,name:base.pk +msgid "Pakistan" +msgstr "Pakistan" + +#. module: base +#: model:res.country,name:base.al +msgid "Albania" +msgstr "Albania" + +#. module: base +#: model:res.country,name:base.ws +msgid "Samoa" +msgstr "Samoa" + +#. module: base +#: field:ir.ui.menu,child_id:0 +msgid "Child IDs" +msgstr "Child IDs" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Problem in configuration `Record Id` in Server Action!" +msgstr "Problem in configuration `Record Id` in Server Action!" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "ValidateError" +msgstr "ValidateError" + +#. module: base +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +msgid "Import module" +msgstr "Import module" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "STOCK_DISCONNECT" + +#. module: base +#: model:res.country,name:base.la +msgid "Laos" +msgstr "Laos" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Email" +msgstr "Email" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Resynchronise Terms" +msgstr "Ανασυγχρονισμός Όρων" + +#. module: base +#: model:res.country,name:base.tg +msgid "Togo" +msgstr "Togo" + +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "Όλα Stop" + +#. module: base +#: view:res.lang:0 +msgid "3. %x ,%X ==> 12/05/08, 18:25:20" +msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Cascade" msgstr "" +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Field %d should be a figure" +msgstr "Το πεδίο %d πρέπει να έιναι αριθμός" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "Επόμενο Βήμα Ρυθμίσεων" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "Σχόλιο" + +#. module: base +#: model:res.country,name:base.ro +msgid "Romania" +msgstr "Romania" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "STOCK_PREFERENCES" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "Όνομα Νομού" + +#. module: base +#: field:workflow.activity,join_mode:0 +msgid "Join Mode" +msgstr "Πλήρες Mode" + +#. module: base +#: field:res.users,context_tz:0 +msgid "Timezone" +msgstr "Ζώνη Ώρας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" +msgstr "STOCK_GOTO_LAST" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" +msgstr "ir.actions.report.xml" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." +msgstr "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "Start installation" + +#. module: base +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." +msgstr "Σφάλμα! Υπάρχει ήδη ίδια περιγραφή συνδεδεμένου μέλους." + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "Συνεργάτες OpenERP" + +#. module: base +#: model:res.country,name:base.by +msgid "Belarus" +msgstr "Belarus / Λευκορωσία" + +#. module: base +#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 +#: field:ir.actions.url,name:0 +msgid "Action Name" +msgstr "Όνομα Ενέργειας" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "Κανονικό" + +#. module: base +#: field:res.bank,street2:0 field:res.partner.address,street2:0 +msgid "Street2" +msgstr "Οδός 2" + +#. module: base +#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "Χρήστης" + +#. module: base +#: model:res.country,name:base.pr +msgid "Puerto Rico" +msgstr "Puerto Rico" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Άνοιγμα Παραθύρου" + #. module: base #: field:ir.module.repository,filter:0 msgid "Filter" msgstr "Φίλτρο" #. module: base -#: field:ir.actions.todo,active:0 field:ir.cron,active:0 -#: field:ir.module.repository,active:0 field:ir.sequence,active:0 -#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 -#: field:res.partner,active:0 field:res.partner.address,active:0 -#: field:res.partner.canal,active:0 field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 field:res.request,active:0 -#: field:res.users,active:0 -msgid "Active" -msgstr "Ενεργός" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Polish / Język polski" -msgstr "" - -#. module: base -#: model:res.country,name:base.hr -msgid "Croatia" -msgstr "" - -#. module: base -#: model:res.country,name:base.mn -msgid "Mongolia" -msgstr "" - -#. module: base -#: field:ir.actions.server,mobile:0 -msgid "Mobile No" -msgstr "" - -#. module: base -#: model:res.country,name:base.th -msgid "Thailand" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_by_category -#: model:ir.actions.act_window,name:base.action_partner_category_form -#: model:ir.model,name:base.model_res_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_form -#: view:res.partner.category:0 -msgid "Partner Categories" -msgstr "" +#: model:res.country,name:base.ch +msgid "Switzerland" +msgstr "Switzerland / Ελβετία" #. module: base #: model:res.country,name:base.gd msgid "Grenada" -msgstr "" +msgstr "Grenada" #. module: base -#: field:ir.sequence,code:0 field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a5" -msgstr "" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Trigger Configuration" #. module: base #: selection:server.action.create,init,type:0 msgid "Open Report" -msgstr "" +msgstr "Ανοικτή Αναφορά" #. module: base #: field:res.currency,rounding:0 msgid "Rounding factor" -msgstr "" +msgstr "Παράγοντας στρογγυλοποίησης" #. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Field" -msgstr "" - -#. module: base -#: model:res.country,name:base.bz -msgid "Belize" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" -msgstr "" - -#. module: base -#: field:ir.model.fields,select_level:0 -msgid "Searchable" -msgstr "" - -#. module: base -#: model:res.country,name:base.uy -msgid "Uruguay" -msgstr "" - -#. module: base -#: view:res.partner.event:0 -msgid "Document Link" -msgstr "" - -#. module: base -#: view:res.partner.som:0 -msgid "Partner State of Mind" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank view:res.partner.bank:0 -msgid "Bank Accounts" -msgstr "" - -#. module: base -#: selection:ir.ui.view,type:0 -msgid "mdx" -msgstr "" - -#. module: base -#: model:res.country,name:base.sl -msgid "Sierra Leone" -msgstr "" - -#. module: base -#: model:res.country,name:base.eg -msgid "Egypt" -msgstr "" - -#. module: base -#: field:ir.sequence,prefix:0 -msgid "Prefix" -msgstr "" - -#. module: base -#: model:res.country,name:base.rw -msgid "Rwanda" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "German / Deutsch" -msgstr "" - -#. module: base -#: help:ir.actions.server,trigger_name:0 -msgid "Select the Signal name that is to be used as the trigger." -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Fields Mapping" -msgstr "" - -#. module: base -#: model:res.country,name:base.bi -msgid "Burundi" -msgstr "" - -#. module: base -#: wizard_button:base.module.import,import,open_window:0 -#: wizard_button:module.upgrade,end,end:0 -#: wizard_button:module.upgrade,start,end:0 -#: wizard_button:server.action.create,init,end:0 -#: wizard_button:server.action.create,step_1,end:0 -#: view:wizard.module.lang.export:0 -msgid "Close" -msgstr "" - -#. module: base -#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 -msgid "Sequence Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.tc -msgid "Turks and Caicos Islands" -msgstr "" +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "res.company" #. module: base #: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 msgid "System upgrade done" -msgstr "Έγινα Βελτίωση συστημάτων" +msgstr "System upgrade done" #. module: base -#: model:res.country,name:base.sc -msgid "Seychelles" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_sxw_content:0 -#: field:ir.actions.report.xml,report_sxw_content_data:0 -msgid "SXW content" -msgstr "" +#: model:res.country,name:base.so +msgid "Somalia" +msgstr "Somalia" #. module: base #: model:ir.actions.act_window,name:base.action_config_simple_view_form msgid "Configure Simple View" -msgstr "" +msgstr "Ρυθμίσεις Απλής Προβολής" #. module: base -#: wizard_button:module.upgrade,next,start:0 -msgid "Start Upgrade" -msgstr "" +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "Σημαντικοί Πελάτες" #. module: base -#: model:res.country,name:base.bt -msgid "Bhutan" -msgstr "" - -#. module: base -#: field:ir.default,ref_id:0 -msgid "ID Ref." -msgstr "" - -#. module: base -#: field:res.partner.bank,owner_name:0 -msgid "Account Owner" -msgstr "" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Set NULL" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc1_condition:0 -#: field:ir.report.custom.fields,fc2_condition:0 -#: field:ir.report.custom.fields,fc3_condition:0 -msgid "condition" -msgstr "όρος" - -#. module: base -#: model:res.country,name:base.sg -msgid "Singapore" -msgstr "" - -#. module: base -#: model:res.country,name:base.mt -msgid "Malta" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_report_custom -#: view:ir.report.custom:0 -msgid "Custom Report" -msgstr "" - -#. module: base -#: field:ir.actions.server,fields_lines:0 -msgid "Field Mappings." -msgstr "" - -#. module: base -#: help:res.partner.address,active:0 -msgid "Uncheck the active field to hide the contact." -msgstr "" +#: field:res.request,act_to:0 field:res.request.history,act_to:0 +msgid "To" +msgstr "Σε" #. module: base #: field:ir.cron,args:0 msgid "Arguments" -msgstr "Ορίσματα" - -#. module: base -#: field:ir.attachment,res_model:0 field:workflow,osv:0 -#: field:workflow.instance,res_type:0 -msgid "Resource Object" -msgstr "" +msgstr "Arguments" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "sxw" -msgstr "" +msgstr "sxw" #. module: base -#: field:ir.module.module,shortdesc:0 -msgid "Short Description" -msgstr "" - -#. module: base -#: model:res.country,name:base.gf -msgid "French Guyana" -msgstr "" - -#. module: base -#: selection:ir.actions.url,target:0 -msgid "This Window" -msgstr "" - -#. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Μορφή αρχείου" - -#. module: base -#: field:ir.model,state:0 field:ir.model.fields,state:0 -#: field:ir.model.grid,state:0 -msgid "Manually Created" -msgstr "" - -#. module: base -#: view:ir.module.repository:0 -msgid "Repository" -msgstr "Χώρος Απόθεσης" - -#. module: base -#: field:ir.attachment,description:0 field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 view:res.partner.event:0 -#: field:res.partner.event,description:0 view:res.request:0 -msgid "Description" -msgstr "Περιγραφή" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDENT" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "type,name,res_id,src,value" -msgstr "τύπος, όνομα, res_id, src, αξία" - -#. module: base -#: field:ir.actions.wizard,name:0 -msgid "Wizard Info" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "" - -#. module: base -#: field:res.bank,street:0 field:res.partner.address,street:0 -#: field:res.partner.bank,street:0 -msgid "Street" -msgstr "Οδός" +#: code:osv/orm.py:0 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "Η τιμή \"%s\" για οτ πεδίο \"%s\" δεν είναι επιλεγμένη!" #. module: base #: field:ir.actions.report.xml,auto:0 msgid "Automatic XSL:RML" -msgstr "" - -#. module: base -#: field:ir.attachment,preview:0 -msgid "Image Preview" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_configuration_wizard -msgid "ir.actions.configuration.wizard" -msgstr "" - -#. module: base -#: view:workflow.workitem:0 -msgid "Workflow Workitems" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COPY" -msgstr "" - -#. module: base -#: model:res.country,name:base.vc -msgid "Saint Vincent & Grenadines" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_pvt_ltd -msgid "Corp." -msgstr "" +msgstr "Automatic XSL:RML" #. module: base #: view:ir.rule:0 msgid "Manual domain setup" -msgstr "" +msgstr "Manual domain setup" #. module: base -#: view:wizard.module.lang.export:0 -msgid "Export language" -msgstr "Εξαγωγή γλώσσας" - -#. module: base -#: field:res.partner,customer:0 selection:res.partner.event,partner_type:0 +#: field:res.partner,customer:0 +#: model:res.partner.category,name:base.res_partner_category_0 +#: selection:res.partner.event,partner_type:0 msgid "Customer" -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Unvalidated" -msgstr "" - -#. module: base -#: model:res.country,name:base.gw -msgid "Guinea Bissau" -msgstr "" +msgstr "Πελάτης" #. module: base #: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 msgid "Report Name" -msgstr "" +msgstr "Όνομα Αναφοράς" #. module: base -#: view:workflow.instance:0 -msgid "Workflow Instances" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_9 -msgid "Database Structure" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard -#: wizard_view:res.partner.spam_send,init:0 -msgid "Mass Mailing" -msgstr "Μαζική αποστολή" - -#. module: base -#: model:res.country,name:base.io -msgid "British Indian Ocean Territory" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_country field:res.bank,country:0 -#: view:res.country:0 field:res.country.state,country_id:0 -#: field:res.partner,country:0 field:res.partner.address,country_id:0 -#: field:res.partner.bank,country_id:0 -msgid "Country" -msgstr "Χώρα" - -#. module: base -#: wizard_view:base.module.import,import:0 -msgid "Module successfully imported !" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "center" -msgstr "κέντρο" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_close -msgid "ir.actions.act_window_close" -msgstr "" +#: field:ir.module.module,shortdesc:0 +msgid "Short Description" +msgstr "Σύντομη Περιγραφή" #. module: base #: field:res.partner.event,partner_type:0 msgid "Partner Relation" -msgstr "" +msgstr "Σχέση Πελάτη" #. module: base #: field:ir.actions.act_window,context:0 msgid "Context Value" msgstr "" -#. module: base -#: model:res.country,name:base.kp -msgid "North Korea" -msgstr "" - -#. module: base -#: view:ir.report.custom:0 -msgid "Unsubscribe Report" -msgstr "" - #. module: base #: view:ir.sequence:0 msgid "Hour 00->24: %(h24)s" -msgstr "" - -#. module: base -#: model:res.country,name:base.zw -msgid "Zimbabwe" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Create Object" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a4" -msgstr "" - -#. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "" - -#. module: base -#: field:res.request.history,name:0 -msgid "Summary" -msgstr "" +msgstr "Ώρα 00->24: %(h24)s" #. module: base #: field:res.request.history,date_sent:0 msgid "Date sent" -msgstr "Ημερομηνία που στέλνεται" - -#. module: base -#: model:ir.model,name:base.model_res_partner_function -msgid "Function of the contact" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_upgrade -#: model:ir.ui.menu,name:base.menu_module_tree_upgrade -msgid "Modules to be installed, upgraded or removed" -msgstr "" +msgstr "Ημερ/νία Αποστολής" #. module: base #: view:ir.sequence:0 msgid "Month: %(month)s" -msgstr "" - -#. module: base -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "" - -#. module: base -#: model:res.country,name:base.mm -msgid "Myanmar" -msgstr "" +msgstr "Μήνας: %(month)s" #. module: base #: field:ir.actions.act_window.view,sequence:0 @@ -6955,24 +5702,17 @@ msgstr "" #: field:res.partner.bank,sequence:0 #: field:wizard.ir.model.menu.create.line,sequence:0 msgid "Sequence" -msgstr "Ακολουθία" +msgstr "Αρίθμηση" #. module: base -#: view:res.lang:0 -msgid "11. %U or %W ==> 48 (49th week)" -msgstr "" +#: model:res.country,name:base.tn +msgid "Tunisia" +msgstr "Tunisia" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Russian / русский язык" -msgstr "" - -#. module: base -#: help:res.partner.address,type:0 -msgid "" -"Used to select automatically the right address according to the context in " -"sales and purchases documents." -msgstr "" +#: field:ir.actions.wizard,name:0 +msgid "Wizard Info" +msgstr "Wizard Info" #. module: base #: help:ir.cron,numbercall:0 @@ -6980,104 +5720,1877 @@ msgid "" "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (CN) / 简体中文" +#: view:ir.module.module:0 +msgid "Cancel Install" +msgstr "Cancel Install" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" msgstr "" #. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" +#: selection:ir.report.custom,frequency:0 +msgid "Monthly" +msgstr "Μηνιαία" #. module: base -#: field:ir.report.custom,footer:0 -msgid "Report Footer" -msgstr "" +#: model:ir.actions.act_window,name:base.res_partner_som-act +#: model:ir.ui.menu,name:base.menu_res_partner_som-act +msgid "States of mind" +msgstr "Ψυχικές διαθέσεις" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_NEXT" -msgstr "" +msgid "STOCK_SORT_ASCENDING" +msgstr "STOCK_SORT_ASCENDING" #. module: base -#: selection:res.lang,direction:0 -msgid "Right-to-Left" -msgstr "" +#: view:ir.model:0 view:res.groups:0 +msgid "Access Rules" +msgstr "Κανονισμοί Προσβάσεων" #. module: base -#: model:res.country,name:base.yu -msgid "Yugoslavia" -msgstr "" +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Table Ref." #. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Choose a language to install:" -msgstr "" +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "Γονέας" + +#. module: base +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 +#: field:ir.model,model:0 field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +msgid "Object" +msgstr "Αντικείμενο" + +#. module: base +#: model:ir.model,name:base.model_ir_default +msgid "ir.default" +msgstr "ir.default" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "Λεπτά: %(min)s" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "Χρονοδιάγραμμα" + +#. module: base +#: view:res.lang:0 +msgid "%w - Weekday as a decimal number [0(Sunday),6]." +msgstr "%w - Η ημέρα της εβδομάδας σε δεκαδική μορφή [0 Κυριακή, 1 Δευτέρα... 6 Σάββατο]." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "Εξαγωγή Αρχείου Ματάφρασης" + +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "User Ref." + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: model:ir.ui.menu,name:base.menu_config view:res.company:0 +msgid "Configuration" +msgstr "Ρυθμίσεις" + +#. module: base +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" +msgstr "Loop Expression" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "Πωλητής Λιανικής" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Σε μορφή πίνακα" + +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "Start On" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_5 +msgid "Gold Partner" +msgstr "Χρυσός Συνεργάτης" #. module: base #: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 #: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 #: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 msgid "Partner" -msgstr "Συνέταιρος" +msgstr "Συνεργάτης" + +#. module: base +#: model:res.country,name:base.tr +msgid "Turkey" +msgstr "Turkey" + +#. module: base +#: model:res.country,name:base.fk +msgid "Falkland Islands" +msgstr "Falkland Islands" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "odt" + +#. module: base +#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 +#: field:ir.report.custom,type:0 +msgid "Report Type" +msgstr "Τύπος Αναφοράς" + +#. module: base +#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 field:res.bank,state:0 +#: view:res.country.state:0 field:res.partner.bank,state_id:0 +#: field:res.request,state:0 field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +msgid "State" +msgstr "Νομός" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "Άλλα περουσιακά" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" +msgstr "Όλοι οι όροι" + +#. module: base +#: model:res.country,name:base.no +msgid "Norway" +msgstr "Norway" + +#. module: base +#: view:res.lang:0 +msgid "4. %b, %B ==> Dec, December" +msgstr "4. %b, %B ==> Δεκ, Δεκέμβριος" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Load an Official Translation" +msgstr "Φόρτωση Επίσημης Μετάφρασης" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "Open Source Service Company" + +#. module: base +#: selection:res.request,state:0 +msgid "waiting" +msgstr "σε αναμονή" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "Σύνδεσμος" + +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "workflow.triggers" + +#. module: base +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "Report Ref" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "terp-hr" + +#. module: base +#: help:ir.actions.wizard,multi:0 +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "STOCK_DND" + +#. module: base +#: model:res.country,name:base.hm +msgid "Heard and McDonald Islands" +msgstr "Heard and McDonald Islands" + +#. module: base +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "View Ref." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch (Belgium) / Nederlands (Belgïe)" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree +msgid "Repository list" +msgstr "Κατάλογος αποθηκών" + +#. module: base +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "Report Header" + +#. module: base +#: field:res.roles,child_id:0 +msgid "Children" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 +#: field:ir.actions.wizard,type:0 +msgid "Action Type" +msgstr "Τύπος Ενέργειας" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +msgstr "Τύποι πεδίων " + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "Κατηγορία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "STOCK_FLOPPY" + +#. module: base +#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "SMS" + +#. module: base +#: model:res.country,name:base.cr +msgid "Costa Rica" +msgstr "Costa Rica" + +#. module: base +#: code:addons/base/maintenance/maintenance.py:0 +#, python-format +msgid "Your can't submit bug reports due to uncovered modules: %s" +msgstr "" + +#. module: base +#: view:ir.model:0 view:res.request:0 +msgid "Status" +msgstr "Κατάσταση" + +#. module: base +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 +msgid "Currencies" +msgstr "Νομίσματα" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "Ώρα 00->12: %(h12)s" + +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "Ξετικάρετε το ενεργό πεδίο για να κρύψετε την επαφή" + +#. module: base +#: model:res.country,name:base.dk +msgid "Denmark" +msgstr "Denmark" + +#. module: base +#: field:res.country,code:0 +msgid "Country Code" +msgstr "Κωδικός Χώρας" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "workflow.instance" + +#. module: base +#: view:res.lang:0 +msgid "10. %S ==> 20" +msgstr "10. %S ==> 20" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "undefined get method !" +msgstr "undefined get method !" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "Κυρία" + +#. module: base +#: model:res.country,name:base.ee +msgid "Estonia" +msgstr "Estonia" + +#. module: base +#: model:res.country,name:base.nl +msgid "Netherlands" +msgstr "Netherlands / Ολλανδία" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level Objects" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom +msgid "ir.report.custom" +msgstr "ir.report.custom" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "Προσφορά Αγοράς" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "ir.values" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "STOCK_ZOOM_FIT" + +#. module: base +#: model:res.country,name:base.cd +msgid "Congo, The Democratic Republic of the" +msgstr "Congo, The Democratic Republic of the" + +#. module: base +#: view:res.request:0 field:res.request,body:0 +#: field:res.request.history,req_id:0 +msgid "Request" +msgstr "Αίτηση" + +#. module: base +#: model:res.country,name:base.jp +msgid "Japan" +msgstr "Japan" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of Calls" +msgstr "Αριθμός Κλήσεων" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +msgstr "Το αρχείο γλώσσας φορτώθηκε" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_info:0 +msgid "Modules to update" +msgstr "Modules to update" + +#. module: base +#: model:ir.actions.act_window,name:base.action2 +msgid "Company Architecture" +msgstr "Οργανόγραμμα Εταιρείας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "STOCK_GOTO_BOTTOM" + +#. module: base +#: help:ir.actions.server,sequence:0 +msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." +msgstr "Σημαντικό όταν έχουμε πολλές ενέργειες. Η εκτέλεσή τους θα καθορίζεται από αυτό, το μικρότερο νούμερο σημαίνει μεγαλύτερη προτεραιότητα." + +#. module: base +#: field:ir.actions.report.xml,header:0 +msgid "Add RML header" +msgstr "Add RML header" + +#. module: base +#: model:res.country,name:base.gr +msgid "Greece" +msgstr "Greece / Ελλάδα" + +#. module: base +#: field:res.request,trigger_date:0 +msgid "Trigger Date" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Croatian / hrvatski jezik" +msgstr "Croatian / hrvatski jezik" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "STOCK_GO_FORWARD" + +#. module: base +#: help:ir.actions.server,code:0 +msgid "Python code to be executed" +msgstr "Python code to be executed" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Uninstallable" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner Category" +msgstr "Κατηγορία Συνεργάτη" + +#. module: base +#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +msgid "Trigger" +msgstr "" + +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "Μετάφραση" + +#. module: base +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" +msgstr "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" + +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "Σώμα" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "Αποστολή Email" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" +msgstr "STOCK_SELECT_FONT" + +#. module: base +#: field:res.users,menu_id:0 +msgid "Menu Action" +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Graph" +msgstr "" + +#. module: base +#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "Εταιρική Αναφ." + +#. module: base +#: field:ir.report.custom,print_format:0 +msgid "Print format" +msgstr "Μορφή Εκτύπωσης" + +#. module: base +#: model:ir.ui.menu,name:base.menu_low_workflow +msgid "Workflow Items" +msgstr "" + +#. module: base +#: field:res.request,ref_doc2:0 +msgid "Document Ref 2" +msgstr "Document Ref 2" + +#. module: base +#: field:res.request,ref_doc1:0 +msgid "Document Ref 1" +msgstr "Document Ref 1" + +#. module: base +#: model:res.country,name:base.ga +msgid "Gabon" +msgstr "Gabon" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "ir.model.data" + +#. module: base +#: view:ir.model:0 view:res.groups:0 +msgid "Access Rights" +msgstr "Δικαιώματα Πρόσβασης" + +#. module: base +#: model:res.country,name:base.gl +msgid "Greenland" +msgstr "Greenland (Γροιλανδία)" + +#. module: base +#: help:ir.actions.report.xml,report_rml:0 +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "The .rml path of the file or NULL if the content is in report_rml_content" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account Number" +msgstr "Αριθμός Λογαριασμού" + +#. module: base +#: view:res.lang:0 +msgid "1. %c ==> Fri Dec 5 18:25:20 2008" +msgstr "1. %c ==> Παρ Δεκ 5 18:25:20 2008" + +#. module: base +#: help:ir.ui.menu,groups_id:0 +msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." +msgstr "Η εμφάνιση του μενού αυτού βασίζεται στις ομάδες. Αν το πεδίο μείνει κενό, το σύστημα θα κανονίζει την εμφάνιση του μενού με βάση την πρόσβαση Ανάγνωσης του κάθε αντικειμένου." + +#. module: base +#: model:res.country,name:base.nc +msgid "New Caledonia (French)" +msgstr "New Caledonia (French)" + +#. module: base +#: field:res.partner.function,name:0 +msgid "Function Name" +msgstr "Όνομα Λειτουργίας" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Cancel" +msgstr "_Cancel" + +#. module: base +#: model:res.country,name:base.cy +msgid "Cyprus" +msgstr "Cyprus" + +#. module: base +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 +msgid "Subject" +msgstr "Υποκείμενο" + +#. module: base +#: field:res.request,act_from:0 field:res.request.history,act_from:0 +msgid "From" +msgstr "Από" + +#. module: base +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "Επόμενο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-report" +msgstr "terp-report" + +#. module: base +#: field:ir.actions.report.xml,report_rml_content:0 +#: field:ir.actions.report.xml,report_rml_content_data:0 +msgid "RML content" +msgstr "RML content" + +#. module: base +#: view:workflow.activity:0 +msgid "Incoming transitions" +msgstr "Εισερχόμενες μεταβάσεις" + +#. module: base +#: model:res.country,name:base.cn +msgid "China" +msgstr "China" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password empty !" +msgstr "Κενό Password!" + +#. module: base +#: model:res.country,name:base.eh +msgid "Western Sahara" +msgstr "Western Sahara" + +#. module: base +#: model:ir.model,name:base.model_workflow +msgid "workflow" +msgstr "ροή εργασίας" + +#. module: base +#: model:res.country,name:base.id +msgid "Indonesia" +msgstr "Indonesia" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "" + +#. module: base +#: model:res.country,name:base.bg +msgid "Bulgaria" +msgstr "Bulgaria" + +#. module: base +#: model:res.country,name:base.ao +msgid "Angola" +msgstr "Angola" + +#. module: base +#: model:res.country,name:base.tf +msgid "French Southern Territories" +msgstr "French Southern Territories" + +#. module: base +#: view:ir.actions.server:0 +msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HELP" +msgstr "STOCK_HELP" + +#. module: base +#: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 +#: view:res.currency:0 field:res.currency,name:0 +#: field:res.currency.rate,currency_id:0 +msgid "Currency" +msgstr "Νόμισμα" + +#. module: base +#: field:res.partner.canal,name:0 +msgid "Channel Name" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "5. %y, %Y ==> 08, 2008" +msgstr "5. %y, %Y ==> 08, 2008" + +#. module: base +#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 +msgid "Object ID" +msgstr "ID Αντικειμένου" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "Τοπίο" + +#. module: base +#: model:ir.ui.menu,name:base.menu_administration +msgid "Administration" +msgstr "Διαχείριση" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "child_of" + +#. module: base +#: model:res.country,name:base.ir +msgid "Iran" +msgstr "Iran" + +#. module: base +#: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 +#: field:wizard.module.lang.export,state:0 +msgid "unknown" +msgstr "άγνωστο" + +#. module: base +#: field:ir.ui.view_sc,res_id:0 +msgid "Resource Ref." +msgstr "" + +#. module: base +#: model:res.country,name:base.ki +msgid "Kiribati" +msgstr "Kiribati" + +#. module: base +#: model:res.country,name:base.iq +msgid "Iraq" +msgstr "Iraq" + +#. module: base +#: view:ir.actions.server:0 +msgid "Action to Launch" +msgstr "Επιλογή Ενέργειας" + +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Εισαγωγή Module" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_supplier_form +#: model:ir.ui.menu,name:base.menu_partner_supplier_form +msgid "Suppliers Partners" +msgstr "Προμηθευτές" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +msgid "ir.sequence.type" +msgstr "ir.sequence.type" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "CSV File" +msgstr "Αρχείο CSV" + +#. module: base +#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +msgid "Base Object" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-crm" +msgstr "terp-crm" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STRIKETHROUGH" +msgstr "STOCK_STRIKETHROUGH" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "(year)=" +msgstr "(year)=" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "Dependencies :" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-partner" +msgstr "terp-partner" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Bad query." +msgstr "Bad query." + +#. module: base +#: field:ir.model.fields,field_description:0 +msgid "Field Label" +msgstr "Όνομα Πεδίου" + +#. module: base +#: model:res.country,name:base.dj +msgid "Djibouti" +msgstr "Djibouti" + +#. module: base +#: field:ir.translation,value:0 +msgid "Translation Value" +msgstr "Μετάφραση" + +#. module: base +#: model:res.country,name:base.ag +msgid "Antigua and Barbuda" +msgstr "Antigua and Barbuda" + +#. module: base +#: field:ir.actions.server,condition:0 +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:workflow.transition,condition:0 +msgid "Condition" +msgstr "Συνθήκη" + +#. module: base +#: model:res.country,name:base.zr +msgid "Zaire" +msgstr "Zaire" + +#. module: base +#: field:ir.model.data,res_id:0 field:ir.translation,res_id:0 +#: field:workflow.instance,res_id:0 field:workflow.triggers,res_id:0 +msgid "Resource ID" +msgstr "" + +#. module: base +#: view:ir.cron:0 field:ir.model,info:0 field:ir.model.grid,info:0 +#: view:maintenance.contract:0 +msgid "Information" +msgstr "Πληροφορίες" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." +msgstr "Η επίσημη μετάφραση του OpenERP/OpenObjects module γίνονται με κειμενογράφο. Για το συγχρονισμό όλων των προσπαθειών χρησιμοποιούμε το online interface." + +#. module: base +#: field:ir.actions.report.xml,report_rml:0 +msgid "RML path" +msgstr "RML path" + +#. module: base +#: field:ir.actions.configuration.wizard,item_id:0 +msgid "Next Configuration Wizard" +msgstr "Επόμενος Wizard Ρυθμίσεων" + +#. module: base +#: selection:ir.actions.todo,type:0 selection:res.partner.address,type:0 +msgid "Other" +msgstr "Άλλο" + +#. module: base +#: view:res.request:0 +msgid "Reply" +msgstr "Απάντηση" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "Turkish / Türkçe" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import New Language" +msgstr "Ειασγωγή νέας Γλώσσας" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_activity_form +#: model:ir.ui.menu,name:base.menu_workflow_activity view:workflow:0 +#: field:workflow,activities:0 +msgid "Activities" +msgstr "Δραστηριότητες" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Auto-Refresh" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +msgid "=" +msgstr "=" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Second field should be figures" +msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμητικό" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_grid_security +#: model:ir.ui.menu,name:base.menu_ir_access_grid +msgid "Access Controls Grid" +msgstr "Πλέγμα ελέγχων προσπέλασης" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_custom_action +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" +msgstr "Ενέργειες" + +#. module: base +#: selection:res.request,priority:0 +msgid "High" +msgstr "Υψηλή" + +#. module: base +#: field:ir.exports.line,export_id:0 +msgid "Export" +msgstr "Εξαγωγή" + +#. module: base +#: help:res.bank,bic:0 +msgid "Bank Identifier Code" +msgstr "Κώδικας προσδιοριστικών τράπεζας" + +#. module: base +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "Turkmenistan" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 code:addons/base/ir/ir_model.py:0 +#: code:addons/base/maintenance/maintenance.py:0 +#: code:addons/base/module/module.py:0 code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_user.py:0 code:report/custom.py:0 +#, python-format +msgid "Error" +msgstr "Σφάλμα" + +#. module: base +#: model:res.country,name:base.pm +msgid "Saint Pierre and Miquelon" +msgstr "Saint Pierre and Miquelon" + +#. module: base +#: help:ir.actions.report.xml,header:0 +msgid "Add or not the coporate RML header" +msgstr "Add or not the coporate RML header" + +#. module: base +#: field:res.partner.event,document:0 +msgid "Document" +msgstr "Έγγραφο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REFRESH" +msgstr "STOCK_REFRESH" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STOP" +msgstr "STOCK_STOP" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update" +msgstr "Ανανέωση" + +#. module: base +#: model:ir.actions.report.xml,name:base.ir_module_reference_print +msgid "Technical guide" +msgstr "Τεχνικός οδηγός" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONVERT" +msgstr "STOCK_CONVERT" + +#. module: base +#: model:res.country,name:base.tz +msgid "Tanzania" +msgstr "Tanzania" + +#. module: base +#: model:res.country,name:base.cx +msgid "Christmas Island" +msgstr "Christmas Island" + +#. module: base +#: view:ir.actions.server:0 +msgid "Other Actions Configuration" +msgstr "Ρυθμίσεις Άλλων Ενεργειών" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EXECUTE" +msgstr "STOCK_EXECUTE" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_canal-act +#: model:ir.model,name:base.model_res_partner_canal +#: model:ir.ui.menu,name:base.menu_res_partner_canal-act +msgid "Channels" +msgstr "Κανάλια" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule for Installation" +msgstr "Προγραμματισμός εγκατάστασης" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Προχωρημένη Αναζήτηση" + +#. module: base +#: view:res.request:0 +msgid "Send" +msgstr "Αποστολή" + +#. module: base +#: field:ir.translation,src:0 +msgid "Source" +msgstr "Πηγή" + +#. module: base +#: help:res.partner.address,partner_id:0 +msgid "Keep empty for a private address, not related to partner." +msgstr "" + +#. module: base +#: model:res.country,name:base.vu +msgid "Vanuatu" +msgstr "Vanuatu" + +#. module: base +#: view:res.company:0 +msgid "Internal Header/Footer" +msgstr "Internal Header/Footer" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "Αποθύκευση του εγγράφου σε μορφή .tgz. Τα αρχεία είναι UTF-8 %s και μπορούν να επεξεργαστούν με κειμενογράφο." + +#. module: base +#: wizard_button:module.upgrade,end,config:0 +#: wizard_button:module.upgrade,start,config:0 +msgid "Start configuration" +msgstr "Εκκίνηση ρυθμίσεων" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Catalan / Català" +msgstr "Catalan / Català" + +#. module: base +#: model:res.country,name:base.do +msgid "Dominican Republic" +msgstr "Dominican Republic" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COLOR_PICKER" +msgstr "STOCK_COLOR_PICKER" + +#. module: base +#: model:res.country,name:base.sa +msgid "Saudi Arabia" +msgstr "Saudi Arabia" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Bar charts need at least two fields" +msgstr "Τα ιστογράμματα (bar charts) χρειάζονται τουλάχιστον δύο πεδία" + +#. module: base +#: help:res.partner,supplier:0 +msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." +msgstr "Κάντε κλικ εδώ αν πρόκειται για Προμηθευτή. Αν το πεδίο αυτό δεν είναι τσεκαρισμένο, το τμήμα Παραγγελιών δε θα μπορεί να δει αυτό το συνεργάτη όταν θα τοποθετούν παραγγελίες." + +#. module: base +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "Πεδίο Σχέσης" + +#. module: base +#: field:workflow.triggers,instance_id:0 +msgid "Destination Instance" +msgstr "Destination Instance" + +#. module: base +#: field:ir.actions.wizard,multi:0 +msgid "Action on Multiple Doc." +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "https://translations.launchpad.net/openobject" +msgstr "https://translations.launchpad.net/openobject" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title +#: model:ir.ui.menu,name:base.menu_partner_title +msgid "Titles" +msgstr "Τίτλοι" + +#. module: base +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" +msgstr "Ημερ/νία Εκκίνησης" + +#. module: base +#: field:ir.actions.report.xml,report_xml:0 +msgid "XML path" +msgstr "XML path" + +#. module: base +#: model:res.country,name:base.gn +msgid "Guinea" +msgstr "Guinea" + +#. module: base +#: model:res.country,name:base.lu +msgid "Luxembourg" +msgstr "Luxembourg" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_step_user +msgid "" +"Create your users.\n" +"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" +" " +msgstr "" +"Δημιουργία Χρηστών.\n" +"Μπορείτε να χωρίσετε τους χρήστες σε ομάδες δικαιωμάτων.\n" +" " + +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Χαμηλή" + +#. module: base +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "tree_but_action, client_print_multi" + +#. module: base +#: model:res.country,name:base.sv +msgid "El Salvador" +msgstr "El Salvador" + +#. module: base +#: field:res.bank,phone:0 field:res.partner.address,phone:0 +msgid "Phone" +msgstr "Τηλέφωνο" + +#. module: base +#: field:res.groups,menu_access:0 +msgid "Access Menu" +msgstr "Μενού Πρόσβασης" + +#. module: base +#: model:res.country,name:base.th +msgid "Thailand" +msgstr "Thailand" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid ">" +msgstr ">" + +#. module: base +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Διαγραφή Πρόσβασης" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "And" +msgstr "Και" + +#. module: base +#: field:ir.model.fields,relation:0 +msgid "Object Relation" +msgstr "Σχέση Αντικειμένου" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT" +msgstr "STOCK_PRINT" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "<" + +#. module: base +#: model:res.country,name:base.uz +msgid "Uzbekistan" +msgstr "Uzbekistan" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" +msgstr "ir.actions.act_window" + +#. module: base +#: model:res.country,name:base.vi +msgid "Virgin Islands (USA)" +msgstr "Virgin Islands (USA)" + +#. module: base +#: model:res.country,name:base.tw +msgid "Taiwan" +msgstr "Taiwan" + +#. module: base +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "If you don't force the domain, it will use the simple domain setup" + +#. module: base +#: field:ir.report.custom,field_parent:0 field:ir.ui.view,field_parent:0 +msgid "Child Field" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,usage:0 +#: field:ir.actions.act_window_close,usage:0 field:ir.actions.actions,usage:0 +#: field:ir.actions.report.custom,usage:0 field:ir.actions.report.xml,usage:0 +#: field:ir.actions.server,usage:0 field:ir.actions.wizard,usage:0 +msgid "Action Usage" +msgstr "Χρήση Ενέργειας" + +#. module: base +#: model:ir.model,name:base.model_workflow_workitem +msgid "workflow.workitem" +msgstr "workflow.workitem" + +#. module: base +#: selection:ir.module.module,state:0 +msgid "Not Installable" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "Προβολή:" + +#. module: base +#: field:ir.model.fields,view_load:0 +msgid "View Auto-Load" +msgstr "Αυτόματη Φόρτωση Προβολής" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUMP_TO" +msgstr "STOCK_JUMP_TO" + +#. module: base +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "Ημερ/νία Λήξης" + +#. module: base +#: field:ir.exports,resource:0 field:ir.property,res_id:0 +msgid "Resource" +msgstr "" + +#. module: base +#: field:maintenance.contract,name:0 field:maintenance.contract.wizard,name:0 +msgid "Contract ID" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "κέντρο" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country_state +#: model:ir.ui.menu,name:base.menu_country_state_partner +#: field:maintenance.contract.wizard,state:0 +msgid "States" +msgstr "Νομοί" + +#. module: base +#: help:ir.rule.group,global:0 +msgid "Make the rule global, otherwise it needs to be put on a group or user" +msgstr "" + +#. module: base +#: field:ir.attachment,datas_fname:0 field:wizard.module.lang.export,name:0 +msgid "Filename" +msgstr "Όνομα Αρχείου" + +#. module: base +#: field:ir.model,access_ids:0 field:ir.model.grid,access_ids:0 +msgid "Access" +msgstr "Πρόσβαση" + +#. module: base +#: model:res.country,name:base.sk +msgid "Slovak Republic" +msgstr "Slovak Republic" + +#. module: base +#: model:res.country,name:base.aw +msgid "Aruba" +msgstr "Aruba" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Weeks" +msgstr "Εβδομάδες" + +#. module: base +#: field:res.groups,name:0 +msgid "Group Name" +msgstr "Όνομα Ομάδας" + +#. module: base +#: model:res.country,name:base.bh +msgid "Bahrain" +msgstr "Bahrain" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_12 +msgid "Segmentation" +msgstr "Καταμερισμός" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND" +msgstr "STOCK_FIND" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_maintenance_contract_add +#: view:maintenance.contract.wizard:0 +msgid "Add Maintenance Contract" +msgstr "Προσθήκη Συμβολαίου Συντήρησης" + +#. module: base +#: field:ir.actions.act_window,limit:0 field:ir.report.custom,limitt:0 +msgid "Limit" +msgstr "Όριο" + +#. module: base +#: help:ir.actions.server,wkf_model_id:0 +msgid "Workflow to be executed on this model." +msgstr "" + +#. module: base +#: model:res.country,name:base.jm +msgid "Jamaica" +msgstr "Jamaica" + +#. module: base +#: model:res.country,name:base.az +msgid "Azerbaijan" +msgstr "Azerbaijan" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Warning" +msgstr "Warning" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "Arabic / الْعَرَبيّة" + +#. module: base +#: model:res.country,name:base.gi +msgid "Gibraltar" +msgstr "Gibraltar" + +#. module: base +#: model:res.country,name:base.vg +msgid "Virgin Islands (British)" +msgstr "Virgin Islands (British)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "STOCK_MEDIA_PREVIOUS" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Czech / Čeština" +msgstr "Czech / Čeština" + +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" + +#. module: base +#: model:res.country,name:base.rw +msgid "Rwanda" +msgstr "Rwanda" + +#. module: base +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "Ο ΦΠΑ δε φαίνεται σωστός" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Sum" +msgstr "Υπολογισμός Αθροίσματος" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the week (0:Monday): %(weekday)s" +msgstr "Ημέρα Εβδομάδας(0:Δευτέρα): %(ημέρες)" + +#. module: base +#: model:res.country,name:base.ck +msgid "Cook Islands" +msgstr "Cook Islands" + +#. module: base +#: help:ir.actions.server,mobile:0 +msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" +msgstr "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" + +#. module: base +#: field:ir.model.data,noupdate:0 +msgid "Non Updatable" +msgstr "" + +#. module: base +#: model:res.country,name:base.sg +msgid "Singapore" +msgstr "Singapore" + +#. module: base +#: selection:ir.actions.act_window,target:0 +msgid "Current Window" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Action Source" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NETWORK" +msgstr "STOCK_NETWORK" + +#. module: base +#: model:ir.model,name:base.model_res_country field:res.bank,country:0 +#: view:res.country:0 field:res.country.state,country_id:0 +#: field:res.partner,country:0 field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 +msgid "Country" +msgstr "Χώρα" + +#. module: base +#: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 +msgid "Complete Name" +msgstr "Πλήρες Όνομα" + +#. module: base +#: view:ir.report.custom:0 +msgid "Subscribe Report" +msgstr "Καταχώρηση Αναφοράς" + +#. module: base +#: field:ir.values,object:0 +msgid "Is Object" +msgstr "" + +#. module: base +#: field:res.partner.category,name:0 +msgid "Category Name" +msgstr "Όνομα Κατηγορίας" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_15 +msgid "IT sector" +msgstr "IT sector" + +#. module: base +#: view:res.lang:0 +msgid "%X - Appropriate time representation." +msgstr "%X - Ορθή μορφή ώρας." + +#. module: base +#: view:res.company:0 +msgid "Your Logo - Use a size of about 450x150 pixels." +msgstr "Λογότυπο - Χρησιμοποιείστε μέγεθος 450x150 pixels." + +#. module: base +#: help:res.lang,grouping:0 +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 "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +#: model:ir.ui.menu,name:base.menu_partner_customer_form_new +msgid "New Partner" +msgstr "Νέος Συνεργάτης" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" +msgstr "Πορτραίτο" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Button" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIRECTORY" +msgstr "STOCK_DIRECTORY" + +#. module: base +#: field:ir.module.module,installed_version:0 +msgid "Latest version" +msgstr "Τελευταία έκδοση" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_server +msgid "ir.actions.server" +msgstr "ir.actions.server" + +#. module: base +#: view:ir.actions.report.custom:0 +msgid "Report custom" +msgstr "" + +#. module: base +#: field:ir.actions.configuration.wizard,progress:0 +msgid "Configuration Progress" +msgstr "Πρόοδος Ρυθμίσεων" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_11 +msgid "Configuration Wizards" +msgstr "Wizards Ρυθμίσεων" + +#. module: base +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Χωρισμένο Mode" + +#. module: base +#: model:ir.ui.menu,name:base.menu_localisation +msgid "Localisation" +msgstr "" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "Simplified Interface" + +#. module: base +#: model:res.country,name:base.cl +msgid "Chile" +msgstr "Chile (Χιλή)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REVERT_TO_SAVED" +msgstr "STOCK_REVERT_TO_SAVED" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +msgid "Import a Translation File" +msgstr "Εισαγωγή Αρχείου Μετάφρασης" + +#. module: base +#: help:ir.values,model_id:0 +msgid "This field is not used, it only helps you to select a good model." +msgstr "Το πεδίο αυτό δε χρησιομοποιείται, βοηθά στην επιλογή του καλύτερου μοντέλου." + +#. module: base +#: field:ir.ui.view,name:0 +msgid "View Name" +msgstr "Όνομα Προβολής" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Italian / Italiano" +msgstr "Italian / Italiano" + +#. module: base +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" + +#. module: base +#: model:res.country,name:base.hr +msgid "Croatia" +msgstr "Croatia" + +#. module: base +#: field:ir.actions.server,mobile:0 +msgid "Mobile No" +msgstr "Κινητό" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" +msgstr "Καατηγορίες Συνεργατών" + +#. module: base +#: field:ir.sequence,code:0 field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Κωδικός Αρίθμισης" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a5" +msgstr "Α5" + +#. module: base +#: model:res.country,name:base.sc +msgid "Seychelles" +msgstr "Seychelles" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank view:res.partner.bank:0 +msgid "Bank Accounts" +msgstr "Τραπεζικοί Λογαριασμοί" + +#. module: base +#: model:res.country,name:base.sl +msgid "Sierra Leone" +msgstr "Sierra Leone" + +#. module: base +#: view:res.company:0 view:res.partner:0 +msgid "General Information" +msgstr "Γενικές Πληροφορίες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-product" +msgstr "terp-product" + +#. module: base +#: model:res.country,name:base.tc +msgid "Turks and Caicos Islands" +msgstr "Turks and Caicos Islands" + +#. module: base +#: field:res.partner.bank,owner_name:0 +msgid "Account Owner" +msgstr "Ιδιοκτήτης Λογαρισμού" + +#. module: base +#: field:workflow,osv:0 field:workflow.instance,res_type:0 +msgid "Resource Object" +msgstr "" + +#. module: base +#: field:ir.cron,function:0 field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +msgid "Function" +msgstr "Λειτουργία" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Παράδοση" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "Προεπισκόπηση Εικόνας" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_pvt_ltd +msgid "Corp." +msgstr "" + +#. module: base +#: model:res.country,name:base.gw +msgid "Guinea Bissau" +msgstr "Γουινέα Μπισάου" + +#. module: base +#: view:workflow.instance:0 +msgid "Workflow Instances" +msgstr "" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Partners: " +msgstr "Συνεργάτες " + +#. module: base +#: model:res.country,name:base.kp +msgid "North Korea" +msgstr "Βόρεια Κορέα" + +#. module: base +#: view:ir.report.custom:0 +msgid "Unsubscribe Report" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Create Object" +msgstr "Δημιουργία Αντικειμένου" + +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "Κωδικός BIC/Swift" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_1 +msgid "Prospect" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "Polish / Język polski" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export Name" +msgstr "" + +#. module: base +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Choose a language to install:" +msgstr "Επιλέξτε γλώσσα για εγκατάσταση:" #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" +msgstr "Σρι Λάνκα / Κευλάνη" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Russian / русский язык" +msgstr "Ρώσσικα / русский язык" + +#. module: base +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Cancel Install" +#: selection:ir.actions.report.xml,report_type:0 +msgid "txt" msgstr "" #. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import language" -msgstr "Γλώσσα εισαγωγών" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Note that this operation my take a few minutes." +#: selection:module.lang.install,init,lang:0 +msgid "Greek / Ελληνικά" msgstr "" #. module: base -#: field:ir.model.data,name:0 -msgid "XML Identifier" +#: selection:ir.actions.report.xml,report_type:0 +msgid "Html from html" msgstr "" +#. module: base +#: model:res.country,name:base.mk +msgid "FYROM" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "uk_UK" +msgstr "" + +#~ msgid "Can not define a column %s. Reserved keyword !" +#~ msgstr "Δεν μπορείτε να καθορίσετε στήλη '%s' . Κρατημένη λέξη " + +#~ msgid "tlh_TLH" +#~ msgstr "tlh_TLH" + +#~ msgid "nl_BE" +#~ msgstr "nl_BE" + +#~ msgid "sv_SV" +#~ msgstr "sv_SV" + +#~ msgid "cs_CS" +#~ msgstr "cs_CS" + #~ msgid "State 2" #~ msgstr "Πολιτεία" -#~ msgid "Attached ID" -#~ msgstr "Συνημμένη ταυτότητα" - -#~ msgid "Attached Model" -#~ msgstr "Συνημμένο πρότυπο" - -#~ msgid "File Content" -#~ msgstr "Περιεκτικότητα σε αρχεία" - #~ msgid "Function name" #~ msgstr "Όνομα λειτουργίας" #~ msgid "Create Model" #~ msgstr "Δημιουργήστε πρότυπο" -#~ msgid "You can not create this kind of document! (%s)" -#~ msgstr "Δεν μπορείτε να δημιουργήσετε αυτό το είδος εγγράφου! (%s)" - #~ msgid "confirmation" #~ msgstr "επιβεβαίωση" #~ msgid "Import new language" #~ msgstr "Εισαγωγή νέας γλώσσας " -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "Η μέθοδος αυτή δεν εφαρμόζεται σε αυτό το αντικείμενο!" - #~ msgid "Activites" #~ msgstr "δραστηριότητες" @@ -7091,72 +7604,20 @@ msgstr "" #~ msgid "Wizard info" #~ msgstr "Αυτόματος Οδηγός πληροφορίες" -#~ msgid "Can not define a column %s. Reserved keyword !" -#~ msgstr "Δεν μπορείτε να καθορίσετε στήλη '%s' . Κρατημένη λέξη " - -#~ msgid "" -#~ "If you put groups, the visibility of this menu will be based on these " -#~ "groups. If this field is empty, Open ERP will compute visibility based on " -#~ "the related object's read access." -#~ msgstr "" -#~ "Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές " -#~ "τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη " -#~ "διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον " -#~ "χρήστη. " - -#~ msgid "The name_search method is not implemented on this object !" -#~ msgstr "" -#~ "Η μέθοδος αναζήτησης ονόματος δεν εφαρμόζεται σε αυτό το αντικείμενο!" +#~ msgid "If you put groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." +#~ msgstr "Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον χρήστη. " #~ msgid "Web:" #~ msgstr "Ιστός:" -#~ msgid "new" -#~ msgstr "νέος" - -#~ 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 "" -#~ "Αποθηκεύστε το έγγραφο σε ένα αρχείο '%s' και επεξεργαστείτε το με ειδικό " -#~ "λογισμικό ή έναν συντάκτη κειμένων. Η κωδικοποίηση αρχείων είναι utf-8. " - -#~ msgid "Password mismatch !" -#~ msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν!" - -#~ msgid "This url '%s' must provide an html file with links to zip modules" -#~ msgstr "" -#~ "Αυτό το url '%s' πρέπει να παρέχει σε ένα αρχείο HTML με συνδέσεις στα " -#~ "αρθρώματα σε Zip" - #~ msgid "ConcurrencyException" #~ msgstr "Εξαίρεση συναγωνισμού" #~ msgid "Action State" #~ msgstr "Κατάσταση δράσης" -#~ msgid "" -#~ "The active field allows you to hide the category, without removing it." -#~ msgstr "" -#~ "Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι " -#~ "απαραίτητη η αφαίρεση του." - -#~ msgid "" -#~ "Save this document to a .CSV file and open it with your favourite " -#~ "spreadsheet software. The file encoding is UTF-8. You have to translate " -#~ "the latest column before reimporting it." -#~ msgstr "" -#~ "Αποθηκεύστε το παρόν έγγραφο σε ένα .CSV αρχείο και ανοίξτε το με το " -#~ "λογισμικό φύλλο (spreadsheet) σας. Η κωδικοποίηση αρχείων είναι utf-8. " -#~ "Πρέπει να μετατρέψετε την πιο πρόσφατη στήλη πριν κάνετε επανεισαγωγή." - -#~ msgid "" -#~ "You can not remove the admin user as it is used internally for resources " -#~ "created by OpenERP (updates, module installation, ...)" -#~ msgstr "" -#~ "Δεν μπορείτε να διαγράψετε το χρήστη admin γιατί χρησιμοποιείται " -#~ "εσωτερικά για τους πόρους που δημιουργούνται από OpenERP (αναπροσαρμογές, " -#~ "εγκατάσταση ενότητας,…)" +#~ msgid "The active field allows you to hide the category, without removing it." +#~ msgstr "Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι απαραίτητη η αφαίρεση του." #, fuzzy #~ msgid "Custom" @@ -7166,22 +7627,10 @@ msgstr "" #~ msgid "Bank type" #~ msgstr "Τραπ είδος" -#, fuzzy -#~ msgid "undefined get method !" -#~ msgstr "ακαθόριστο λήψη!" - -#, fuzzy -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "διαβασμένο είναι όχι!" - #, fuzzy #~ msgid "Partner contacts" #~ msgstr "Επαφές συνεργάτη" -#, fuzzy -#~ msgid "Custom fields must have a name that starts with 'x_' !" -#~ msgstr "Προσαρμοσμένο a όνομα με x!" - #, fuzzy #~ msgid "Unknown attribute % in % (table %)" #~ msgstr "Άγνωστο ιδιότητα σε πίνακας" @@ -7201,35 +7650,10 @@ msgstr "" #~ msgid "Mode of view" #~ msgstr "Κατάσταση προβολής" -#, fuzzy -#~ msgid "" -#~ "You try to install a module that depends on the module: %s.\n" -#~ "But this module is not available in your system." -#~ msgstr "" -#~ "Εσείς στο εγκατάσταση a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο " -#~ "εξαρτάται άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s άρθρωμα, μονάδα, " -#~ "υπομονάδα, Δομικό Στοιχείο είναι όχι διαθέσιμα σε." - -#, fuzzy -#~ msgid "Unknown position in inherited view %s !" -#~ msgstr "Άγνωστο θέση σε s!" - #, fuzzy #~ msgid "Warning: using a relation field which uses an unknown object" #~ msgstr "Προειδοποίηση a άγνωστο" -#, fuzzy -#~ msgid "You try to remove a module that is installed or will be installed" -#~ msgstr "Εσείς στο a άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο είναι ή" - -#, fuzzy -#~ msgid "" -#~ "Can not create the module file:\n" -#~ " %s" -#~ msgstr "" -#~ "όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο\n" -#~ " s" - #, fuzzy #~ msgid "Object id" #~ msgstr "Αντικείμενο id" @@ -7242,46 +7666,14 @@ msgstr "" #~ msgid "User Interface - Views" #~ msgstr "Χρήστης Περιβάλλον Προβολές" -#, fuzzy -#~ msgid "You can not remove the model '%s' !" -#~ msgstr "Εσείς όχι s!" - -#, fuzzy -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "είναι όχι!" - -#, fuzzy -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "αντιγραφή είναι όχι!" - #, fuzzy #~ msgid "Left-to-right" #~ msgstr "Αριστερά στο δεξιά" #, fuzzy -#~ msgid "" -#~ "Check this box if the partner if a supplier. If it's not checked, " -#~ "purchase people will not see it when encoding a purchase order." +#~ msgid "Check this box if the partner if a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." #~ msgstr "Έλεγχος a s όχι όχι κωδικοποίηση a." -#~ msgid "Password empty !" -#~ msgstr "Κωδικός πρόσβασης κενός!" - -#, fuzzy -#~ msgid "You can not write in this document! (%s)" -#~ msgstr "Εσείς όχι σε s" - -#, fuzzy -#~ msgid "Recursion error in modules dependencies !" -#~ msgstr "Αναδρομή σφάλμα σε Επιλογές - δυνατότητες - λειτουργίες εξαρτήσεις!" - -#~ msgid "AccessError" -#~ msgstr "Σφάλμα πρόσβασης" - -#, fuzzy -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "είναι όχι!" - #, fuzzy #~ msgid "Action type" #~ msgstr "Ενέργεια είδος" @@ -7290,104 +7682,51 @@ msgstr "" #~ msgid "# of Modules" #~ msgstr "από Αρθρώματα" -#, fuzzy -#~ msgid "Not implemented get_memory method !" -#~ msgstr "Not λήψη!" - -#, fuzzy -#~ msgid "You try to bypass an access rule (Document type: %s)." -#~ msgstr "Εσείς στο Έγγραφο είδος s." - #, fuzzy #~ msgid "Action Url" #~ msgstr "Ενέργεια Url" -#~ msgid "Partners: " -#~ msgstr "Συνεργάτες:" - #, fuzzy #~ msgid "Childs Field" #~ msgstr "Πεδίο" -#, fuzzy -#~ msgid "Can not remove root user!" -#~ msgstr "όχι root!" - -#, fuzzy -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "είναι όχι!" - #~ msgid "Next call date" #~ msgstr "Επόμενη ημερομηνία κλήσης" #~ msgid "Cumulate" #~ msgstr "Συσσωρεύστε" -#, fuzzy -#~ msgid "Pie charts need exactly two fields" -#~ msgstr "Πίτα δύο" - #, fuzzy #~ msgid "Create in Same Model" #~ msgstr "Δημιουργία σε Ίδιο Μοντέλο" -#~ msgid "Error !" -#~ msgstr "Σφάλμα" - #, fuzzy #~ msgid "" #~ "Regexp to search module on the repository webpage:\n" #~ "- The first parenthesis must match the name of the module.\n" #~ "- The second parenthesis must match all the version number.\n" #~ "- The last parenthesis must match the extension of the module." -#~ msgstr "" -#~ "στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο " -#~ "Ταιριάζω όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n " -#~ "δευτερόλεπτο Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, " -#~ "μονάδα, υπομονάδα, Δομικό Στοιχείο." +#~ msgstr "στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο Ταιριάζω όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n δευτερόλεπτο Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο." #~ msgid "Reload an Official Translation" #~ msgstr "Ξαναφορτώστε μια επίσημη μετάφραση" -#~ msgid "Bad file format" -#~ msgstr "Κακή μορφή αρχείου" - #~ msgid "Group by" #~ msgstr "Ομαδοποίηση κατά" #, fuzzy -#~ msgid "You can not remove the field '%s' !" -#~ msgstr "Εσείς όχι s!" - -#, fuzzy -#~ msgid "" -#~ "\"%s\" contains too many dots. XML ids should not contain dots ! These " -#~ "are used to refer to other modules data, as in module.reference_id" -#~ msgstr "" -#~ "s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε " -#~ "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" +#~ msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" +#~ msgstr "s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" #~ msgid "Account number" #~ msgstr "Αριθμός λογαριασμού" -#~ msgid "You can not read this document! (%s)" -#~ msgstr "Δεν μπορείτε να διαβάσετε το παρόν έγγραφο! (%s)" - #~ msgid "Export name" #~ msgstr "Όνομα εξαγωγής" #~ msgid "Object field" #~ msgstr "Τομέας αντικειμένου" -#, fuzzy -#~ msgid "" -#~ "Some installed modules depends on the module you plan to desinstall :\n" -#~ " %s" -#~ msgstr "" -#~ "Κάποια προβλήματα Επιλογές - δυνατότητες - λειτουργίες εξαρτάται άρθρωμα, " -#~ "μονάδα, υπομονάδα, Δομικό Στοιχείο στο\n" -#~ " s" - #~ msgid "Create in Other Model" #~ msgstr "Δημιουργήστε σε άλλο πρότυπο" @@ -7402,44 +7741,21 @@ msgstr "" #~ msgid "Directory:" #~ msgstr "Κατάλογος:" -#~ msgid "The name of the group can not start with \"-\"" -#~ msgstr "Το όνομα της ομάδας δεν μπορεί να αρχίσει με \"-\"" - #~ msgid "Contacts Titles" #~ msgstr "Τίτλοι επαφών" #~ msgid "Bank account owner" #~ msgstr "Ιδιοκτήτης τραπεζικού λογαριασμού" -#, fuzzy -#~ msgid "" -#~ "Save this document to a .tgz file. This archive containt UTF-8 %s files " -#~ "and may be uploaded to launchpad." -#~ msgstr "Αποθήκευση στο a αρχείο Αρχείο s και Μάιος στο." - #~ msgid "Export Id" #~ msgstr "Ταυτότητα εξαγωγής" #~ msgid "This record was modified in the meanwhile" #~ msgstr "Αυτό το αρχείο τροποποιήθηκε εν τω μεταξύ" -#~ msgid "This method does not exist anymore" -#~ msgstr "Αυτή η μέθοδος δεν υπάρχει άλλο" - -#~ msgid "Tree can only be used in tabular reports" -#~ msgstr "Το δέντρο μπορεί μόνο να χρησιμοποιηθεί στις συνοπτικές αναφορές" - #~ msgid "Bank accounts" #~ msgstr "Τραπεζικοί λογαριασμοί" -#, fuzzy -#~ msgid "Bar charts need at least two fields" -#~ msgstr "Ράβδος σε δύο" - -#, fuzzy -#~ msgid "Not implemented search_memory method !" -#~ msgstr "Not!" - #, fuzzy #~ msgid "Type of view" #~ msgstr "Τύπος από" @@ -7456,27 +7772,16 @@ msgstr "" #~ msgid "Check this box if the partner if a customer." #~ msgstr "Ελέγξτε αυτό το κιβώτιο εάν είναι συνεργάτης ή πελάτης." -#~ msgid "Second field should be figures" -#~ msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμοί" - #, fuzzy #~ msgid "Parent Action" #~ msgstr "Γονέας Ενέργεια" -#, fuzzy -#~ msgid "" -#~ "Couldn't generate the next id because some partners have an alphabetic " -#~ "id !" -#~ msgstr "t id μερικές id!" - #, fuzzy #~ msgid "Error occured while validating the field(s) %s: %s" #~ msgstr "Σφάλμα s s s" #, fuzzy -#~ msgid "" -#~ "If set to true, the wizard will not be displayed on the right toolbar of " -#~ "a form views." +#~ msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." #~ msgstr "στο αληθές όχι δεξιά από a." #~ msgid "Orignal View" @@ -7491,9 +7796,7 @@ msgstr "" #~ msgstr "Ενέργεια." #, fuzzy -#~ msgid "" -#~ "If set to true, the action will not be displayed on the right toolbar of " -#~ "a form views." +#~ msgid "If set to true, the action will not be displayed on the right toolbar of a form views." #~ msgstr "στο αληθές όχι δεξιά από a." #~ msgid "Low Level" @@ -7507,10 +7810,6 @@ msgstr "" #~ msgid "Module:" #~ msgstr "Άρθρωμα:" -#, fuzzy -#~ msgid "Enter at least one field !" -#~ msgstr "Εισαγωγή σε!" - #, fuzzy #~ msgid "Others Actions" #~ msgstr "Άλλα Ενέργειες" @@ -7533,10 +7832,6 @@ msgstr "" #~ msgid "Number of calls" #~ msgstr "Αριθμός κλήσεων" -#, fuzzy -#~ msgid "Can not create the module file: %s !" -#~ msgstr "όχι άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο αρχείο s!" - #, fuzzy #~ msgid "Right-to-left" #~ msgstr "Δεξιά στο αριστερά" @@ -7545,17 +7840,8 @@ msgstr "" #~ msgstr "Τίτλος εκθέσεων" #, fuzzy -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "διαβασμένο είναι όχι!" - -#, fuzzy -#~ msgid "" -#~ "Access all the fields related to the current object easily just by " -#~ "defining name of the attribute, i.e. [[partner_id.name]] for Invoice " -#~ "Object" -#~ msgstr "" -#~ "Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο " -#~ "Αντικείμενο" +#~ msgid "Access all the fields related to the current object easily just by defining name of the attribute, i.e. [[partner_id.name]] for Invoice Object" +#~ msgstr "Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο Αντικείμενο" #~ msgid "Created date" #~ msgstr "Ημερομηνία δημιουργείας " @@ -7568,33 +7854,12 @@ msgstr "" #~ msgid "Repeat missed" #~ msgstr "Επανάληψη" -#, fuzzy -#~ msgid "Couldn't find tag '%s' in parent view !" -#~ msgstr "t ετικέτα s σε!" - -#, fuzzy -#~ msgid "Warning" -#~ msgstr "Προειδοποίηση" - #~ msgid "Version:" #~ msgstr "Έκδοση:" -#, fuzzy -#~ msgid "You can not delete this document! (%s)" -#~ msgstr "Εσείς όχι s" - #~ msgid "Printed:" #~ msgstr "Τυπωμένο:" -#, fuzzy -#~ msgid "Can not upgrade module '%s'. It is not installed." -#~ msgstr "" -#~ "όχι αναβάθμιση άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο s είναι όχι." - -#, fuzzy -#~ msgid "Not implemented set_memory method !" -#~ msgstr "Not!" - #, fuzzy #~ msgid "Partner category" #~ msgstr "Συνεργάτης" @@ -7602,27 +7867,14 @@ msgstr "" #~ msgid "Interface" #~ msgstr "Διεπαφή" -#, fuzzy -#~ msgid "Field %d should be a figure" -#~ msgstr "Πεδίο a" - -#~ msgid "Not Implemented" -#~ msgstr "Μη εφαρμοσμένο" - #, fuzzy #~ msgid "Short description" #~ msgstr "Μικρή περιγραφή" #, fuzzy -#~ msgid "" -#~ "This is the prefix of the file name the print will be saved as " -#~ "attachement. Keep empty to not save the printed reports" +#~ msgid "This is the prefix of the file name the print will be saved as attachement. Keep empty to not save the printed reports" #~ msgstr "είναι από αρχείο όνομα Διατήρηση κενό στο όχι" -#, fuzzy -#~ msgid "The name_get method is not implemented on this object !" -#~ msgstr "όνομα λήψη είναι όχι!" - #, fuzzy #~ msgid "Year: %(year)s" #~ msgstr "Έτος έτος s" @@ -7640,14 +7892,8 @@ msgstr "" #~ msgstr "Τίτλοι" #, fuzzy -#~ msgid "" -#~ "You have to import a .CSV file wich is encoded in UTF-8. Please check " -#~ "that the first line of your file is:" -#~ msgstr "" -#~ "Εσείς στο a CSV αρχείο είναι σε Έλεγχος πρώτο γραμμή από αρχείο είναι:" - -#~ msgid "Error" -#~ msgstr "Σφάλμα" +#~ msgid "You have to import a .CSV file wich is encoded in UTF-8. Please check that the first line of your file is:" +#~ msgstr "Εσείς στο a CSV αρχείο είναι σε Έλεγχος πρώτο γραμμή από αρχείο είναι:" #, fuzzy #~ msgid "Current rate" @@ -7657,10 +7903,6 @@ msgstr "" #~ msgid "Payment term (short name)" #~ msgstr "Πληρωμή όνομα" -#, fuzzy -#~ msgid "Invalid operation" -#~ msgstr "Άκυρο" - #, fuzzy #~ msgid "Account owner" #~ msgstr "Λογαριασμός ιδιοκτήτης" @@ -7669,18 +7911,6 @@ msgstr "" #~ msgid "Field name" #~ msgstr "Όνομα πεδίου" -#, fuzzy -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "τιμή s για s είναι όχι σε" - #, fuzzy #~ msgid "Installation done" #~ msgstr "Εγκατάσταση έτοιμο" - -#, fuzzy -#~ msgid "Addresses" -#~ msgstr "Διευθύνσεις" - -#, fuzzy -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Έλεγχος όλα στήλες." From 4ab335fa86e6af126b541332ef46ce3d0ef2b9fa Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 28 May 2009 18:48:44 +0300 Subject: [PATCH 128/251] Fix greek translations. STOCK_* is a reference to icons, should never be translated. Fix some other strings, too. bzr revid: p_christ@hol.gr-20090528154844-kira6kgq7s4jl3dr --- bin/addons/base/i18n/el_GR.po | 64 ++++++++++++++++++----------------- 1 file changed, 33 insertions(+), 31 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index b2e03a24c6a..a50273304ee 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -2,22 +2,24 @@ # This file contains the translation of the following modules: # * base # +# P. Christeas , 2009. msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-04-09 17:23+0000\n" -"PO-Revision-Date: 2009-05-23 13:48+0000\n" -"Last-Translator: Panagiotis Kranidiotis \n" -"Language-Team: nls@hellug.gr \n" +"PO-Revision-Date: 2009-05-28 18:48+0300\n" +"Last-Translator: P. Christeas \n" +"Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2009-05-28 09:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"X-Generator: Lokalize 0.3\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base #: model:res.country,name:base.sh @@ -153,7 +155,7 @@ msgstr "ir.actions.report.custom" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CANCEL" -msgstr "ΑΠΟΘΕΜΑ_ΑΚΥΡΩΣΗ" +msgstr "STOCK_CANCEL" #. module: base #: field:ir.report.custom,sortby:0 @@ -185,7 +187,7 @@ msgstr "νέο" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_TOP" -msgstr "ΑΠΟΘΕΜΑ_ΠΗΓΑΙΝΕ_ΕΠΑΝΩ" +msgstr "STOCK_GOTO_TOP" #. module: base #: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 @@ -424,7 +426,7 @@ msgstr "Οδηγός" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CUT" -msgstr "ΑΠΟΘΕΜΑ_ΑΠΟΚΟΠΗ" +msgstr "STOCK_CUT" #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard @@ -1118,7 +1120,7 @@ msgstr "Source Activity" #. module: base #: view:ir.sequence:0 msgid "Legend (for prefix, suffix)" -msgstr "Legend (for prefix, suffix)" +msgstr "Κανόνες (για πρόθεμα, επίθεμα)" #. module: base #: selection:ir.server.object.lines,type:0 @@ -1149,7 +1151,7 @@ msgstr "Τύπος Διεύθυνσης" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "Auto" -msgstr "Auto" +msgstr "Αυτόματο" #. module: base #: view:res.request:0 @@ -1197,7 +1199,7 @@ msgstr "Αφήστε το κενό αν δεν επιθυμείτε ο χρήσ #. module: base #: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 msgid "View Mode" -msgstr "Mode Προβολής" +msgstr "Τρόπος Προβολής" #. module: base #: code:osv/fields.py:0 @@ -1223,7 +1225,7 @@ msgstr "STOCK_PROPERTIES" #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" -msgstr "Uninstall (beta)" +msgstr "Απεγκατάσταση" #. module: base #: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 @@ -1233,7 +1235,7 @@ msgstr "Νέο Παράθυρο" #. module: base #: model:res.country,name:base.bs msgid "Bahamas" -msgstr "Bahamas" +msgstr "Μπαχάμες" #. module: base #: selection:res.partner.event,partner_type:0 @@ -1302,7 +1304,7 @@ msgstr "Προς διαγραφή" #. module: base #: field:ir.values,meta:0 msgid "Meta Datas" -msgstr "Meta Datas" +msgstr "Μετα-Δεδομένα" #. module: base #: view:wizard.module.update_translations:0 @@ -1591,7 +1593,7 @@ msgstr "STOCK_OPEN" #. module: base #: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 msgid "Client Action" -msgstr "Client Action" +msgstr "Ενέργεια Πελάτη" #. module: base #: selection:ir.report.custom.fields,alignment:0 @@ -1687,7 +1689,7 @@ msgstr "Τύπος Τραπεζικού Λογαριασμού" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-project" -msgstr "terp-project" +msgstr "" #. module: base #: view:ir.actions.server:0 @@ -1755,7 +1757,7 @@ msgstr "Ρυθμίσεις Πρόσβασης" #. module: base #: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 msgid "Dependencies" -msgstr "Dependencies" +msgstr "Εξαρτήσεις" #. module: base #: field:res.partner,parent_id:0 @@ -1770,7 +1772,7 @@ msgstr "Χρώμα Φόντου" #. module: base #: view:ir.actions.server:0 msgid "If you use a formula type, use a python expression using the variable 'object'." -msgstr "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: field:res.partner.address,birthdate:0 @@ -1801,12 +1803,12 @@ msgstr "" #. module: base #: model:res.country,name:base.uy msgid "Uruguay" -msgstr "Uruguay" +msgstr "" #. module: base #: view:res.partner.event:0 msgid "Document Link" -msgstr "Document Link" +msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_title @@ -1816,27 +1818,27 @@ msgstr "res.partner.title" #. module: base #: field:ir.sequence,prefix:0 msgid "Prefix" -msgstr "Prefix" +msgstr "Πρόθεμα" #. module: base #: field:ir.actions.server,loop_action:0 msgid "Loop Action" -msgstr "Loop Action" +msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "German / Deutsch" -msgstr "German / Deutsch" +msgstr "Γερμανικά / Deutsch" #. module: base #: help:ir.actions.server,trigger_name:0 msgid "Select the Signal name that is to be used as the trigger." -msgstr "Select the Signal name that is to be used as the trigger." +msgstr "" #. module: base #: view:ir.actions.server:0 msgid "Fields Mapping" -msgstr "Fields Mapping" +msgstr "Αντιστοιχία πεδίων" #. module: base #: model:res.partner.title,name:base.res_partner_title_sir @@ -1856,17 +1858,17 @@ msgstr "ID Ref." #. module: base #: selection:module.lang.install,init,lang:0 msgid "French / Français" -msgstr "French / Français" +msgstr "Γαλλικά / Français" #. module: base #: model:res.country,name:base.mt msgid "Malta" -msgstr "Malta" +msgstr "Μάλτα" #. module: base #: field:ir.actions.server,fields_lines:0 msgid "Field Mappings." -msgstr "Field Mappings." +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_module_module @@ -2766,12 +2768,12 @@ msgstr "Syria" #. module: base #: view:res.lang:0 msgid "======================================================" -msgstr "======================================================" +msgstr "" #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" -msgstr "Field child2" +msgstr "" #. module: base #: field:ir.report.custom.fields,field_child3:0 @@ -3216,7 +3218,7 @@ msgstr "res.request.history" #. module: base #: view:ir.actions.server:0 msgid "Client Action Configuration" -msgstr "Client Action Configuration" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_address_form @@ -4308,7 +4310,7 @@ msgstr "Λειτουργίες Συνεργατών" #. module: base #: wizard_view:res.partner.sms_send,init:0 msgid "Bulk SMS send" -msgstr "" +msgstr "Μαζική αποστολή SMS" #. module: base #: view:res.lang:0 From 30210c877af587949e456962bed2479098edb752 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 31 May 2009 17:36:23 +0300 Subject: [PATCH 129/251] Update message catalog from working base. bzr revid: p_christ@hol.gr-20090531143623-3zn5sca6c2jdfjhz --- bin/addons/base/i18n/base.pot | 1504 ++++++++++++--------------------- 1 file changed, 518 insertions(+), 986 deletions(-) diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index 61ef6363442..897e2c9286e 100644 --- a/bin/addons/base/i18n/base.pot +++ b/bin/addons/base/i18n/base.pot @@ -1,13 +1,13 @@ # Translation of OpenERP Server. # This file contains the translation of the following modules: -# * base +# * base # msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-05-16 20:02:15+0000\n" -"PO-Revision-Date: 2009-05-16 20:02:15+0000\n" +"POT-Creation-Date: 2009-05-30 15:14:08+0000\n" +"PO-Revision-Date: 2009-05-30 15:14:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,9 +62,7 @@ msgstr "" #. module: base #: view:wizard.module.update_translations:0 -msgid "" -"This wizard will detect new terms in the application so that you can update " -"them manually." +msgid "This wizard will detect new terms in the application so that you can update them manually." msgstr "" #. module: base @@ -78,7 +76,8 @@ msgid "%j - Day of the year as a decimal number [001,366]." msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 msgid "You may have to reinstall some language pack." msgstr "" @@ -113,7 +112,8 @@ msgid "Invalid model name in the action definition." msgstr "" #. module: base -#: field:res.partner,title:0 field:res.partner.address,title:0 +#: field:res.partner,title:0 +#: field:res.partner.address,title:0 #: field:res.partner.title,name:0 msgid "Title" msgstr "" @@ -149,7 +149,8 @@ msgid "STOCK_SORT_ASCENDING" msgstr "" #. module: base -#: view:ir.model:0 view:res.groups:0 +#: view:ir.model:0 +#: view:res.groups:0 msgid "Access Rules" msgstr "" @@ -185,14 +186,23 @@ msgstr "" #. module: base #: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 -#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 -#: field:ir.model,model:0 field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 field:ir.model.grid,model:0 -#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 field:ir.ui.view,model:0 -#: field:ir.values,model_id:0 field:res.request.link,object:0 +#: field:ir.actions.report.custom,model:0 +#: field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 +#: field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 +#: field:ir.default,field_tbl:0 +#: view:ir.model:0 +#: field:ir.model,model:0 +#: field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 +#: field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 +#: field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 +#: field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 +#: field:res.request.link,object:0 #: field:wizard.ir.model.menu.create,model_id:0 #: field:workflow.triggers,model:0 msgid "Object" @@ -236,9 +246,7 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e.[[ object.partner_id.name ]]" +msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" msgstr "" #. module: base @@ -293,8 +301,10 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form -#: model:ir.ui.menu,name:base.menu_action_res_roles_form view:res.roles:0 -#: view:res.users:0 field:res.users,roles_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_roles_form +#: view:res.roles:0 +#: view:res.users:0 +#: field:res.users,roles_id:0 msgid "Roles" msgstr "" @@ -356,7 +366,8 @@ msgid "Select Report" msgstr "" #. module: base -#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 +#: view:ir.actions.wizard:0 +#: field:wizard.ir.model.menu.create.line,wizard_id:0 msgid "Wizard" msgstr "" @@ -416,7 +427,8 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.model.config,password:0 field:maintenance.contract,password:0 +#: field:ir.model.config,password:0 +#: field:maintenance.contract,password:0 #: field:maintenance.contract.wizard,password:0 #: wizard_field:res.partner.sms_send,init,password:0 #: field:res.users,password:0 @@ -435,8 +447,7 @@ msgstr "" #. module: base #: help:ir.module.repository,filter:0 -msgid "" -"Regexp to search module on the repository webpage:\n" +msgid "Regexp to search module on the repository webpage:\n" "- The first parenthesis must match the name of the module.\n" "- The second parenthesis must match the whole version number.\n" "- The last parenthesis must match the extension of the module." @@ -449,12 +460,9 @@ msgstr "" #. module: base #: model:ir.actions.todo,note:base.config_wizard_simple_view -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" +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 "" @@ -565,7 +573,8 @@ msgid "Sorted By" msgstr "" #. module: base -#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 +#: field:ir.actions.report.custom,type:0 +#: field:ir.actions.report.xml,type:0 #: field:ir.report.custom,type:0 msgid "Report Type" msgstr "" @@ -659,9 +668,7 @@ msgstr "" #. module: base #: help:ir.actions.server,loop_action:0 -msgid "" -"Select the action that will be executed. Loop action will not be avaliable " -"inside loop." +msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." msgstr "" #. module: base @@ -713,17 +720,23 @@ msgid "%m - Month as a decimal number [01,12]." msgstr "" #. module: base -#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 -#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 -#: field:maintenance.contract,state:0 field:res.bank,state:0 -#: view:res.country.state:0 field:res.partner.bank,state_id:0 -#: field:res.request,state:0 field:workflow.instance,state:0 +#: field:ir.actions.todo,state:0 +#: field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 +#: field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 +#: field:res.bank,state:0 +#: view:res.country.state:0 +#: field:res.partner.bank,state_id:0 +#: field:res.request,state:0 +#: field:workflow.instance,state:0 #: field:workflow.workitem,state:0 msgid "State" msgstr "" #. module: base -#: view:res.partner:0 field:res.partner,category_id:0 +#: view:res.partner:0 +#: field:res.partner,category_id:0 msgid "Categories" msgstr "" @@ -759,7 +772,8 @@ msgid "Libya" msgstr "" #. module: base -#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 +#: field:ir.module.category,parent_id:0 +#: field:res.partner.category,parent_id:0 msgid "Parent Category" msgstr "" @@ -794,7 +808,8 @@ msgid "Liechtenstein" msgstr "" #. module: base -#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 +#: selection:res.partner.address,type:0 +#: selection:res.partner.title,domain:0 msgid "Contact" msgstr "" @@ -871,15 +886,19 @@ msgid "Currency Rate" msgstr "" #. module: base -#: view:workflow:0 field:workflow.activity,wkf_id:0 +#: view:workflow:0 +#: field:workflow.activity,wkf_id:0 #: field:workflow.instance,wkf_id:0 msgid "Workflow" msgstr "" #. module: base -#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 -#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 -#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 +#: field:ir.actions.act_window,type:0 +#: field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 +#: field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 +#: field:ir.actions.url,type:0 #: field:ir.actions.wizard,type:0 msgid "Action Type" msgstr "" @@ -926,13 +945,13 @@ msgstr "" #. module: base #: help:ir.actions.report.xml,report_rml:0 -msgid "" -"The .rml path of the file or NULL if the content is in report_rml_content" +msgid "The .rml path of the file or NULL if the content is in report_rml_content" msgstr "" #. module: base #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form -#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form msgid "Config Wizard Steps" msgstr "" @@ -942,7 +961,8 @@ msgid "Category" msgstr "" #. module: base -#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 +#: field:ir.model.access,group_id:0 +#: field:ir.rule,rule_group:0 msgid "Group" msgstr "" @@ -972,7 +992,8 @@ msgid "Signature" msgstr "" #. module: base -#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 +#: field:ir.actions.server,sms:0 +#: selection:ir.actions.server,state:0 msgid "SMS" msgstr "" @@ -982,7 +1003,8 @@ msgid "Costa Rica" msgstr "" #. module: base -#: field:ir.exports.line,name:0 field:ir.translation,name:0 +#: field:ir.exports.line,name:0 +#: field:ir.translation,name:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" msgstr "" @@ -990,7 +1012,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window #: model:ir.model,name:base.model_res_lang -#: model:ir.ui.menu,name:base.menu_res_lang_act_window view:res.lang:0 +#: model:ir.ui.menu,name:base.menu_res_lang_act_window +#: view:res.lang:0 msgid "Languages" msgstr "" @@ -1001,16 +1024,12 @@ msgstr "" #. module: base #: help:ir.actions.report.xml,attachment:0 -msgid "" -"This is the filename of the attachment used to store the printing result. " -"Keep empty to not save the printed reports. You can use a python expression " -"with the object and time variables." +msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." msgstr "" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: base @@ -1040,7 +1059,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 +#: model:ir.ui.menu,name:base.menu_action_currency_form +#: view:res.currency:0 msgid "Currencies" msgstr "" @@ -1051,9 +1071,7 @@ msgstr "" #. module: base #: help:res.partner,lang:0 -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." +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 "" #. module: base @@ -1092,7 +1110,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: field:res.bank,email:0 field:res.partner.address,email:0 +#: field:res.bank,email:0 +#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" @@ -1166,7 +1185,8 @@ msgid "Constraint" msgstr "" #. module: base -#: selection:ir.values,key:0 selection:res.partner.address,type:0 +#: selection:ir.values,key:0 +#: selection:res.partner.address,type:0 msgid "Default" msgstr "" @@ -1236,9 +1256,7 @@ msgstr "" #. module: base #: help:ir.actions.report.xml,attachment_use:0 -msgid "" -"If you check this, then the second time the user prints with same attachment " -"name, it returns the previous report." +msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." msgstr "" #. module: base @@ -1248,9 +1266,7 @@ msgstr "" #. module: base #: help:ir.actions.server,subject:0 -msgid "" -"Specify the subject. You can use fields from the object, e.g. `Hello " -"[[ object.partner_id.name ]]`" +msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" msgstr "" #. module: base @@ -1285,7 +1301,8 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 +#: model:ir.ui.menu,name:base.next_id_14 +#: view:res.partner.event:0 msgid "Partner Events" msgstr "" @@ -1367,8 +1384,7 @@ msgstr "" #. module: base #: help:res.country,code:0 -msgid "" -"The ISO country code in two chars.\n" +msgid "The ISO country code in two chars.\n" "You can use this field for quick search." msgstr "" @@ -1398,7 +1414,8 @@ msgid "Nepal" msgstr "" #. module: base -#: wizard_view:module.lang.install,init:0 wizard_view:module.upgrade,next:0 +#: wizard_view:module.lang.install,init:0 +#: wizard_view:module.upgrade,next:0 msgid "System Upgrade" msgstr "" @@ -1443,7 +1460,8 @@ msgid "Low Level Objects" msgstr "" #. module: base -#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 +#: field:ir.actions.report.custom,multi:0 +#: field:ir.actions.report.xml,multi:0 msgid "On multiple doc." msgstr "" @@ -1459,7 +1477,8 @@ msgstr "" #. module: base #: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 +#: field:ir.actions.act_window.view,view_mode:0 +#: field:ir.ui.view,type:0 #: field:wizard.ir.model.menu.create.line,view_type:0 msgid "View Type" msgstr "" @@ -1500,7 +1519,8 @@ msgid "Bulk SMS send" msgstr "" #. module: base -#: view:res.partner.bank:0 model:res.partner.bank.type,name:base.bank_normal +#: view:res.partner.bank:0 +#: model:res.partner.bank.type,name:base.bank_normal msgid "Bank account" msgstr "" @@ -1526,8 +1546,7 @@ msgstr "" #. module: base #: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +msgid "The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base @@ -1620,7 +1639,8 @@ msgid "Actions" msgstr "" #. module: base -#: view:res.request:0 field:res.request,body:0 +#: view:res.request:0 +#: field:res.request,body:0 #: field:res.request.history,req_id:0 msgid "Request" msgstr "" @@ -1636,7 +1656,8 @@ msgid "Continue" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 +#: field:ir.model.fields,model_id:0 +#: field:ir.values,res_id:0 msgid "Object ID" msgstr "" @@ -1740,9 +1761,7 @@ msgstr "" #. module: base #: help:ir.actions.server,sequence:0 -msgid "" -"Important when you deal with multiple actions, the execution order will be " -"decided based on this, low number is higher priority." +msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." msgstr "" #. module: base @@ -1812,7 +1831,8 @@ msgid "Maldives" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 +#: model:ir.actions.act_window,name:base.ir_sequence_form +#: view:ir.sequence:0 #: model:ir.ui.menu,name:base.menu_ir_sequence_form #: model:ir.ui.menu,name:base.next_id_5 msgid "Sequences" @@ -1860,11 +1880,7 @@ msgstr "" #. module: base #: view:wizard.module.lang.export:0 -msgid "" -"To improve some terms of the official translations of OpenERP, you should " -"modify the terms directly on the launchpad interface. If you made lots of " -"translations for your own module, you can also publish all your translation " -"at once." +msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." msgstr "" #. module: base @@ -1883,15 +1899,14 @@ msgid "Partner Category" msgstr "" #. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 msgid "Trigger" msgstr "" #. module: base #: help:ir.actions.server,write_id:0 -msgid "" -"Provide the field name that the record id refers to for the write operation. " -"If it is empty it will refer to the active id of the object." +msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." msgstr "" #. module: base @@ -1906,9 +1921,7 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e. [[ object.partner_id.name ]]" +msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" msgstr "" #. module: base @@ -1944,16 +1957,20 @@ msgstr "" #. module: base #: view:ir.actions.act_window:0 #: model:ir.actions.act_window,name:base.action_ui_view -#: field:ir.actions.act_window,view_ids:0 field:ir.actions.act_window,views:0 +#: field:ir.actions.act_window,view_ids:0 +#: field:ir.actions.act_window,views:0 #: field:ir.module.module,views_by_module:0 -#: model:ir.ui.menu,name:base.menu_action_ui_view view:ir.ui.view:0 +#: model:ir.ui.menu,name:base.menu_action_ui_view +#: view:ir.ui.view:0 #: view:wizard.ir.model.menu.create:0 #: field:wizard.ir.model.menu.create,view_ids:0 msgid "Views" msgstr "" #. module: base -#: view:res.groups:0 field:res.groups,rule_groups:0 field:res.users,rules_id:0 +#: view:res.groups:0 +#: field:res.groups,rule_groups:0 +#: field:res.users,rules_id:0 msgid "Rules" msgstr "" @@ -2073,9 +2090,7 @@ msgstr "" #. module: base #: wizard_view:module.lang.install,start:0 -msgid "" -"The selected language has been successfully installed. You must change the " -"preferences of the user and open a new menu to view changes." +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 "" #. module: base @@ -2105,8 +2120,7 @@ msgstr "" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" msgstr "" @@ -2116,7 +2130,8 @@ msgid "Suffix" msgstr "" #. module: base -#: view:ir.model:0 view:res.groups:0 +#: view:ir.model:0 +#: view:res.groups:0 msgid "Access Rights" msgstr "" @@ -2163,10 +2178,7 @@ msgstr "" #. module: base #: help:ir.ui.menu,groups_id:0 -msgid "" -"If you have groups, the visibility of this menu will be based on these " -"groups. If this field is empty, Open ERP will compute visibility based on " -"the related object's read access." +msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." msgstr "" #. module: base @@ -2207,10 +2219,7 @@ msgstr "" #. module: base #: view:res.config.view:0 -msgid "" -"Choose the simplified interface if you are testing OpenERP for the first " -"time. Less used options or fields are automatically hidden. You will be able " -"to change this, later, through the Administration menu." +msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." msgstr "" #. module: base @@ -2234,7 +2243,8 @@ msgid "Labels" msgstr "" #. module: base -#: field:res.request,act_from:0 field:res.request.history,act_from:0 +#: field:res.request,act_from:0 +#: field:res.request.history,act_from:0 msgid "From" msgstr "" @@ -2274,7 +2284,8 @@ msgid "Andorra, Principality of" msgstr "" #. module: base -#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 +#: field:ir.module.category,child_ids:0 +#: field:res.partner.category,child_ids:0 msgid "Child Categories" msgstr "" @@ -2314,9 +2325,12 @@ msgid "Sender's email" msgstr "" #. module: base -#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 -#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 -#: field:ir.values,key:0 view:res.partner:0 +#: field:ir.actions.report.xml,report_type:0 +#: field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 +#: field:ir.translation,type:0 +#: field:ir.values,key:0 +#: view:res.partner:0 msgid "Type" msgstr "" @@ -2361,7 +2375,8 @@ msgid "ir.actions.actions" msgstr "" #. module: base -#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation +#: view:ir.translation:0 +#: model:ir.ui.menu,name:base.menu_translation msgid "Translations" msgstr "" @@ -2427,7 +2442,8 @@ msgid "Ukraine" msgstr "" #. module: base -#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 +#: selection:ir.actions.server,state:0 +#: selection:workflow.activity,kind:0 msgid "Dummy" msgstr "" @@ -2467,7 +2483,8 @@ msgid "Tests" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 +#: model:ir.model,name:base.model_ir_module_category +#: view:ir.module.category:0 msgid "Module Category" msgstr "" @@ -2559,9 +2576,7 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "" -"Only one client action will be execute, last " -"clinent action will be consider in case of multiples clients actions" +msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" msgstr "" #. module: base @@ -2570,8 +2585,10 @@ msgid "STOCK_HELP" msgstr "" #. module: base -#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access -#: view:res.groups:0 field:res.groups,model_access:0 +#: view:ir.model.access:0 +#: model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 +#: field:res.groups,model_access:0 msgid "Access Controls" msgstr "" @@ -2599,8 +2616,10 @@ msgid "Partner Functions" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 -#: view:res.currency:0 field:res.currency,name:0 +#: model:ir.model,name:base.model_res_currency +#: field:res.company,currency_id:0 +#: view:res.currency:0 +#: field:res.currency,name:0 #: field:res.currency.rate,currency_id:0 msgid "Currency" msgstr "" @@ -2703,9 +2722,7 @@ msgstr "" #. module: base #: wizard_view:module.module.update,init:0 -msgid "" -"This function will check for new modules in the 'addons' path and on module " -"repositories:" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" msgstr "" #. module: base @@ -2719,16 +2736,14 @@ msgid "child_of" msgstr "" #. module: base -#: view:res.currency:0 field:res.currency,rate_ids:0 +#: view:res.currency:0 +#: field:res.currency,rate_ids:0 msgid "Rates" msgstr "" #. module: base #: view:res.lang:0 -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." +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 "" #. module: base @@ -2757,7 +2772,8 @@ msgid "Field child2" msgstr "" #. module: base -#: field:ir.values,key2:0 view:res.partner.event.type:0 +#: field:ir.values,key2:0 +#: view:res.partner.event.type:0 #: field:res.partner.event.type,name:0 msgid "Event Type" msgstr "" @@ -2773,7 +2789,8 @@ msgid "Field child1" msgstr "" #. module: base -#: field:ir.module.module,website:0 field:res.partner,website:0 +#: field:ir.module.module,website:0 +#: field:res.partner,website:0 msgid "Website" msgstr "" @@ -2803,7 +2820,8 @@ msgid "Algeria" msgstr "" #. module: base -#: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 +#: field:ir.report.custom.fields,operation:0 +#: field:ir.ui.menu,icon_pict:0 #: field:wizard.module.lang.export,state:0 msgid "unknown" msgstr "" @@ -2850,8 +2868,10 @@ msgid "ir.model.access" msgstr "" #. module: base -#: field:res.currency.rate,name:0 field:res.partner,date:0 -#: field:res.partner.event,date:0 field:res.request,date_sent:0 +#: field:res.currency.rate,name:0 +#: field:res.partner,date:0 +#: field:res.partner.event,date:0 +#: field:res.request,date_sent:0 msgid "Date" msgstr "" @@ -2871,7 +2891,8 @@ msgid "Iraq" msgstr "" #. module: base -#: view:ir.attachment:0 field:ir.attachment,datas:0 +#: view:ir.attachment:0 +#: field:ir.attachment,datas:0 msgid "Data" msgstr "" @@ -2894,7 +2915,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 +#: model:ir.ui.menu,name:base.next_id_12 +#: view:res.request:0 msgid "Requests" msgstr "" @@ -2904,8 +2926,10 @@ msgid "Chile" msgstr "" #. module: base -#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 -#: field:res.partner,lang:0 field:res.users,context_lang:0 +#: field:ir.translation,lang:0 +#: wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 +#: field:res.users,context_lang:0 #: field:wizard.module.lang.export,lang:0 #: field:wizard.module.update_translations,lang:0 msgid "Language" @@ -2934,16 +2958,16 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 +#: model:ir.ui.menu,name:base.menu_action_res_company_form +#: view:res.company:0 msgid "Companies" msgstr "" #. module: base #: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: help:ir.actions.report.custom,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "If set to true, the action will not be displayed on the right toolbar of a form view." msgstr "" #. module: base @@ -2998,7 +3022,8 @@ msgid "RML Internal Header" msgstr "" #. module: base -#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 msgid "Base Object" msgstr "" @@ -3041,7 +3066,8 @@ msgid "Creator" msgstr "" #. module: base -#: view:ir.actions.server:0 field:ir.actions.server,code:0 +#: view:ir.actions.server:0 +#: field:ir.actions.server,code:0 #: selection:ir.actions.server,state:0 msgid "Python Code" msgstr "" @@ -3062,7 +3088,8 @@ msgid "The kernel of OpenERP, needed for all installation." msgstr "" #. module: base -#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 +#: field:ir.actions.act_window,view_mode:0 +#: field:res.config.view,view:0 msgid "View Mode" msgstr "" @@ -3139,14 +3166,18 @@ msgid "Source Activity" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 field:ir.model.data,res_id:0 -#: field:ir.translation,res_id:0 field:workflow.instance,res_id:0 +#: field:ir.attachment,res_id:0 +#: field:ir.model.data,res_id:0 +#: field:ir.translation,res_id:0 +#: field:workflow.instance,res_id:0 #: field:workflow.triggers,res_id:0 msgid "Resource ID" msgstr "" #. module: base -#: view:ir.cron:0 field:ir.model,info:0 field:ir.model.grid,info:0 +#: view:ir.cron:0 +#: field:ir.model,info:0 +#: field:ir.model.grid,info:0 #: view:maintenance.contract:0 msgid "Information" msgstr "" @@ -3202,21 +3233,20 @@ msgid "Maintenance contract added !" msgstr "" #. module: base -#: field:ir.rule,field_id:0 selection:ir.translation,type:0 +#: field:ir.rule,field_id:0 +#: selection:ir.translation,type:0 msgid "Field" msgstr "" #. module: base -#: selection:ir.actions.todo,type:0 selection:res.partner.address,type:0 +#: selection:ir.actions.todo,type:0 +#: selection:res.partner.address,type:0 msgid "Other" msgstr "" #. module: base #: help:ir.actions.server,email:0 -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" +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 "" #. module: base @@ -3251,7 +3281,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form -#: model:ir.ui.menu,name:base.menu_workflow_activity view:workflow:0 +#: model:ir.ui.menu,name:base.menu_workflow_activity +#: view:workflow:0 #: field:workflow,activities:0 msgid "Activities" msgstr "" @@ -3262,7 +3293,8 @@ msgid "Dedicated Salesman" msgstr "" #. module: base -#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 +#: field:ir.ui.menu,parent_id:0 +#: field:wizard.ir.model.menu.create,menu_id:0 msgid "Parent Menu" msgstr "" @@ -3326,7 +3358,8 @@ msgstr "" #: selection:ir.report.custom.fields,fc0_op:0 #: selection:ir.report.custom.fields,fc1_op:0 #: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 msgid "=" msgstr "" @@ -3336,7 +3369,8 @@ msgid "Payment Term (short name)" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_bank view:res.bank:0 +#: model:ir.model,name:base.model_res_bank +#: view:res.bank:0 #: field:res.partner.bank,bank:0 msgid "Bank" msgstr "" @@ -3352,17 +3386,30 @@ msgid "Reports :" msgstr "" #. module: base -#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 -#: field:ir.cron,name:0 field:ir.model.access,name:0 -#: field:ir.model.fields,name:0 field:ir.module.category,name:0 -#: field:ir.module.module,name:0 field:ir.module.module.dependency,name:0 -#: rml:ir.module.reference:0 field:ir.module.repository,name:0 -#: field:ir.property,name:0 field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 field:ir.values,name:0 -#: field:maintenance.contract.module,name:0 field:res.bank,name:0 -#: field:res.config.view,name:0 field:res.lang,name:0 field:res.partner,name:0 -#: field:res.partner.bank.type,name:0 field:res.request.link,name:0 -#: field:res.users,name:0 field:workflow,name:0 field:workflow.activity,name:0 +#: field:ir.actions.report.xml,name:0 +#: field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 +#: field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 +#: field:ir.module.category,name:0 +#: field:ir.module.module,name:0 +#: field:ir.module.module.dependency,name:0 +#: rml:ir.module.reference:0 +#: field:ir.module.repository,name:0 +#: field:ir.property,name:0 +#: field:ir.report.custom.fields,name:0 +#: field:ir.rule.group,name:0 +#: field:ir.values,name:0 +#: field:maintenance.contract.module,name:0 +#: field:res.bank,name:0 +#: field:res.config.view,name:0 +#: field:res.lang,name:0 +#: field:res.partner,name:0 +#: field:res.partner.bank.type,name:0 +#: field:res.request.link,name:0 +#: field:res.users,name:0 +#: field:workflow,name:0 +#: field:workflow.activity,name:0 msgid "Name" msgstr "" @@ -3404,9 +3451,7 @@ msgstr "" #. module: base #: view:res.users:0 -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." +msgid "Please note that you will have to logout and relog if you change your password." msgstr "" #. module: base @@ -3451,12 +3496,14 @@ msgid "Honduras" msgstr "" #. module: base -#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 +#: field:ir.ui.view,arch:0 +#: field:ir.ui.view.custom,arch:0 msgid "View Architecture" msgstr "" #. module: base -#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 +#: view:maintenance.contract:0 +#: field:maintenance.contract,module_ids:0 msgid "Covered Modules" msgstr "" @@ -3541,7 +3588,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_server_action -#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action +#: view:ir.actions.server:0 +#: model:ir.ui.menu,name:base.menu_server_action msgid "Server Actions" msgstr "" @@ -3597,9 +3645,7 @@ msgstr "" #. module: base #: wizard_view:module.lang.import,init:0 -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:" +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 "" #. module: base @@ -3630,6 +3676,7 @@ msgstr "" #. module: base #: help:res.country.state,code:0 msgid "The state code in three chars.\n" +"" msgstr "" #. module: base @@ -3643,7 +3690,8 @@ msgid "Test" msgstr "" #. module: base -#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 +#: field:ir.actions.act_window.view,view_id:0 +#: field:ir.default,page:0 #: selection:ir.translation,type:0 #: field:wizard.ir.model.menu.create.line,view_id:0 msgid "View" @@ -3660,7 +3708,8 @@ msgid "Kyrgyz Republic (Kyrgyzstan)" msgstr "" #. module: base -#: view:ir.model:0 view:ir.model.fields:0 +#: view:ir.model:0 +#: view:ir.model.fields:0 msgid "Security on Groups" msgstr "" @@ -3686,7 +3735,8 @@ msgid "STOCK_HOME" msgstr "" #. module: base -#: field:res.bank,zip:0 field:res.partner.address,zip:0 +#: field:res.bank,zip:0 +#: field:res.partner.address,zip:0 #: field:res.partner.bank,zip:0 msgid "Zip" msgstr "" @@ -3713,7 +3763,8 @@ msgid "Update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 +#: model:ir.actions.act_window,name:base.ir_cron_act +#: view:ir.cron:0 #: model:ir.ui.menu,name:base.menu_ir_cron_act msgid "Scheduled Actions" msgstr "" @@ -3740,7 +3791,9 @@ msgid "Link" msgstr "" #. module: base -#: view:res.partner:0 view:res.request:0 field:res.request,history:0 +#: view:res.partner:0 +#: view:res.request:0 +#: field:res.request,history:0 msgid "History" msgstr "" @@ -3785,14 +3838,23 @@ msgstr "" msgid "Interval Unit" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "cs_CS" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONVERT" msgstr "" #. module: base -#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 -#: field:res.partner,comment:0 field:res.partner.function,ref:0 +#: view:ir.attachment:0 +#: view:ir.model:0 +#: view:res.groups:0 +#: view:res.partner:0 +#: field:res.partner,comment:0 +#: field:res.partner.function,ref:0 msgid "Notes" msgstr "" @@ -3807,8 +3869,10 @@ msgid "Days" msgstr "" #. module: base -#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 field:ir.values,value:0 +#: field:ir.property,value:0 +#: selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 +#: field:ir.values,value:0 #: field:ir.values,value_unpickle:0 msgid "Value" msgstr "" @@ -3824,9 +3888,13 @@ msgid "Update Translations" msgstr "" #. module: base -#: selection:ir.translation,type:0 field:res.bank,code:0 -#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 -#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 msgid "Code" msgstr "" @@ -3861,7 +3929,8 @@ msgid "Minutes" msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 msgid "The modules have been upgraded / installed !" msgstr "" @@ -3876,7 +3945,8 @@ msgid "Domain Value" msgstr "" #. module: base -#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 +#: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "" @@ -3936,9 +4006,7 @@ msgstr "" #. module: base #: help:ir.actions.server,condition:0 -msgid "" -"Condition that is to be tested before action is executed, e.g. object." -"list_price > object.cost_price" +msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" msgstr "" #. module: base @@ -3964,15 +4032,14 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_form #: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 +#: model:ir.ui.menu,name:base.menu_partner_form +#: view:res.partner:0 msgid "Partners" msgstr "" #. module: base #: help:ir.actions.server,message:0 -msgid "" -"Specify the message. You can use the fields from the object. e.g. `Dear " -"[[ object.partner_id.name ]]`" +msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" msgstr "" #. module: base @@ -4002,7 +4069,8 @@ msgid "Export ID" msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." msgstr "" @@ -4017,8 +4085,10 @@ msgid "France" msgstr "" #. module: base -#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 -#: field:res.request,priority:0 field:res.request.link,priority:0 +#: field:ir.cron,priority:0 +#: field:ir.ui.view,priority:0 +#: field:res.request,priority:0 +#: field:res.request.link,priority:0 msgid "Priority" msgstr "" @@ -4079,7 +4149,8 @@ msgid "Resource Name" msgstr "" #. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 msgid "Multi Actions" msgstr "" @@ -4095,13 +4166,12 @@ msgstr "" #. module: base #: help:ir.actions.server,record_id:0 -msgid "" -"Provide the field name where the record id is stored after the create " -"operations. If it is empty, you can not track the new record." +msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" #. module: base -#: view:res.company:0 view:res.partner:0 +#: view:res.company:0 +#: view:res.partner:0 msgid "General Information" msgstr "" @@ -4168,10 +4238,7 @@ msgstr "" #. module: base #: view:res.lang:0 -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." +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 "" #. module: base @@ -4200,7 +4267,8 @@ msgid "Ghana" msgstr "" #. module: base -#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 +#: field:maintenance.contract,kind:0 +#: field:workflow.activity,kind:0 msgid "Kind" msgstr "" @@ -4243,7 +4311,8 @@ msgstr "" #: wizard_button:module.upgrade,next,end:0 #: wizard_button:res.partner.sms_send,init,end:0 #: wizard_button:res.partner.spam_send,init,end:0 -#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 +#: view:wizard.ir.model.menu.create:0 +#: view:wizard.module.lang.export:0 #: view:wizard.module.update_translations:0 msgid "Cancel" msgstr "" @@ -4259,7 +4328,8 @@ msgid "Directory" msgstr "" #. module: base -#: field:res.partner.event,som:0 field:res.partner.som,name:0 +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 msgid "State of Mind" msgstr "" @@ -4275,9 +4345,7 @@ msgstr "" #. module: base #: help:res.partner,supplier:0 -msgid "" -"Check this box if the partner is a supplier. If it's not checked, purchase " -"people will not see it when encoding a purchase order." +msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." msgstr "" #. module: base @@ -4287,8 +4355,7 @@ msgstr "" #. module: base #: help:res.users,password:0 -msgid "" -"Keep empty if you don't want the user to be able to connect on the system." +msgid "Keep empty if you don't want the user to be able to connect on the system." msgstr "" #. module: base @@ -4328,10 +4395,7 @@ msgstr "" #. module: base #: view:wizard.module.lang.export:0 -msgid "" -"The official translations pack of all OpenERP/OpenObjects module are managed " -"through launchpad. We use their online interface to synchronize all " -"translations efforts." +msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." msgstr "" #. module: base @@ -4384,8 +4448,10 @@ msgid "United States" msgstr "" #. module: base -#: field:ir.default,company_id:0 field:ir.property,company_id:0 -#: field:ir.values,company_id:0 view:res.company:0 +#: field:ir.default,company_id:0 +#: field:ir.property,company_id:0 +#: field:ir.values,company_id:0 +#: view:res.company:0 #: field:res.users,company_id:0 msgid "Company" msgstr "" @@ -4406,7 +4472,8 @@ msgid "Sir" msgstr "" #. module: base -#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 +#: selection:ir.actions.act_window,target:0 +#: selection:ir.actions.url,target:0 msgid "New Window" msgstr "" @@ -4442,10 +4509,8 @@ msgstr "" #. module: base #: model:ir.actions.todo,note:base.config_wizard_step_user -msgid "" -"Create your users.\n" -"You will be able to assign groups to users. Groups define the access rights " -"of each users on the different objects of the system.\n" +msgid "Create your users.\n" +"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" " " msgstr "" @@ -4492,7 +4557,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event -#: field:res.partner,events:0 field:res.partner.event,name:0 +#: field:res.partner,events:0 +#: field:res.partner.event,name:0 msgid "Events" msgstr "" @@ -4508,7 +4574,8 @@ msgid "Pitcairn Island" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 +#: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -4566,7 +4633,8 @@ msgid "Number of modules added" msgstr "" #. module: base -#: field:res.bank,phone:0 field:res.partner.address,phone:0 +#: field:res.bank,phone:0 +#: field:res.partner.address,phone:0 msgid "Phone" msgstr "" @@ -4583,11 +4651,16 @@ msgstr "" #. module: base #: field:ir.actions.act_window,groups_id:0 #: model:ir.actions.act_window,name:base.action_res_groups -#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 -#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 -#: view:res.users:0 field:res.users,groups_id:0 +#: field:ir.actions.report.xml,groups_id:0 +#: field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 +#: field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 +#: field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups +#: view:res.groups:0 +#: view:res.users:0 +#: field:res.users,groups_id:0 msgid "Groups" msgstr "" @@ -4612,7 +4685,9 @@ msgid "Dutch (Belgium) / Nederlands (Belgïe)" msgstr "" #. module: base -#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 +#: view:ir.model:0 +#: view:ir.model.fields:0 +#: view:ir.property:0 #: model:ir.ui.menu,name:base.next_id_15 msgid "Properties" msgstr "" @@ -4691,21 +4766,27 @@ msgid "Meta Datas" msgstr "" #. module: base -#: field:ir.model,name:0 field:ir.model.fields,model:0 -#: field:ir.model.grid,name:0 field:ir.values,model:0 +#: field:ir.model,name:0 +#: field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 +#: field:ir.values,model:0 msgid "Object Name" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 selection:ir.values,key:0 +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 msgid "Action" msgstr "" #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard -#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard +#: view:ir.actions.wizard:0 +#: model:ir.ui.menu,name:base.menu_ir_action_wizard msgid "Wizards" msgstr "" @@ -4716,10 +4797,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -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`." +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 "" #. module: base @@ -4740,12 +4818,14 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_attachment -#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment +#: view:ir.attachment:0 +#: model:ir.ui.menu,name:base.menu_action_attachment msgid "Attachments" msgstr "" #. module: base -#: field:res.request,act_to:0 field:res.request.history,act_to:0 +#: field:res.request,act_to:0 +#: field:res.request.history,act_to:0 msgid "To" msgstr "" @@ -4816,9 +4896,7 @@ msgstr "" #. module: base #: help:res.partner,vat:0 -msgid "" -"Value Added Tax number. Check the box if the partner is subjected to the " -"VAT. Used by the VAT legal statement." +msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." msgstr "" #. module: base @@ -4852,8 +4930,10 @@ msgid "Size" msgstr "" #. module: base -#: field:res.bank,city:0 field:res.partner,city:0 -#: field:res.partner.address,city:0 field:res.partner.bank,city:0 +#: field:res.bank,city:0 +#: field:res.partner,city:0 +#: field:res.partner.address,city:0 +#: field:res.partner.bank,city:0 msgid "City" msgstr "" @@ -4868,7 +4948,8 @@ msgid "Italy" msgstr "" #. module: base -#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 msgid "Custom Object" msgstr "" @@ -4879,7 +4960,9 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 +#: field:ir.report.custom,menu_id:0 +#: view:ir.ui.menu:0 +#: field:ir.ui.menu,name:0 msgid "Menu" msgstr "" @@ -4909,7 +4992,8 @@ msgid "Estonian / Eesti keel" msgstr "" #. module: base -#: field:ir.module.module,menus_by_module:0 view:res.groups:0 +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 msgid "Menus" msgstr "" @@ -4939,7 +5023,8 @@ msgid "Action Target" msgstr "" #. module: base -#: field:ir.report.custom,field_parent:0 field:ir.ui.view,field_parent:0 +#: field:ir.report.custom,field_parent:0 +#: field:ir.ui.view,field_parent:0 msgid "Child Field" msgstr "" @@ -4965,9 +5050,12 @@ msgstr "" #. module: base #: field:ir.actions.act_window,usage:0 -#: field:ir.actions.act_window_close,usage:0 field:ir.actions.actions,usage:0 -#: field:ir.actions.report.custom,usage:0 field:ir.actions.report.xml,usage:0 -#: field:ir.actions.server,usage:0 field:ir.actions.wizard,usage:0 +#: field:ir.actions.act_window_close,usage:0 +#: field:ir.actions.actions,usage:0 +#: field:ir.actions.report.custom,usage:0 +#: field:ir.actions.report.xml,usage:0 +#: field:ir.actions.server,usage:0 +#: field:ir.actions.wizard,usage:0 msgid "Action Usage" msgstr "" @@ -5027,7 +5115,8 @@ msgid "Uninstallable" msgstr "" #. module: base -#: field:ir.module.module,url:0 field:ir.module.repository,url:0 +#: field:ir.module.module,url:0 +#: field:ir.module.repository,url:0 msgid "URL" msgstr "" @@ -5085,7 +5174,8 @@ msgid "terp-calendar" msgstr "" #. module: base -#: field:ir.exports,resource:0 field:ir.property,res_id:0 +#: field:ir.exports,resource:0 +#: field:ir.property,res_id:0 msgid "Resource" msgstr "" @@ -5113,13 +5203,15 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_module_open_categ #: model:ir.actions.act_window,name:base.open_module_tree -#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree +#: view:ir.module.module:0 +#: model:ir.ui.menu,name:base.menu_module_tree #: field:wizard.module.lang.export,modules:0 msgid "Modules" msgstr "" #. module: base -#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 +#: selection:workflow.activity,kind:0 +#: field:workflow.activity,subflow_id:0 #: field:workflow.workitem,subflow_id:0 msgid "Subflow" msgstr "" @@ -5135,7 +5227,8 @@ msgid "Trinidad and Tobago" msgstr "" #. module: base -#: field:maintenance.contract,name:0 field:maintenance.contract.wizard,name:0 +#: field:maintenance.contract,name:0 +#: field:maintenance.contract.wizard,name:0 msgid "Contract ID" msgstr "" @@ -5161,13 +5254,15 @@ msgid "Apply Scheduled Upgrades" msgstr "" #. module: base -#: view:workflow.activity:0 field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +#: field:workflow.workitem,act_id:0 msgid "Activity" msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_bank_form -#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 +#: model:ir.ui.menu,name:base.menu_action_res_bank_form +#: view:res.bank:0 #: field:res.partner,bank_ids:0 msgid "Banks" msgstr "" @@ -5178,7 +5273,8 @@ msgid "res.config.view" msgstr "" #. module: base -#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 +#: view:ir.ui.view_sc:0 +#: field:res.partner.title,shortcut:0 msgid "Shortcut" msgstr "" @@ -5238,7 +5334,8 @@ msgid "Published Version" msgstr "" #. module: base -#: help:res.currency,rate:0 help:res.currency.rate,rate:0 +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 msgid "The rate of the currency to the currency of rate 1" msgstr "" @@ -5336,7 +5433,8 @@ msgid "ir.ui.view_sc" msgstr "" #. module: base -#: view:ir.model:0 view:res.request:0 +#: view:ir.model:0 +#: view:res.request:0 msgid "Status" msgstr "" @@ -5379,17 +5477,20 @@ msgid "Base Field" msgstr "" #. module: base -#: field:ir.attachment,datas_fname:0 field:wizard.module.lang.export,name:0 +#: field:ir.attachment,datas_fname:0 +#: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" #. module: base -#: field:ir.model,access_ids:0 field:ir.model.grid,access_ids:0 +#: field:ir.model,access_ids:0 +#: field:ir.model.grid,access_ids:0 msgid "Access" msgstr "" #. module: base -#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 +#: field:res.partner,child_ids:0 +#: field:res.request,ref_partner_id:0 msgid "Partner Ref." msgstr "" @@ -5415,9 +5516,7 @@ msgstr "" #. module: base #: help:res.partner,user_id:0 -msgid "" -"The internal user that is in charge of communicating with this partner if " -"any." +msgid "The internal user that is in charge of communicating with this partner if any." msgstr "" #. module: base @@ -5442,7 +5541,8 @@ msgid "Bahrain" msgstr "" #. module: base -#: field:res.bank,fax:0 field:res.partner.address,fax:0 +#: field:res.bank,fax:0 +#: field:res.partner.address,fax:0 msgid "Fax" msgstr "" @@ -5494,9 +5594,7 @@ msgstr "" #. module: base #: help:ir.actions.server,srcmodel_id:0 -msgid "" -"Object in which you want to create / write the object. If it is empty then " -"refer to the Object field." +msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." msgstr "" #. module: base @@ -5565,7 +5663,8 @@ msgid "%p - Equivalent of either AM or PM." msgstr "" #. module: base -#: field:ir.actions.act_window,limit:0 field:ir.report.custom,limitt:0 +#: field:ir.actions.act_window,limit:0 +#: field:ir.report.custom,limitt:0 msgid "Limit" msgstr "" @@ -5669,8 +5768,10 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 view:ir.module.module:0 -#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 +#: field:ir.model.data,module:0 +#: view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 +#: rml:ir.module.reference:0 msgid "Module" msgstr "" @@ -5690,7 +5791,8 @@ msgid "Gibraltar" msgstr "" #. module: base -#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 +#: field:ir.actions.server,action_id:0 +#: selection:ir.actions.server,state:0 msgid "Client Action" msgstr "" @@ -5745,7 +5847,8 @@ msgid "Loop Action" msgstr "" #. module: base -#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 +#: rml:ir.module.reference:0 +#: field:maintenance.contract.module,version:0 msgid "Version" msgstr "" @@ -5781,7 +5884,8 @@ msgid "Email" msgstr "" #. module: base -#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 +#: view:res.partner.canal:0 +#: field:res.partner.event,canal_id:0 msgid "Channel" msgstr "" @@ -5792,10 +5896,7 @@ msgstr "" #. module: base #: help:ir.actions.server,mobile:0 -msgid "" -"Provides fields that be used to fetch the mobile number, e.g. you select the " -"invoice, then `object.invoice_address_id.mobile` is the field which gives " -"the correct mobile number" +msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" msgstr "" #. module: base @@ -5855,17 +5956,22 @@ msgid "Armenia" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 -#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields -#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 -#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 +#: model:ir.actions.act_window,name:base.action_model_fields +#: view:ir.model:0 +#: field:ir.model,field_id:0 +#: model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 +#: field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 +#: field:ir.report.custom,fields_child0:0 #: model:ir.ui.menu,name:base.ir_model_model_fields msgid "Fields" msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_base_config -#: model:ir.ui.menu,name:base.menu_config view:res.company:0 +#: model:ir.ui.menu,name:base.menu_config +#: view:res.company:0 msgid "Configuration" msgstr "" @@ -5875,12 +5981,14 @@ msgid "Starting Date" msgstr "" #. module: base -#: view:ir.model:0 field:ir.model.fields,ttype:0 +#: view:ir.model:0 +#: field:ir.model.fields,ttype:0 msgid "Field Type" msgstr "" #. module: base -#: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 +#: field:ir.model.fields,complete_name:0 +#: field:ir.ui.menu,complete_name:0 msgid "Complete Name" msgstr "" @@ -5900,7 +6008,8 @@ msgid "Reply" msgstr "" #. module: base -#: field:ir.cron,function:0 field:res.partner.address,function:0 +#: field:ir.cron,function:0 +#: field:res.partner.address,function:0 #: selection:workflow.activity,kind:0 msgid "Function" msgstr "" @@ -5924,7 +6033,8 @@ msgstr "" #: selection:ir.report.custom.fields,fc0_op:0 #: selection:ir.report.custom.fields,fc1_op:0 #: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 msgid "in" msgstr "" @@ -5951,9 +6061,7 @@ msgstr "" #. module: base #: help:ir.actions.wizard,multi:0 -msgid "" -"If set to true, the wizard will not be displayed on the right toolbar of a " -"form view." +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." msgstr "" #. module: base @@ -6030,7 +6138,8 @@ msgid "Comment" msgstr "" #. module: base -#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 +#: field:ir.model.fields,domain:0 +#: field:ir.rule,domain:0 #: field:res.partner.title,domain:0 msgid "Domain" msgstr "" @@ -6042,10 +6151,16 @@ msgstr "" #. module: base #: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 msgid "Subject" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "sv_SV" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%X - Appropriate time representation." @@ -6068,11 +6183,7 @@ msgstr "" #. module: base #: help:res.lang,grouping:0 -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." +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 "" #. module: base @@ -6128,7 +6239,8 @@ msgid "Netherlands" msgstr "" #. module: base -#: field:res.partner,address:0 view:res.partner.address:0 +#: field:res.partner,address:0 +#: view:res.partner.address:0 msgid "Contacts" msgstr "" @@ -6215,12 +6327,14 @@ msgid "STOCK_OPEN" msgstr "" #. module: base -#: view:ir.actions.server:0 field:workflow.activity,action_id:0 +#: view:ir.actions.server:0 +#: field:workflow.activity,action_id:0 msgid "Server Action" msgstr "" #. module: base -#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 +#: wizard_field:res.partner.sms_send,init,user:0 +#: field:res.users,login:0 msgid "Login" msgstr "" @@ -6235,8 +6349,10 @@ msgid "Belarus" msgstr "" #. module: base -#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 -#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 +#: field:ir.actions.act_window,name:0 +#: field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 +#: field:ir.actions.server,name:0 #: field:ir.actions.url,name:0 msgid "Action Name" msgstr "" @@ -6262,7 +6378,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: field:res.bank,street2:0 field:res.partner.address,street2:0 +#: field:res.bank,street2:0 +#: field:res.partner.address,street2:0 msgid "Street2" msgstr "" @@ -6277,13 +6394,16 @@ msgid "Localisation" msgstr "" #. module: base -#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 +#: view:ir.module.module:0 +#: field:ir.module.module,dependencies_id:0 msgid "Dependencies" msgstr "" #. module: base -#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 +#: field:ir.cron,user_id:0 +#: field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 +#: field:res.partner.event,user_id:0 #: view:res.users:0 msgid "User" msgstr "" @@ -6353,9 +6473,7 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "" -"If you use a formula type, use a python expression using the variable " -"'object'." +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base @@ -6372,11 +6490,15 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 +#: field:ir.actions.todo,users_id:0 +#: field:ir.default,uid:0 #: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users -#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 -#: field:res.groups,users:0 field:res.roles,users:0 view:res.users:0 +#: model:ir.ui.menu,name:base.menu_users +#: view:res.groups:0 +#: field:res.groups,users:0 +#: field:res.roles,users:0 +#: view:res.users:0 msgid "Users" msgstr "" @@ -6407,12 +6529,19 @@ msgid "Filter" msgstr "" #. module: base -#: field:ir.actions.todo,active:0 field:ir.cron,active:0 -#: field:ir.module.repository,active:0 field:ir.sequence,active:0 -#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 -#: field:res.partner,active:0 field:res.partner.address,active:0 -#: field:res.partner.canal,active:0 field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 field:res.request,active:0 +#: field:ir.actions.todo,active:0 +#: field:ir.cron,active:0 +#: field:ir.module.repository,active:0 +#: field:ir.sequence,active:0 +#: field:res.bank,active:0 +#: field:res.currency,active:0 +#: field:res.lang,active:0 +#: field:res.partner,active:0 +#: field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 +#: field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 +#: field:res.request,active:0 #: field:res.users,active:0 msgid "Active" msgstr "" @@ -6457,7 +6586,8 @@ msgid "Grenada" msgstr "" #. module: base -#: field:ir.sequence,code:0 field:ir.sequence.type,code:0 +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 msgid "Sequence Code" msgstr "" @@ -6512,7 +6642,8 @@ msgid "Partner State of Mind" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_bank view:res.partner.bank:0 +#: model:ir.model,name:base.model_res_partner_bank +#: view:res.partner.bank:0 msgid "Bank Accounts" msgstr "" @@ -6572,7 +6703,8 @@ msgid "Close" msgstr "" #. module: base -#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 +#: field:ir.sequence,name:0 +#: field:ir.sequence.type,name:0 msgid "Sequence Name" msgstr "" @@ -6582,7 +6714,8 @@ msgid "Turks and Caicos Islands" msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 msgid "System upgrade done" msgstr "" @@ -6666,7 +6799,8 @@ msgid "Arguments" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 field:workflow,osv:0 +#: field:ir.attachment,res_model:0 +#: field:workflow,osv:0 #: field:workflow.instance,res_type:0 msgid "Resource Object" msgstr "" @@ -6697,7 +6831,8 @@ msgid "File Format" msgstr "" #. module: base -#: field:ir.model,state:0 field:ir.model.fields,state:0 +#: field:ir.model,state:0 +#: field:ir.model.fields,state:0 #: field:ir.model.grid,state:0 msgid "Manually Created" msgstr "" @@ -6708,9 +6843,12 @@ msgid "Repository" msgstr "" #. module: base -#: field:ir.attachment,description:0 field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 view:res.partner.event:0 -#: field:res.partner.event,description:0 view:res.request:0 +#: field:ir.attachment,description:0 +#: field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 +#: view:res.partner.event:0 +#: field:res.partner.event,description:0 +#: view:res.request:0 msgid "Description" msgstr "" @@ -6735,7 +6873,8 @@ msgid "Delivery" msgstr "" #. module: base -#: field:res.bank,street:0 field:res.partner.address,street:0 +#: field:res.bank,street:0 +#: field:res.partner.address,street:0 #: field:res.partner.bank,street:0 msgid "Street" msgstr "" @@ -6786,7 +6925,8 @@ msgid "Export language" msgstr "" #. module: base -#: field:res.partner,customer:0 selection:res.partner.event,partner_type:0 +#: field:res.partner,customer:0 +#: selection:res.partner.event,partner_type:0 msgid "Customer" msgstr "" @@ -6801,7 +6941,8 @@ msgid "Guinea Bissau" msgstr "" #. module: base -#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 +#: field:ir.actions.report.custom,name:0 +#: field:ir.report.custom,name:0 msgid "Report Name" msgstr "" @@ -6827,9 +6968,12 @@ msgid "British Indian Ocean Territory" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_country field:res.bank,country:0 -#: view:res.country:0 field:res.country.state,country_id:0 -#: field:res.partner,country:0 field:res.partner.address,country_id:0 +#: model:ir.model,name:base.model_res_country +#: field:res.bank,country:0 +#: view:res.country:0 +#: field:res.country.state,country_id:0 +#: field:res.partner,country:0 +#: field:res.partner.address,country_id:0 #: field:res.partner.bank,country_id:0 msgid "Country" msgstr "" @@ -6932,10 +7076,13 @@ msgstr "" #. module: base #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.actions.server,sequence:0 field:ir.actions.todo,sequence:0 +#: field:ir.actions.server,sequence:0 +#: field:ir.actions.todo,sequence:0 #: field:ir.module.repository,sequence:0 -#: field:ir.report.custom.fields,sequence:0 view:ir.sequence:0 -#: field:ir.ui.menu,sequence:0 field:ir.ui.view_sc,sequence:0 +#: field:ir.report.custom.fields,sequence:0 +#: view:ir.sequence:0 +#: field:ir.ui.menu,sequence:0 +#: field:ir.ui.view_sc,sequence:0 #: field:res.partner.bank,sequence:0 #: field:wizard.ir.model.menu.create.line,sequence:0 msgid "Sequence" @@ -6953,15 +7100,12 @@ msgstr "" #. module: base #: help:res.partner.address,type:0 -msgid "" -"Used to select automatically the right address according to the context in " -"sales and purchases documents." +msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" #. module: base #: help:ir.cron,numbercall:0 -msgid "" -"Number of time the function is called,\n" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -7001,9 +7145,12 @@ msgid "Choose a language to install:" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 -#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 -#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 +#: model:ir.model,name:base.model_res_partner +#: field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 +#: field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 +#: selection:res.partner.title,domain:0 msgid "Partner" msgstr "" @@ -7032,618 +7179,3 @@ msgstr "" msgid "XML Identifier" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The unlink method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:report/custom.py:0 -#, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can't draw a pie chart !" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "new" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -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 "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password mismatch !" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "" -"You can not remove the admin user as it is used internally for resources " -"created by OpenERP (updates, module installation, ...)" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The read method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the model '%s' !" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_4 -msgid "Basic Partner" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You try to bypass an access rule (Document type: %s)." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Pie charts need exactly two fields" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The search method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:ir.attachment,res_id:0 -msgid "Attached ID" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "" - -#. module: base -#: field:ir.attachment,res_model:0 -msgid "Attached Model" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Can not remove root user!" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented search_memory method !" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "" -"Couldn't generate the next id because some partners have an alphabetic id !" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented set_memory method !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Enter at least one field !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_7 -msgid "Openstuff.net" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Can not upgrade module '%s'. It is not installed." -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_17 -msgid "HR sector" -msgstr "" - -#. module: base -#: code:addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "Unable to find a valid contract" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify an action to launch !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Please check that all your lines have %d columns." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Recursivity Detected." -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Recursion error in modules dependencies !" -msgstr "" - -#. module: base -#: constraint:res.partner.category:0 -msgid "Error ! You can not create recursive categories." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Can not define a column %s. Reserved keyword !" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "" -"Save this document to a .CSV file and open it with your favourite " -"spreadsheet software. The file encoding is UTF-8. You have to translate the " -"latest column before reimporting it." -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_16 -msgid "Telecom sector" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"You try to upgrade a module that depends on the module: %s.\n" -"But this module is not available in your system." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Invalid operation" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"You try to install a module that depends on the module: %s.\n" -"But this module is not available in your system." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the field '%s' !" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "You try to remove a module that is installed or will be installed" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occurred while validating the field(s) %s: %s" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Using a relation field which uses an unknown object" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The write method is not implemented on this object !" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "The name of the group can not start with \"-\"" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Tree can only be used in tabular reports" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Some installed modules depend on the module you plan to Uninstall :\n" -" %s" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %r, expected an integer." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The create method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You cannot perform this operation." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Couldn't find tag '%s' in parent view !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_get method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not Implemented" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_11 -msgid "Textile Suppliers" -msgstr "" - -#. module: base -#: model:res.country,name:base.mk -msgid "Macedonia" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_partner_address_form -msgid "Addresses" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Records were modified in the meanwhile" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_search method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Module %s: Invalid Quality Certificate" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify the Partner Email address !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "UserError" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 code:osv/orm.py:0 -#, python-format -msgid "AccessError" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented get_memory method !" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Can not create the module file: %s !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify server option --smtp-from !" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_9 -msgid "Components Supplier" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_14 -msgid "Bad customers" -msgstr "" - -#. module: base -#: code:tools/translate.py:0 -#, python-format -msgid "Bad file format" -msgstr "" - -#. module: base -#: code:tools/amount_to_text_en.py:0 -#, python-format -msgid "Number too large '%d', can not translate it" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "" - -#. module: base -#: field:ir.attachment,datas:0 -msgid "File Content" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%A - Full weekday name." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Unknown position in inherited view %s !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Problem in configuration `Record Id` in Server Action!" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ValidateError" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Field %d should be a figure" -msgstr "" - -#. module: base -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_2 -msgid "OpenERP Partners" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_13 -msgid "Important customers" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The value \"%s\" for the field \"%s\" is not in the selection" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_5 -msgid "Gold Partner" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_10 -msgid "Open Source Service Company" -msgstr "" - -#. module: base -#: code:addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "Your can't submit bug reports due to uncovered modules: %s" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "undefined get method !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password empty !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Bad query." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Second field should be figures" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 code:addons/base/ir/ir_model.py:0 -#: code:addons/base/maintenance/maintenance.py:0 -#: code:addons/base/module/module.py:0 code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 code:report/custom.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "" -"Save this document to a .tgz file. This archive containt UTF-8 %s files and " -"may be uploaded to launchpad." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_12 -msgid "Segmentation" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Warning" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_15 -msgid "IT sector" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Partners: " -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_1 -msgid "Prospect" -msgstr "" From fbb3bc6264eb60d5a4594b8ed19dcf54cb30a842 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 31 May 2009 17:36:50 +0300 Subject: [PATCH 130/251] Greek translations. bzr revid: p_christ@hol.gr-20090531143650-pub8f3v7ly5291yt --- bin/addons/base/i18n/el_GR.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index a50273304ee..70729a4a3c1 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-04-09 17:23+0000\n" -"PO-Revision-Date: 2009-05-28 18:48+0300\n" +"PO-Revision-Date: 2009-05-29 18:35+0300\n" "Last-Translator: P. Christeas \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" @@ -3622,7 +3622,7 @@ msgstr "Δημιουργία Πρόσβασης" #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" -msgstr "Fed. State" +msgstr "Νομός" #. module: base #: model:res.country,name:base.io @@ -5878,7 +5878,7 @@ msgstr "Τύπος Αναφοράς" #: field:res.request,state:0 field:workflow.instance,state:0 #: field:workflow.workitem,state:0 msgid "State" -msgstr "Νομός" +msgstr "Κατάσταση" #. module: base #: selection:ir.module.module,license:0 From a8174908dc91dc9e3f47ab5cca0d3ecdb850fa3d Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 1 Jun 2009 21:27:47 +0300 Subject: [PATCH 131/251] Hack for multiple addons paths. Using this, the addons can be spread accross multiple base dirs. This may help developers, who put them in different repos. bzr revid: p_christ@hol.gr-20090601182747-2ev3fqmu1d46ncjc --- bin/addons/__init__.py | 27 ++++++++++++++++++--------- bin/tools/misc.py | 9 +++++---- 2 files changed, 23 insertions(+), 13 deletions(-) diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index bcd62a82b31..07fa1f91e5c 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -46,11 +46,17 @@ from cStringIO import StringIO logger = netsvc.Logger() _ad = os.path.abspath(opj(tools.config['root_path'], 'addons')) # default addons path (base) -ad = os.path.abspath(tools.config['addons_path']) # alternate addons path +ad_paths= map(lambda m: os.path.abspath(m.strip()),tools.config['addons_path'].split(',')) sys.path.insert(1, _ad) -if ad != _ad: - sys.path.insert(1, ad) + +ad_cnt=1 +for adp in ad_paths: + if adp != _ad: + sys.path.insert(ad_cnt, adp) + ad_cnt+=1 + +ad_paths.append(_ad) # for get_module_path # Modules already loaded loaded = [] @@ -154,11 +160,10 @@ class Node(Singleton): def get_module_path(module, downloaded=False): """Return the path of the given module.""" - if os.path.exists(opj(ad, module)) or os.path.exists(opj(ad, '%s.zip' % module)): - return opj(ad, module) + for adp in ad_paths: + if os.path.exists(opj(adp, module)) or os.path.exists(opj(adp, '%s.zip' % module)): + return opj(adp, module) - if os.path.exists(opj(_ad, module)) or os.path.exists(opj(_ad, '%s.zip' % module)): - return opj(_ad, module) if downloaded: return opj(_ad, module) logger.notifyChannel('init', netsvc.LOG_WARNING, 'module %s: module not found' % (module,)) @@ -283,7 +288,10 @@ def get_modules(): return os.path.isdir(name) or zipfile.is_zipfile(name) return map(clean, filter(is_really_module, os.listdir(dir))) - return list(set(listdir(ad) + listdir(_ad))) + plist = [] + for ad in ad_paths: + plist.extend(listdir(ad)) + return list(set(plist)) def get_modules_with_version(): modules = get_modules() @@ -311,6 +319,7 @@ def upgrade_graph(graph, cr, module_list, force=None): mod_path = get_module_path(module) terp_file = get_module_resource(module, '__terp__.py') if not mod_path or not terp_file: + logger.notifyChannel('init', netsvc.LOG_WARNING, 'module %s: not installable' % (module)) cr.execute("update ir_module_module set state=%s where name=%s", ('uninstallable', module)) continue @@ -396,7 +405,7 @@ def register_class(m): try: zip_mod_path = mod_path + '.zip' if not os.path.isfile(zip_mod_path): - fm = imp.find_module(m, [ad, _ad]) + fm = imp.find_module(m, ad_paths) try: imp.load_module(m, *fm) finally: diff --git a/bin/tools/misc.py b/bin/tools/misc.py index b5f3221cd94..7fa0acc6933 100644 --- a/bin/tools/misc.py +++ b/bin/tools/misc.py @@ -174,8 +174,8 @@ def file_open(name, mode="r", subdir='addons', pathinfo=False): @return: fileobject if pathinfo is False else (fileobject, filepath) """ - - adp = os.path.normcase(os.path.abspath(config['addons_path'])) + import addons + adps = addons.ad_paths rtp = os.path.normcase(os.path.abspath(config['root_path'])) if name.replace(os.path.sep, '/').startswith('addons/'): @@ -190,7 +190,8 @@ def file_open(name, mode="r", subdir='addons', pathinfo=False): subdir2 = (subdir2 != 'addons' or None) and subdir2 - try: + for adp in adps: + try: if subdir2: fn = os.path.join(adp, subdir2, name) else: @@ -200,7 +201,7 @@ def file_open(name, mode="r", subdir='addons', pathinfo=False): if pathinfo: return fo, fn return fo - except IOError, e: + except IOError, e: pass if subdir: From e39b6bb5957d28cbbb0466e483a0b5d8e78bdf81 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 2 Jun 2009 14:35:07 +0300 Subject: [PATCH 132/251] Adapt the translation exporter to the multi-path addons. bzr revid: p_christ@hol.gr-20090602113507-1jyjcw5uuz3e7kfp --- bin/tools/translate.py | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index aeca4c91710..c2204d795f7 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -568,11 +568,23 @@ def trans_generate(lang, modules, dbname=None): push_translation(module, 'model', name, xml_name, encode(trad)) # parse source code for _() calls - def get_module_from_path(path): - relative_addons_path = tools.config['addons_path'][len(tools.config['root_path'])+1:] - if path.startswith(relative_addons_path) and (os.path.dirname(path) != relative_addons_path): - path = path[len(relative_addons_path)+1:] - return path.split(os.path.sep)[0] + def get_module_from_path(path,mod_paths=None): + if not mod_paths: + # First, construct a list of possible paths + def_path = os.path.abspath(os.path.join(tools.config['root_path'], 'addons')) # default addons path (base) + ad_paths= map(lambda m: os.path.abspath(m.strip()),tools.config['addons_path'].split(',')) + mod_paths=[def_path] + for adp in ad_paths: + mod_paths.append(adp) + if not adp.startswith('/'): + mod_paths.append(os.path.join(def_path,adp)) + elif adp.startswith(def_path): + mod_paths.append(adp[len(def_path)+1:]) + + for mp in mod_paths: + if path.startswith(mp) and (os.path.dirname(path) != mp): + path = path[len(mp)+1:] + return path.split(os.path.sep)[0] return 'base' # files that are not in a module are considered as being in 'base' module modobj = pool.get('ir.module.module') From 5d0d77d09d61cf6602adc4f36b1600a2c2b7e26e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 2 Jun 2009 20:15:34 +0300 Subject: [PATCH 133/251] Correcting path of openerp-server in README.Debian (Closes: #520890). bzr revid: p_christ@hol.gr-20090602171534-0njcw5lfy7s4jp8q --- debian/openerp-server.README.Debian | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/openerp-server.README.Debian b/debian/openerp-server.README.Debian index 8414958ba41..7ebe7a3e364 100644 --- a/debian/openerp-server.README.Debian +++ b/debian/openerp-server.README.Debian @@ -27,7 +27,7 @@ explanation how to achieve this (you need to execute all commands as root): 4. Initializing the database - # su - postgres -c "/usr/sbin/openerp-server --init=all \ + # su - postgres -c "/usr/bin/openerp-server --init=all \ --config=/etc/openerp-server.conf --stop-after-init" 5. Restarting openerp-server From a776a0bcf836790ac7c3200dc5896c08eb72cb9d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 2 Jun 2009 20:15:34 +0300 Subject: [PATCH 134/251] Correcting user handling in init script and config file (Closes: #513263, #516348). bzr revid: p_christ@hol.gr-20090602171534-2pa34vlcatgwkhfa --- debian/config/openerp-server.conf | 3 +++ debian/openerp-server.init | 2 ++ 2 files changed, 5 insertions(+) diff --git a/debian/config/openerp-server.conf b/debian/config/openerp-server.conf index 6e998262445..02daca197e9 100644 --- a/debian/config/openerp-server.conf +++ b/debian/config/openerp-server.conf @@ -14,6 +14,9 @@ logfile = /var/log/openerp.log # If empty, it will bind on all interfaces (default empty). interface = localhost +# The unix account on behalf openerp is running. +process_user = openerp + # The TCP port on which the server will listen (default 8069). port = 8069 diff --git a/debian/openerp-server.init b/debian/openerp-server.init index 5a0946e002d..fbf38d0c49d 100644 --- a/debian/openerp-server.init +++ b/debian/openerp-server.init @@ -17,6 +17,8 @@ DAEMON=/usr/bin/openerp-server NAME=openerp-server DESC=openerp-server +USER=openerp + test -x ${DAEMON} || exit 0 set -e From 6c37935f2941f9eed95c72b886ba5be0d9498a0b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 2 Jun 2009 20:15:34 +0300 Subject: [PATCH 135/251] Setting port to 8070. bzr revid: p_christ@hol.gr-20090602171534-f3jbulhp6mnhbfnv --- debian/config/openerp-server.conf | 2 +- debian/openerp-server.README.Debian | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/config/openerp-server.conf b/debian/config/openerp-server.conf index 02daca197e9..16a30efb3b9 100644 --- a/debian/config/openerp-server.conf +++ b/debian/config/openerp-server.conf @@ -18,7 +18,7 @@ interface = localhost process_user = openerp # The TCP port on which the server will listen (default 8069). -port = 8069 +port = 8070 # Enable debug mode (default False). debug_mode = False diff --git a/debian/openerp-server.README.Debian b/debian/openerp-server.README.Debian index 7ebe7a3e364..2e05f6d1a28 100644 --- a/debian/openerp-server.README.Debian +++ b/debian/openerp-server.README.Debian @@ -40,8 +40,8 @@ Now, you're finish. Please be aware of the following things: - User: admin; password: admin - User: demo; password; demo - * openerp-server listens by default on port 8069. If you need to change this, - edit /etc/openerp-server.conf and replace 'port = 8069' with + * openerp-server listens by default on port 8070. If you need to change this, + edit /etc/openerp-server.conf and replace 'port = 8070' with 'port = '. * openerp-server in the upstreams configuration listens by default to *all* From 2050f67ef75c66eb56cfa0a77627685c6c004a17 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 2 Jun 2009 20:15:35 +0300 Subject: [PATCH 136/251] Also mentioning debug_mode and price_accuracy in config file (Closes: #513264). bzr revid: p_christ@hol.gr-20090602171535-khmxn9ny0k2gnspk --- debian/config/openerp-server.conf | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/debian/config/openerp-server.conf b/debian/config/openerp-server.conf index 16a30efb3b9..b6891d2646a 100644 --- a/debian/config/openerp-server.conf +++ b/debian/config/openerp-server.conf @@ -3,6 +3,7 @@ [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 @@ -10,13 +11,13 @@ pidfile = /var/run/openerp.pid # The file where the server log will be stored (default False). logfile = /var/log/openerp.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 unix account on behalf openerp is running. -process_user = openerp - # The TCP port on which the server will listen (default 8069). port = 8070 @@ -49,3 +50,6 @@ db_host = # Specify the database port (default None). db_port = 5432 + +# Specify the price accuracy. +#price_accuracy = From e8568e6cbc91588fed575aed460c72319e126526 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 2 Jun 2009 20:15:35 +0300 Subject: [PATCH 137/251] Using correct rfc-2822 date formats in changelog. bzr revid: p_christ@hol.gr-20090602171535-1bdavlz6l40u3jm4 --- debian/changelog | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/debian/changelog b/debian/changelog index f9bf2aa9869..83438114d9f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,7 +18,7 @@ openerp-server (5.0.0-1) unstable; urgency=low * Merging upstream version 5.0.0. - -- Daniel Baumann Sat, 7 Feb 2009 13:33:00 +0100 + -- Daniel Baumann Sat, 07 Feb 2009 13:33:00 +0100 openerp-server (5.0.0~rc3-1) unstable; urgency=low @@ -30,7 +30,7 @@ openerp-server (5.0.0~rc3-1) unstable; urgency=low * Updating python-openssl depends. * Updating lintian overrides. - -- Daniel Baumann Fri, 9 Jan 2009 18:31:00 -0500 + -- Daniel Baumann Fri, 09 Jan 2009 18:31:00 -0500 openerp-server (5.0.0~rc2-1) unstable; urgency=low @@ -72,13 +72,13 @@ openerp-server (5.0.0~alpha-3) unstable; urgency=low * Dropping tinyerp-server transitional package, this allows to have both packages available in unstable. - -- Daniel Baumann Sun, 7 Dec 2008 20:13:00 +0100 + -- Daniel Baumann Sun, 07 Dec 2008 20:13:00 +0100 openerp-server (5.0.0~alpha-2) experimental; urgency=low * Renaming tinyerp-server to new upstream openerp-server name. - -- Daniel Baumann Sun, 9 Nov 2008 18:59:00 +0100 + -- Daniel Baumann Sun, 09 Nov 2008 18:59:00 +0100 tinyerp-server (5.0.0~alpha-1) experimental; urgency=low @@ -103,7 +103,7 @@ tinyerp-server (5.0.0~alpha-1) experimental; urgency=low openerp-server. * Updating copyright file to current upstream. - -- Daniel Baumann Sun, 9 Nov 2008 15:52:00 +0100 + -- Daniel Baumann Sun, 09 Nov 2008 15:52:00 +0100 tinyerp-server (4.2.3.4-3) unstable; urgency=high @@ -139,14 +139,14 @@ tinyerp-server (4.2.3.4-1) unstable; urgency=low * Adding patch from Brian DeRocher to fix sql syntax in migrate script (Closes: #467517). - -- Daniel Baumann Sun, 9 Nov 2008 09:11:00 +0100 + -- Daniel Baumann Sun, 09 Nov 2008 09:11:00 +0100 tinyerp-server (4.2.2-2) unstable; urgency=medium * Readding depends to python-psycopg (Closes: #463079, #493374). * Adding depends to python-tz (Closes: #482359). - -- Daniel Baumann Sun, 3 Aug 2008 00:20:00 +0200 + -- Daniel Baumann Sun, 03 Aug 2008 00:20:00 +0200 tinyerp-server (4.2.2-1) unstable; urgency=low @@ -189,7 +189,7 @@ tinyerp-server (4.0.3-2) unstable; urgency=low * Check for existence of deluser in postrm (Closes: #431532). - -- Daniel Baumann Tue, 3 Jul 2007 11:01:00 +0200 + -- Daniel Baumann Tue, 03 Jul 2007 11:01:00 +0200 tinyerp-server (4.0.3-1) unstable; urgency=low @@ -199,7 +199,7 @@ tinyerp-server (4.0.3-1) unstable; urgency=low thanks to Gerfried Fuchs . * Added lsb header to init script. - -- Daniel Baumann Fri, 1 Jun 2007 11:59:00 +0200 + -- Daniel Baumann Fri, 01 Jun 2007 11:59:00 +0200 tinyerp-server (4.0.2-3) unstable; urgency=low @@ -211,7 +211,7 @@ tinyerp-server (4.0.2-2) unstable; urgency=low * Setting maintainer to Jean-Marc. - -- Daniel Baumann Wed, 7 Feb 2007 13:41:00 +0100 + -- Daniel Baumann Wed, 07 Feb 2007 13:41:00 +0100 tinyerp-server (4.0.2-1) unstable; urgency=low @@ -232,19 +232,19 @@ tinyerp-server (4.0.0-1) unstable; urgency=low * New upstream release. * Added patch to fix a typo in setup.py. - -- Daniel Baumann Tue, 5 Dec 2006 17:43:00 +0100 + -- Daniel Baumann Tue, 05 Dec 2006 17:43:00 +0100 tinyerp-server (4.0.0~rc1-2) unstable; urgency=low * Cleaned up build-depends. - -- Daniel Baumann Tue, 5 Dec 2006 13:19:00 +0100 + -- Daniel Baumann Tue, 05 Dec 2006 13:19:00 +0100 tinyerp-server (4.0.0~rc1-1) unstable; urgency=low * New upstream release. - -- Daniel Baumann Tue, 5 Dec 2006 12:57:00 +0100 + -- Daniel Baumann Tue, 05 Dec 2006 12:57:00 +0100 tinyerp-server (3.5.0-1) experimental; urgency=low @@ -268,13 +268,13 @@ tinyerp-server (3.3.0-1) unstable; urgency=low * Updated README.Debian (Closes: #352322, #360222, #360223). * Set to architecture to all (Closes: #356962). - -- Daniel Baumann Sun, 4 Jun 2006 00:50:00 +0100 + -- Daniel Baumann Sun, 04 Jun 2006 00:50:00 +0100 tinyerp-server (3.2.1-1) unstable; urgency=low * New upstream release. - -- Daniel Baumann Thu, 2 Feb 2006 09:44:00 +0100 + -- Daniel Baumann Thu, 02 Feb 2006 09:44:00 +0100 tinyerp-server (3.2.0-1) unstable; urgency=low From 234bd96998999405f43503b166e46cfd968f7091 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 2 Jun 2009 20:15:35 +0300 Subject: [PATCH 138/251] Rediffing shebang.patch. bzr revid: p_christ@hol.gr-20090602171535-dkvwoxp25297n8ke --- debian/patches/03-shebang.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/patches/03-shebang.patch b/debian/patches/03-shebang.patch index 7add479b084..68818e1f733 100644 --- a/debian/patches/03-shebang.patch +++ b/debian/patches/03-shebang.patch @@ -2,11 +2,11 @@ Author: Daniel Baumann Description: Correcting shebang. diff -Naurp openerp-server.orig/bin/addons/document/ftpserver/ftpserver.py openerp-server/bin/addons/document/ftpserver/ftpserver.py ---- openerp-server.orig/bin/addons/document/ftpserver/ftpserver.py 2008-12-16 11:06:22.000000000 +0000 -+++ openerp-server/bin/addons/document/ftpserver/ftpserver.py 2008-12-16 11:28:19.000000000 +0000 +--- openerp-server.orig/bin/addons/document/ftpserver/ftpserver.py 2009-05-30 10:14:37.000000000 +0000 ++++ openerp-server/bin/addons/document/ftpserver/ftpserver.py 2009-05-30 11:02:00.000000000 +0000 @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python + # -*- encoding: utf-8 -*- # ftpserver.py # - # pyftpdlib is released under the MIT license, reproduced below: From 73499964376a52597d433efffea571cd8918a18e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 2 Jun 2009 20:15:35 +0300 Subject: [PATCH 139/251] Releasing debian version 5.0.1-0-1. bzr revid: p_christ@hol.gr-20090602171535-gvk8rkh85nto002b --- debian/changelog | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/debian/changelog b/debian/changelog index 83438114d9f..27cd6862afa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +openerp-server (5.0.1-0-1) unstable; urgency=low + + * Merging upstream version 5.0.1-0. + * Correcting path of openerp-server in README.Debian (Closes: + #520890). + * Correcting user handling in init script and config file (Closes: + #513263, #516348). + * Setting port to 8070. + * Also mentioning debug_mode and price_accuracy in config file + (Closes: #513264). + * Using correct rfc-2822 date formats in changelog. + * Rediffing shebang.patch. + + -- Daniel Baumann Sat, 30 May 2009 12:53:39 +0200 + openerp-server (5.0.0-3-1) unstable; urgency=low * Merging upstream version 5.0.0-3. From a9846c078cec17c8cb4cbe8825d115efdf4b887e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 2 Jun 2009 20:15:36 +0300 Subject: [PATCH 140/251] Updating standards to 3.8.1. bzr revid: p_christ@hol.gr-20090602171536-pg6k2wdb0oak5v02 --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 484bdf8714b..062da5bbff2 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Daniel Baumann Build-Depends: debhelper (>= 7), quilt, python-dev Build-Depends-Indep: python-lxml, python-xml, python-libxslt1, python-psycopg2 -Standards-Version: 3.8.0 +Standards-Version: 3.8.1 Homepage: http://www.openerp.com/ Vcs-Browser: http://git.debian.net/?p=debian/openerp-server.git Vcs-Git: git://git.debian.net/git/debian/openerp-server.git From 6fe4df381439359783509a7b50174f45ea0416da Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 7 Jun 2009 11:58:34 +0300 Subject: [PATCH 141/251] Base: greek translation typo fix. bzr revid: p_christ@hol.gr-20090607085834-608muubqbfqhhv10 --- bin/addons/base/i18n/el_GR.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 70729a4a3c1..bc4cf33fcac 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-04-09 17:23+0000\n" -"PO-Revision-Date: 2009-05-29 18:35+0300\n" +"PO-Revision-Date: 2009-06-06 12:04+0300\n" "Last-Translator: P. Christeas \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" @@ -959,7 +959,7 @@ msgstr "res.request.link" #. module: base #: wizard_button:module.module.update,init,update:0 msgid "Check new modules" -msgstr "Έλγχος νέων modules" +msgstr "Έλεγχος νέων modules" #. module: base #: model:res.country,name:base.km From 9d58ceceb43c5862ba3e17c418c61f462fd5ff4f Mon Sep 17 00:00:00 2001 From: Jimmy Angelakos Date: Mon, 8 Jun 2009 02:55:31 +0300 Subject: [PATCH 142/251] Modified debian/control for Hellug version bzr revid: vyruss@hellug.gr-20090607235531-wpm932nxid09dq19 --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 062da5bbff2..3e3def7505f 100644 --- a/debian/control +++ b/debian/control @@ -1,7 +1,7 @@ Source: openerp-server Section: net Priority: optional -Maintainer: Daniel Baumann +Maintainer: Jimmy Angelakos Build-Depends: debhelper (>= 7), quilt, python-dev Build-Depends-Indep: python-lxml, python-xml, python-libxslt1, python-psycopg2 Standards-Version: 3.8.1 From 7d7a23306cd6b2c9649c1b00690e5bdbd4aa19d6 Mon Sep 17 00:00:00 2001 From: Jimmy Angelakos Date: Mon, 8 Jun 2009 03:39:43 +0300 Subject: [PATCH 143/251] Update .gitignore, disabled 03-shebang.patch bzr revid: vyruss@hellug.gr-20090608003943-i0719tclkmxxztv1 --- .gitignore | 2 ++ debian/patches/series | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0d20b6487c6..de558d2b228 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ *.pyc +/build +/.pc diff --git a/debian/patches/series b/debian/patches/series index 6d5ba4c38b4..d06879374fc 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,2 @@ 01-autobuild.patch 02-migrate.patch -03-shebang.patch From 9dbebadf387adea149ef888208d3d9193fdfd78c Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 8 Jun 2009 03:44:26 +0300 Subject: [PATCH 144/251] Greek translation for base setup, moved from addons bzr revid: p_christ@hol.gr-20090608004426-7m084ihghnx0rdtq --- bin/addons/base_setup/i18n/el_GR.po | 282 ++++++++++++++++++++++++++++ 1 file changed, 282 insertions(+) create mode 100644 bin/addons/base_setup/i18n/el_GR.po diff --git a/bin/addons/base_setup/i18n/el_GR.po b/bin/addons/base_setup/i18n/el_GR.po new file mode 100644 index 00000000000..b6ac6736293 --- /dev/null +++ b/bin/addons/base_setup/i18n/el_GR.po @@ -0,0 +1,282 @@ +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base_setup +# +# Copyright (C) 2008,2009 P. Christeas +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0-alpha\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-15 08:33:16+0000\n" +"PO-Revision-Date: 2008-11-15 08:33:16+0000\n" +"Last-Translator: P. Christeas \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,city:0 +#: wizard_field:base_setup.base_setup,init,city:0 +#: wizard_field:base_setup.base_setup,update,city:0 +msgid "City" +msgstr "Πόλη" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,finish:0 +msgid "" +"You can start configuring the system or connect directly to the database " +"using the default setup." +msgstr "" +"Μπορείτε να ξεκινήσετε την παραμετροποίηση του συστήματος ή να συνδεθείτε " +"απευθείας στην βάση δεδομένων χρησιμοποιώντας την προκαθορισμένη εγκατάσταση." + +#. module: base_setup +#: wizard_view:base_setup.base_setup,init:0 +msgid "Select a Profile" +msgstr "Επιλέξτε Προφίλ" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,company:0 +msgid "Report header" +msgstr "Κεφαλίδα αναφοράς" + +#. module: base_setup +#: wizard_button:base_setup.base_setup,finish,config:0 +msgid "Start Configuration" +msgstr "Έναρξη Παραμετροποίησης" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,init:0 +msgid "" +"You'll be able to install more modules later through the Administration menu." +msgstr "" +"Θα είστε σε θέση να εγκαταστήσετε περισσότερες ενότητες αργότερα μέσω του " +"μενού Διαχείρισης." + +#. module: base_setup +#: wizard_view:base_setup.base_setup,init:0 +msgid "" +"A profile sets a pre-selection of modules for specific needs. These profiles " +"have been setup to help you discover the different aspects of OpenERP. This " +"is just an overview, we have 300+ available modules." +msgstr "" +"Ένα προφίλ θέτει σε εφαρμογή μιά συγκεκριμένη επιλογή ενοτήτων για ειδικές " +"ανάγκες. Αυτά τα προφίλ έχουν ρυθμιστεί για να σας βοηθήσουν να ανακαλύψετε " +"τις διαφορετικές οπτικές του OpenERP. Αυτό είναι απλά μιά περίληψη, έχουμε " +"πάνω απο 300 ενότητες διαθέσιμες." + +#. module: base_setup +#: wizard_button:base_setup.base_setup,company,update:0 +#: wizard_button:base_setup.base_setup,init,company:0 +msgid "Next" +msgstr "Επόμενο" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,email:0 +#: wizard_field:base_setup.base_setup,init,email:0 +#: wizard_field:base_setup.base_setup,update,email:0 +msgid "E-mail" +msgstr "E-mail" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,state_id:0 +#: wizard_field:base_setup.base_setup,update,state_id:0 +#: wizard_field:base_setup.base_setup,init,state_id:0 +msgid "State" +msgstr "Κατάσταση Λογαριασμού" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,finish:0 +msgid "Your new database is now fully installed." +msgstr "Η νέα σας βάση δεδομένων έχει εγκατασταθεί πλήρως." + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,profile:0 +#: wizard_field:base_setup.base_setup,init,profile:0 +#: wizard_field:base_setup.base_setup,update,profile:0 +msgid "Profile" +msgstr "Προφίλ" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,rml_footer1:0 +#: wizard_field:base_setup.base_setup,init,rml_footer1:0 +#: wizard_field:base_setup.base_setup,update,rml_footer1:0 +msgid "Report Footer 1" +msgstr "Υποσέλιδο Αναφοράς 1" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,rml_footer2:0 +#: wizard_field:base_setup.base_setup,init,rml_footer2:0 +#: wizard_field:base_setup.base_setup,update,rml_footer2:0 +msgid "Report Footer 2" +msgstr "Υποσέλιδο Αναφοράς 2" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,company:0 +msgid "General Information" +msgstr "Γενικές Πληροφορίες" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,street2:0 +#: wizard_field:base_setup.base_setup,init,street2:0 +#: wizard_field:base_setup.base_setup,update,street2:0 +msgid "Street2" +msgstr "Διεύθυνση2" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,company:0 +msgid "Report Information" +msgstr "Πληροφορίες Αναφοράς" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,phone:0 +#: wizard_field:base_setup.base_setup,init,phone:0 +#: wizard_field:base_setup.base_setup,update,phone:0 +msgid "Phone" +msgstr "Τηλέφωνο" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,company:0 +msgid "Define Main Company" +msgstr "Καθορίστε Κύρια Εταιρία" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,name:0 +#: wizard_field:base_setup.base_setup,init,name:0 +#: wizard_field:base_setup.base_setup,update,name:0 +msgid "Company Name" +msgstr "Επωνυμία Επιχείρησης" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,country_id:0 +#: wizard_field:base_setup.base_setup,init,country_id:0 +#: wizard_field:base_setup.base_setup,update,country_id:0 +msgid "Country" +msgstr "Χώρα" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,company:0 +#: wizard_view:base_setup.base_setup,finish:0 +#: wizard_view:base_setup.base_setup,init:0 +#: wizard_view:base_setup.base_setup,update:0 +#: model:ir.actions.wizard,name:base_setup.action_wizard_setup +#: model:ir.actions.wizard,name:base_setup.wizard_base_setup +msgid "Setup" +msgstr "Εγκατάσταση" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,zip:0 +#: wizard_field:base_setup.base_setup,init,zip:0 +#: wizard_field:base_setup.base_setup,update,zip:0 +msgid "Zip code" +msgstr "Ταχυδρομικος Κώδικας" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,update:0 +msgid "Summary" +msgstr "Περίληψη" + +#. module: base_setup +#: wizard_button:base_setup.base_setup,update,finish:0 +msgid "Install" +msgstr "Εγκατάσταση" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,finish:0 +msgid "Installation Done" +msgstr "Ολοκλήρωση Εγκατάστασης" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,logo:0 +#: wizard_field:base_setup.base_setup,init,logo:0 +#: wizard_field:base_setup.base_setup,update,logo:0 +msgid "Logo" +msgstr "Logo" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,rml_header1:0 +#: wizard_field:base_setup.base_setup,init,rml_header1:0 +#: wizard_field:base_setup.base_setup,update,rml_header1:0 +msgid "Report Header" +msgstr "Κεφαλίδα Αναφοράς" + +#. module: base_setup +#: wizard_view:base_setup.base_setup,company:0 +msgid "Your Logo - Use a size of about 450x150 pixels." +msgstr "Το Logo σας - Χρησιμοποιήστε ένα μέγεθος περίπου 450x150 pixels." + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,currency:0 +#: wizard_field:base_setup.base_setup,update,currency:0 +#: wizard_field:base_setup.base_setup,init,currency:0 +msgid "Currency" +msgstr "Νόμισμα" + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,street:0 +#: wizard_field:base_setup.base_setup,init,street:0 +#: wizard_field:base_setup.base_setup,update,street:0 +msgid "Street" +msgstr "Οδός" + +#. module: base_setup +#: wizard_button:base_setup.base_setup,init,menu:0 +msgid "Cancel" +msgstr "Άκυρο" + +#. module: base_setup +#: wizard_button:base_setup.base_setup,finish,menu:0 +msgid "Use Directly" +msgstr "Χρήση Απευθείας" + +#. module: base_setup +#: wizard_button:base_setup.base_setup,company,init:0 +#: wizard_button:base_setup.base_setup,update,company:0 +msgid "Previous" +msgstr "Προηγούμενο" + +#. module: base_setup +#: help:base_setup.base_setup,company,rml_footer2:0 +#: help:base_setup.base_setup,init,rml_footer2:0 +#: help:base_setup.base_setup,update,rml_footer2:0 +msgid "" +"This sentence will appear at the bottom of your reports.\n" +"We suggest you to put bank information here:\n" +"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" +msgstr "" +"Αυτή η πρόταση θα εμφανίζεται στο κάτω μέρος των αναφορών σας.\n" +"Σας προτείνουμε να εισάγετε πληροφορίες τράπεζας εδω:\n" +"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" + +#. module: base_setup +#: help:base_setup.base_setup,company,rml_footer1:0 +#: help:base_setup.base_setup,init,rml_footer1:0 +#: help:base_setup.base_setup,update,rml_footer1:0 +msgid "" +"This sentence will appear at the bottom of your reports.\n" +"We suggest you to write legal sentences here:\n" +"Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" +msgstr "" +"Αυτή η πρόταση θα εμφανίζεται στο κάτω μέρος των αναφορών σας.\n" +"Σας προτείνουμε να γράψετε προτάσεις όπως:\n" +"Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" + +#. module: base_setup +#: help:base_setup.base_setup,company,rml_header1:0 +#: help:base_setup.base_setup,init,rml_header1:0 +#: help:base_setup.base_setup,update,rml_header1:0 +msgid "" +"This sentence will appear at the top right corner of your reports.\n" +"We suggest you to put a slogan here:\n" +"\"Open Source Business Solutions\"." +msgstr "" +"Αυτή η εγκατάσταση θα εμφανίζεται στην πάνω δεξιά γωνία των αναφορών σας.\n" +"Σας προτείνουμε να βάλετε το slogan σας εδώ:\n" +"\"Open Source Business Solutions\"." + +#. module: base_setup +#: model:ir.module.module,shortdesc:base_setup.module_meta_information +msgid "Base Setup" +msgstr "Βασική Εγκατάσταση" From 946205be17efaad6043cd9f3c78588ecd14e74b7 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 8 Jun 2009 23:29:44 +0300 Subject: [PATCH 145/251] Translate: option to only export installed modules. With the 'all' parameter, the DB would contain even non-installed modules, for which it would export an empty .pot file. Now, allow only the useful .pot files to be exported. bzr revid: p_christ@hol.gr-20090608202944-nq2rvc3zr3bozpw0 --- bin/tools/translate.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index c2204d795f7..fb720c389a7 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -424,11 +424,14 @@ def trans_generate(lang, modules, dbname=None): query = 'SELECT name, model, res_id, module' \ ' FROM ir_model_data' - if not 'all' in modules: + query_param = None + if 'all_installed' in modules: + query += ' WHERE module IN ( SELECT name FROM ir_module_module WHERE state = \'installed\') ' + elif not 'all' in modules: query += ' WHERE module IN (%s)' % ','.join(['%s']*len(modules)) + query_param = modules query += ' ORDER BY module, model, name' - query_param = not 'all' in modules and modules or None cr.execute(query, query_param) _to_translate = [] From 3680a51aa8befbcd99650a48c4842d7a7a03155c Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 9 Jun 2009 00:54:04 +0300 Subject: [PATCH 146/251] Update message catalogs for base. bzr revid: p_christ@hol.gr-20090608215404-dsxie8xwnmgk2vy2 --- bin/addons/base/i18n/base.pot | 1486 +++++++-------------- bin/addons/base_setup/i18n/base_setup.pot | 4 +- 2 files changed, 511 insertions(+), 979 deletions(-) diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index a852ebad129..efcb8dc101c 100644 --- a/bin/addons/base/i18n/base.pot +++ b/bin/addons/base/i18n/base.pot @@ -1,13 +1,13 @@ # Translation of OpenERP Server. # This file contains the translation of the following modules: -# * base +# * base # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" +"Project-Id-Version: OpenERP Server 5.0.1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-05-30 15:14:08+0000\n" -"PO-Revision-Date: 2009-05-30 15:14:08+0000\n" +"POT-Creation-Date: 2009-06-08 21:23:39+0000\n" +"PO-Revision-Date: 2009-06-08 21:23:39+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -62,9 +62,7 @@ msgstr "" #. module: base #: view:wizard.module.update_translations:0 -msgid "" -"This wizard will detect new terms in the application so that you can update " -"them manually." +msgid "This wizard will detect new terms in the application so that you can update them manually." msgstr "" #. module: base @@ -78,7 +76,8 @@ msgid "%j - Day of the year as a decimal number [001,366]." msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 msgid "You may have to reinstall some language pack." msgstr "" @@ -113,7 +112,8 @@ msgid "Invalid model name in the action definition." msgstr "" #. module: base -#: field:res.partner,title:0 field:res.partner.address,title:0 +#: field:res.partner,title:0 +#: field:res.partner.address,title:0 #: field:res.partner.title,name:0 msgid "Title" msgstr "" @@ -149,7 +149,8 @@ msgid "STOCK_SORT_ASCENDING" msgstr "" #. module: base -#: view:ir.model:0 view:res.groups:0 +#: view:ir.model:0 +#: view:res.groups:0 msgid "Access Rules" msgstr "" @@ -185,14 +186,23 @@ msgstr "" #. module: base #: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 -#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 -#: field:ir.model,model:0 field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 field:ir.model.grid,model:0 -#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 field:ir.ui.view,model:0 -#: field:ir.values,model_id:0 field:res.request.link,object:0 +#: field:ir.actions.report.custom,model:0 +#: field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 +#: field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 +#: field:ir.default,field_tbl:0 +#: view:ir.model:0 +#: field:ir.model,model:0 +#: field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 +#: field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 +#: field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 +#: field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 +#: field:res.request.link,object:0 #: field:wizard.ir.model.menu.create,model_id:0 #: field:workflow.triggers,model:0 msgid "Object" @@ -236,9 +246,7 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e.[[ object.partner_id.name ]]" +msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" msgstr "" #. module: base @@ -293,8 +301,10 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form -#: model:ir.ui.menu,name:base.menu_action_res_roles_form view:res.roles:0 -#: view:res.users:0 field:res.users,roles_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_roles_form +#: view:res.roles:0 +#: view:res.users:0 +#: field:res.users,roles_id:0 msgid "Roles" msgstr "" @@ -356,7 +366,8 @@ msgid "Select Report" msgstr "" #. module: base -#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 +#: view:ir.actions.wizard:0 +#: field:wizard.ir.model.menu.create.line,wizard_id:0 msgid "Wizard" msgstr "" @@ -416,7 +427,8 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.model.config,password:0 field:maintenance.contract,password:0 +#: field:ir.model.config,password:0 +#: field:maintenance.contract,password:0 #: field:maintenance.contract.wizard,password:0 #: wizard_field:res.partner.sms_send,init,password:0 #: field:res.users,password:0 @@ -435,8 +447,7 @@ msgstr "" #. module: base #: help:ir.module.repository,filter:0 -msgid "" -"Regexp to search module on the repository webpage:\n" +msgid "Regexp to search module on the repository webpage:\n" "- The first parenthesis must match the name of the module.\n" "- The second parenthesis must match the whole version number.\n" "- The last parenthesis must match the extension of the module." @@ -449,12 +460,9 @@ msgstr "" #. module: base #: model:ir.actions.todo,note:base.config_wizard_simple_view -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" +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 "" @@ -565,7 +573,8 @@ msgid "Sorted By" msgstr "" #. module: base -#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 +#: field:ir.actions.report.custom,type:0 +#: field:ir.actions.report.xml,type:0 #: field:ir.report.custom,type:0 msgid "Report Type" msgstr "" @@ -659,9 +668,7 @@ msgstr "" #. module: base #: help:ir.actions.server,loop_action:0 -msgid "" -"Select the action that will be executed. Loop action will not be avaliable " -"inside loop." +msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." msgstr "" #. module: base @@ -713,17 +720,23 @@ msgid "%m - Month as a decimal number [01,12]." msgstr "" #. module: base -#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 -#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 -#: field:maintenance.contract,state:0 field:res.bank,state:0 -#: view:res.country.state:0 field:res.partner.bank,state_id:0 -#: field:res.request,state:0 field:workflow.instance,state:0 +#: field:ir.actions.todo,state:0 +#: field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 +#: field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 +#: field:res.bank,state:0 +#: view:res.country.state:0 +#: field:res.partner.bank,state_id:0 +#: field:res.request,state:0 +#: field:workflow.instance,state:0 #: field:workflow.workitem,state:0 msgid "State" msgstr "" #. module: base -#: view:res.partner:0 field:res.partner,category_id:0 +#: view:res.partner:0 +#: field:res.partner,category_id:0 msgid "Categories" msgstr "" @@ -759,7 +772,8 @@ msgid "Libya" msgstr "" #. module: base -#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 +#: field:ir.module.category,parent_id:0 +#: field:res.partner.category,parent_id:0 msgid "Parent Category" msgstr "" @@ -794,7 +808,8 @@ msgid "Liechtenstein" msgstr "" #. module: base -#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 +#: selection:res.partner.address,type:0 +#: selection:res.partner.title,domain:0 msgid "Contact" msgstr "" @@ -871,15 +886,19 @@ msgid "Currency Rate" msgstr "" #. module: base -#: view:workflow:0 field:workflow.activity,wkf_id:0 +#: view:workflow:0 +#: field:workflow.activity,wkf_id:0 #: field:workflow.instance,wkf_id:0 msgid "Workflow" msgstr "" #. module: base -#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 -#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 -#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 +#: field:ir.actions.act_window,type:0 +#: field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 +#: field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 +#: field:ir.actions.url,type:0 #: field:ir.actions.wizard,type:0 msgid "Action Type" msgstr "" @@ -926,13 +945,13 @@ msgstr "" #. module: base #: help:ir.actions.report.xml,report_rml:0 -msgid "" -"The .rml path of the file or NULL if the content is in report_rml_content" +msgid "The .rml path of the file or NULL if the content is in report_rml_content" msgstr "" #. module: base #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form -#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form msgid "Config Wizard Steps" msgstr "" @@ -942,7 +961,8 @@ msgid "Category" msgstr "" #. module: base -#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 +#: field:ir.model.access,group_id:0 +#: field:ir.rule,rule_group:0 msgid "Group" msgstr "" @@ -972,7 +992,8 @@ msgid "Signature" msgstr "" #. module: base -#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 +#: field:ir.actions.server,sms:0 +#: selection:ir.actions.server,state:0 msgid "SMS" msgstr "" @@ -982,7 +1003,8 @@ msgid "Costa Rica" msgstr "" #. module: base -#: field:ir.exports.line,name:0 field:ir.translation,name:0 +#: field:ir.exports.line,name:0 +#: field:ir.translation,name:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" msgstr "" @@ -990,7 +1012,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window #: model:ir.model,name:base.model_res_lang -#: model:ir.ui.menu,name:base.menu_res_lang_act_window view:res.lang:0 +#: model:ir.ui.menu,name:base.menu_res_lang_act_window +#: view:res.lang:0 msgid "Languages" msgstr "" @@ -1001,16 +1024,12 @@ msgstr "" #. module: base #: help:ir.actions.report.xml,attachment:0 -msgid "" -"This is the filename of the attachment used to store the printing result. " -"Keep empty to not save the printed reports. You can use a python expression " -"with the object and time variables." +msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." msgstr "" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: base @@ -1040,7 +1059,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 +#: model:ir.ui.menu,name:base.menu_action_currency_form +#: view:res.currency:0 msgid "Currencies" msgstr "" @@ -1051,9 +1071,7 @@ msgstr "" #. module: base #: help:res.partner,lang:0 -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." +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 "" #. module: base @@ -1092,7 +1110,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: field:res.bank,email:0 field:res.partner.address,email:0 +#: field:res.bank,email:0 +#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" @@ -1166,7 +1185,8 @@ msgid "Constraint" msgstr "" #. module: base -#: selection:ir.values,key:0 selection:res.partner.address,type:0 +#: selection:ir.values,key:0 +#: selection:res.partner.address,type:0 msgid "Default" msgstr "" @@ -1236,9 +1256,7 @@ msgstr "" #. module: base #: help:ir.actions.report.xml,attachment_use:0 -msgid "" -"If you check this, then the second time the user prints with same attachment " -"name, it returns the previous report." +msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." msgstr "" #. module: base @@ -1248,9 +1266,7 @@ msgstr "" #. module: base #: help:ir.actions.server,subject:0 -msgid "" -"Specify the subject. You can use fields from the object, e.g. `Hello " -"[[ object.partner_id.name ]]`" +msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" msgstr "" #. module: base @@ -1285,7 +1301,8 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 +#: model:ir.ui.menu,name:base.next_id_14 +#: view:res.partner.event:0 msgid "Partner Events" msgstr "" @@ -1367,8 +1384,7 @@ msgstr "" #. module: base #: help:res.country,code:0 -msgid "" -"The ISO country code in two chars.\n" +msgid "The ISO country code in two chars.\n" "You can use this field for quick search." msgstr "" @@ -1398,7 +1414,8 @@ msgid "Nepal" msgstr "" #. module: base -#: wizard_view:module.lang.install,init:0 wizard_view:module.upgrade,next:0 +#: wizard_view:module.lang.install,init:0 +#: wizard_view:module.upgrade,next:0 msgid "System Upgrade" msgstr "" @@ -1443,7 +1460,8 @@ msgid "Low Level Objects" msgstr "" #. module: base -#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 +#: field:ir.actions.report.custom,multi:0 +#: field:ir.actions.report.xml,multi:0 msgid "On multiple doc." msgstr "" @@ -1459,7 +1477,8 @@ msgstr "" #. module: base #: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 +#: field:ir.actions.act_window.view,view_mode:0 +#: field:ir.ui.view,type:0 #: field:wizard.ir.model.menu.create.line,view_type:0 msgid "View Type" msgstr "" @@ -1500,7 +1519,8 @@ msgid "Bulk SMS send" msgstr "" #. module: base -#: view:res.partner.bank:0 model:res.partner.bank.type,name:base.bank_normal +#: view:res.partner.bank:0 +#: model:res.partner.bank.type,name:base.bank_normal msgid "Bank account" msgstr "" @@ -1526,8 +1546,7 @@ msgstr "" #. module: base #: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." +msgid "The kind of action or button in the client side that will trigger the action." msgstr "" #. module: base @@ -1620,7 +1639,8 @@ msgid "Actions" msgstr "" #. module: base -#: view:res.request:0 field:res.request,body:0 +#: view:res.request:0 +#: field:res.request,body:0 #: field:res.request.history,req_id:0 msgid "Request" msgstr "" @@ -1636,7 +1656,8 @@ msgid "Continue" msgstr "" #. module: base -#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 +#: field:ir.model.fields,model_id:0 +#: field:ir.values,res_id:0 msgid "Object ID" msgstr "" @@ -1740,9 +1761,7 @@ msgstr "" #. module: base #: help:ir.actions.server,sequence:0 -msgid "" -"Important when you deal with multiple actions, the execution order will be " -"decided based on this, low number is higher priority." +msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." msgstr "" #. module: base @@ -1812,7 +1831,8 @@ msgid "Maldives" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 +#: model:ir.actions.act_window,name:base.ir_sequence_form +#: view:ir.sequence:0 #: model:ir.ui.menu,name:base.menu_ir_sequence_form #: model:ir.ui.menu,name:base.next_id_5 msgid "Sequences" @@ -1860,11 +1880,7 @@ msgstr "" #. module: base #: view:wizard.module.lang.export:0 -msgid "" -"To improve some terms of the official translations of OpenERP, you should " -"modify the terms directly on the launchpad interface. If you made lots of " -"translations for your own module, you can also publish all your translation " -"at once." +msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." msgstr "" #. module: base @@ -1883,15 +1899,14 @@ msgid "Partner Category" msgstr "" #. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 msgid "Trigger" msgstr "" #. module: base #: help:ir.actions.server,write_id:0 -msgid "" -"Provide the field name that the record id refers to for the write operation. " -"If it is empty it will refer to the active id of the object." +msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." msgstr "" #. module: base @@ -1906,9 +1921,7 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e. [[ object.partner_id.name ]]" +msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" msgstr "" #. module: base @@ -1944,16 +1957,20 @@ msgstr "" #. module: base #: view:ir.actions.act_window:0 #: model:ir.actions.act_window,name:base.action_ui_view -#: field:ir.actions.act_window,view_ids:0 field:ir.actions.act_window,views:0 +#: field:ir.actions.act_window,view_ids:0 +#: field:ir.actions.act_window,views:0 #: field:ir.module.module,views_by_module:0 -#: model:ir.ui.menu,name:base.menu_action_ui_view view:ir.ui.view:0 +#: model:ir.ui.menu,name:base.menu_action_ui_view +#: view:ir.ui.view:0 #: view:wizard.ir.model.menu.create:0 #: field:wizard.ir.model.menu.create,view_ids:0 msgid "Views" msgstr "" #. module: base -#: view:res.groups:0 field:res.groups,rule_groups:0 field:res.users,rules_id:0 +#: view:res.groups:0 +#: field:res.groups,rule_groups:0 +#: field:res.users,rules_id:0 msgid "Rules" msgstr "" @@ -2073,9 +2090,7 @@ msgstr "" #. module: base #: wizard_view:module.lang.install,start:0 -msgid "" -"The selected language has been successfully installed. You must change the " -"preferences of the user and open a new menu to view changes." +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 "" #. module: base @@ -2105,8 +2120,7 @@ msgstr "" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" msgstr "" @@ -2116,7 +2130,8 @@ msgid "Suffix" msgstr "" #. module: base -#: view:ir.model:0 view:res.groups:0 +#: view:ir.model:0 +#: view:res.groups:0 msgid "Access Rights" msgstr "" @@ -2163,10 +2178,7 @@ msgstr "" #. module: base #: help:ir.ui.menu,groups_id:0 -msgid "" -"If you have groups, the visibility of this menu will be based on these " -"groups. If this field is empty, Open ERP will compute visibility based on " -"the related object's read access." +msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." msgstr "" #. module: base @@ -2207,10 +2219,7 @@ msgstr "" #. module: base #: view:res.config.view:0 -msgid "" -"Choose the simplified interface if you are testing OpenERP for the first " -"time. Less used options or fields are automatically hidden. You will be able " -"to change this, later, through the Administration menu." +msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." msgstr "" #. module: base @@ -2234,7 +2243,8 @@ msgid "Labels" msgstr "" #. module: base -#: field:res.request,act_from:0 field:res.request.history,act_from:0 +#: field:res.request,act_from:0 +#: field:res.request.history,act_from:0 msgid "From" msgstr "" @@ -2274,7 +2284,8 @@ msgid "Andorra, Principality of" msgstr "" #. module: base -#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 +#: field:ir.module.category,child_ids:0 +#: field:res.partner.category,child_ids:0 msgid "Child Categories" msgstr "" @@ -2314,9 +2325,12 @@ msgid "Sender's email" msgstr "" #. module: base -#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 -#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 -#: field:ir.values,key:0 view:res.partner:0 +#: field:ir.actions.report.xml,report_type:0 +#: field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 +#: field:ir.translation,type:0 +#: field:ir.values,key:0 +#: view:res.partner:0 msgid "Type" msgstr "" @@ -2361,7 +2375,8 @@ msgid "ir.actions.actions" msgstr "" #. module: base -#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation +#: view:ir.translation:0 +#: model:ir.ui.menu,name:base.menu_translation msgid "Translations" msgstr "" @@ -2427,7 +2442,8 @@ msgid "Ukraine" msgstr "" #. module: base -#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 +#: selection:ir.actions.server,state:0 +#: selection:workflow.activity,kind:0 msgid "Dummy" msgstr "" @@ -2467,7 +2483,8 @@ msgid "Tests" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 +#: model:ir.model,name:base.model_ir_module_category +#: view:ir.module.category:0 msgid "Module Category" msgstr "" @@ -2559,9 +2576,7 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "" -"Only one client action will be execute, last " -"clinent action will be consider in case of multiples clients actions" +msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" msgstr "" #. module: base @@ -2570,8 +2585,10 @@ msgid "STOCK_HELP" msgstr "" #. module: base -#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access -#: view:res.groups:0 field:res.groups,model_access:0 +#: view:ir.model.access:0 +#: model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 +#: field:res.groups,model_access:0 msgid "Access Controls" msgstr "" @@ -2599,8 +2616,10 @@ msgid "Partner Functions" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 -#: view:res.currency:0 field:res.currency,name:0 +#: model:ir.model,name:base.model_res_currency +#: field:res.company,currency_id:0 +#: view:res.currency:0 +#: field:res.currency,name:0 #: field:res.currency.rate,currency_id:0 msgid "Currency" msgstr "" @@ -2703,9 +2722,7 @@ msgstr "" #. module: base #: wizard_view:module.module.update,init:0 -msgid "" -"This function will check for new modules in the 'addons' path and on module " -"repositories:" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" msgstr "" #. module: base @@ -2719,16 +2736,14 @@ msgid "child_of" msgstr "" #. module: base -#: view:res.currency:0 field:res.currency,rate_ids:0 +#: view:res.currency:0 +#: field:res.currency,rate_ids:0 msgid "Rates" msgstr "" #. module: base #: view:res.lang:0 -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." +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 "" #. module: base @@ -2757,7 +2772,8 @@ msgid "Field child2" msgstr "" #. module: base -#: field:ir.values,key2:0 view:res.partner.event.type:0 +#: field:ir.values,key2:0 +#: view:res.partner.event.type:0 #: field:res.partner.event.type,name:0 msgid "Event Type" msgstr "" @@ -2773,7 +2789,8 @@ msgid "Field child1" msgstr "" #. module: base -#: field:ir.module.module,website:0 field:res.partner,website:0 +#: field:ir.module.module,website:0 +#: field:res.partner,website:0 msgid "Website" msgstr "" @@ -2803,7 +2820,8 @@ msgid "Algeria" msgstr "" #. module: base -#: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 +#: field:ir.report.custom.fields,operation:0 +#: field:ir.ui.menu,icon_pict:0 #: field:wizard.module.lang.export,state:0 msgid "unknown" msgstr "" @@ -2850,8 +2868,10 @@ msgid "ir.model.access" msgstr "" #. module: base -#: field:res.currency.rate,name:0 field:res.partner,date:0 -#: field:res.partner.event,date:0 field:res.request,date_sent:0 +#: field:res.currency.rate,name:0 +#: field:res.partner,date:0 +#: field:res.partner.event,date:0 +#: field:res.request,date_sent:0 msgid "Date" msgstr "" @@ -2871,7 +2891,8 @@ msgid "Iraq" msgstr "" #. module: base -#: view:ir.attachment:0 field:ir.attachment,datas:0 +#: view:ir.attachment:0 +#: field:ir.attachment,datas:0 msgid "Data" msgstr "" @@ -2894,7 +2915,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 +#: model:ir.ui.menu,name:base.next_id_12 +#: view:res.request:0 msgid "Requests" msgstr "" @@ -2904,8 +2926,10 @@ msgid "Chile" msgstr "" #. module: base -#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 -#: field:res.partner,lang:0 field:res.users,context_lang:0 +#: field:ir.translation,lang:0 +#: wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 +#: field:res.users,context_lang:0 #: field:wizard.module.lang.export,lang:0 #: field:wizard.module.update_translations,lang:0 msgid "Language" @@ -2934,16 +2958,16 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 +#: model:ir.ui.menu,name:base.menu_action_res_company_form +#: view:res.company:0 msgid "Companies" msgstr "" #. module: base #: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." +#: help:ir.actions.report.custom,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "If set to true, the action will not be displayed on the right toolbar of a form view." msgstr "" #. module: base @@ -2998,7 +3022,8 @@ msgid "RML Internal Header" msgstr "" #. module: base -#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 msgid "Base Object" msgstr "" @@ -3041,7 +3066,8 @@ msgid "Creator" msgstr "" #. module: base -#: view:ir.actions.server:0 field:ir.actions.server,code:0 +#: view:ir.actions.server:0 +#: field:ir.actions.server,code:0 #: selection:ir.actions.server,state:0 msgid "Python Code" msgstr "" @@ -3062,7 +3088,8 @@ msgid "The kernel of OpenERP, needed for all installation." msgstr "" #. module: base -#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 +#: field:ir.actions.act_window,view_mode:0 +#: field:res.config.view,view:0 msgid "View Mode" msgstr "" @@ -3139,14 +3166,18 @@ msgid "Source Activity" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 field:ir.model.data,res_id:0 -#: field:ir.translation,res_id:0 field:workflow.instance,res_id:0 +#: field:ir.attachment,res_id:0 +#: field:ir.model.data,res_id:0 +#: field:ir.translation,res_id:0 +#: field:workflow.instance,res_id:0 #: field:workflow.triggers,res_id:0 msgid "Resource ID" msgstr "" #. module: base -#: view:ir.cron:0 field:ir.model,info:0 field:ir.model.grid,info:0 +#: view:ir.cron:0 +#: field:ir.model,info:0 +#: field:ir.model.grid,info:0 #: view:maintenance.contract:0 msgid "Information" msgstr "" @@ -3202,21 +3233,20 @@ msgid "Maintenance contract added !" msgstr "" #. module: base -#: field:ir.rule,field_id:0 selection:ir.translation,type:0 +#: field:ir.rule,field_id:0 +#: selection:ir.translation,type:0 msgid "Field" msgstr "" #. module: base -#: selection:ir.actions.todo,type:0 selection:res.partner.address,type:0 +#: selection:ir.actions.todo,type:0 +#: selection:res.partner.address,type:0 msgid "Other" msgstr "" #. module: base #: help:ir.actions.server,email:0 -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" +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 "" #. module: base @@ -3251,7 +3281,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form -#: model:ir.ui.menu,name:base.menu_workflow_activity view:workflow:0 +#: model:ir.ui.menu,name:base.menu_workflow_activity +#: view:workflow:0 #: field:workflow,activities:0 msgid "Activities" msgstr "" @@ -3262,7 +3293,8 @@ msgid "Dedicated Salesman" msgstr "" #. module: base -#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 +#: field:ir.ui.menu,parent_id:0 +#: field:wizard.ir.model.menu.create,menu_id:0 msgid "Parent Menu" msgstr "" @@ -3326,7 +3358,8 @@ msgstr "" #: selection:ir.report.custom.fields,fc0_op:0 #: selection:ir.report.custom.fields,fc1_op:0 #: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 msgid "=" msgstr "" @@ -3336,7 +3369,8 @@ msgid "Payment Term (short name)" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_bank view:res.bank:0 +#: model:ir.model,name:base.model_res_bank +#: view:res.bank:0 #: field:res.partner.bank,bank:0 msgid "Bank" msgstr "" @@ -3352,17 +3386,30 @@ msgid "Reports :" msgstr "" #. module: base -#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 -#: field:ir.cron,name:0 field:ir.model.access,name:0 -#: field:ir.model.fields,name:0 field:ir.module.category,name:0 -#: field:ir.module.module,name:0 field:ir.module.module.dependency,name:0 -#: rml:ir.module.reference:0 field:ir.module.repository,name:0 -#: field:ir.property,name:0 field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 field:ir.values,name:0 -#: field:maintenance.contract.module,name:0 field:res.bank,name:0 -#: field:res.config.view,name:0 field:res.lang,name:0 field:res.partner,name:0 -#: field:res.partner.bank.type,name:0 field:res.request.link,name:0 -#: field:res.users,name:0 field:workflow,name:0 field:workflow.activity,name:0 +#: field:ir.actions.report.xml,name:0 +#: field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 +#: field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 +#: field:ir.module.category,name:0 +#: field:ir.module.module,name:0 +#: field:ir.module.module.dependency,name:0 +#: rml:ir.module.reference:0 +#: field:ir.module.repository,name:0 +#: field:ir.property,name:0 +#: field:ir.report.custom.fields,name:0 +#: field:ir.rule.group,name:0 +#: field:ir.values,name:0 +#: field:maintenance.contract.module,name:0 +#: field:res.bank,name:0 +#: field:res.config.view,name:0 +#: field:res.lang,name:0 +#: field:res.partner,name:0 +#: field:res.partner.bank.type,name:0 +#: field:res.request.link,name:0 +#: field:res.users,name:0 +#: field:workflow,name:0 +#: field:workflow.activity,name:0 msgid "Name" msgstr "" @@ -3404,9 +3451,7 @@ msgstr "" #. module: base #: view:res.users:0 -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." +msgid "Please note that you will have to logout and relog if you change your password." msgstr "" #. module: base @@ -3451,12 +3496,14 @@ msgid "Honduras" msgstr "" #. module: base -#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 +#: field:ir.ui.view,arch:0 +#: field:ir.ui.view.custom,arch:0 msgid "View Architecture" msgstr "" #. module: base -#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 +#: view:maintenance.contract:0 +#: field:maintenance.contract,module_ids:0 msgid "Covered Modules" msgstr "" @@ -3541,7 +3588,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_server_action -#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action +#: view:ir.actions.server:0 +#: model:ir.ui.menu,name:base.menu_server_action msgid "Server Actions" msgstr "" @@ -3597,9 +3645,7 @@ msgstr "" #. module: base #: wizard_view:module.lang.import,init:0 -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:" +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 "" #. module: base @@ -3630,6 +3676,7 @@ msgstr "" #. module: base #: help:res.country.state,code:0 msgid "The state code in three chars.\n" +"" msgstr "" #. module: base @@ -3643,7 +3690,8 @@ msgid "Test" msgstr "" #. module: base -#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 +#: field:ir.actions.act_window.view,view_id:0 +#: field:ir.default,page:0 #: selection:ir.translation,type:0 #: field:wizard.ir.model.menu.create.line,view_id:0 msgid "View" @@ -3660,7 +3708,8 @@ msgid "Kyrgyz Republic (Kyrgyzstan)" msgstr "" #. module: base -#: view:ir.model:0 view:ir.model.fields:0 +#: view:ir.model:0 +#: view:ir.model.fields:0 msgid "Security on Groups" msgstr "" @@ -3686,7 +3735,8 @@ msgid "STOCK_HOME" msgstr "" #. module: base -#: field:res.bank,zip:0 field:res.partner.address,zip:0 +#: field:res.bank,zip:0 +#: field:res.partner.address,zip:0 #: field:res.partner.bank,zip:0 msgid "Zip" msgstr "" @@ -3713,7 +3763,8 @@ msgid "Update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 +#: model:ir.actions.act_window,name:base.ir_cron_act +#: view:ir.cron:0 #: model:ir.ui.menu,name:base.menu_ir_cron_act msgid "Scheduled Actions" msgstr "" @@ -3740,7 +3791,9 @@ msgid "Link" msgstr "" #. module: base -#: view:res.partner:0 view:res.request:0 field:res.request,history:0 +#: view:res.partner:0 +#: view:res.request:0 +#: field:res.request,history:0 msgid "History" msgstr "" @@ -3796,8 +3849,12 @@ msgid "STOCK_CONVERT" msgstr "" #. module: base -#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 -#: field:res.partner,comment:0 field:res.partner.function,ref:0 +#: view:ir.attachment:0 +#: view:ir.model:0 +#: view:res.groups:0 +#: view:res.partner:0 +#: field:res.partner,comment:0 +#: field:res.partner.function,ref:0 msgid "Notes" msgstr "" @@ -3812,8 +3869,10 @@ msgid "Days" msgstr "" #. module: base -#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 field:ir.values,value:0 +#: field:ir.property,value:0 +#: selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 +#: field:ir.values,value:0 #: field:ir.values,value_unpickle:0 msgid "Value" msgstr "" @@ -3829,9 +3888,13 @@ msgid "Update Translations" msgstr "" #. module: base -#: selection:ir.translation,type:0 field:res.bank,code:0 -#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 -#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 msgid "Code" msgstr "" @@ -3866,7 +3929,8 @@ msgid "Minutes" msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 msgid "The modules have been upgraded / installed !" msgstr "" @@ -3881,7 +3945,8 @@ msgid "Domain Value" msgstr "" #. module: base -#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 +#: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "" @@ -3941,9 +4006,7 @@ msgstr "" #. module: base #: help:ir.actions.server,condition:0 -msgid "" -"Condition that is to be tested before action is executed, e.g. object." -"list_price > object.cost_price" +msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" msgstr "" #. module: base @@ -3969,15 +4032,14 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_form #: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 +#: model:ir.ui.menu,name:base.menu_partner_form +#: view:res.partner:0 msgid "Partners" msgstr "" #. module: base #: help:ir.actions.server,message:0 -msgid "" -"Specify the message. You can use the fields from the object. e.g. `Dear " -"[[ object.partner_id.name ]]`" +msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" msgstr "" #. module: base @@ -4007,7 +4069,8 @@ msgid "Export ID" msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." msgstr "" @@ -4022,8 +4085,10 @@ msgid "France" msgstr "" #. module: base -#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 -#: field:res.request,priority:0 field:res.request.link,priority:0 +#: field:ir.cron,priority:0 +#: field:ir.ui.view,priority:0 +#: field:res.request,priority:0 +#: field:res.request.link,priority:0 msgid "Priority" msgstr "" @@ -4084,7 +4149,8 @@ msgid "Resource Name" msgstr "" #. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 msgid "Multi Actions" msgstr "" @@ -4100,13 +4166,12 @@ msgstr "" #. module: base #: help:ir.actions.server,record_id:0 -msgid "" -"Provide the field name where the record id is stored after the create " -"operations. If it is empty, you can not track the new record." +msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" #. module: base -#: view:res.company:0 view:res.partner:0 +#: view:res.company:0 +#: view:res.partner:0 msgid "General Information" msgstr "" @@ -4173,10 +4238,7 @@ msgstr "" #. module: base #: view:res.lang:0 -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." +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 "" #. module: base @@ -4205,7 +4267,8 @@ msgid "Ghana" msgstr "" #. module: base -#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 +#: field:maintenance.contract,kind:0 +#: field:workflow.activity,kind:0 msgid "Kind" msgstr "" @@ -4248,7 +4311,8 @@ msgstr "" #: wizard_button:module.upgrade,next,end:0 #: wizard_button:res.partner.sms_send,init,end:0 #: wizard_button:res.partner.spam_send,init,end:0 -#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 +#: view:wizard.ir.model.menu.create:0 +#: view:wizard.module.lang.export:0 #: view:wizard.module.update_translations:0 msgid "Cancel" msgstr "" @@ -4264,7 +4328,8 @@ msgid "Directory" msgstr "" #. module: base -#: field:res.partner.event,som:0 field:res.partner.som,name:0 +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 msgid "State of Mind" msgstr "" @@ -4280,9 +4345,7 @@ msgstr "" #. module: base #: help:res.partner,supplier:0 -msgid "" -"Check this box if the partner is a supplier. If it's not checked, purchase " -"people will not see it when encoding a purchase order." +msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." msgstr "" #. module: base @@ -4292,8 +4355,7 @@ msgstr "" #. module: base #: help:res.users,password:0 -msgid "" -"Keep empty if you don't want the user to be able to connect on the system." +msgid "Keep empty if you don't want the user to be able to connect on the system." msgstr "" #. module: base @@ -4333,10 +4395,7 @@ msgstr "" #. module: base #: view:wizard.module.lang.export:0 -msgid "" -"The official translations pack of all OpenERP/OpenObjects module are managed " -"through launchpad. We use their online interface to synchronize all " -"translations efforts." +msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." msgstr "" #. module: base @@ -4389,8 +4448,10 @@ msgid "United States" msgstr "" #. module: base -#: field:ir.default,company_id:0 field:ir.property,company_id:0 -#: field:ir.values,company_id:0 view:res.company:0 +#: field:ir.default,company_id:0 +#: field:ir.property,company_id:0 +#: field:ir.values,company_id:0 +#: view:res.company:0 #: field:res.users,company_id:0 msgid "Company" msgstr "" @@ -4411,7 +4472,8 @@ msgid "Sir" msgstr "" #. module: base -#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 +#: selection:ir.actions.act_window,target:0 +#: selection:ir.actions.url,target:0 msgid "New Window" msgstr "" @@ -4447,10 +4509,8 @@ msgstr "" #. module: base #: model:ir.actions.todo,note:base.config_wizard_step_user -msgid "" -"Create your users.\n" -"You will be able to assign groups to users. Groups define the access rights " -"of each users on the different objects of the system.\n" +msgid "Create your users.\n" +"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" " " msgstr "" @@ -4497,7 +4557,8 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event -#: field:res.partner,events:0 field:res.partner.event,name:0 +#: field:res.partner,events:0 +#: field:res.partner.event,name:0 msgid "Events" msgstr "" @@ -4513,7 +4574,8 @@ msgid "Pitcairn Island" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 +#: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -4571,7 +4633,8 @@ msgid "Number of modules added" msgstr "" #. module: base -#: field:res.bank,phone:0 field:res.partner.address,phone:0 +#: field:res.bank,phone:0 +#: field:res.partner.address,phone:0 msgid "Phone" msgstr "" @@ -4588,11 +4651,16 @@ msgstr "" #. module: base #: field:ir.actions.act_window,groups_id:0 #: model:ir.actions.act_window,name:base.action_res_groups -#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 -#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 -#: view:res.users:0 field:res.users,groups_id:0 +#: field:ir.actions.report.xml,groups_id:0 +#: field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 +#: field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 +#: field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups +#: view:res.groups:0 +#: view:res.users:0 +#: field:res.users,groups_id:0 msgid "Groups" msgstr "" @@ -4617,7 +4685,9 @@ msgid "Dutch (Belgium) / Nederlands (Belgïe)" msgstr "" #. module: base -#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 +#: view:ir.model:0 +#: view:ir.model.fields:0 +#: view:ir.property:0 #: model:ir.ui.menu,name:base.next_id_15 msgid "Properties" msgstr "" @@ -4696,21 +4766,27 @@ msgid "Meta Datas" msgstr "" #. module: base -#: field:ir.model,name:0 field:ir.model.fields,model:0 -#: field:ir.model.grid,name:0 field:ir.values,model:0 +#: field:ir.model,name:0 +#: field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 +#: field:ir.values,model:0 msgid "Object Name" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 selection:ir.values,key:0 +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 msgid "Action" msgstr "" #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard -#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard +#: view:ir.actions.wizard:0 +#: model:ir.ui.menu,name:base.menu_ir_action_wizard msgid "Wizards" msgstr "" @@ -4721,10 +4797,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -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`." +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 "" #. module: base @@ -4745,12 +4818,14 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_attachment -#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment +#: view:ir.attachment:0 +#: model:ir.ui.menu,name:base.menu_action_attachment msgid "Attachments" msgstr "" #. module: base -#: field:res.request,act_to:0 field:res.request.history,act_to:0 +#: field:res.request,act_to:0 +#: field:res.request.history,act_to:0 msgid "To" msgstr "" @@ -4821,9 +4896,7 @@ msgstr "" #. module: base #: help:res.partner,vat:0 -msgid "" -"Value Added Tax number. Check the box if the partner is subjected to the " -"VAT. Used by the VAT legal statement." +msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." msgstr "" #. module: base @@ -4857,8 +4930,10 @@ msgid "Size" msgstr "" #. module: base -#: field:res.bank,city:0 field:res.partner,city:0 -#: field:res.partner.address,city:0 field:res.partner.bank,city:0 +#: field:res.bank,city:0 +#: field:res.partner,city:0 +#: field:res.partner.address,city:0 +#: field:res.partner.bank,city:0 msgid "City" msgstr "" @@ -4873,7 +4948,8 @@ msgid "Italy" msgstr "" #. module: base -#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 msgid "Custom Object" msgstr "" @@ -4884,7 +4960,9 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 +#: field:ir.report.custom,menu_id:0 +#: view:ir.ui.menu:0 +#: field:ir.ui.menu,name:0 msgid "Menu" msgstr "" @@ -4914,7 +4992,8 @@ msgid "Estonian / Eesti keel" msgstr "" #. module: base -#: field:ir.module.module,menus_by_module:0 view:res.groups:0 +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 msgid "Menus" msgstr "" @@ -4944,7 +5023,8 @@ msgid "Action Target" msgstr "" #. module: base -#: field:ir.report.custom,field_parent:0 field:ir.ui.view,field_parent:0 +#: field:ir.report.custom,field_parent:0 +#: field:ir.ui.view,field_parent:0 msgid "Child Field" msgstr "" @@ -4970,9 +5050,12 @@ msgstr "" #. module: base #: field:ir.actions.act_window,usage:0 -#: field:ir.actions.act_window_close,usage:0 field:ir.actions.actions,usage:0 -#: field:ir.actions.report.custom,usage:0 field:ir.actions.report.xml,usage:0 -#: field:ir.actions.server,usage:0 field:ir.actions.wizard,usage:0 +#: field:ir.actions.act_window_close,usage:0 +#: field:ir.actions.actions,usage:0 +#: field:ir.actions.report.custom,usage:0 +#: field:ir.actions.report.xml,usage:0 +#: field:ir.actions.server,usage:0 +#: field:ir.actions.wizard,usage:0 msgid "Action Usage" msgstr "" @@ -5032,7 +5115,8 @@ msgid "Uninstallable" msgstr "" #. module: base -#: field:ir.module.module,url:0 field:ir.module.repository,url:0 +#: field:ir.module.module,url:0 +#: field:ir.module.repository,url:0 msgid "URL" msgstr "" @@ -5090,7 +5174,8 @@ msgid "terp-calendar" msgstr "" #. module: base -#: field:ir.exports,resource:0 field:ir.property,res_id:0 +#: field:ir.exports,resource:0 +#: field:ir.property,res_id:0 msgid "Resource" msgstr "" @@ -5118,13 +5203,15 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_module_open_categ #: model:ir.actions.act_window,name:base.open_module_tree -#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree +#: view:ir.module.module:0 +#: model:ir.ui.menu,name:base.menu_module_tree #: field:wizard.module.lang.export,modules:0 msgid "Modules" msgstr "" #. module: base -#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 +#: selection:workflow.activity,kind:0 +#: field:workflow.activity,subflow_id:0 #: field:workflow.workitem,subflow_id:0 msgid "Subflow" msgstr "" @@ -5140,7 +5227,8 @@ msgid "Trinidad and Tobago" msgstr "" #. module: base -#: field:maintenance.contract,name:0 field:maintenance.contract.wizard,name:0 +#: field:maintenance.contract,name:0 +#: field:maintenance.contract.wizard,name:0 msgid "Contract ID" msgstr "" @@ -5166,13 +5254,15 @@ msgid "Apply Scheduled Upgrades" msgstr "" #. module: base -#: view:workflow.activity:0 field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +#: field:workflow.workitem,act_id:0 msgid "Activity" msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_bank_form -#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 +#: model:ir.ui.menu,name:base.menu_action_res_bank_form +#: view:res.bank:0 #: field:res.partner,bank_ids:0 msgid "Banks" msgstr "" @@ -5183,7 +5273,8 @@ msgid "res.config.view" msgstr "" #. module: base -#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 +#: view:ir.ui.view_sc:0 +#: field:res.partner.title,shortcut:0 msgid "Shortcut" msgstr "" @@ -5243,7 +5334,8 @@ msgid "Published Version" msgstr "" #. module: base -#: help:res.currency,rate:0 help:res.currency.rate,rate:0 +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 msgid "The rate of the currency to the currency of rate 1" msgstr "" @@ -5341,7 +5433,8 @@ msgid "ir.ui.view_sc" msgstr "" #. module: base -#: view:ir.model:0 view:res.request:0 +#: view:ir.model:0 +#: view:res.request:0 msgid "Status" msgstr "" @@ -5384,17 +5477,20 @@ msgid "Base Field" msgstr "" #. module: base -#: field:ir.attachment,datas_fname:0 field:wizard.module.lang.export,name:0 +#: field:ir.attachment,datas_fname:0 +#: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" #. module: base -#: field:ir.model,access_ids:0 field:ir.model.grid,access_ids:0 +#: field:ir.model,access_ids:0 +#: field:ir.model.grid,access_ids:0 msgid "Access" msgstr "" #. module: base -#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 +#: field:res.partner,child_ids:0 +#: field:res.request,ref_partner_id:0 msgid "Partner Ref." msgstr "" @@ -5420,9 +5516,7 @@ msgstr "" #. module: base #: help:res.partner,user_id:0 -msgid "" -"The internal user that is in charge of communicating with this partner if " -"any." +msgid "The internal user that is in charge of communicating with this partner if any." msgstr "" #. module: base @@ -5447,7 +5541,8 @@ msgid "Bahrain" msgstr "" #. module: base -#: field:res.bank,fax:0 field:res.partner.address,fax:0 +#: field:res.bank,fax:0 +#: field:res.partner.address,fax:0 msgid "Fax" msgstr "" @@ -5499,9 +5594,7 @@ msgstr "" #. module: base #: help:ir.actions.server,srcmodel_id:0 -msgid "" -"Object in which you want to create / write the object. If it is empty then " -"refer to the Object field." +msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." msgstr "" #. module: base @@ -5570,7 +5663,8 @@ msgid "%p - Equivalent of either AM or PM." msgstr "" #. module: base -#: field:ir.actions.act_window,limit:0 field:ir.report.custom,limitt:0 +#: field:ir.actions.act_window,limit:0 +#: field:ir.report.custom,limitt:0 msgid "Limit" msgstr "" @@ -5674,8 +5768,10 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 view:ir.module.module:0 -#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 +#: field:ir.model.data,module:0 +#: view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 +#: rml:ir.module.reference:0 msgid "Module" msgstr "" @@ -5695,7 +5791,8 @@ msgid "Gibraltar" msgstr "" #. module: base -#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 +#: field:ir.actions.server,action_id:0 +#: selection:ir.actions.server,state:0 msgid "Client Action" msgstr "" @@ -5750,7 +5847,8 @@ msgid "Loop Action" msgstr "" #. module: base -#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 +#: rml:ir.module.reference:0 +#: field:maintenance.contract.module,version:0 msgid "Version" msgstr "" @@ -5786,7 +5884,8 @@ msgid "Email" msgstr "" #. module: base -#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 +#: view:res.partner.canal:0 +#: field:res.partner.event,canal_id:0 msgid "Channel" msgstr "" @@ -5797,10 +5896,7 @@ msgstr "" #. module: base #: help:ir.actions.server,mobile:0 -msgid "" -"Provides fields that be used to fetch the mobile number, e.g. you select the " -"invoice, then `object.invoice_address_id.mobile` is the field which gives " -"the correct mobile number" +msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" msgstr "" #. module: base @@ -5860,17 +5956,22 @@ msgid "Armenia" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 -#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields -#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 -#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 +#: model:ir.actions.act_window,name:base.action_model_fields +#: view:ir.model:0 +#: field:ir.model,field_id:0 +#: model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 +#: field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 +#: field:ir.report.custom,fields_child0:0 #: model:ir.ui.menu,name:base.ir_model_model_fields msgid "Fields" msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_base_config -#: model:ir.ui.menu,name:base.menu_config view:res.company:0 +#: model:ir.ui.menu,name:base.menu_config +#: view:res.company:0 msgid "Configuration" msgstr "" @@ -5880,12 +5981,14 @@ msgid "Starting Date" msgstr "" #. module: base -#: view:ir.model:0 field:ir.model.fields,ttype:0 +#: view:ir.model:0 +#: field:ir.model.fields,ttype:0 msgid "Field Type" msgstr "" #. module: base -#: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 +#: field:ir.model.fields,complete_name:0 +#: field:ir.ui.menu,complete_name:0 msgid "Complete Name" msgstr "" @@ -5905,7 +6008,8 @@ msgid "Reply" msgstr "" #. module: base -#: field:ir.cron,function:0 field:res.partner.address,function:0 +#: field:ir.cron,function:0 +#: field:res.partner.address,function:0 #: selection:workflow.activity,kind:0 msgid "Function" msgstr "" @@ -5929,7 +6033,8 @@ msgstr "" #: selection:ir.report.custom.fields,fc0_op:0 #: selection:ir.report.custom.fields,fc1_op:0 #: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 msgid "in" msgstr "" @@ -5956,9 +6061,7 @@ msgstr "" #. module: base #: help:ir.actions.wizard,multi:0 -msgid "" -"If set to true, the wizard will not be displayed on the right toolbar of a " -"form view." +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." msgstr "" #. module: base @@ -6035,7 +6138,8 @@ msgid "Comment" msgstr "" #. module: base -#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 +#: field:ir.model.fields,domain:0 +#: field:ir.rule,domain:0 #: field:res.partner.title,domain:0 msgid "Domain" msgstr "" @@ -6047,7 +6151,8 @@ msgstr "" #. module: base #: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 msgid "Subject" msgstr "" @@ -6078,11 +6183,7 @@ msgstr "" #. module: base #: help:res.lang,grouping:0 -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." +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 "" #. module: base @@ -6138,7 +6239,8 @@ msgid "Netherlands" msgstr "" #. module: base -#: field:res.partner,address:0 view:res.partner.address:0 +#: field:res.partner,address:0 +#: view:res.partner.address:0 msgid "Contacts" msgstr "" @@ -6225,12 +6327,14 @@ msgid "STOCK_OPEN" msgstr "" #. module: base -#: view:ir.actions.server:0 field:workflow.activity,action_id:0 +#: view:ir.actions.server:0 +#: field:workflow.activity,action_id:0 msgid "Server Action" msgstr "" #. module: base -#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 +#: wizard_field:res.partner.sms_send,init,user:0 +#: field:res.users,login:0 msgid "Login" msgstr "" @@ -6245,8 +6349,10 @@ msgid "Belarus" msgstr "" #. module: base -#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 -#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 +#: field:ir.actions.act_window,name:0 +#: field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 +#: field:ir.actions.server,name:0 #: field:ir.actions.url,name:0 msgid "Action Name" msgstr "" @@ -6272,7 +6378,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: field:res.bank,street2:0 field:res.partner.address,street2:0 +#: field:res.bank,street2:0 +#: field:res.partner.address,street2:0 msgid "Street2" msgstr "" @@ -6287,13 +6394,16 @@ msgid "Localisation" msgstr "" #. module: base -#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 +#: view:ir.module.module:0 +#: field:ir.module.module,dependencies_id:0 msgid "Dependencies" msgstr "" #. module: base -#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 +#: field:ir.cron,user_id:0 +#: field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 +#: field:res.partner.event,user_id:0 #: view:res.users:0 msgid "User" msgstr "" @@ -6363,9 +6473,7 @@ msgstr "" #. module: base #: view:ir.actions.server:0 -msgid "" -"If you use a formula type, use a python expression using the variable " -"'object'." +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base @@ -6382,11 +6490,15 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 +#: field:ir.actions.todo,users_id:0 +#: field:ir.default,uid:0 #: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users -#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 -#: field:res.groups,users:0 field:res.roles,users:0 view:res.users:0 +#: model:ir.ui.menu,name:base.menu_users +#: view:res.groups:0 +#: field:res.groups,users:0 +#: field:res.roles,users:0 +#: view:res.users:0 msgid "Users" msgstr "" @@ -6417,12 +6529,19 @@ msgid "Filter" msgstr "" #. module: base -#: field:ir.actions.todo,active:0 field:ir.cron,active:0 -#: field:ir.module.repository,active:0 field:ir.sequence,active:0 -#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 -#: field:res.partner,active:0 field:res.partner.address,active:0 -#: field:res.partner.canal,active:0 field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 field:res.request,active:0 +#: field:ir.actions.todo,active:0 +#: field:ir.cron,active:0 +#: field:ir.module.repository,active:0 +#: field:ir.sequence,active:0 +#: field:res.bank,active:0 +#: field:res.currency,active:0 +#: field:res.lang,active:0 +#: field:res.partner,active:0 +#: field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 +#: field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 +#: field:res.request,active:0 #: field:res.users,active:0 msgid "Active" msgstr "" @@ -6467,7 +6586,8 @@ msgid "Grenada" msgstr "" #. module: base -#: field:ir.sequence,code:0 field:ir.sequence.type,code:0 +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 msgid "Sequence Code" msgstr "" @@ -6522,7 +6642,8 @@ msgid "Partner State of Mind" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_bank view:res.partner.bank:0 +#: model:ir.model,name:base.model_res_partner_bank +#: view:res.partner.bank:0 msgid "Bank Accounts" msgstr "" @@ -6582,7 +6703,8 @@ msgid "Close" msgstr "" #. module: base -#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 +#: field:ir.sequence,name:0 +#: field:ir.sequence.type,name:0 msgid "Sequence Name" msgstr "" @@ -6592,7 +6714,8 @@ msgid "Turks and Caicos Islands" msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 msgid "System upgrade done" msgstr "" @@ -6676,7 +6799,8 @@ msgid "Arguments" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 field:workflow,osv:0 +#: field:ir.attachment,res_model:0 +#: field:workflow,osv:0 #: field:workflow.instance,res_type:0 msgid "Resource Object" msgstr "" @@ -6707,7 +6831,8 @@ msgid "File Format" msgstr "" #. module: base -#: field:ir.model,state:0 field:ir.model.fields,state:0 +#: field:ir.model,state:0 +#: field:ir.model.fields,state:0 #: field:ir.model.grid,state:0 msgid "Manually Created" msgstr "" @@ -6718,9 +6843,12 @@ msgid "Repository" msgstr "" #. module: base -#: field:ir.attachment,description:0 field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 view:res.partner.event:0 -#: field:res.partner.event,description:0 view:res.request:0 +#: field:ir.attachment,description:0 +#: field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 +#: view:res.partner.event:0 +#: field:res.partner.event,description:0 +#: view:res.request:0 msgid "Description" msgstr "" @@ -6745,7 +6873,8 @@ msgid "Delivery" msgstr "" #. module: base -#: field:res.bank,street:0 field:res.partner.address,street:0 +#: field:res.bank,street:0 +#: field:res.partner.address,street:0 #: field:res.partner.bank,street:0 msgid "Street" msgstr "" @@ -6796,7 +6925,8 @@ msgid "Export language" msgstr "" #. module: base -#: field:res.partner,customer:0 selection:res.partner.event,partner_type:0 +#: field:res.partner,customer:0 +#: selection:res.partner.event,partner_type:0 msgid "Customer" msgstr "" @@ -6811,7 +6941,8 @@ msgid "Guinea Bissau" msgstr "" #. module: base -#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 +#: field:ir.actions.report.custom,name:0 +#: field:ir.report.custom,name:0 msgid "Report Name" msgstr "" @@ -6837,9 +6968,12 @@ msgid "British Indian Ocean Territory" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_country field:res.bank,country:0 -#: view:res.country:0 field:res.country.state,country_id:0 -#: field:res.partner,country:0 field:res.partner.address,country_id:0 +#: model:ir.model,name:base.model_res_country +#: field:res.bank,country:0 +#: view:res.country:0 +#: field:res.country.state,country_id:0 +#: field:res.partner,country:0 +#: field:res.partner.address,country_id:0 #: field:res.partner.bank,country_id:0 msgid "Country" msgstr "" @@ -6942,10 +7076,13 @@ msgstr "" #. module: base #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.actions.server,sequence:0 field:ir.actions.todo,sequence:0 +#: field:ir.actions.server,sequence:0 +#: field:ir.actions.todo,sequence:0 #: field:ir.module.repository,sequence:0 -#: field:ir.report.custom.fields,sequence:0 view:ir.sequence:0 -#: field:ir.ui.menu,sequence:0 field:ir.ui.view_sc,sequence:0 +#: field:ir.report.custom.fields,sequence:0 +#: view:ir.sequence:0 +#: field:ir.ui.menu,sequence:0 +#: field:ir.ui.view_sc,sequence:0 #: field:res.partner.bank,sequence:0 #: field:wizard.ir.model.menu.create.line,sequence:0 msgid "Sequence" @@ -6963,15 +7100,12 @@ msgstr "" #. module: base #: help:res.partner.address,type:0 -msgid "" -"Used to select automatically the right address according to the context in " -"sales and purchases documents." +msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" #. module: base #: help:ir.cron,numbercall:0 -msgid "" -"Number of time the function is called,\n" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -7011,9 +7145,12 @@ msgid "Choose a language to install:" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 -#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 -#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 +#: model:ir.model,name:base.model_res_partner +#: field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 +#: field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 +#: selection:res.partner.title,domain:0 msgid "Partner" msgstr "" @@ -7042,608 +7179,3 @@ msgstr "" msgid "XML Identifier" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The unlink method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:report/custom.py:0 -#, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can't draw a pie chart !" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "new" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -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 "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password mismatch !" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "" -"You can not remove the admin user as it is used internally for resources " -"created by OpenERP (updates, module installation, ...)" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The read method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the model '%s' !" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_4 -msgid "Basic Partner" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You try to bypass an access rule (Document type: %s)." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Pie charts need exactly two fields" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The search method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:ir.attachment,res_id:0 -msgid "Attached ID" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "" - -#. module: base -#: field:ir.attachment,res_model:0 -msgid "Attached Model" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Can not remove root user!" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented search_memory method !" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "" -"Couldn't generate the next id because some partners have an alphabetic id !" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented set_memory method !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Enter at least one field !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_7 -msgid "Openstuff.net" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Can not upgrade module '%s'. It is not installed." -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_17 -msgid "HR sector" -msgstr "" - -#. module: base -#: code:addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "Unable to find a valid contract" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify an action to launch !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Please check that all your lines have %d columns." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Recursivity Detected." -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Recursion error in modules dependencies !" -msgstr "" - -#. module: base -#: constraint:res.partner.category:0 -msgid "Error ! You can not create recursive categories." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Can not define a column %s. Reserved keyword !" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "" -"Save this document to a .CSV file and open it with your favourite " -"spreadsheet software. The file encoding is UTF-8. You have to translate the " -"latest column before reimporting it." -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_16 -msgid "Telecom sector" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"You try to upgrade a module that depends on the module: %s.\n" -"But this module is not available in your system." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Invalid operation" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"You try to install a module that depends on the module: %s.\n" -"But this module is not available in your system." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the field '%s' !" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "You try to remove a module that is installed or will be installed" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occurred while validating the field(s) %s: %s" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Using a relation field which uses an unknown object" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The write method is not implemented on this object !" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "The name of the group can not start with \"-\"" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Tree can only be used in tabular reports" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Some installed modules depend on the module you plan to Uninstall :\n" -" %s" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %r, expected an integer." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The create method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You cannot perform this operation." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Couldn't find tag '%s' in parent view !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_get method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not Implemented" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_11 -msgid "Textile Suppliers" -msgstr "" - -#. module: base -#: model:res.country,name:base.mk -msgid "Macedonia" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_partner_address_form -msgid "Addresses" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Records were modified in the meanwhile" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_search method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Module %s: Invalid Quality Certificate" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify the Partner Email address !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "UserError" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 code:osv/orm.py:0 -#, python-format -msgid "AccessError" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented get_memory method !" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Can not create the module file: %s !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify server option --smtp-from !" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_9 -msgid "Components Supplier" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_14 -msgid "Bad customers" -msgstr "" - -#. module: base -#: code:tools/translate.py:0 -#, python-format -msgid "Bad file format" -msgstr "" - -#. module: base -#: code:tools/amount_to_text_en.py:0 -#, python-format -msgid "Number too large '%d', can not translate it" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "" - -#. module: base -#: field:ir.attachment,datas:0 -msgid "File Content" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%A - Full weekday name." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Unknown position in inherited view %s !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Problem in configuration `Record Id` in Server Action!" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ValidateError" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Field %d should be a figure" -msgstr "" - -#. module: base -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_2 -msgid "OpenERP Partners" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_13 -msgid "Important customers" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The value \"%s\" for the field \"%s\" is not in the selection" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_5 -msgid "Gold Partner" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_10 -msgid "Open Source Service Company" -msgstr "" - -#. module: base -#: code:addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "Your can't submit bug reports due to uncovered modules: %s" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "undefined get method !" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password empty !" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Bad query." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Second field should be figures" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 code:addons/base/ir/ir_model.py:0 -#: code:addons/base/maintenance/maintenance.py:0 -#: code:addons/base/module/module.py:0 code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 code:report/custom.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "" -"Save this document to a .tgz file. This archive containt UTF-8 %s files and " -"may be uploaded to launchpad." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_12 -msgid "Segmentation" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Warning" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_15 -msgid "IT sector" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Partners: " -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_1 -msgid "Prospect" -msgstr "" diff --git a/bin/addons/base_setup/i18n/base_setup.pot b/bin/addons/base_setup/i18n/base_setup.pot index 36ec8beeebf..14fdab5acc4 100644 --- a/bin/addons/base_setup/i18n/base_setup.pot +++ b/bin/addons/base_setup/i18n/base_setup.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-05-19 14:36:37+0000\n" -"PO-Revision-Date: 2009-05-20 10:36:37+0000\n" +"POT-Creation-Date: 2009-06-08 21:23:39+0000\n" +"PO-Revision-Date: 2009-06-08 21:23:39+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" From b142b5f546ddd216cd089455e79bfb15e22f9a7e Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 9 Jun 2009 01:19:23 +0300 Subject: [PATCH 147/251] When exporting translations, quote the backslash bzr revid: p_christ@hol.gr-20090608221923-he37i0dztj3shpvm --- bin/tools/translate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index fb720c389a7..93451115edc 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -273,7 +273,8 @@ class TinyPoFile(object): def write(self, modules, tnrs, source, trad): def quote(s): return '"%s"' % s.replace('"','\\"') \ - .replace('\n', '\\n"\n"') + .replace('\n', '\\n"\n"') \ + .replace(' \\ ',' \\\\ ') plurial = len(modules) > 1 and 's' or '' self.buffer.write("#. module%s: %s\n" % (plurial, ', '.join(modules))) From 92a3ba28688461b81de9200aad371ae39963f697 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 9 Jun 2009 01:19:47 +0300 Subject: [PATCH 148/251] Merge el_GR translations. bzr revid: p_christ@hol.gr-20090608221947-s1l1bjlrzxjui1av --- bin/addons/base/i18n/el_GR.po | 11806 +++++++++++++------------- bin/addons/base_setup/i18n/el_GR.po | 154 +- 2 files changed, 5825 insertions(+), 6135 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index bc4cf33fcac..daf404798a0 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-04-09 17:23+0000\n" +"POT-Creation-Date: 2009-06-08 21:23:39+0000\n" "PO-Revision-Date: 2009-06-06 12:04+0300\n" "Last-Translator: P. Christeas \n" "Language-Team: Greek \n" @@ -21,6 +21,31 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "Canada" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STOP" +msgstr "STOCK_STOP" + +#. module: base +#: selection:ir.actions.act_window,target:0 +msgid "Current Window" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Internal Name" +msgstr "Εσωτερικό όνομα" + #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" @@ -31,1280 +56,15 @@ msgstr "Αγία Έλενα" msgid "SMS - Gateway: clickatell" msgstr "SMS - Gateway: clickatell" -#. module: base -#: view:res.lang:0 -msgid "%j - Day of the year as a decimal number [001,366]." -msgstr "%j - Ημέρα του χρόνου σε δεκαδική μορφή [001,366]." - -#. module: base -#: field:ir.values,meta_unpickle:0 -msgid "Metadata" -msgstr "Metadata" - -#. module: base -#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 -msgid "View Architecture" -msgstr "Προβολή Δομής" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Δεν μπορείτε να δημιουργήσετε τέτοιο έγγραφο! (%s)" - -#. module: base -#: wizard_field:module.lang.import,init,code:0 -msgid "Code (eg:en__US)" -msgstr "Code (eg:en__US)" - -#. module: base -#: view:workflow:0 field:workflow.activity,wkf_id:0 -#: field:workflow.instance,wkf_id:0 -msgid "Workflow" -msgstr "Ροή έργασίας" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To browse official translations, you can visit this link: " -msgstr "To browse official translations, you can visit this link: " - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Hungarian / Magyar" -msgstr "Hungarian / Magyar" - -#. module: base -#: field:ir.actions.server,wkf_model_id:0 -msgid "Workflow On" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Views" -msgstr "Created Views" - -#. module: base -#: view:workflow.activity:0 -msgid "Outgoing transitions" -msgstr "Εκροές" - #. module: base #: selection:ir.report.custom,frequency:0 -msgid "Yearly" -msgstr "Ετησίως" +msgid "Monthly" +msgstr "Μηνιαία" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The unlink method is not implemented on this object !" -msgstr "Η μέθοδος αποσύνδεσης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - -#. module: base -#: field:ir.actions.act_window,target:0 -msgid "Target Window" -msgstr "Επιλεγμένο Παράθυρο" - -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_simple_view -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 "" -"Choose between the \"Simplified Interface\" or the extended one.\n" -"Ιf 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" -" " - -#. module: base -#: code:report/custom.py:0 -#, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can't draw a pie chart !" -msgstr "" -"Το άθροισμα των δεδομένων στο 2ο πεδίο είναι μηδενικό.\n" -"Αδύνατη η δημιουργία κυκλικού διαγράμματος !" - -#. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Νότια Κορέα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Ροές" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_custom -msgid "ir.ui.view.custom" -msgstr "ir.ui.view.custom" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_custom -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.custom" -msgstr "ir.actions.report.custom" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CANCEL" -msgstr "STOCK_CANCEL" - -#. module: base -#: field:ir.report.custom,sortby:0 -msgid "Sorted By" -msgstr "Ταξινόμηση ανά" - -#. module: base -#: field:ir.sequence,number_increment:0 -msgid "Increment Number" -msgstr "Αριθμός Προσαύξησης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_tree -#: model:ir.ui.menu,name:base.menu_action_res_company_tree -msgid "Company's Structure" -msgstr "Δομή Εταιρίας" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom_fields -msgid "ir.report.custom.fields" -msgstr "ir.report.custom.fields" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "new" -msgstr "νέο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_TOP" -msgstr "STOCK_GOTO_TOP" - -#. module: base -#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 -msgid "On multiple doc." -msgstr "Σε πολλαπλά έγγραφα." - -#. module: base -#: field:ir.module.category,module_nr:0 -msgid "Number of Modules" -msgstr "Number of Modules" - -#. module: base -#: field:res.partner.bank.type.field,size:0 -msgid "Max. Size" -msgstr "Μέγιστο Μέγεθος" - -#. module: base -#: field:res.partner.address,name:0 -msgid "Contact Name" -msgstr "Όνομα Επαφής" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -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 "Αποθηκέυστε αυτό το έγγραφο σε %s αρχείο και επεξργαστείτε το με επεξεργαστή κειμένου ή άλλο πρόγραμμα. Η κωδικοποίηση του αρχείου είναι UTF-8." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password mismatch !" -msgstr "Το password δεν είναι το ίδιο!" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "This url '%s' must provide an html file with links to zip modules" - -#. module: base -#: selection:res.request,state:0 -msgid "active" -msgstr "ενεργό" - -#. module: base -#: field:ir.actions.wizard,wiz_name:0 -msgid "Wizard Name" -msgstr "Όνομα Οδηγού" - -#. module: base -#: view:res.lang:0 -msgid "%y - Year without century as a decimal number [00,99]." -msgstr "%y - Χρονολογία χωρίς τον αιώνα, σε δεκαδική μορφή [00, 99]." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "STOCK_GOTO_FIRST" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Get Max" - -#. module: base -#: help:ir.actions.act_window,limit:0 -msgid "Default limit for the list view" -msgstr "Προεπιλεγμένο όριο για την προβολή λίστας" - -#. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Ανανέωση Ημερ/νίας" - -#. module: base -#: field:ir.actions.act_window,src_model:0 -msgid "Source Object" -msgstr "Πηγαίο Αντικείμενο" - -#. module: base -#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form -#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form -msgid "Config Wizard Steps" -msgstr "Config Wizard Steps" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_sc -msgid "ir.ui.view_sc" -msgstr "ir.ui.view_sc" - -#. module: base -#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 -msgid "Group" -msgstr "Ομάδα" - -#. module: base -#: field:ir.exports.line,name:0 field:ir.translation,name:0 -#: field:res.partner.bank.type.field,name:0 -msgid "Field Name" -msgstr "Όνομα Πεδίου" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_uninstall -#: model:ir.ui.menu,name:base.menu_module_tree_uninstall -msgid "Uninstalled modules" -msgstr "Uninstalled modules" - -#. module: base -#: wizard_view:server.action.create,init:0 -#: wizard_field:server.action.create,init,type:0 -msgid "Select Action Type" -msgstr "Επιλογή Τύπου Κίνησης" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Configure" -msgstr "Ρυθμίσεις" - -#. module: base -#: model:res.country,name:base.tv -msgid "Tuvalu" -msgstr "Τουβαλού" - -#. module: base -#: selection:ir.model,state:0 selection:ir.model.grid,state:0 -msgid "Custom Object" -msgstr "Παραμετροποιημένο αντικείμενο" - -#. module: base -#: field:res.lang,date_format:0 -msgid "Date Format" -msgstr "Μορφή Ημερ/νίας" - -#. module: base -#: field:res.bank,email:0 field:res.partner.address,email:0 -msgid "E-Mail" -msgstr "E-Mail" - -#. module: base -#: model:res.country,name:base.an -msgid "Netherlands Antilles" -msgstr "Ολλανδικές Αντίλλες" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" -msgstr "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" - -#. module: base -#: model:res.country,name:base.gf -msgid "French Guyana" -msgstr "Γαλλική Γουιάνα" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bosnian / bosanski jezik" -msgstr "Βοσνιακό / bosanski jezik" - -#. module: base -#: help:ir.actions.report.xml,attachment_use:0 -msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." -msgstr "Αν επιλέξετε αυτό, τη δεύτερη φορά που ο χρήστης θα εκτυπώσει το ίδιο όνομα συνημμένου, θα εκτυπωθεί η προηγούμενη αναφορά." - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The read method is not implemented on this object !" -msgstr "Η μέθοδος ανάγνωσης δεν έχει αναπτυχθεί για αυτό το αντικείμενο!" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_REWIND" -msgstr "STOCK_MEDIA_REWIND" - -#. module: base -#: field:ir.actions.todo,note:0 -msgid "Text" -msgstr "Κείμενο" - -#. module: base -#: field:res.country,name:0 -msgid "Country Name" -msgstr "Όνομα Χώρας" - -#. module: base -#: model:res.country,name:base.co -msgid "Colombia" -msgstr "Κολομβία" - -#. module: base -#: view:ir.module.module:0 -msgid "Schedule Upgrade" -msgstr "Προγραμματισμός Αναβάθμισης" - -#. module: base -#: field:ir.actions.report.custom,report_id:0 -msgid "Report Ref." -msgstr "Report Ref." - -#. module: base -#: help:res.country,code:0 -msgid "" -"The ISO country code in two chars.\n" -"You can use this field for quick search." -msgstr "" -"Κωδικός Χώρας (Διψήφιος ISO).\n" -"Χρησιμοποιήστε το για γρήγορη αναζήτηση." - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "Xor" -msgstr "Xή" - -#. module: base -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "Πωλήσεις & Αγορές" - -#. module: base -#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 -msgid "Wizard" -msgstr "Οδηγός" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CUT" -msgstr "STOCK_CUT" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_wizard -#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard -msgid "Wizards" -msgstr "Οδηγοί" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Extended Interface" -msgstr "Εκτεταμένη Προβολή" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "Τα ειδικά πεδία πρέπει να έχουν όνομα που ξεκινάει από 'x_' !" - -#. module: base -#: help:ir.actions.server,action_id:0 -msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "Επιλογή Παραθύρου Κίνησης, Αναφοράς, Wizard προς εμφάνιση." - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export done" -msgstr "Η Εξαγωγή Επετεύχθει" - -#. module: base -#: view:ir.model:0 -msgid "Model Description" -msgstr "Περιγραφή Μοντέλου" - -#. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expression" -msgstr "Trigger Expression" - -#. module: base -#: model:res.country,name:base.jo -msgid "Jordan" -msgstr "Ιορδανία" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the model '%s' !" -msgstr "Δεν μπορείτε να διαγράψετε το μοντέλο '%s' !" - -#. module: base -#: model:res.country,name:base.er -msgid "Eritrea" -msgstr "Ερυθρέα" - -#. module: base -#: view:res.config.view:0 -msgid "Configure simple view" -msgstr "Ρυθμίσεις απλής προβολής" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bulgarian / български" -msgstr "Bulgarian / български" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_actions -msgid "ir.actions.actions" -msgstr "ir.actions.actions" - -#. module: base -#: model:ir.actions.act_window,name:base.action_report_custom -#: view:ir.report.custom:0 -msgid "Custom Report" -msgstr "Ειδική Αναφορά" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Bar Chart" -msgstr "Ιστόγραμμα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_ERROR" -msgstr "STOCK_DIALOG_ERROR" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDEX" -msgstr "STOCK_INDEX" - -#. module: base -#: model:res.country,name:base.rs -msgid "Serbia" -msgstr "Σερβία" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard View" -msgstr "Προβολή Wizard" - -#. module: base -#: model:res.country,name:base.kh -msgid "Cambodia, Kingdom of" -msgstr "Καμπότζη, Βασίλειο της" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 -#: model:ir.ui.menu,name:base.menu_ir_sequence_form -#: model:ir.ui.menu,name:base.next_id_5 -msgid "Sequences" -msgstr "Συχνότητες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_QUESTION" -msgstr "STOCK_DIALOG_QUESTION" - -#. module: base -#: model:res.country,name:base.pg -msgid "Papua New Guinea" -msgstr "Παπούα Νέα Γουινέα" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_4 -msgid "Basic Partner" -msgstr "Βασικός Συνεργάτης" - -#. module: base -#: rml:ir.module.reference:0 -msgid "," -msgstr "," - -#. module: base -#: model:res.country,name:base.es -msgid "Spain" -msgstr "Ισπανία" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "You may have to reinstall some language pack." -msgstr "Πιθανόν να χρειαστεί να επανεγκαταστήσετε κάποιο πακέτο γλώσσας." - -#. module: base -#: field:res.partner.address,mobile:0 -msgid "Mobile" -msgstr "Κινητό" - -#. module: base -#: model:res.country,name:base.om -msgid "Oman" -msgstr "Ομάν" - -#. module: base -#: model:ir.actions.act_window,name:base.action_payterm_form -#: model:ir.model,name:base.model_res_payterm -msgid "Payment term" -msgstr "Όροι Πληρωμής" - -#. module: base -#: model:res.country,name:base.nu -msgid "Niue" -msgstr "Νιούε" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Work Days" -msgstr "Ημέρες Εργασίας" - -#. module: base -#: help:ir.values,action_id:0 -msgid "This field is not used, it only helps you to select the right action." -msgstr "Αυτό το πεδίο δεν χρησιμοποιείται, απλά σας βοηθά να επιλέξετε την σωστή ενέργεια." - -#. module: base -#: model:ir.actions.act_window,name:base.act_menu_create -#: view:wizard.ir.model.menu.create:0 -msgid "Create Menu" -msgstr "Δημιουργήστε μενού" - -#. module: base -#: model:res.country,name:base.in -msgid "India" -msgstr "Ινδία" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_module -msgid "maintenance contract modules" -msgstr "modules συμβολαίου συντήρησης" - -#. module: base -#: view:ir.values:0 -msgid "client_action_multi, client_action_relate" -msgstr "client_action_multi, client_action_relate" - -#. module: base -#: model:res.country,name:base.ad -msgid "Andorra, Principality of" -msgstr "Andorra, Principality of" - -#. module: base -#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 -msgid "Child Categories" -msgstr "Υποκατηγορίες" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "TGZ Archive" -msgstr "Αρχείο TGZ" - -#. module: base -#: field:res.partner.som,factor:0 -msgid "Factor" -msgstr "Παράγοντας" - -#. module: base -#: view:res.lang:0 -msgid "%B - Full month name." -msgstr "%B - Πλήρες όνομα μήνα." - -#. module: base -#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 -#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 -#: field:ir.values,key:0 view:res.partner:0 -msgid "Type" -msgstr "Τύπος" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FILE" -msgstr "STOCK_FILE" - -#. module: base -#: model:res.country,name:base.gu -msgid "Guam (USA)" -msgstr "Guam (USA)" - -#. module: base -#: model:ir.model,name:base.model_ir_model_grid -msgid "Objects Security Grid" -msgstr "Objects Security Grid" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_DOWN" -msgstr "STOCK_GO_DOWN" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OK" -msgstr "STOCK_OK" - -#. module: base -#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 -msgid "Dummy" -msgstr "Εικονικό" - -#. module: base -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You try to bypass an access rule (Document type: %s)." -msgstr "Υπάρχουν κανόνες πρόσβασης για έγγραφα %s." - -#. module: base -#: model:res.country,name:base.ky -msgid "Cayman Islands" -msgstr "Cayman Islands" - -#. module: base -#: field:ir.rule,operand:0 -msgid "Operand" -msgstr "" - -#. module: base -#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 -msgid "Sequence Name" -msgstr "Όνομα Αρίθμησης" - -#. module: base -#: model:res.country,name:base.td -msgid "Chad" -msgstr "Chad" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish (AR) / Español (AR)" -msgstr "Spanish (AR) / Español (AR)" - -#. module: base -#: model:res.country,name:base.ug -msgid "Uganda" -msgstr "Uganda" - -#. module: base -#: model:res.country,name:base.ne -msgid "Niger" -msgstr "Νίγηρας" - -#. module: base -#: model:res.country,name:base.ba -msgid "Bosnia-Herzegovina" -msgstr "Bosnia-Herzegovina" - -#. module: base -#: field:ir.report.custom.fields,alignment:0 -msgid "Alignment" -msgstr "Διάταξη" - -#. module: base -#: selection:ir.rule,operator:0 -msgid ">=" -msgstr ">=" - -#. module: base -#: view:res.lang:0 -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 - Ο αριθμός της εβδομάδας στο χρόνο (με Δευτέρα πρώτη ημέρα της εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του νέου χρόνου πριν την πρώτη Δευτέρα θεωρούνται εβδομάδα 0." - -#. module: base -#: field:res.partner.event,planned_cost:0 -msgid "Planned Cost" -msgstr "Προϋπολογισμένο Κόστος" - -#. module: base -#: model:ir.model,name:base.model_ir_model_config -msgid "ir.model.config" -msgstr "ir.model.config" - -#. module: base -#: field:ir.module.module,website:0 field:res.partner,website:0 -msgid "Website" -msgstr "Ιστοσελίδα" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Tests" - -#. module: base -#: view:ir.module.repository:0 -msgid "Repository" -msgstr "Αποθήκη" - -#. module: base -#: model:res.country,name:base.gs -msgid "S. Georgia & S. Sandwich Isls." -msgstr "S. Georgia & S. Sandwich Isls." - -#. module: base -#: field:ir.actions.url,url:0 -msgid "Action URL" -msgstr "Action URL" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_FILL" -msgstr "STOCK_JUSTIFY_FILL" - -#. module: base -#: model:res.country,name:base.mh -msgid "Marshall Islands" -msgstr "Marshall Islands" - -#. module: base -#: model:res.country,name:base.ht -msgid "Haiti" -msgstr "Haiti" - -#. module: base -#: selection:ir.translation,type:0 -msgid "RML" -msgstr "RML" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_main -msgid "Partners by Categories" -msgstr "Συνεργάτες ανά Κατηγορίες" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Pie charts need exactly two fields" -msgstr "Το κυκλικό διάγραμμα χρειάζεται ακριβώς δύο πεδία" - -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Για εξαγωγή νέας γλώσσας, μην επιλέξετε καμμία γλώσσα." - -#. module: base -#: model:res.country,name:base.md -msgid "Moldavia" -msgstr "Moldavia" - -#. module: base -#: view:ir.module.module:0 -msgid "Features" -msgstr "Χαρακτηριστικά" - -#. module: base -#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 -msgid "Version" -msgstr "Έκδοση" - -#. module: base -#: field:ir.report.custom.fields,fc0_op:0 -#: field:ir.report.custom.fields,fc1_op:0 -#: field:ir.report.custom.fields,fc2_op:0 -#: field:ir.report.custom.fields,fc3_op:0 -msgid "Relation" -msgstr "Σχέση" - -#. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Πρόσβαση Ανάγνωσης" - -#. module: base -#: model:ir.model,name:base.model_ir_exports -msgid "ir.exports" -msgstr "ir.exports" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MISSING_IMAGE" -msgstr "STOCK_MISSING_IMAGE" - -#. module: base -#: view:res.users:0 -msgid "Define New Users" -msgstr "Ορισμός Νέων Χρηστών" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REMOVE" -msgstr "STOCK_REMOVE" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "raw" -msgstr "" - -#. module: base -#: help:ir.actions.server,email:0 -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 "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" - -#. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Όνομα Ρόλου" - -#. module: base -#: field:res.partner,user_id:0 -msgid "Dedicated Salesman" -msgstr "Αφοσιωμένος Πωλητής" - -#. module: base -#: rml:ir.module.reference:0 -msgid "-" -msgstr "-" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The search method is not implemented on this object !" -msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - -#. module: base -#: field:res.payterm,name:0 -msgid "Payment Term (short name)" -msgstr "Όρος Πληρωμής (σύντομα)" - -#. module: base -#: model:ir.model,name:base.model_res_bank view:res.bank:0 -#: field:res.partner.bank,bank:0 -msgid "Bank" -msgstr "Τράπεζα" - -#. module: base -#: view:res.lang:0 -msgid "Examples" -msgstr "Παραδείγματα" - -#. module: base -#: field:ir.module.module,reports_by_module:0 -msgid "Reports" -msgstr "Αναφορές" - -#. module: base -#: field:workflow,on_create:0 -msgid "On Create" -msgstr "On Create" - -#. module: base -#: wizard_view:base.module.import,init:0 -msgid "Please give your module .ZIP file to import." -msgstr "Παρακαλώ επιλέξτε το αρχείο .ZIP για εισαγωγή του module" - -#. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Προεπιλεγμένη Τιμή" - -#. module: base -#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 -msgid "Login" -msgstr "Είσοδος" - -#. module: base -#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 -msgid "Covered Modules" -msgstr "Modules που καλύπτονται" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COPY" -msgstr "STOCK_COPY" - -#. module: base -#: model:ir.model,name:base.model_res_request_link -msgid "res.request.link" -msgstr "res.request.link" - -#. module: base -#: wizard_button:module.module.update,init,update:0 -msgid "Check new modules" -msgstr "Έλεγχος νέων modules" - -#. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comoros" - -#. module: base -#: model:ir.actions.act_window,name:base.action_server_action -#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action -msgid "Server Actions" -msgstr "Server Actions" - -#. module: base -#: model:res.country,name:base.tp -msgid "East Timor" -msgstr "East Timor" - -#. module: base -#: view:ir.rule:0 -msgid "Simple domain setup" -msgstr "Απλή μορφή τομέα" - -#. module: base -#: field:res.currency,accuracy:0 -msgid "Computational Accuracy" -msgstr "Ακρίβεια Υπολογισμού" - -#. module: base -#: model:res.country,name:base.kg -msgid "Kyrgyz Republic (Kyrgyzstan)" -msgstr "Kyrgyz Republic (Kyrgyzstan)" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line -msgid "wizard.ir.model.menu.create.line" -msgstr "wizard.ir.model.menu.create.line" - -#. module: base -#: field:ir.attachment,res_id:0 -msgid "Attached ID" -msgstr "Attached ID" - -#. module: base -#: view:ir.sequence:0 -msgid "Day: %(day)s" -msgstr "Ημέρα: %(day)s" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Δεν μπορείτε να διαβάσετε αυτό το έγγραφο! (%s)" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND_AND_REPLACE" -msgstr "STOCK_FIND_AND_REPLACE" - -#. module: base -#: model:res.country,name:base.mv -msgid "Maldives" -msgstr "Maldives" - -#. module: base -#: help:ir.values,res_id:0 -msgid "Keep 0 if the action must appear on all resources." -msgstr "0 αν η ενέργεια πρέπει να εμφανίζεται σε όλους τους πόρους." - -#. module: base -#: model:ir.model,name:base.model_ir_rule -msgid "ir.rule" -msgstr "ir.rule" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Days" -msgstr "Ημέρες" - -#. module: base -#: field:ir.report.custom.fields,width:0 -msgid "Fixed Width" -msgstr "Προεπιλεγμένο Πλάτος" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-calendar" -msgstr "terp-calendar" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Some installed modules depends on the module you plan to desinstall :\n" -" %s" -msgstr "" -"Some installed modules depends on the module you plan to desinstall :\n" -" %s" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_YES" -msgstr "STOCK_YES" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_custom -#: model:ir.ui.menu,name:base.menu_ir_action_report_custom -msgid "Report Custom" -msgstr "Ειδική Αναφορά" - -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Χρονολογία χωρίς τον αιώνα: %(y)s" - -#. module: base -#: view:res.lang:0 -msgid "7. %H:%M:%S ==> 18:25:20" -msgstr "7. %H:%M:%S ==> 18:25:20" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_form -#: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 -msgid "Partners" -msgstr "Συνεργάτες" - -#. module: base -#: help:ir.actions.server,message:0 -msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" -msgstr "Συγκεκριμενοποιήστε το μήνυμα. Μπορείτε να χρησιμοποιήσετε τα πεδία του αντικειμένου, π.χ. \"Αγαπητέ [[ object.partner_id.name ]]\"" - -#. module: base -#: field:ir.attachment,res_model:0 -msgid "Attached Model" -msgstr "Συνδεδεμένο Μοντέλο" - -#. module: base -#: field:ir.actions.server,trigger_name:0 -msgid "Trigger Name" -msgstr "Trigger Name" - -#. module: base -#: model:ir.model,name:base.model_ir_model_access -msgid "ir.model.access" -msgstr "ir.model.access" - -#. module: base -#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 -#: field:res.request,priority:0 field:res.request.link,priority:0 -msgid "Priority" -msgstr "Προτεραιότητα" - -#. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Source Activity" - -#. module: base -#: view:ir.sequence:0 -msgid "Legend (for prefix, suffix)" -msgstr "Κανόνες (για πρόθεμα, επίθεμα)" - -#. module: base -#: selection:ir.server.object.lines,type:0 -msgid "Formula" -msgstr "Formula" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Can not remove root user!" -msgstr "Can not remove root user!" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_LEFT" -msgstr "STOCK_JUSTIFY_LEFT" - -#. module: base -#: model:res.country,name:base.mw -msgid "Malawi" -msgstr "Malawi" - -#. module: base -#: field:res.partner.address,type:0 -msgid "Address Type" -msgstr "Τύπος Διεύθυνσης" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Auto" -msgstr "Αυτόματο" - -#. module: base -#: view:res.request:0 -msgid "End of Request" -msgstr "Τέλος Αίτησης" - -#. module: base -#: view:res.request:0 -msgid "References" -msgstr "Παραπομπές" - -#. module: base -#: view:res.lang:0 -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 -Ο αριθμός της εβδομάδας στο έτος (Κυριακή πρώτη ημέρα της εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του χρόνου πριν την 1η Κυριακή θεωρούνται η εβδομάδα 0." - -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Note that this operation may take a few minutes." -msgstr "Αυτή η διαδικασία μπορεί να πάρει λίγα λεπτά." - -#. module: base -#: selection:ir.actions.act_window,view_type:0 -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Tree" -msgstr "Δέντρο" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Could you check your contract information ?" -msgstr "Παρακαλώ ελέγξτε τα στοιχεία σας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLEAR" -msgstr "STOCK_CLEAR" - -#. module: base -#: help:res.users,password:0 -msgid "Keep empty if you don't want the user to be able to connect on the system." -msgstr "Αφήστε το κενό αν δεν επιθυμείτε ο χρήστης να συνδέεται στο σύστημα." - -#. module: base -#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 -msgid "View Mode" -msgstr "Τρόπος Προβολής" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented search_memory method !" -msgstr "Not implemented search_memory method !" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish / Español" -msgstr "Spanish / Español" - -#. module: base -#: field:res.company,logo:0 -msgid "Logo" -msgstr "Λογότυπο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PROPERTIES" -msgstr "STOCK_PROPERTIES" - -#. module: base -#: view:ir.module.module:0 -msgid "Uninstall (beta)" -msgstr "Απεγκατάσταση" - -#. module: base -#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 -msgid "New Window" -msgstr "Νέο Παράθυρο" - -#. module: base -#: model:res.country,name:base.bs -msgid "Bahamas" -msgstr "Μπαχάμες" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Commercial Prospect" -msgstr "Εμπορική Προοπτική" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Couldn't generate the next id because some partners have an alphabetic id !" -msgstr "Αδύνατη η δημιουργία του επόμενου id διότι κάποιοι συνεργάτες έχουν αλφαβητικό id!" - -#. module: base -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Συνημμένο" - -#. module: base -#: model:res.country,name:base.ie -msgid "Ireland" -msgstr "Ireland" - -#. module: base -#: wizard_field:module.module.update,update,update:0 -msgid "Number of modules updated" -msgstr "Αριθμός ενημερωμένων modules" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented set_memory method !" -msgstr "Not implemented set_memory method !" - -#. module: base -#: field:ir.actions.act_window,groups_id:0 -#: model:ir.actions.act_window,name:base.action_res_groups -#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 -#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 -#: view:res.users:0 field:res.users,groups_id:0 -msgid "Groups" -msgstr "Ομάδες" - -#. module: base -#: model:res.country,name:base.bz -msgid "Belize" -msgstr "Belize" - -#. module: base -#: model:res.country,name:base.ge -msgid "Georgia" -msgstr "Georgia" - -#. module: base -#: model:res.country,name:base.pl -msgid "Poland" -msgstr "Poland" - -#. module: base -#: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 -msgid "To be removed" -msgstr "Προς διαγραφή" - -#. module: base -#: field:ir.values,meta:0 -msgid "Meta Datas" -msgstr "Μετα-Δεδομένα" +msgid "Unknown" +msgstr "Άγνωστο" #. module: base #: view:wizard.module.update_translations:0 @@ -1312,684 +72,50 @@ msgid "This wizard will detect new terms in the application so that you can upda msgstr "This wizard will detect new terms in the application so that you can update them manually." #. module: base -#: help:ir.actions.server,expression:0 -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 "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`." - -#. module: base -#: field:ir.model,name:0 field:ir.model.fields,model:0 -#: field:ir.model.grid,name:0 field:ir.values,model:0 -msgid "Object Name" -msgstr "Όνομα Αντικειμένου" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Field" -msgstr "Πεδίο Wizard" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_COLOR" -msgstr "STOCK_SELECT_COLOR" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NO" -msgstr "STOCK_NO" - -#. module: base -#: model:res.country,name:base.st -msgid "Saint Tome (Sao Tome) and Principe" -msgstr "Saint Tome (Sao Tome) and Principe" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Invoice" -msgstr "Τιμολόγιο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REDO" -msgstr "STOCK_REDO" - -#. module: base -#: model:res.country,name:base.bb -msgid "Barbados" -msgstr "Barbados" - -#. module: base -#: model:res.country,name:base.mg -msgid "Madagascar" -msgstr "Madagascar" - -#. module: base -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Το όνομα πρέπει να ξεκινάει με x_ και να μην περιέχει ειδικούς χαρακτήρες" - -#. module: base -#: field:ir.actions.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Next Wizard" - -#. module: base -#: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 -msgid "Menu" -msgstr "Menu" - -#. module: base -#: field:res.currency,rate:0 -msgid "Current Rate" -msgstr "Τρέχουσα Ισοτιμία" - -#. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Original View" -msgstr "Αρχική Προβολή" - -#. module: base -#: view:ir.values:0 -msgid "Action To Launch" -msgstr "Επιλογή Ενέργειας" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 -msgid "in" -msgstr "σε" - -#. module: base -#: field:ir.actions.url,target:0 -msgid "Action Target" -msgstr "Στόχος Ενέργειας" - -#. module: base -#: model:res.country,name:base.ai -msgid "Anguilla" -msgstr "Anguilla" - -#. module: base -#: field:ir.model.config,password_check:0 -msgid "Confirmation" -msgstr "Επιβεβαίωση" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Enter at least one field !" -msgstr "Συμπληρώστε ένα πεδίο τουλάχιστον!" - -#. module: base -#: field:ir.ui.view_sc,name:0 -msgid "Shortcut Name" -msgstr "Όνομα Συντόμευσης" - -#. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Πιστωτικό Όριο" - -#. module: base -#: help:ir.actions.server,write_id:0 -msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." -msgstr "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." - -#. module: base -#: model:res.country,name:base.zw -msgid "Zimbabwe" -msgstr "Zimbabwe" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_export -msgid "Import / Export" -msgstr "Εισαγωγές / Εξαγωγές" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_user_form -#: view:res.users:0 -msgid "Configure User" -msgstr "Ρυθμίσεις Χρήστη" - -#. module: base -#: field:ir.actions.server,email:0 -msgid "Email Address" -msgstr "Email Address" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Δεν μπορείτε να επέμβετε στο έγγραφο! (%s)" - -#. module: base -#: view:ir.actions.server:0 field:workflow.activity,action_id:0 -msgid "Server Action" -msgstr "Server Action" - -#. module: base -#: model:res.country,name:base.tt -msgid "Trinidad and Tobago" -msgstr "Trinidad and Tobago" - -#. module: base -#: model:res.country,name:base.lv -msgid "Latvia" -msgstr "Latvia (Λεττονία)" - -#. module: base -#: view:ir.values:0 -msgid "Values" -msgstr "Τιμές" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mappings" -msgstr "Field Mappings" - -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Customization" -msgstr "Προσαρμογή" - -#. module: base -#: model:res.country,name:base.py -msgid "Paraguay" -msgstr "Paraguay" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "left" -msgstr "αριστερά" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_close -msgid "ir.actions.act_window_close" -msgstr "ir.actions.act_window_close" - -#. module: base -#: field:ir.server.object.lines,col1:0 -msgid "Destination" -msgstr "Προορισμός" - -#. module: base -#: model:res.country,name:base.lt -msgid "Lithuania" -msgstr "Lithuania" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT_PREVIEW" -msgstr "STOCK_PRINT_PREVIEW" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "The perm_read method is not implemented on this object !" - -#. module: base -#: model:res.country,name:base.si -msgid "Slovenia" -msgstr "Slovenia" - -#. module: base -#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 -msgid "Channel" -msgstr "Κανάλι" +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" #. module: base #: view:res.lang:0 -msgid "%p - Equivalent of either AM or PM." -msgstr "%p - Αντίστοιχο με το π.μ ή το μ.μ." +msgid "%j - Day of the year as a decimal number [001,366]." +msgstr "%j - Ημέρα του χρόνου σε δεκαδική μορφή [001,366]." #. module: base -#: view:ir.actions.server:0 -msgid "Iteration Actions" -msgstr "Επαναληπτικές ενέργειες" - -#. module: base -#: field:maintenance.contract,date_stop:0 -msgid "Ending Date" -msgstr "Ημερ/νία Λήξης" - -#. module: base -#: model:res.country,name:base.nz -msgid "New Zealand" -msgstr "New Zealand" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_7 -msgid "Openstuff.net" -msgstr "Openstuff.net" - -#. module: base -#: model:res.country,name:base.nf -msgid "Norfolk Island" -msgstr "Norfolk Island" +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "You may have to reinstall some language pack." +msgstr "Πιθανόν να χρειαστεί να επανεγκαταστήσετε κάποιο πακέτο γλώσσας." #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PLAY" -msgstr "STOCK_MEDIA_PLAY" +msgid "STOCK_SAVE" +msgstr "STOCK_SAVE" #. module: base -#: field:ir.rule,operator:0 -msgid "Operator" -msgstr "" +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" +msgstr "Αλλαγή Προτιμήσεων" #. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Installation Done" -msgstr "Η εγκατάσταση ολοκληρώθηκε" +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Άνοιγμα Παραθύρου" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_OPEN" -msgstr "STOCK_OPEN" - -#. module: base -#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 -msgid "Client Action" -msgstr "Ενέργεια Πελάτη" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "right" -msgstr "δεξιά" - -#. module: base -#: model:res.country,name:base.bd -msgid "Bangladesh" -msgstr "Bangladesh" - -#. module: base -#: constraint:res.company:0 -msgid "Error! You can not create recursive companies." -msgstr "Σφάλμα! Υπάρχει εταιρεία με την ίδια περιγραφή" - -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Valid" -msgstr "Έγκυρο" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Δεν μπορείτε να διαγράψετε αυτό το έγγραφο! (%s)" - -#. module: base -#: selection:ir.translation,type:0 -msgid "XSL" -msgstr "XSL" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_other_form -#: model:ir.ui.menu,name:base.menu_partner_other_form -msgid "Others Partners" -msgstr "Άλλοι Συνεργάτες" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Can not upgrade module '%s'. It is not installed." -msgstr "Can not upgrade module '%s'. It is not installed." - -#. module: base -#: model:res.country,name:base.cu -msgid "Cuba" -msgstr "Cuba" - -#. module: base -#: view:res.lang:0 -msgid "%S - Second as a decimal number [00,61]." -msgstr "%S - Το δευτερόλεπτο σε δεκαδική μορφή [00, 60]." - -#. module: base -#: model:res.country,name:base.am -msgid "Armenia" -msgstr "Armenia" - -#. module: base -#: view:ir.sequence:0 -msgid "Year with century: %(year)s" -msgstr "Έτος με τον αιώνα: %(year)s" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Daily" -msgstr "Ημερήσια" - -#. module: base -#: model:res.country,name:base.se -msgid "Sweden" -msgstr "Sweden" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Gantt" -msgstr "Gantt" - -#. module: base -#: view:ir.property:0 -msgid "Property" -msgstr "Ιδιοκτησία" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type -#: view:res.partner.bank.type:0 -msgid "Bank Account Type" -msgstr "Τύπος Τραπεζικού Λογαριασμού" +msgid "STOCK_DIALOG_QUESTION" +msgstr "STOCK_DIALOG_QUESTION" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "terp-project" +msgid "terp-account" +msgstr "terp-account" + +#. module: base +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Action Configuration" -msgstr "Ρυθμίσεις Επαναληπτικών ενεργειών" - -#. module: base -#: model:res.country,name:base.at -msgid "Austria" -msgstr "Austria" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Calendar" -msgstr "Ημερολόγιο" - -#. module: base -#: field:workflow.activity,signal_send:0 -msgid "Signal (subflow.*)" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_17 -msgid "HR sector" -msgstr "Τμήμα Ανθρωπίνων Πόρων" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -msgid "Module dependency" -msgstr "Module dependency" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Draft" -msgstr "Πρόχειρα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_CENTER" -msgstr "STOCK_JUSTIFY_CENTER" - -#. module: base -#: view:res.config.view:0 -msgid "Choose Your Mode" -msgstr "Επιλογή Mode" - -#. module: base -#: field:res.company,rml_footer1:0 -msgid "Report Footer 1" -msgstr "Report Footer 1" - -#. module: base -#: field:res.company,rml_footer2:0 -msgid "Report Footer 2" -msgstr "Report Footer 2" - -#. module: base -#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access -#: view:res.groups:0 field:res.groups,model_access:0 -msgid "Access Controls" -msgstr "Ρυθμίσεις Πρόσβασης" - -#. module: base -#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 -msgid "Dependencies" -msgstr "Εξαρτήσεις" - -#. module: base -#: field:res.partner,parent_id:0 -msgid "Main Company" -msgstr "Κύρια Εταρεία" - -#. module: base -#: field:ir.report.custom.fields,bgcolor:0 -msgid "Background Color" -msgstr "Χρώμα Φόντου" - -#. module: base -#: view:ir.actions.server:0 -msgid "If you use a formula type, use a python expression using the variable 'object'." -msgstr "" - -#. module: base -#: field:res.partner.address,birthdate:0 -msgid "Birthdate" -msgstr "Ημερ/νία γέννησης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_contact -#: model:ir.ui.menu,name:base.menu_partner_title_contact -msgid "Contact Titles" -msgstr "Τίτλοι Επαφής" - -#. module: base -#: model:ir.model,name:base.model_res_partner_som -msgid "res.partner.som" -msgstr "res.partner.som" - -#. module: base -#: model:ir.model,name:base.model_workflow_activity -msgid "workflow.activity" -msgstr "workflow.activity" - -#. module: base -#: field:ir.model.fields,select_level:0 -msgid "Searchable" -msgstr "" - -#. module: base -#: model:res.country,name:base.uy -msgid "Uruguay" -msgstr "" - -#. module: base -#: view:res.partner.event:0 -msgid "Document Link" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_title -msgid "res.partner.title" -msgstr "res.partner.title" - -#. module: base -#: field:ir.sequence,prefix:0 -msgid "Prefix" -msgstr "Πρόθεμα" - -#. module: base -#: field:ir.actions.server,loop_action:0 -msgid "Loop Action" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "German / Deutsch" -msgstr "Γερμανικά / Deutsch" - -#. module: base -#: help:ir.actions.server,trigger_name:0 -msgid "Select the Signal name that is to be used as the trigger." -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Fields Mapping" -msgstr "Αντιστοιχία πεδίων" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Κύριε" - -#. module: base -#: wizard_button:module.upgrade,next,start:0 -msgid "Start Upgrade" -msgstr "Έναρξη Αναβάθμισης" - -#. module: base -#: field:ir.default,ref_id:0 -msgid "ID Ref." -msgstr "ID Ref." - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "French / Français" -msgstr "Γαλλικά / Français" - -#. module: base -#: model:res.country,name:base.mt -msgid "Malta" -msgstr "Μάλτα" - -#. module: base -#: field:ir.actions.server,fields_lines:0 -msgid "Field Mappings." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 view:ir.module.module:0 -#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 -msgid "Module" -msgstr "Module" - -#. module: base -#: field:ir.attachment,description:0 field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 view:res.partner.event:0 -#: field:res.partner.event,description:0 view:res.request:0 -msgid "Description" -msgstr "Περιγραφή" - -#. module: base -#: model:ir.model,name:base.model_ir_attachment -msgid "ir.attachment" -msgstr "ir.attachment" - -#. module: base -#: field:res.users,action_id:0 -msgid "Home Action" -msgstr "Home Action" - -#. module: base -#: field:res.lang,grouping:0 -msgid "Separator Format" -msgstr "Μορφή Διαχωριστή" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export language" -msgstr "Εξαγωγή Γλώσσας" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Unvalidated" -msgstr "Μη Επικυρωμένα" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_9 -msgid "Database Structure" -msgstr "Αρχιτεκτονική Βάσης Δεδομένων" - -#. module: base -#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard -#: wizard_view:res.partner.spam_send,init:0 -msgid "Mass Mailing" -msgstr "Ομαδική Αλληλογραφία" - -#. module: base -#: model:res.country,name:base.yt -msgid "Mayotte" -msgstr "Mayotte" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "You can also import .po files." -msgstr "You can also import .po files." - -#. module: base -#: code:addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "Unable to find a valid contract" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify an action to launch !" -msgstr "Παρακαλώ επιλέξτε ενέργειας προς εκτέλεση!" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_RIGHT" -msgstr "STOCK_JUSTIFY_RIGHT" - -#. module: base -#: model:ir.model,name:base.model_res_partner_function -msgid "Function of the contact" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_upgrade -#: model:ir.ui.menu,name:base.menu_module_tree_upgrade -msgid "Modules to be installed, upgraded or removed" -msgstr "Modules to be installed, upgraded or removed" - -#. module: base -#: view:res.payterm:0 -msgid "Payment Term" -msgstr "Όρος Πληρωμής" - -#. module: base -#: field:ir.report.custom,footer:0 -msgid "Report Footer" -msgstr "Report Footer" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Right-to-Left" -msgstr "Right-to-Left" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Please check that all your lines have %d columns." -msgstr "Παρακαλώ ελέγξτε ότι όλες οι γραμμές σας έχουν %d στήλες." - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import language" -msgstr "Εισαγωγή γλώσσας" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 -#: model:ir.ui.menu,name:base.menu_ir_cron_act -msgid "Scheduled Actions" -msgstr "Προγραμματισμένες ενέργειες" - #. module: base #: field:res.partner,title:0 field:res.partner.address,title:0 #: field:res.partner.title,name:0 @@ -1997,21 +123,49 @@ msgid "Title" msgstr "Τίτλος" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Recursivity Detected." -msgstr "" +#: wizard_field:res.partner.sms_send,init,text:0 +msgid "SMS Message" +msgstr "Μήνυμα SMS" + +#. module: base +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" + +#. module: base +#: model:ir.model,name:base.model_ir_model_grid +msgid "Objects Security Grid" +msgstr "Objects Security Grid" + +#. module: base +#: model:res.country,name:base.cm +msgid "Cameroon" +msgstr "Cameroon" + +#. module: base +#: model:res.country,name:base.bf +msgid "Burkina Faso" +msgstr "Burkina Faso" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "terp-account" -msgstr "terp-account" +msgid "STOCK_SORT_ASCENDING" +msgstr "STOCK_SORT_ASCENDING" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Recursion error in modules dependencies !" -msgstr "Recursion error in modules dependencies !" +#: view:ir.model:0 view:res.groups:0 +msgid "Access Rules" +msgstr "Κανονισμοί Προσβάσεων" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONNECT" +msgstr "STOCK_CONNECT" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" +msgstr "STOCK_MEDIA_FORWARD" #. module: base #: view:ir.model:0 @@ -2019,9 +173,39 @@ msgid "Create a Menu" msgstr "Create a Menu" #. module: base -#: help:res.partner,vat:0 -msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." -msgstr "Αριθμός ΦΠΑ. Επιλέξτε αυτό αν ο συνεργάτης πληρώνει ΦΠΑ. Χρησιμοποιείται στην περιοδική δήλωση ΦΠΑ." +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "Code (eg:en__US)" + +#. module: base +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "Γονέας" + +#. module: base +#: model:res.country,name:base.tg +msgid "Togo" +msgstr "Togo" + +#. module: base +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 +#: field:ir.model,model:0 field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +msgid "Object" +msgstr "Αντικείμενο" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " +msgstr "To browse official translations, you can visit this link: " #. module: base #: model:ir.actions.act_window,name:base.action_module_category_tree @@ -2029,26 +213,86 @@ msgstr "Αριθμός ΦΠΑ. Επιλέξτε αυτό αν ο συνεργά msgid "Categories of Modules" msgstr "Κατηγορίες Modules" +#. module: base +#: view:ir.actions.server:0 +msgid "Email Configuration" +msgstr "Ρυθμίσεις Email" + +#. module: base +#: model:res.country,name:base.cc +msgid "Cocos (Keeling) Islands" +msgstr "Cocos (Keeling) Islands" + #. module: base #: selection:module.lang.install,init,lang:0 -msgid "Ukrainian / украї́нська мо́ва" -msgstr "Ukrainian / украї́нська мо́ва" +msgid "Hungarian / Magyar" +msgstr "Hungarian / Magyar" + +#. module: base +#: model:ir.model,name:base.model_ir_default +msgid "ir.default" +msgstr "ir.default" #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "Not Started" +#. module: base +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" + +#. module: base +#: view:res.company:0 +msgid "Header/Footer" +msgstr "Header/Footer" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" +msgstr "STOCK_ZOOM_100" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" msgstr "Russian Federation" +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "Πεδία τύπου Τραπεζών" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_ERROR" +msgstr "STOCK_DIALOG_ERROR" + +#. module: base +#: field:ir.actions.server,wkf_model_id:0 +msgid "Workflow On" +msgstr "" + #. module: base #: model:res.country,name:base.dm msgid "Dominica" msgstr "Dominica" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch / Nederlands" +msgstr "Dutch / Nederlands" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "Εξαγωγή Αρχείου Ματάφρασης" + +#. module: base +#: field:ir.sequence,padding:0 +msgid "Number padding" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form #: model:ir.ui.menu,name:base.menu_action_res_roles_form view:res.roles:0 @@ -2063,14 +307,100 @@ msgid "Countries" msgstr "Χώρες" #. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Κανόνες αρχείων" +#: field:ir.rule,operator:0 +msgid "Operator" +msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "ΦΠΑ" +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Get Max" + +#. module: base +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "Created Views" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "Κανονικό" + +#. module: base +#: model:res.country,name:base.pm +msgid "Saint Pierre and Miquelon" +msgstr "Saint Pierre and Miquelon" + +#. module: base +#: model:res.country,name:base.to +msgid "Tonga" +msgstr "Tonga" + +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "User Ref." + +#. module: base +#: model:res.country,name:base.vu +msgid "Vanuatu" +msgstr "Vanuatu" + +#. module: base +#: wizard_view:server.action.create,step_1:0 +#: wizard_field:server.action.create,step_1,report:0 +msgid "Select Report" +msgstr "Επιλογή Αναφοράς" + +#. module: base +#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 +msgid "Wizard" +msgstr "Οδηγός" + +#. module: base +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "Εκροές" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "STOCK_MEDIA_REWIND" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "Ετησίως" + +#. module: base +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Sudan" + +#. module: base +#: rml:ir.module.reference:0 +msgid "1cm 28cm 20cm 28cm" +msgstr "1cm 28cm 20cm 28cm" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "Field Mapping" + +#. module: base +#: model:res.country,name:base.mo +msgid "Macau" +msgstr "Macau" + +#. module: base +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" +msgstr "Loop Expression" #. module: base #: view:res.lang:0 @@ -2078,9 +408,27 @@ msgid "12. %w ==> 5 ( Friday is the 6th day)" msgstr "12. %w ==> 5 (Η Παρασκευή είναι η 6η ημέρα)" #. module: base -#: constraint:res.partner.category:0 -msgid "Error ! You can not create recursive categories." -msgstr "Σφάλμα! Υπάρχει κατηγορία με την ίδια περιγραφή." +#: field:ir.rule.group,global:0 +msgid "Global" +msgstr "Παγκόσμια" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "Πωλητής Λιανικής" + +#. module: base +#: field:ir.model.config,password:0 field:maintenance.contract,password:0 +#: field:maintenance.contract.wizard,password:0 +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:res.users,password:0 +msgid "Password" +msgstr "Password" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" +msgstr "STOCK_CLEAR" #. module: base #: view:res.lang:0 @@ -2101,15 +449,72 @@ msgstr "" "- The last parenthesis must match the extension of the module." #. module: base -#: view:res.lang:0 -msgid "%M - Minute as a decimal number [00,59]." -msgstr "%M - Τα λεπτά της ώρας σε δεκαδική μορφή [00, 59]." +#: field:ir.default,field_name:0 +msgid "Object Field" +msgstr "Πεδίο Αντικειμένου" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_simple_view +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 "" +"Choose between the \"Simplified Interface\" or the extended one.\n" +"Ιf 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" +" " + +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "Start On" + +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "If you don't force the domain, it will use the simple domain setup" + +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "Νότια Κορέα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Ροές" #. module: base #: model:res.country,name:base.tj msgid "Tajikistan" msgstr "Tajikistan" +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "ir.ui.view.custom" + +#. module: base +#: model:res.country,name:base.tr +msgid "Turkey" +msgstr "Turkey" + +#. module: base +#: model:res.country,name:base.fk +msgid "Falkland Islands" +msgstr "Falkland Islands" + #. module: base #: model:ir.actions.act_window,name:base.act_values_form_action #: model:ir.ui.menu,name:base.menu_values_form_action @@ -2121,16 +526,95 @@ msgstr "Connect Actions To Client Events" msgid "GPL-2 or later version" msgstr "GPL-2 or later version" +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "Όλα Stop" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NEW" +msgstr "STOCK_NEW" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_custom +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.custom" +msgstr "ir.actions.report.custom" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "Xή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CANCEL" +msgstr "STOCK_CANCEL" + #. module: base #: selection:res.partner.event,type:0 msgid "Prospect Contact" msgstr "Πιθανή Επαφή" #. module: base -#: model:ir.model,name:base.model_ir_actions_wizard -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.wizard" -msgstr "ir.actions.wizard" +#: selection:ir.report.custom.fields,operation:0 +msgid "None" +msgstr "Κανένα" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "Ευκαιρία Πώλησης" + +#. module: base +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "Ταξινόμηση ανά" + +#. module: base +#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 +#: field:ir.report.custom,type:0 +msgid "Report Type" +msgstr "Τύπος Αναφοράς" + +#. module: base +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "Αριθμός Προσαύξησης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_tree +#: model:ir.ui.menu,name:base.menu_action_res_company_tree +msgid "Company's Structure" +msgstr "Δομή Εταιρίας" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "Άλλα περουσιακά" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "Swaziland" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "STOCK_MEDIA_PREVIOUS" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" +msgstr "Όλοι οι όροι" #. module: base #: model:res.country,name:base.nr @@ -2138,9 +622,20 @@ msgid "Nauru" msgstr "Nauru" #. module: base -#: model:ir.model,name:base.model_ir_property -msgid "ir.property" -msgstr "ir.property" +#: model:res.country,name:base.no +msgid "Norway" +msgstr "Norway" + +#. module: base +#: view:res.lang:0 +msgid "4. %b, %B ==> Dec, December" +msgstr "4. %b, %B ==> Δεκ, Δεκέμβριος" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Load an Official Translation" +msgstr "Φόρτωση Επίσημης Μετάφρασης" #. module: base #: selection:ir.actions.act_window,view_type:0 @@ -2150,26 +645,115 @@ msgstr "ir.property" msgid "Form" msgstr "Form" +#. module: base +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" +msgstr "Δραστηριότητα προορισμού" + #. module: base #: model:res.country,name:base.me msgid "Montenegro" msgstr "Montenegro" +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" +msgstr "ir.actions.act_window" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: view:ir.cron:0 -msgid "Technical Data" -msgstr "Τεχνικά Δεδομένα" +#: help:ir.actions.server,loop_action:0 +msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." +msgstr "Select the action that will be executed. Loop action will not be avaliable inside loop." + +#. module: base +#: selection:res.request,state:0 +msgid "waiting" +msgstr "σε αναμονή" + +#. module: base +#: model:res.country,name:base.va +msgid "Holy See (Vatican City State)" +msgstr "Holy See (Vatican City State)" + +#. module: base +#: view:ir.values:0 +msgid "Connect Events to Actions" +msgstr "Σύνδεση Συνβάντων με Ενέργειες" + +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "Τύπος Συμβάντος" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" +msgstr "Έγκυρο" + +#. module: base +#: field:ir.report.custom.fields,fc0_op:0 +#: field:ir.report.custom.fields,fc1_op:0 +#: field:ir.report.custom.fields,fc2_op:0 +#: field:ir.report.custom.fields,fc3_op:0 +msgid "Relation" +msgstr "Σχέση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_TOP" +msgstr "STOCK_GOTO_TOP" + +#. module: base +#: field:ir.values,meta_unpickle:0 +msgid "Metadata" +msgstr "Metadata" + +#. module: base +#: view:res.lang:0 +msgid "%m - Month as a decimal number [01,12]." +msgstr "%m - Ο μήνας σε δεκαδική μορφή [01,12]" + +#. module: base +#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 field:res.bank,state:0 +#: view:res.country.state:0 field:res.partner.bank,state_id:0 +#: field:res.request,state:0 field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +msgid "State" +msgstr "Κατάσταση" #. module: base #: view:res.partner:0 field:res.partner,category_id:0 msgid "Categories" msgstr "Κατηγορίες" +#. module: base +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "Report Ref" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "terp-hr" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "Μέγιστο Μέγεθος" + +#. module: base +#: model:res.country,name:base.id +msgid "Indonesia" +msgstr "Indonesia" + #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 @@ -2181,11 +765,26 @@ msgstr "Προς αναβάθμιση" msgid "Libya" msgstr "Libya" +#. module: base +#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "Βασική κατηγορία" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-purchase" msgstr "terp-purchase" +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "Όνομα Επαφής" + +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" +msgstr "Finland" + #. module: base #: wizard_field:module.module.update,init,repositories:0 msgid "Repositories" @@ -2201,25 +800,111 @@ msgstr "Central African Republic" msgid "Liechtenstein" msgstr "Liechtenstein" +#. module: base +#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "Στοιχεία επικοινωνίας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND_AND_REPLACE" +msgstr "STOCK_FIND_AND_REPLACE" + #. module: base #: model:res.partner.title,name:base.res_partner_title_ltd msgid "Ltd" msgstr "ΕΠΕ" +#. module: base +#: selection:res.request,state:0 +msgid "active" +msgstr "ενεργό" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +msgid "Wizard Name" +msgstr "Όνομα Οδηγού" + +#. module: base +#: view:res.lang:0 +msgid "%y - Year without century as a decimal number [00,99]." +msgstr "%y - Χρονολογία χωρίς τον αιώνα, σε δεκαδική μορφή [00, 99]." + +#. module: base +#: model:res.country,name:base.as +msgid "American Samoa" +msgstr "American Samoa" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Custom Field" +msgstr "Ειδικό Πεδίο" + +#. module: base +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" +msgstr "Μοντέλο" + #. module: base #: field:res.partner,ean13:0 msgid "EAN13" msgstr "EAN13" +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree +msgid "Repository list" +msgstr "Κατάλογος αποθηκών" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +msgid "wizard.ir.model.menu.create.line" +msgstr "wizard.ir.model.menu.create.line" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" msgstr "Portugal" #. module: base -#: selection:maintenance.contract,state:0 -msgid "Unvalid" -msgstr "Άκυρο" +#: view:ir.module.module:0 +msgid "Cancel Uninstall" +msgstr "Cancel Uninstall" + +#. module: base +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "Ισοτιμία Νομίσματος" + +#. module: base +#: view:workflow:0 field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +msgid "Workflow" +msgstr "Ροή έργασίας" + +#. module: base +#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 +#: field:ir.actions.wizard,type:0 +msgid "Action Type" +msgstr "Τύπος Ενέργειας" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "Προεπιλεγμένο όριο για την προβολή λίστας" + +#. module: base +#: model:res.country,name:base.vn +msgid "Vietnam" +msgstr "Vietnam" + +#. module: base +#: model:res.country,name:base.sk +msgid "Slovak Republic" +msgstr "Slovak Republic" #. module: base #: field:ir.module.module,certificate:0 @@ -2231,11 +916,83 @@ msgstr "Πιστοποιητικό Ποιότητας" msgid "6. %d, %m ==> 05, 12" msgstr "6. %d, %m ==> 05, 12" +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "Πηγαίο Αντικείμενο" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "ir.model.data" + +#. module: base +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,report_rml:0 +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "The .rml path of the file or NULL if the content is in report_rml_content" + +#. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form +msgid "Config Wizard Steps" +msgstr "Config Wizard Steps" + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "Κατηγορία" + +#. module: base +#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 +msgid "Group" +msgstr "Ομάδα" + +#. module: base +#: model:res.country,name:base.sm +msgid "San Marino" +msgstr "San Marino" + #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." msgstr "Κάντε κλικ εδώ αν ο Συνεργάτης είναι Πελάτης." +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "STOCK_FLOPPY" + +#. module: base +#: model:res.country,name:base.kw +msgid "Kuwait" +msgstr "Kuwait" + +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Υπογραφή" + +#. module: base +#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "SMS" + +#. module: base +#: model:res.country,name:base.cr +msgid "Costa Rica" +msgstr "Costa Rica" + +#. module: base +#: field:ir.exports.line,name:0 field:ir.translation,name:0 +#: field:res.partner.bank.type.field,name:0 +msgid "Field Name" +msgstr "Όνομα Πεδίου" + #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window #: model:ir.model,name:base.model_res_lang @@ -2244,9 +1001,34 @@ msgid "Languages" msgstr "Γλώσσες" #. module: base -#: model:res.country,name:base.pw -msgid "Palau" -msgstr "Palau" +#: field:workflow.workitem,inst_id:0 +msgid "Instance" +msgstr "Instance" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." +msgstr "Το όνομα αρχείου που θα αποθηκευθεί το αποτέλεσμα της εκτύπωσης. Αφήστε το κενό αν δεν επιθυμείτε να αποθηκεύετε τις εκτυπώσεις αναφορών. Μπορείτε να χρησιμοποιήσετε μια έκφραση python με τις παραμέτρους object και time." + +#. module: base +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Το όνομα πρέπει να ξεκινάει με x_ και να μην περιέχει ειδικούς χαρακτήρες" + +#. module: base +#: model:res.country,name:base.ng +msgid "Nigeria" +msgstr "Nigeria" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "txt" +msgstr "" + +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Table Ref." #. module: base #: model:res.country,name:base.ec @@ -2254,30 +1036,90 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." -msgstr "Αποθηκεύστε αυτό το έγγραφο σε αρχείο .CSV και επεξεργαστείτε το με το υπολογιστικό πρόγραμμα της επιλογής σας. Η κωδικοποίηση του αρχείου είναι UTF-8. Πρέπει να μετεφράσετε την τελευταία στήλη πριν το επανεισάγετε." +#: view:ir.module.module:0 +msgid "Schedule Upgrade" +msgstr "Προγραμματισμός Αναβάθμισης" #. module: base -#: model:res.country,name:base.au -msgid "Australia" -msgstr "Australia" +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 +msgid "Currencies" +msgstr "Νομίσματα" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Configure" +msgstr "Ρυθμίσεις" #. module: base #: help:res.partner,lang:0 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 "Αν η επιλεγμένη γλώσσα έχει εισαχθεί στο σύστημα όλα τα έγγραφα από και προς αυτό τον Συνεργάτη θα εκτυπώνονται σε αυτή τη γλώσσα. Αν όχι, θα εκτυπώνονται στα αγγλικά." +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "STOCK_UNDERLINE" + #. module: base #: rml:ir.module.reference:0 msgid "Menu :" msgstr "Menu :" #. module: base -#: selection:ir.model.fields,state:0 -msgid "Base Field" -msgstr "Base Field" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "Next Wizard" + +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "Τιμές για τον Τύπο Συμβάντος" + +#. module: base +#: model:res.country,name:base.zr +msgid "Zaire" +msgstr "Zaire" + +#. module: base +#: field:res.lang,date_format:0 +msgid "Date Format" +msgstr "Μορφή Ημερ/νίας" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "Always Searchable" + +#. module: base +#: field:res.bank,email:0 field:res.partner.address,email:0 +msgid "E-Mail" +msgstr "E-Mail" + +#. module: base +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "Ημέρα: %(day)s" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export Name" +msgstr "" + +#. module: base +#: model:res.country,name:base.an +msgid "Netherlands Antilles" +msgstr "Ολλανδικές Αντίλλες" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "Λεπτά: %(min)s" + +#. module: base +#: model:res.country,name:base.hk +msgid "Hong Kong" +msgstr "Hong Kong" #. module: base #: wizard_view:module.module.update,update:0 @@ -2285,16 +1127,35 @@ msgid "New modules" msgstr "New modules" #. module: base -#: field:ir.actions.report.xml,report_sxw_content:0 -#: field:ir.actions.report.xml,report_sxw_content_data:0 -msgid "SXW content" -msgstr "SXW content" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "Ώρα 00->12: %(h12)s" + +#. module: base +#: help:ir.actions.server,name:0 +msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" +msgstr "" + +#. module: base +#: field:res.currency,rate:0 +msgid "Current Rate" +msgstr "Τρέχουσα Ισοτιμία" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" msgstr "Action to Trigger" +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "Χρονοδιάγραμμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" +msgstr "STOCK_BOLD" + #. module: base #: field:ir.report.custom.fields,fc0_operande:0 #: field:ir.report.custom.fields,fc1_operande:0 @@ -2309,6 +1170,16 @@ msgstr "Constraint" msgid "Default" msgstr "Προεπιλογή" +#. module: base +#: model:res.country,name:base.dk +msgid "Denmark" +msgstr "Denmark" + +#. module: base +#: model:res.country,name:base.ph +msgid "Philippines" +msgstr "Philippines" + #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -2316,25 +1187,118 @@ msgid "Required" msgstr "Απαραίτητα" #. module: base -#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 -#: field:res.partner.title,domain:0 -msgid "Domain" -msgstr "Τομέας" +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" +msgstr "ir.sequence" #. module: base -#: field:res.request.history,name:0 -msgid "Summary" +#: field:res.country,code:0 +msgid "Country Code" +msgstr "Κωδικός Χώρας" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Greek / Ελληνικά" msgstr "" +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Tree" +msgstr "Δέντρο" + +#. module: base +#: model:res.country,name:base.ma +msgid "Morocco" +msgstr "Morocco" + +#. module: base +#: view:res.request.history:0 +msgid "Request History" +msgstr "Αίτηση Ιστορικού" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "workflow.instance" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bosnian / bosanski jezik" +msgstr "Βοσνιακό / bosanski jezik" + +#. module: base +#: view:res.lang:0 +msgid "10. %S ==> 20" +msgstr "10. %S ==> 20" + +#. module: base +#: help:ir.actions.report.xml,attachment_use:0 +msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." +msgstr "Αν επιλέξετε αυτό, τη δεύτερη φορά που ο χρήστης θα εκτυπώσει το ίδιο όνομα συνημμένου, θα εκτυπωθεί η προηγούμενη αναφορά." + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Partial" +msgstr "Μερικό" + #. module: base #: help:ir.actions.server,subject:0 msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" msgstr "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" #. module: base -#: view:res.company:0 -msgid "Header/Footer" -msgstr "Header/Footer" +#: view:res.lang:0 +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "2. %a ,%A ==> Παρ, Παρασκευή" + +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +msgid "Trigger On" +msgstr "Trigger On" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "Κυρία" + +#. module: base +#: model:ir.model,name:base.model_res_request_link +msgid "res.request.link" +msgstr "res.request.link" + +#. module: base +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" +msgstr "Προϋπολογισμένο Κόστος" + +#. module: base +#: model:res.country,name:base.ee +msgid "Estonia" +msgstr "Estonia" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 +msgid "Partner Events" +msgstr "Συμβάντα Συνεργάτη" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +msgstr "Τύποι πεδίων " + +#. module: base +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "Κείμενο" + +#. module: base +#: view:res.lang:0 +msgid "%a - Abbreviated weekday name." +msgstr "%a - Συντομο όνομα ημέρας" #. module: base #: model:res.country,name:base.lb @@ -2342,19 +1306,34 @@ msgid "Lebanon" msgstr "Lebanon" #. module: base -#: wizard_field:module.lang.import,init,name:0 -msgid "Language name" -msgstr "Όνομα Γλώσσας" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" +msgstr "STOCK_CUT" #. module: base -#: model:res.country,name:base.va -msgid "Holy See (Vatican City State)" -msgstr "Holy See (Vatican City State)" +#: rml:ir.module.reference:0 +msgid "Introspection report on objects" +msgstr "Introspection report on objects" #. module: base -#: help:ir.actions.server,condition:0 -msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" -msgstr "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" +#: model:res.country,name:base.pf +msgid "Polynesia (French)" +msgstr "Polynesia (French)" + +#. module: base +#: field:res.country,name:0 +msgid "Country Name" +msgstr "Όνομα Χώρας" + +#. module: base +#: field:res.company,name:0 +msgid "Company Name" +msgstr "Όνομα Εταιρείας" + +#. module: base +#: model:res.country,name:base.co +msgid "Colombia" +msgstr "Κολομβία" #. module: base #: wizard_field:base.module.import,init,module_file:0 @@ -2362,20 +1341,60 @@ msgid "Module .ZIP file" msgstr "Module .ZIP file" #. module: base -#: model:res.partner.category,name:base.res_partner_category_16 -msgid "Telecom sector" -msgstr "Τηλεπικοινωνίες" +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +#: wizard_button:res.partner.sms_send,init,send:0 +msgid "Send SMS" +msgstr "Αποστολή SMS" #. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Object" +#: field:ir.actions.report.custom,report_id:0 +msgid "Report Ref." +msgstr "Report Ref." + +#. module: base +#: field:res.roles,child_id:0 +msgid "Children" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Report Fields" + +#. module: base +#: help:res.country,code:0 +msgid "" +"The ISO country code in two chars.\n" +"You can use this field for quick search." +msgstr "" +"Κωδικός Χώρας (Διψήφιος ISO).\n" +"Χρησιμοποιήστε το για γρήγορη αναζήτηση." + +#. module: base +#: model:res.country,name:base.pw +msgid "Palau" +msgstr "Palau" + #. module: base #: selection:ir.report.custom,state:0 msgid "Subscribed" msgstr "Καταχωρημένο" +#. module: base +#: model:res.country,name:base.ke +msgid "Kenya" +msgstr "Kenya" + +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "Select the object on which the action will work (read, write, create)." +msgstr "Select the object on which the action will work (read, write, create)." + +#. module: base +#: model:res.country,name:base.np +msgid "Nepal" +msgstr "Nepal" + #. module: base #: wizard_view:module.lang.install,init:0 wizard_view:module.upgrade,next:0 msgid "System Upgrade" @@ -2386,41 +1405,193 @@ msgstr "Αναβάθμιση Συστήματος" msgid "Incoming Transitions" msgstr "Εισροές" +#. module: base +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" +msgstr "iCal id" + +#. module: base +#: wizard_field:module.lang.import,init,name:0 +msgid "Language name" +msgstr "Όνομα Γλώσσας" + +#. module: base +#: field:res.partner,parent_id:0 +msgid "Main Company" +msgstr "Κύρια Εταρεία" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Extended Interface" +msgstr "Εκτεταμένη Προβολή" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "Όνομα Νομού" + #. module: base #: model:res.country,name:base.sr msgid "Suriname" msgstr "Suriname" #. module: base -#: field:ir.values,key2:0 view:res.partner.event.type:0 -#: field:res.partner.event.type,name:0 -msgid "Event Type" -msgstr "Τύπος Συμβάντος" +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level Objects" +msgstr "" + +#. module: base +#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 +msgid "On multiple doc." +msgstr "Σε πολλαπλά έγγραφα." + +#. module: base +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "res.groups" + +#. module: base +#: help:ir.actions.server,action_id:0 +msgid "Select the Action Window, Report, Wizard to be executed." +msgstr "Επιλογή Παραθύρου Κίνησης, Αναφοράς, Wizard προς εμφάνιση." + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +msgid "View Type" +msgstr "Τύπος Προβολής" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "Simplified Interface" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "STOCK_ITALIC" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "Η Εξαγωγή Επετεύχθει" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field +msgid "acc_number" +msgstr "acc_number" + +#. module: base +#: view:ir.model:0 +msgid "Model Description" +msgstr "Περιγραφή Μοντέλου" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Unvalid" +msgstr "Άκυρο" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "Bulk SMS send" +msgstr "Μαζική αποστολή SMS" #. module: base #: view:res.partner.bank:0 model:res.partner.bank.type,name:base.bank_normal msgid "Bank account" msgstr "Τραπεζικός λογαριασμός" +#. module: base +#: field:res.partner.canal,name:0 +msgid "Channel Name" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "ir.values" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Pie Chart" +msgstr "Κυκλικό Διάγραμμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" + +#. module: base +#: help:ir.values,key2:0 +msgid "The kind of action or button in the client side that will trigger the action." +msgstr "The kind of action or button in the client side that will trigger the action." + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "Δευτερόλεπτο: %(sec)s" + +#. module: base +#: model:res.country,name:base.jo +msgid "Jordan" +msgstr "Ιορδανία" + +#. module: base +#: view:ir.rule.group:0 +msgid "Multiple rules on same objects are joined using operator OR" +msgstr "Multiple rules on same objects are joined using operator OR" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" msgstr "Τύπος Αρίθμησης" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"You try to upgrade a module that depends on the module: %s.\n" -"But this module is not available in your system." -msgstr "" -"You try to upgrade a module that depends on the module: %s.\n" -"But this module is not available in your system." +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "wizard.ir.model.menu.create" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Διεύθυνση Συνεργάτη" +#: model:res.country,name:base.md +msgid "Moldavia" +msgstr "Moldavia" + +#. module: base +#: help:ir.model.fields,on_delete:0 +msgid "On delete property for many2one fields" +msgstr "On delete property for many2one fields" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +msgid "Update Modules List" +msgstr "Ενημέρωση Λίστας Modules" + +#. module: base +#: model:res.country,name:base.er +msgid "Eritrea" +msgstr "Ερυθρέα" + +#. module: base +#: model:res.country,name:base.cd +msgid "Congo, The Democratic Republic of the" +msgstr "Congo, The Democratic Republic of the" + +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "Ρυθμίσεις απλής προβολής" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bulgarian / български" +msgstr "Bulgarian / български" #. module: base #: field:ir.module.module,license:0 @@ -2428,10 +1599,9 @@ msgid "License" msgstr "Άδεια Χρήσης" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Invalid operation" -msgstr "Invalid operation" +#: model:res.country,name:base.re +msgid "Reunion (French)" +msgstr "Reunion (French)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2439,26 +1609,91 @@ msgid "STOCK_SAVE_AS" msgstr "STOCK_SAVE_AS" #. module: base -#: field:ir.actions.server,srcmodel_id:0 -msgid "Model" -msgstr "Μοντέλο" +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_custom_action +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" +msgstr "Ενέργειες" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"You try to install a module that depends on the module: %s.\n" -"But this module is not available in your system." -msgstr "" -"You try to install a module that depends on the module: %s.\n" -"But this module is not available in your system." +#: view:res.request:0 field:res.request,body:0 +#: field:res.request.history,req_id:0 +msgid "Request" +msgstr "Αίτηση" #. module: base -#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 -#: selection:ir.translation,type:0 -#: field:wizard.ir.model.menu.create.line,view_id:0 -msgid "View" -msgstr "Προβολή" +#: model:ir.model,name:base.model_ir_report_custom +msgid "ir.report.custom" +msgstr "ir.report.custom" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" +msgstr "Συνέχεια" + +#. module: base +#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 +msgid "Object ID" +msgstr "ID Αντικειμένου" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +msgid "Default Properties" +msgstr "Προεπιλεγμένες Ιδιότητες" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Slovenian / slovenščina" +msgstr "Slovenian / slovenščina" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "Ιστόγραμμα" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "pdf" + +#. module: base +#: field:ir.actions.server,message:0 +#: wizard_field:res.partner.spam_send,init,text:0 +msgid "Message" +msgstr "Μήνυμα" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +msgstr "Το αρχείο γλώσσας φορτώθηκε" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "Προσφορά Αγοράς" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_info:0 +msgid "Modules to update" +msgstr "Modules to update" + +#. module: base +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Ανανέωση Ημερ/νίας" + +#. module: base +#: model:ir.actions.act_window,name:base.action2 +msgid "Company Architecture" +msgstr "Οργανόγραμμα Εταιρείας" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Δίδα" #. module: base #: view:ir.actions.act_window:0 @@ -2466,9 +1701,90 @@ msgid "Open a Window" msgstr "Νεο Παράθυρο" #. module: base -#: model:res.country,name:base.gq -msgid "Equatorial Guinea" -msgstr "Equatorial Guinea" +#: model:res.country,name:base.bv +msgid "Bouvet Island" +msgstr "Bouvet Island" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDEX" +msgstr "STOCK_INDEX" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Σε μορφή πίνακα" + +#. module: base +#: field:ir.report.custom,print_orientation:0 +msgid "Print orientation" +msgstr "" + +#. module: base +#: model:res.country,name:base.rs +msgid "Serbia" +msgstr "Σερβία" + +#. module: base +#: view:res.payterm:0 +msgid "Payment Term" +msgstr "Όρος Πληρωμής" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "STOCK_GOTO_BOTTOM" + +#. module: base +#: help:ir.actions.server,sequence:0 +msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." +msgstr "Σημαντικό όταν έχουμε πολλές ενέργειες. Η εκτέλεσή τους θα καθορίζεται από αυτό, το μικρότερο νούμερο σημαίνει μεγαλύτερη προτεραιότητα." + +#. module: base +#: field:ir.actions.report.xml,header:0 +msgid "Add RML header" +msgstr "Add RML header" + +#. module: base +#: model:res.country,name:base.cx +msgid "Christmas Island" +msgstr "Christmas Island" + +#. module: base +#: model:res.country,name:base.kh +msgid "Cambodia, Kingdom of" +msgstr "Καμπότζη, Βασίλειο της" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "Τοπίο" + +#. module: base +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "Αρχείο" + +#. module: base +#: model:res.country,name:base.gr +msgid "Greece" +msgstr "Greece / Ελλάδα" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "User Interface" +msgstr "User Interface" + +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "Προσθήκη Χρήστη" + +#. module: base +#: field:res.request,trigger_date:0 +msgid "Trigger Date" +msgstr "" #. module: base #: wizard_view:base.module.import,init:0 @@ -2476,47 +1792,137 @@ msgid "Module Import" msgstr "Module Import" #. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the field '%s' !" -msgstr "Δεν μπορείτε να διαγράψετε το πεδίο '%s' !" +#: selection:module.lang.install,init,lang:0 +msgid "Croatian / hrvatski jezik" +msgstr "Croatian / hrvatski jezik" #. module: base -#: field:res.bank,zip:0 field:res.partner.address,zip:0 -#: field:res.partner.bank,zip:0 -msgid "Zip" -msgstr "ΤΚ" +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "Ημερ/νία Δημιουργίας" + +#. module: base +#: model:res.country,name:base.mv +msgid "Maldives" +msgstr "Maldives" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +msgid "Sequences" +msgstr "Συχνότητες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "STOCK_GO_FORWARD" + +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "Οι ρόλοι χρησιμοποιούνται σε καθορισμένες ενέργειες που προκύπτουν από τις ροές εργασίας." #. module: base #: field:ir.module.module,author:0 msgid "Author" msgstr "Δημιουργός" +#. module: base +#: help:ir.actions.server,code:0 +msgid "Python code to be executed" +msgstr "Python code to be executed" + +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +msgid "XSL path" +msgstr "XSL path" + +#. module: base +#: view:res.lang:0 +msgid "%b - Abbreviated month name." +msgstr "%b - Σύντομο όνομα μήνα." + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDELETE" msgstr "STOCK_UNDELETE" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." +msgstr "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." + #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Ορθή εμφάνιση ημερ/νίας και ώρας" +#. module: base +#: field:ir.actions.report.xml,attachment_use:0 +msgid "Reload from Attachment" +msgstr "Επαναφόρτωση από συνημμένο" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner Category" +msgstr "Κατηγορία Συνεργάτη" + +#. module: base +#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +msgid "Trigger" +msgstr "" + +#. module: base +#: help:ir.actions.server,write_id:0 +msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." +msgstr "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." + +#. module: base +#: field:res.partner,supplier:0 +msgid "Supplier" +msgstr "Προμηθευτής" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" msgstr "Bolivia" #. module: base -#: model:res.country,name:base.gh -msgid "Ghana" -msgstr "Ghana" +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" +msgstr "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Close" +msgstr "_Close" + +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "Σώμα" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "Trigger Expression" #. module: base #: field:res.lang,direction:0 msgid "Direction" msgstr "Κατεύθυνση" +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Full" +msgstr "Πλήρες" + #. module: base #: model:ir.model,name:base.model_wizard_module_update_translations msgid "wizard.module.update_translations" @@ -2539,15 +1945,19 @@ msgid "Rules" msgstr "Κανόνες" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "You try to remove a module that is installed or will be installed" -msgstr "You try to remove a module that is installed or will be installed" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" +msgstr "STOCK_SELECT_FONT" #. module: base -#: help:ir.values,key2:0 -msgid "The kind of action or button in the client side that will trigger the action." -msgstr "The kind of action or button in the client side that will trigger the action." +#: rml:ir.module.reference:0 +msgid "," +msgstr "," + +#. module: base +#: field:res.users,menu_id:0 +msgid "Menu Action" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2560,10 +1970,37 @@ msgid "Guatemala" msgstr "Guatemala" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_form -#: model:ir.ui.menu,name:base.menu_workflow -msgid "Workflows" -msgstr "Ροές Εργασίας" +#: field:ir.model.fields,view_load:0 +msgid "View Auto-Load" +msgstr "Αυτόματη Φόρτωση Προβολής" + +#. module: base +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "ΦΠΑ" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIRECTORY" +msgstr "STOCK_DIRECTORY" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "Αποστολή Email" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "<" + +#. module: base +#: model:res.country,name:base.es +msgid "Spain" +msgstr "Ισπανία" #. module: base #: model:ir.actions.act_window,name:base.action_config_wizard_form @@ -2571,6 +2008,81 @@ msgstr "Ροές Εργασίας" msgid "Configuration Wizard" msgstr "Configuration Wizard" +#. module: base +#: view:res.request.link:0 +msgid "Request Link" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "ir.actions.todo" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "STOCK_ZOOM_FIT" + +#. module: base +#: field:res.partner.address,mobile:0 +msgid "Mobile" +msgstr "Κινητό" + +#. module: base +#: model:res.country,name:base.om +msgid "Oman" +msgstr "Ομάν" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "Html from html" +msgstr "" + +#. module: base +#: field:res.lang,time_format:0 +msgid "Time Format" +msgstr "Μορφή Ώρας" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Iteration" +msgstr "Επανάληψη" + +#. module: base +#: model:ir.ui.menu,name:base.menu_low_workflow +msgid "Workflow Items" +msgstr "" + +#. module: base +#: field:res.request,ref_doc2:0 +msgid "Document Ref 2" +msgstr "Document Ref 2" + +#. module: base +#: wizard_view:module.lang.install,start:0 +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 "Η επιλεγμένη γλώσσα εγκαταστάθηκε επιτυχώς. Πρέπει να αλλάξετε τις Προτιμήσεις του χρήστη και να ανοίξετε ένα νέο μενού για να δείτε τις αλλαγές." + +#. module: base +#: field:res.request,ref_doc1:0 +msgid "Document Ref 1" +msgstr "Document Ref 1" + +#. module: base +#: model:res.country,name:base.ga +msgid "Gabon" +msgstr "Gabon" + +#. module: base +#: model:res.country,name:base.nu +msgid "Niue" +msgstr "Νιούε" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Work Days" +msgstr "Ημέρες Εργασίας" + #. module: base #: model:ir.model,name:base.model_res_roles msgid "res.roles" @@ -2585,3700 +2097,11 @@ msgstr "" "0=Πολύ Επείγον\n" "10=Μη επείγον" -#. module: base -#: view:res.users:0 -msgid "Skip" -msgstr "Skip" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request_link-act -#: model:ir.ui.menu,name:base.menu_res_request_link_act -msgid "Accepted Links in Requests" -msgstr "Accepted Links in Requests" - -#. module: base -#: model:res.country,name:base.ls -msgid "Lesotho" -msgstr "Lesotho" - -#. module: base -#: model:ir.actions.act_window,name:base.grant_menu_access -#: model:ir.ui.menu,name:base.menu_grant_menu_access -msgid "Grant Access To Menus" -msgstr "Πρόσβαση στα Menu" - -#. module: base -#: model:res.country,name:base.ke -msgid "Kenya" -msgstr "Kenya" - -#. module: base -#: view:res.config.view:0 -msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." -msgstr "Επιλέξτε την απλοποιημένη μορφή αν δοκιμάζετε το OpenERP για πρώτη φορά. Οι λιγότερο συνηθισμένες επιλογές και πεδία δεν θα προβάλονται. Μπορείτε να το αλλάξετε αυτό αργότερα από το μενού της Διαχείρισης." - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occurred while validating the field(s) %s: %s" -msgstr "Σφάλμα κατά την επικύρωση των πεδίων %s: %s" - -#. module: base -#: model:res.country,name:base.sm -msgid "San Marino" -msgstr "San Marino" - -#. module: base -#: model:res.country,name:base.bm -msgid "Bermuda" -msgstr "Bermuda" - -#. module: base -#: model:res.country,name:base.pe -msgid "Peru" -msgstr "Peru" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Set NULL" -msgstr "Set NULL" - -#. module: base -#: field:res.partner.event,som:0 field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "" - -#. module: base -#: model:res.country,name:base.bj -msgid "Benin" -msgstr "Benin" - -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "The rule is satisfied if all test are True (AND)" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONNECT" -msgstr "STOCK_CONNECT" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Not Searchable" -msgstr "" - -#. module: base -#: field:res.partner.event.type,key:0 -msgid "Key" -msgstr "Key" - -#. module: base -#: field:ir.cron,nextcall:0 -msgid "Next Call Date" -msgstr "Επόμενη Ημερ/νία Κλήσης" - -#. module: base -#: field:res.company,rml_header:0 -msgid "RML Header" -msgstr "RML Header" - -#. module: base -#: wizard_field:res.partner.sms_send,init,app_id:0 -msgid "API ID" -msgstr "API ID" - -#. module: base -#: model:res.country,name:base.mu -msgid "Mauritius" -msgstr "Mauritius" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "Scan for new modules" -msgstr "Scan for new modules" - -#. module: base -#: model:ir.model,name:base.model_ir_module_repository -msgid "Module Repository" -msgstr "Module Repository" - -#. module: base -#: model:ir.ui.menu,name:base.menu_security -msgid "Security" -msgstr "Ασφάλεια" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Using a relation field which uses an unknown object" -msgstr "Using a relation field which uses an unknown object" - -#. module: base -#: model:res.country,name:base.za -msgid "South Africa" -msgstr "South Africa" - -#. module: base -#: model:ir.model,name:base.model_wizard_module_lang_export -msgid "wizard.module.lang.export" -msgstr "wizard.module.lang.export" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "Installed" -msgstr "Installed" - -#. module: base -#: model:res.country,name:base.sn -msgid "Senegal" -msgstr "Senegal" - -#. module: base -#: model:res.country,name:base.hu -msgid "Hungary" -msgstr "Hungary" - -#. module: base -#: model:ir.model,name:base.model_res_groups -msgid "res.groups" -msgstr "res.groups" - -#. module: base -#: model:res.country,name:base.br -msgid "Brazil" -msgstr "Brazil" - -#. module: base -#: field:ir.sequence,number_next:0 -msgid "Next Number" -msgstr "Επόμενος Αριθμός" - -#. module: base -#: view:res.currency:0 field:res.currency,rate_ids:0 -msgid "Rates" -msgstr "Ποσοστά" - -#. module: base -#: model:res.country,name:base.sy -msgid "Syria" -msgstr "Syria" - -#. module: base -#: view:res.lang:0 -msgid "======================================================" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child2:0 -msgid "Field child2" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child3:0 -msgid "Field child3" -msgstr "Field child3" - -#. module: base -#: field:ir.report.custom.fields,field_child0:0 -msgid "Field child0" -msgstr "Field child0" - -#. module: base -#: field:ir.report.custom.fields,field_child1:0 -msgid "Field child1" -msgstr "Field child1" - -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Field Selection" - -#. module: base -#: selection:res.request,state:0 -msgid "draft" -msgstr "πρόχειρα" - -#. module: base -#: field:res.currency.rate,name:0 field:res.partner,date:0 -#: field:res.partner.event,date:0 field:res.request,date_sent:0 -msgid "Date" -msgstr "Ημερ/νία" - -#. module: base -#: field:ir.actions.report.xml,report_sxw:0 -msgid "SXW path" -msgstr "SXW path" - -#. module: base -#: view:ir.attachment:0 -msgid "Data" -msgstr "Δεδομένα" - -#. module: base -#: view:res.users:0 -msgid "Groups are used to defined access rights on each screen and menu." -msgstr "Οι Ομάδες χρησιμοποιούνται για τον ορισμό δικαιωμάτων πρόσβασης στις οθόνες και τα μενού." - -#. module: base -#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 -msgid "Parent Menu" -msgstr "Επάνω Μενού" - -#. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 -msgid "If set to true, the action will not be displayed on the right toolbar of a form view." -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Συνημμένο με" - -#. module: base -#: field:res.lang,decimal_point:0 -msgid "Decimal Separator" -msgstr "Υποδιαστολή" - -#. module: base -#: view:res.partner:0 view:res.request:0 field:res.request,history:0 -msgid "History" -msgstr "Ιστορικό" - -#. module: base -#: field:ir.attachment,create_uid:0 -msgid "Creator" -msgstr "Δημιουργός" - -#. module: base -#: model:res.country,name:base.mx -msgid "Mexico" -msgstr "Mexico" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Swedish / svenska" -msgstr "Swedish / svenska" - -#. module: base -#: field:res.company,child_ids:0 -msgid "Child Companies" -msgstr "Θυγατρικές Εταιρείες" - -#. module: base -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.users" - -#. module: base -#: model:res.country,name:base.ni -msgid "Nicaragua" -msgstr "Nicaragua" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The write method is not implemented on this object !" -msgstr "Η μέθοδος εγγραφής δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - -#. module: base -#: view:res.partner.event:0 -msgid "General Description" -msgstr "Γενική Περιγραφή" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Sale Opportunity" -msgstr "Ευκαιρία Πώλησης" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Maintenance contract added !" -msgstr "Το Συβόλαιο Συντήρησης προστέθηκε!" - -#. module: base -#: field:ir.rule,field_id:0 selection:ir.translation,type:0 -msgid "Field" -msgstr "Πεδίο" - -#. module: base -#: model:res.country,name:base.ve -msgid "Venezuela" -msgstr "Venezuela" - -#. module: base -#: view:res.lang:0 -msgid "9. %j ==> 340" -msgstr "9. %j ==> 340" - -#. module: base -#: model:res.country,name:base.zm -msgid "Zambia" -msgstr "Zambia" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_xml -#: model:ir.ui.menu,name:base.menu_ir_action_report_xml -msgid "Report Xml" -msgstr "Αναφορά Xml" - -#. module: base -#: help:res.partner,user_id:0 -msgid "The internal user that is in charge of communicating with this partner if any." -msgstr "Ο χρήστης, υπεύθυνος για την επικοινωνία με το συνεργάτη, αν υπάρχει." - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Upgrade" -msgstr "Ακύρωση Αναβάθμισης" - -#. module: base -#: model:res.country,name:base.ci -msgid "Ivory Coast (Cote D'Ivoire)" -msgstr "Ivory Coast (Cote D'Ivoire)" - -#. module: base -#: model:res.country,name:base.kz -msgid "Kazakhstan" -msgstr "Kazakhstan" - -#. module: base -#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 -#: field:ir.cron,name:0 field:ir.model.access,name:0 -#: field:ir.model.fields,name:0 field:ir.module.category,name:0 -#: field:ir.module.module,name:0 field:ir.module.module.dependency,name:0 -#: rml:ir.module.reference:0 field:ir.module.repository,name:0 -#: field:ir.property,name:0 field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 field:ir.values,name:0 -#: field:maintenance.contract.module,name:0 field:res.bank,name:0 -#: field:res.config.view,name:0 field:res.lang,name:0 field:res.partner,name:0 -#: field:res.partner.bank.type,name:0 field:res.request.link,name:0 -#: field:res.users,name:0 field:workflow,name:0 field:workflow.activity,name:0 -msgid "Name" -msgstr "Όνομα" - -#. module: base -#: model:res.country,name:base.ms -msgid "Montserrat" -msgstr "Montserrat" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_app -msgid "Application Terms" -msgstr "Ορολογία Εφαρμογής" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Average" -msgstr "Υπολογισμός Μέσου Όρου" - -#. module: base -#: field:ir.module.module,demo:0 -msgid "Demo data" -msgstr "Demo data" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_instance_form -#: model:ir.ui.menu,name:base.menu_workflow_instance -msgid "Instances" -msgstr "Instances" - -#. module: base -#: model:res.country,name:base.aq -msgid "Antarctica" -msgstr "Antarctica" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_view -msgid "ir.actions.act_window.view" -msgstr "ir.actions.act_window.view" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Web" -msgstr "Web" - -#. module: base -#: field:res.partner.event,planned_revenue:0 -msgid "Planned Revenue" -msgstr "Προγραμματισμένα Έσοδα" - -#. module: base -#: wizard_view:module.lang.import,init:0 -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 "Πρέπει να εισάγετε ένα αρχείο .CSV με κωδικοποίηση UTF-8. Παρακαλώ ελέγξτε ότι η πρώτη γραμμή του αρχείου σας είναι:" - -#. module: base -#: model:res.country,name:base.et -msgid "Ethiopia" -msgstr "Ethiopia" - -#. module: base -#: view:res.lang:0 -msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." -msgstr "%H - Η Ώρα (24ωρη μορφή) σε δεκαδική μορφή [00, 23]." - -#. module: base -#: view:res.roles:0 -msgid "Role" -msgstr "Ρόλος" - -#. module: base -#: help:res.country.state,code:0 -msgid "The state code in three chars.\n" -msgstr "Ο κωδικός πολιτείας αποτελείται από 3 χαρακτήρες\n" - -#. module: base -#: model:res.country,name:base.sj -msgid "Svalbard and Jan Mayen Islands" -msgstr "Svalbard and Jan Mayen Islands" - -#. module: base -#: view:ir.rule:0 -msgid "Test" -msgstr "Test" - -#. module: base -#: field:ir.report.custom.fields,groupby:0 -msgid "Group By" -msgstr "Ομαδοποίηση Ανά" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_WARNING" -msgstr "STOCK_DIALOG_WARNING" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_IN" -msgstr "STOCK_ZOOM_IN" - -#. module: base -#: selection:res.request,state:0 -msgid "closed" -msgstr "κλειστά" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "get" -msgstr "πάρε" - -#. module: base -#: help:ir.model.fields,on_delete:0 -msgid "On delete property for many2one fields" -msgstr "On delete property for many2one fields" - -#. module: base -#: field:ir.actions.server,write_id:0 -msgid "Write Id" -msgstr "Write Id" - -#. module: base -#: field:ir.actions.act_window,domain:0 -msgid "Domain Value" -msgstr "Τιμή Τομέα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ITALIC" -msgstr "STOCK_ITALIC" - -#. module: base -#: view:ir.actions.server:0 -msgid "SMS Configuration" -msgstr "Ρύθμιση SMS" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_access_act -#: model:ir.ui.menu,name:base.menu_ir_access_act -msgid "Access Controls List" -msgstr "Λίστα Προσβάσεων" - -#. module: base -#: model:res.country,name:base.um -msgid "USA Minor Outlying Islands" -msgstr "USA Minor Outlying Islands" - -#. module: base -#: field:res.partner.bank,state:0 -#: field:res.partner.bank.type.field,bank_type_id:0 -msgid "Bank Type" -msgstr "Τύπος Τράπεζας" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "The name of the group can not start with \"-\"" -msgstr "Το όνομα της ομάδας δεν μπορεί να ξεκινάει με \"-\"" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -msgstr "Παρακαλώ επαναφορτώστε το menu tab (Ctrl+t Ctrl+r)." - -#. module: base -#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 -msgid "Shortcut" -msgstr "Συντόμευση" - -#. module: base -#: field:ir.model.data,date_init:0 -msgid "Init Date" -msgstr "Αρχική Ημερ/νία" - -#. module: base -#: field:workflow.activity,flow_start:0 -msgid "Flow Start" -msgstr "Εκκίνηση Ροής" - -#. module: base -#: view:ir.model:0 view:ir.model.fields:0 -msgid "Security on Groups" -msgstr "Ασφάλεια σε Ομάδες" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank Account Owner" -msgstr "Ιδιοκτήτης Τραπεζικού Λογαριασμού" - -#. module: base -#: model:ir.actions.act_window,name:base.act_values_form -#: model:ir.ui.menu,name:base.menu_values_form -msgid "Client Actions Connections" -msgstr "Client Actions Connections" - -#. module: base -#: field:ir.ui.view_sc,resource:0 -msgid "Resource Name" -msgstr "Περιγραφή Πόρου" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Hours" -msgstr "Ώρες" - -#. module: base -#: model:res.country,name:base.gp -msgid "Guadeloupe (French)" -msgstr "Guadeloupe (French)" - -#. module: base -#: field:ir.report.custom.fields,cumulate:0 -msgid "Accumulate" -msgstr "Συσσώρευση" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Tree can only be used in tabular reports" -msgstr "Το δέντρο μπορεί να χρησιμοποιηθεί μόνο σε αναφορές με μορφή πίνακα" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Directory" -msgstr "Φάκελλος" - -#. module: base -#: field:wizard.ir.model.menu.create,name:0 -msgid "Menu Name" -msgstr "Όνομα Μενού" - -#. module: base -#: field:ir.report.custom,title:0 -msgid "Report Title" -msgstr "Τίτλος Αναφοράς" - -#. module: base -#: field:ir.report.custom.fields,fontcolor:0 -msgid "Font color" -msgstr "Χρώμα γραμματοσειράς" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_DESCENDING" -msgstr "STOCK_SORT_DESCENDING" - -#. module: base -#: model:res.country,name:base.my -msgid "Malaysia" -msgstr "Malaysia" - -#. module: base -#: model:ir.model,name:base.model_res_request_history -msgid "res.request.history" -msgstr "res.request.history" - -#. module: base -#: view:ir.actions.server:0 -msgid "Client Action Configuration" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_address_form -#: model:ir.model,name:base.model_res_partner_address -#: view:res.partner.address:0 -msgid "Partner Addresses" -msgstr "Διευθύνσεις Συνεργάτη" - -#. module: base -#: model:res.country,name:base.cv -msgid "Cape Verde" -msgstr "Cape Verde (Πράσινο Ακρωτήριο)" - -#. module: base -#: model:ir.actions.act_window,name:base.act_res_partner_event -#: field:res.partner,events:0 field:res.partner.event,name:0 -msgid "Events" -msgstr "Συμβάντα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles -#: model:ir.ui.menu,name:base.menu_action_res_roles -msgid "Roles Structure" -msgstr "Διάρθρωση Ρόλων" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 -msgid "ir.actions.url" -msgstr "ir.actions.url" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_STOP" -msgstr "STOCK_MEDIA_STOP" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %r, expected an integer." -msgstr "Wrong ID for the browse record, got %r, expected an integer." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND_MULTIPLE" -msgstr "STOCK_DND_MULTIPLE" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_addess_tree -#: view:res.partner:0 -msgid "Partner Contacts" -msgstr "Στοιχεία Συνεργάτη" - -#. module: base -#: wizard_field:module.module.update,update,add:0 -msgid "Number of modules added" -msgstr "Number of modules added" - -#. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Απαιτούμενος Ρόλος" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The create method is not implemented on this object !" -msgstr "The create method is not implemented on this object !" - -#. module: base -#: field:workflow.triggers,workitem_id:0 -msgid "Workitem" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "STOCK_DIALOG_AUTHENTICATION" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_OUT" -msgstr "STOCK_ZOOM_OUT" - -#. module: base -#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 selection:ir.values,key:0 -msgid "Action" -msgstr "Ενέργεια" - -#. module: base -#: view:ir.actions.server:0 -msgid "Email Configuration" -msgstr "Ρυθμίσεις Email" - -#. module: base -#: model:ir.model,name:base.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-mrp" -msgstr "terp-mrp" - -#. module: base -#: field:ir.actions.server,trigger_obj_id:0 -msgid "Trigger On" -msgstr "Trigger On" - -#. module: base -#: model:res.country,name:base.fj -msgid "Fiji" -msgstr "Fiji" - -#. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Μέγεθος" - -#. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "Sudan" - -#. module: base -#: view:res.lang:0 -msgid "%m - Month as a decimal number [01,12]." -msgstr "%m - Ο μήνας σε δεκαδική μορφή [01,12]" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export Data" -msgstr "Εξαγωγή Δεδομένων" - -#. module: base -#: model:res.country,name:base.fm -msgid "Micronesia" -msgstr "Micronesia" - -#. module: base -#: view:res.request.history:0 -msgid "Request History" -msgstr "Αίτηση Ιστορικού" - -#. module: base -#: field:ir.module.module,menus_by_module:0 view:res.groups:0 -msgid "Menus" -msgstr "Μενού" - -#. module: base -#: model:res.country,name:base.il -msgid "Israel" -msgstr "Israel" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_server_action_create -msgid "Create Action" -msgstr "Δημιουργία Ενέργειας" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "html" -msgstr "html" - -#. module: base -#: field:res.lang,time_format:0 -msgid "Time Format" -msgstr "Μορφή Ώρας" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Your system will be upgraded." -msgstr "Το σύστημα θα αναβαθμιστεί" - -#. module: base -#: view:ir.module.module:0 -msgid "Defined Reports" -msgstr "Καθορισμένες Αναφορές" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-tools" -msgstr "terp-tools" - -#. module: base -#: view:ir.actions.report.xml:0 -msgid "Report xml" -msgstr "Αναφορά xml" - -#. module: base -#: model:ir.actions.act_window,name:base.action_module_open_categ -#: model:ir.actions.act_window,name:base.open_module_tree -#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree -#: field:wizard.module.lang.export,modules:0 -msgid "Modules" -msgstr "Modules" - -#. module: base -#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 -#: field:workflow.workitem,subflow_id:0 -msgid "Subflow" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDO" -msgstr "STOCK_UNDO" - -#. module: base -#: field:workflow.transition,signal:0 -msgid "Signal (button Name)" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_bank_form -#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 -#: field:res.partner,bank_ids:0 -msgid "Banks" -msgstr "Τράπεζες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-sale" -msgstr "terp-sale" - -#. module: base -#: view:res.lang:0 -msgid "%d - Day of the month as a decimal number [01,31]." -msgstr "%d - Η ημέρα του μήνα σε δεκαδική μορφή [01, 31]." - -#. module: base -#: view:res.lang:0 -msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." -msgstr "%I - Η Ώρα (12ωρο) σε δεκαδική μορφή [01, 12]." - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Romanian / limba română" -msgstr "Romanian / limba română" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ADD" -msgstr "STOCK_ADD" - -#. module: base -#: field:ir.cron,doall:0 -msgid "Repeat Missed" -msgstr "" - -#. module: base -#: help:ir.actions.server,state:0 -msgid "Type of the Action that is to be executed" -msgstr "Τύπος Ενέργειας για εκτέλεση" - -#. module: base -#: field:ir.server.object.lines,server_id:0 -msgid "Object Mapping" -msgstr "" - -#. module: base -#: help:res.currency,rate:0 help:res.currency.rate,rate:0 -msgid "The rate of the currency to the currency of rate 1" -msgstr "Ισοτιμία νομίσματος" - -#. module: base -#: model:res.country,name:base.uk -msgid "United Kingdom" -msgstr "United Kingdom" - -#. module: base -#: view:ir.actions.server:0 -msgid "Create / Write" -msgstr "Δημιουργία / Εγγραφή" - -#. module: base -#: help:res.partner.category,active:0 -msgid "The active field allows you to hide the category without removing it." -msgstr "The active field allows you to hide the category without removing it." - -#. module: base -#: rml:ir.module.reference:0 -msgid "Object:" -msgstr "Αντικείμενο:" - -#. module: base -#: model:res.country,name:base.bw -msgid "Botswana" -msgstr "Botswana" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_partner -#: model:ir.ui.menu,name:base.menu_partner_title_partner -#: view:res.partner.title:0 -msgid "Partner Titles" -msgstr "Τίτλοι Συνεργάτη" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Service" -msgstr "Υπηρεσία" - -#. module: base -#: help:ir.actions.act_window,auto_refresh:0 -msgid "Add an auto-refresh on the view" -msgstr "Add an auto-refresh on the view" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_download:0 -msgid "Modules to download" -msgstr "Modules to download" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_workitem_form -#: model:ir.ui.menu,name:base.menu_workflow_workitem -msgid "Workitems" -msgstr "" - -#. module: base -#: field:wizard.module.lang.export,advice:0 -msgid "Advice" -msgstr "Συμβουλή" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Lithuanian / Lietuvių kalba" -msgstr "Lithuanian / Lietuvių kalba" - -#. module: base -#: help:ir.actions.server,record_id:0 -msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." -msgstr "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Couldn't find tag '%s' in parent view !" -msgstr "" - -#. module: base -#: field:ir.ui.view,inherit_id:0 -msgid "Inherited View" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_translation -msgid "ir.translation" -msgstr "ir.translation" - -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_install -#: model:ir.ui.menu,name:base.menu_module_tree_install -msgid "Installed modules" -msgstr "Installed modules" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_get method is not implemented on this object !" -msgstr "The name_get method is not implemented on this object !" - -#. module: base -#: model:res.country,name:base.lc -msgid "Saint Lucia" -msgstr "Saint Lucia" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract -#: view:maintenance.contract:0 -msgid "Maintenance Contract" -msgstr "Συμβόλαιο Συντήρησης" - -#. module: base -#: help:ir.actions.server,trigger_obj_id:0 -msgid "Select the object from the model on which the workflow will executed." -msgstr "" - -#. module: base -#: field:ir.model,state:0 field:ir.model.fields,state:0 -#: field:ir.model.grid,state:0 -msgid "Manually Created" -msgstr "Δημιουργημένα από Χρήστη" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "Calculate Count" - -#. module: base -#: field:ir.model.access,perm_create:0 -msgid "Create Access" -msgstr "Δημιουργία Πρόσβασης" - -#. module: base -#: field:res.partner.address,state_id:0 -msgid "Fed. State" -msgstr "Νομός" - -#. module: base -#: model:res.country,name:base.io -msgid "British Indian Ocean Territory" -msgstr "British Indian Ocean Territory" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mapping" -msgstr "Field Mapping" - -#. module: base -#: field:maintenance.contract,date_start:0 -msgid "Starting Date" -msgstr "Ημερ/νία Εκκίνησης" - -#. module: base -#: view:ir.model:0 field:ir.model.fields,ttype:0 -msgid "Field Type" -msgstr "Τύπος Πεδίου" - -#. module: base -#: field:res.country.state,code:0 -msgid "State Code" -msgstr "Κωδικός Περιοχής" - -#. module: base -#: field:ir.model.fields,on_delete:0 -msgid "On delete" -msgstr "On delete" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Left-to-Right" -msgstr "Left-to-Right" - -#. module: base -#: field:res.lang,translatable:0 -msgid "Translatable" -msgstr "Translatable" - -#. module: base -#: model:res.country,name:base.vn -msgid "Vietnam" -msgstr "Vietnam" - -#. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Υπογραφή" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not Implemented" -msgstr "Μη ενεργοποιημένο" - -#. module: base -#: field:res.partner.category,complete_name:0 -msgid "Full Name" -msgstr "Πλήρες Όνομα" - -#. module: base -#: model:res.country,name:base.mz -msgid "Mozambique" -msgstr "Mozambique" - -#. module: base -#: field:ir.actions.server,message:0 -#: wizard_field:res.partner.spam_send,init,text:0 -msgid "Message" -msgstr "Μήνυμα" - -#. module: base -#: field:ir.actions.act_window.view,multi:0 -msgid "On Multiple Doc." -msgstr "On Multiple Doc." - -#. module: base -#: field:res.partner,address:0 view:res.partner.address:0 -msgid "Contacts" -msgstr "Στοιχεία" - -#. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_upgrade -#: model:ir.ui.menu,name:base.menu_wizard_upgrade -msgid "Apply Scheduled Upgrades" -msgstr "Apply Scheduled Upgrades" - -#. module: base -#: model:ir.ui.menu,name:base.maintenance -msgid "Maintenance" -msgstr "Συντήρηση" - -#. module: base -#: model:res.country,name:base.mp -msgid "Northern Mariana Islands" -msgstr "Northern Mariana Islands" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "module,type,name,res_id,src,value" -msgstr "module,type,name,res_id,src,value" - -#. module: base -#: model:ir.ui.menu,name:base.menu_management -msgid "Modules Management" -msgstr "Διαχείριση Modules" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation_untrans -#: model:ir.ui.menu,name:base.menu_action_translation_untrans -msgid "Untranslated terms" -msgstr "Μη μεταφρασμένοι όροι" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" -msgstr "wizard.ir.model.menu.create" - -#. module: base -#: view:workflow.transition:0 -msgid "Transition" -msgstr "Ροή" - -#. module: base -#: field:ir.actions.todo,active:0 field:ir.cron,active:0 -#: field:ir.module.repository,active:0 field:ir.sequence,active:0 -#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 -#: field:res.partner,active:0 field:res.partner.address,active:0 -#: field:res.partner.canal,active:0 field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 field:res.request,active:0 -#: field:res.users,active:0 -msgid "Active" -msgstr "Ενεργό" - -#. module: base -#: model:res.country,name:base.na -msgid "Namibia" -msgstr "Namibia" - -#. module: base -#: model:res.country,name:base.mn -msgid "Mongolia" -msgstr "Mongolia" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Δημιουργημένα Μενού" - -#. module: base -#: view:res.partner.som:0 -msgid "Partner State of Mind" -msgstr "" - -#. module: base -#: selection:ir.ui.view,type:0 -msgid "mdx" -msgstr "" - -#. module: base -#: model:res.country,name:base.bi -msgid "Burundi" -msgstr "Burundi" - -#. module: base -#: wizard_button:base.module.import,import,open_window:0 -#: wizard_button:module.upgrade,end,end:0 -#: wizard_button:module.upgrade,start,end:0 -#: wizard_button:server.action.create,init,end:0 -#: wizard_button:server.action.create,step_1,end:0 -#: view:wizard.module.lang.export:0 -msgid "Close" -msgstr "Κλείσιμο" - -#. module: base -#: model:res.country,name:base.bt -msgid "Bhutan" -msgstr "Bhutan" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_11 -msgid "Textile Suppliers" -msgstr "Προμηθευτές Υφασμάτων" - -#. module: base -#: selection:ir.actions.url,target:0 -msgid "This Window" -msgstr "Αυτό το παράθυρο" - -#. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Μορφή Αρχείου" - -#. module: base -#: model:ir.model,name:base.model_res_config_view -msgid "res.config.view" -msgstr "res.config.view" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDENT" -msgstr "STOCK_INDENT" - -#. module: base -#: view:workflow.workitem:0 -msgid "Workflow Workitems" -msgstr "Λειτουργία επαφής" - -#. module: base -#: model:res.country,name:base.vc -msgid "Saint Vincent & Grenadines" -msgstr "Saint Vincent & Grenadines" - -#. module: base -#: field:ir.model.config,password:0 field:maintenance.contract,password:0 -#: field:maintenance.contract.wizard,password:0 -#: wizard_field:res.partner.sms_send,init,password:0 -#: field:res.users,password:0 -msgid "Password" -msgstr "Password" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 -#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields -#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 -#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 -#: model:ir.ui.menu,name:base.ir_model_model_fields -msgid "Fields" -msgstr "Πεδία" - -#. module: base -#: wizard_view:base.module.import,import:0 -msgid "Module successfully imported !" -msgstr "Module successfully imported !" - -#. module: base -#: model:res.country,name:base.mk -msgid "Macedonia" -msgstr "F.Y.R.O.M." - -#. module: base -#: field:res.company,rml_header2:0 -msgid "RML Internal Header" -msgstr "RML Internal Header" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a4" -msgstr "Α4" - -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "Multiple rules on same objects are joined using operator OR" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field -msgid "acc_number" -msgstr "acc_number" - -#. module: base -#: model:ir.ui.menu,name:base.menu_partner_address_form -msgid "Addresses" -msgstr "Διευθύνσεις" - -#. module: base -#: model:res.country,name:base.mm -msgid "Myanmar" -msgstr "Myanmar" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (CN) / 简体中文" -msgstr "Chinese (CN) / 简体中文" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_NEXT" -msgstr "STOCK_MEDIA_NEXT" - -#. module: base -#: field:res.bank,street:0 field:res.partner.address,street:0 -#: field:res.partner.bank,street:0 -msgid "Street" -msgstr "Οδός" - -#. module: base -#: model:res.country,name:base.yu -msgid "Yugoslavia" -msgstr "Yugoslavia" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Note that this operation my take a few minutes." -msgstr "Η διαδικασία αυτή μπορεί να πάρει μερικά λεπτά." - -#. module: base -#: field:ir.model.data,name:0 -msgid "XML Identifier" -msgstr "XML Identifier" - -#. module: base -#: model:res.country,name:base.ca -msgid "Canada" -msgstr "Canada" - -#. module: base -#: field:ir.actions.report.xml,report_name:0 -msgid "Internal Name" -msgstr "Εσωτερικό όνομα" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Unknown" -msgstr "Άγνωστο" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users_my -msgid "Change My Preferences" -msgstr "Αλλαγή Προτιμήσεων" - -#. module: base -#: model:res.country,name:base.sz -msgid "Swaziland" -msgstr "Swaziland" - -#. module: base -#: wizard_field:res.partner.sms_send,init,text:0 -msgid "SMS Message" -msgstr "Μήνυμα SMS" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EDIT" -msgstr "STOCK_EDIT" - -#. module: base -#: model:res.country,name:base.cm -msgid "Cameroon" -msgstr "Cameroon" - -#. module: base -#: model:res.country,name:base.bf -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_FORWARD" -msgstr "STOCK_MEDIA_FORWARD" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Skipped" -msgstr "Skipped" - -#. module: base -#: selection:ir.model.fields,state:0 -msgid "Custom Field" -msgstr "Ειδικό Πεδίο" - -#. module: base -#: model:res.country,name:base.cc -msgid "Cocos (Keeling) Islands" -msgstr "Cocos (Keeling) Islands" - -#. module: base -#: field:workflow.instance,uid:0 -msgid "User ID" -msgstr "User ID" - -#. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" -msgstr "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" - -#. module: base -#: view:res.lang:0 -msgid "11. %U or %W ==> 48 (49th week)" -msgstr "11. %U or %W ==> 48 (49η εβδομάδα)" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type_field -msgid "Bank type fields" -msgstr "Πεδία τύπου Τραπεζών" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "type,name,res_id,src,value" -msgstr "type,name,res_id,src,value" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch / Nederlands" -msgstr "Dutch / Nederlands" - -#. module: base -#: wizard_view:server.action.create,step_1:0 -#: wizard_field:server.action.create,step_1,report:0 -msgid "Select Report" -msgstr "Επιλογή Αναφοράς" - -#. module: base -#: field:ir.report.custom.fields,fc1_condition:0 -#: field:ir.report.custom.fields,fc2_condition:0 -#: field:ir.report.custom.fields,fc3_condition:0 -msgid "condition" -msgstr "συνθήκη" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SAVE" -msgstr "STOCK_SAVE" - -#. module: base -#: rml:ir.module.reference:0 -msgid "1cm 28cm 20cm 28cm" -msgstr "1cm 28cm 20cm 28cm" - #. module: base #: field:ir.sequence,suffix:0 msgid "Suffix" msgstr "Πρόσφυμα" -#. module: base -#: model:res.country,name:base.mo -msgid "Macau" -msgstr "Macau" - -#. module: base -#: model:ir.actions.report.xml,name:base.res_partner_address_report -msgid "Labels" -msgstr "Ετικέτες" - -#. module: base -#: wizard_field:res.partner.spam_send,init,from:0 -msgid "Sender's email" -msgstr "Εmail αποστολέα" - -#. module: base -#: field:ir.default,field_name:0 -msgid "Object Field" -msgstr "Πεδίο Αντικειμένου" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Records were modified in the meanwhile" -msgstr "Οι εγγραφές έχουν τροποποιηθεί στο μεταξύ" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NEW" -msgstr "STOCK_NEW" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "None" -msgstr "Κανένα" - -#. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Report Fields" - -#. module: base -#: view:res.partner:0 -msgid "General" -msgstr "Γενικό" - -#. module: base -#: field:workflow.transition,act_to:0 -msgid "Destination Activity" -msgstr "Δραστηριότητα προορισμού" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_search method is not implemented on this object !" -msgstr "The name_search method is not implemented on this object !" - -#. module: base -#: view:ir.values:0 -msgid "Connect Events to Actions" -msgstr "Σύνδεση Συνβάντων με Ενέργειες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ABOUT" -msgstr "STOCK_ABOUT" - -#. module: base -#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 -msgid "Parent Category" -msgstr "Βασική κατηγορία" - -#. module: base -#: model:res.country,name:base.fi -msgid "Finland" -msgstr "Finland" - -#. module: base -#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 -msgid "Contact" -msgstr "Στοιχεία επικοινωνίας" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_menu -msgid "ir.ui.menu" -msgstr "ir.ui.menu" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Uninstall" -msgstr "Cancel Uninstall" - -#. module: base -#: model:ir.model,name:base.model_res_currency_rate -msgid "Currency Rate" -msgstr "Ισοτιμία Νομίσματος" - -#. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "ir.server.object.lines" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Module %s: Invalid Quality Certificate" -msgstr "Module %s: Invalid Quality Certificate" - -#. module: base -#: model:res.country,name:base.kw -msgid "Kuwait" -msgstr "Kuwait" - -#. module: base -#: field:workflow.workitem,inst_id:0 -msgid "Instance" -msgstr "Instance" - -#. module: base -#: help:ir.actions.report.xml,attachment:0 -msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." -msgstr "Το όνομα αρχείου που θα αποθηκευθεί το αποτέλεσμα της εκτύπωσης. Αφήστε το κενό αν δεν επιθυμείτε να αποθηκεύετε τις εκτυπώσεις αναφορών. Μπορείτε να χρησιμοποιήσετε μια έκφραση python με τις παραμέτρους object και time." - -#. module: base -#: model:res.country,name:base.ng -msgid "Nigeria" -msgstr "Nigeria" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDERLINE" -msgstr "STOCK_UNDERLINE" - -#. module: base -#: view:ir.values:0 -msgid "Values for Event Type" -msgstr "Τιμές για τον Τύπο Συμβάντος" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Always Searchable" -msgstr "Always Searchable" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" - -#. module: base -#: model:res.country,name:base.hk -msgid "Hong Kong" -msgstr "Hong Kong" - -#. module: base -#: help:ir.actions.server,name:0 -msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" -msgstr "STOCK_ZOOM_100" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_BOLD" -msgstr "STOCK_BOLD" - -#. module: base -#: model:res.country,name:base.ph -msgid "Philippines" -msgstr "Philippines" - -#. module: base -#: model:res.country,name:base.ma -msgid "Morocco" -msgstr "Morocco" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-graph" -msgstr "terp-graph" - -#. module: base -#: view:res.lang:0 -msgid "2. %a ,%A ==> Fri, Friday" -msgstr "2. %a ,%A ==> Παρ, Παρασκευή" - -#. module: base -#: wizard_view:module.lang.install,start:0 -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 "Η επιλεγμένη γλώσσα εγκαταστάθηκε επιτυχώς. Πρέπει να αλλάξετε τις Προτιμήσεις του χρήστη και να ανοίξετε ένα νέο μενού για να δείτε τις αλλαγές." - -#. module: base -#: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 -msgid "Partner Events" -msgstr "Συμβάντα Συνεργάτη" - -#. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" - -#. module: base -#: view:res.lang:0 -msgid "%a - Abbreviated weekday name." -msgstr "%a - Συντομο όνομα ημέρας" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Introspection report on objects" -msgstr "Introspection report on objects" - -#. module: base -#: model:res.country,name:base.pf -msgid "Polynesia (French)" -msgstr "Polynesia (French)" - -#. module: base -#: field:res.company,name:0 -msgid "Company Name" -msgstr "Όνομα Εταιρείας" - -#. module: base -#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard -#: wizard_button:res.partner.sms_send,init,send:0 -msgid "Send SMS" -msgstr "Αποστολή SMS" - -#. module: base -#: model:res.country,name:base.np -msgid "Nepal" -msgstr "Nepal" - -#. module: base -#: field:res.partner.event,event_ical_id:0 -msgid "iCal id" -msgstr "iCal id" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_function_form -#: model:ir.ui.menu,name:base.menu_partner_function_form -#: view:res.partner.function:0 -msgid "Partner Functions" -msgstr "Λειτουργίες Συνεργατών" - -#. module: base -#: wizard_view:res.partner.sms_send,init:0 -msgid "Bulk SMS send" -msgstr "Μαζική αποστολή SMS" - -#. module: base -#: view:res.lang:0 -msgid "%Y - Year with century as a decimal number." -msgstr "%Y - Το έτος (πλήρως)." - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Pie Chart" -msgstr "Κυκλικό Διάγραμμα" - -#. module: base -#: view:ir.sequence:0 -msgid "Seconde: %(sec)s" -msgstr "Δευτερόλεπτο: %(sec)s" - -#. module: base -#: selection:ir.translation,type:0 field:res.bank,code:0 -#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 -#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 -msgid "Code" -msgstr "Κωδικός" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" -msgstr "" -"Can not create the module file:\n" -" %s" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_update -#: model:ir.ui.menu,name:base.menu_module_update -msgid "Update Modules List" -msgstr "Ενημέρωση Λίστας Modules" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Continue" -msgstr "Συνέχεια" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form -#: model:ir.ui.menu,name:base.menu_ir_property_form -msgid "Default Properties" -msgstr "Προεπιλεγμένες Ιδιότητες" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Slovenian / slovenščina" -msgstr "Slovenian / slovenščina" - -#. module: base -#: field:ir.actions.report.xml,attachment_use:0 -msgid "Reload from Attachment" -msgstr "Επαναφόρτωση από συνημμένο" - -#. module: base -#: model:res.country,name:base.bv -msgid "Bouvet Island" -msgstr "Bouvet Island" - -#. module: base -#: field:ir.report.custom,print_orientation:0 -msgid "Print orientation" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export a Translation File" -msgstr "Εξαγωγή Αρχείου Μετάφρασης" - -#. module: base -#: field:ir.attachment,name:0 -msgid "Attachment Name" -msgstr "Όνομα Συνημμένου" - -#. module: base -#: wizard_field:module.lang.import,init,data:0 -#: field:wizard.module.lang.export,data:0 -msgid "File" -msgstr "Αρχείο" - -#. module: base -#: view:res.users:0 -msgid "Add User" -msgstr "Προσθήκη Χρήστη" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_configuration_wizard -msgid "ir.actions.configuration.wizard" -msgstr "ir.actions.configuration.wizard" - -#. module: base -#: view:res.lang:0 -msgid "%b - Abbreviated month name." -msgstr "%b - Σύντομο όνομα μήνα." - -#. module: base -#: field:res.partner,supplier:0 -#: model:res.partner.category,name:base.res_partner_category_8 -msgid "Supplier" -msgstr "Προμηθευτής" - -#. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 -msgid "Multi Actions" -msgstr "Multi Actions" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Close" -msgstr "_Close" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Full" -msgstr "Πλήρες" - -#. module: base -#: model:res.country,name:base.as -msgid "American Samoa" -msgstr "American Samoa" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_model -#: model:ir.model,name:base.model_ir_model -#: model:ir.ui.menu,name:base.ir_model_model_menu -msgid "Objects" -msgstr "Objects" - -#. module: base -#: view:res.request.link:0 -msgid "Request Link" -msgstr "" - -#. module: base -#: field:ir.module.module,url:0 field:ir.module.repository,url:0 -msgid "URL" -msgstr "URL" - -#. module: base -#: help:res.country,name:0 -msgid "The full name of the country." -msgstr "Πλήρες όνομα χώρας." - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Iteration" -msgstr "Επανάληψη" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" -msgstr "terp-stock" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "UserError" -msgstr "UserError" - -#. module: base -#: model:res.country,name:base.ae -msgid "United Arab Emirates" -msgstr "United Arab Emirates" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_RECORD" -msgstr "STOCK_MEDIA_RECORD" - -#. module: base -#: model:res.country,name:base.re -msgid "Reunion (French)" -msgstr "Reunion (French)" - -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Παγκόσμια" - -#. module: base -#: model:res.country,name:base.cz -msgid "Czech Republic" -msgstr "Czech Republic" - -#. module: base -#: model:res.country,name:base.sb -msgid "Solomon Islands" -msgstr "Solomon Islands" - -#. module: base -#: view:res.lang:0 -msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -msgstr "8. %I:%M:%S %p ==> 06:25:20 μ.μ." - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "The copy method is not implemented on this object !" - -#. module: base -#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation -msgid "Translations" -msgstr "Μεταφράσεις" - -#. module: base -#: field:ir.sequence,padding:0 -msgid "Number padding" -msgstr "" - -#. module: base -#: model:res.country,name:base.ua -msgid "Ukraine" -msgstr "Ukraine" - -#. module: base -#: model:res.country,name:base.to -msgid "Tonga" -msgstr "Tonga" - -#. module: base -#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 -msgid "Module Category" -msgstr "Module Category" - -#. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "USA" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reference Guide" -msgstr "Οδηγός αναφοράς" - -#. module: base -#: model:res.country,name:base.ml -msgid "Mali" -msgstr "Mali" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNINDENT" -msgstr "STOCK_UNINDENT" - -#. module: base -#: field:ir.cron,interval_number:0 -msgid "Interval Number" -msgstr "Interval Number" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Partial" -msgstr "Μερικό" - -#. module: base -#: model:res.country,name:base.tk -msgid "Tokelau" -msgstr "Tokelau" - -#. module: base -#: field:ir.actions.report.xml,report_xsl:0 -msgid "XSL path" -msgstr "XSL path" - -#. module: base -#: model:res.country,name:base.bn -msgid "Brunei Darussalam" -msgstr "Brunei Darussalam" - -#. module: base -#: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 -#: field:wizard.ir.model.menu.create.line,view_type:0 -msgid "View Type" -msgstr "Τύπος Προβολής" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_2 -msgid "User Interface" -msgstr "User Interface" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_INFO" -msgstr "STOCK_DIALOG_INFO" - -#. module: base -#: field:ir.attachment,create_date:0 -msgid "Date Created" -msgstr "Ημερ/νία Δημιουργίας" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_todo -msgid "ir.actions.todo" -msgstr "ir.actions.todo" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Get file" -msgstr "Get file" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "This function will check for new modules in the 'addons' path and on module repositories:" -msgstr "This function will check for new modules in the 'addons' path and on module repositories:" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_BACK" -msgstr "STOCK_GO_BACK" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 code:osv/orm.py:0 -#, python-format -msgid "AccessError" -msgstr "AccessError" - -#. module: base -#: model:res.country,name:base.dz -msgid "Algeria" -msgstr "Algeria" - -#. module: base -#: model:res.country,name:base.be -msgid "Belgium" -msgstr "Belgium" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You cannot perform this operation." -msgstr "Δεν μπορείτε να εκτελέσετε αυτή τη λειτουργία." - -#. module: base -#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 -#: field:res.partner,lang:0 field:res.users,context_lang:0 -#: field:wizard.module.lang.export,lang:0 -#: field:wizard.module.update_translations,lang:0 -msgid "Language" -msgstr "Γλώσσα" - -#. module: base -#: model:res.country,name:base.gm -msgid "Gambia" -msgstr "Gambia" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 -msgid "Companies" -msgstr "Εταιρείες" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented get_memory method !" -msgstr "Not implemented get_memory method !" - -#. module: base -#: view:ir.actions.server:0 field:ir.actions.server,code:0 -#: selection:ir.actions.server,state:0 -msgid "Python Code" -msgstr "Python Code" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Can not create the module file: %s !" -msgstr "Can not create the module file: %s !" - -#. module: base -#: model:ir.module.module,description:base.module_meta_information -msgid "The kernel of OpenERP, needed for all installation." -msgstr "The kernel of OpenERP, needed for all installation." - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form -#: model:ir.ui.menu,name:base.menu_partner_customer_form -msgid "Customers Partners" -msgstr "Πελάτες" - -#. module: base -#: wizard_button:base.module.import,init,end:0 -#: selection:ir.actions.todo,state:0 -#: wizard_button:module.lang.import,init,end:0 -#: wizard_button:module.lang.install,init,end:0 -#: wizard_button:module.module.update,init,end:0 -#: wizard_button:module.upgrade,next,end:0 -#: wizard_button:res.partner.sms_send,init,end:0 -#: wizard_button:res.partner.spam_send,init,end:0 -#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 -#: view:wizard.module.update_translations:0 -msgid "Cancel" -msgstr "Ακύρωση" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify server option --smtp-from !" -msgstr "Please specify server option --smtp-from !" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "PO File" -msgstr "Αρχείο PO" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_9 -msgid "Components Supplier" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 -#: field:ir.rule.group,users:0 -#: model:ir.ui.menu,name:base.menu_action_res_users -#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 -#: field:res.groups,users:0 field:res.roles,users:0 view:res.users:0 -msgid "Users" -msgstr "Χρήστες" - -#. module: base -#: field:ir.module.module,published_version:0 -msgid "Published Version" -msgstr "Δημοσιοποιημένη Έκδοση" - -#. module: base -#: model:res.country,name:base.is -msgid "Iceland" -msgstr "Iceland" - -#. module: base -#: view:res.users:0 -msgid "Roles are used to defined available actions, provided by workflows." -msgstr "Οι ρόλοι χρησιμοποιούνται σε καθορισμένες ενέργειες που προκύπτουν από τις ροές εργασίας." - -#. module: base -#: model:res.country,name:base.de -msgid "Germany" -msgstr "Germany" - -#. module: base -#: view:ir.sequence:0 -msgid "Week of the year: %(woy)s" -msgstr "Week of the year: %(woy)s" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_14 -msgid "Bad customers" -msgstr "Κακοί πελάτες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HARDDISK" -msgstr "STOCK_HARDDISK" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reports :" -msgstr "Αναφορές:" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_APPLY" -msgstr "STOCK_APPLY" - -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_form -#: model:ir.ui.menu,name:base.menu_maintenance_contract -msgid "Your Maintenance Contracts" -msgstr "Συμβόλαια Συντήρησης" - -#. module: base -#: view:res.users:0 -msgid "Please note that you will have to logout and relog if you change your password." -msgstr "Για να αλλαχθεί το password σας θα πρέπει να αποσυνδεθείτε και να επανασυνδεθείτε στο σύστημα." - -#. module: base -#: model:res.country,name:base.gy -msgid "Guyana" -msgstr "Guyana" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3" -msgstr "GPL-3" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-2" -msgstr "GPL-2" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese (BR) / português (BR)" -msgstr "Portugese (BR) / português (BR)" - -#. module: base -#: field:ir.actions.server,record_id:0 -msgid "Create Id" -msgstr "Create Id" - -#. module: base -#: model:res.country,name:base.hn -msgid "Honduras" -msgstr "Honduras" - -#. module: base -#: model:res.country,name:base.eg -msgid "Egypt" -msgstr "Egypt" - -#. module: base -#: help:ir.actions.server,model_id:0 -msgid "Select the object on which the action will work (read, write, create)." -msgstr "Select the object on which the action will work (read, write, create)." - -#. module: base -#: view:ir.model:0 -msgid "Fields Description" -msgstr "Περιγραφή Πεδίων" - -#. module: base -#: code:tools/translate.py:0 -#, python-format -msgid "Bad file format" -msgstr "Μορφή αρχείου εσφαλμένη" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CDROM" -msgstr "STOCK_CDROM" - -#. module: base -#: field:ir.model.fields,readonly:0 -#: field:res.partner.bank.type.field,readonly:0 -msgid "Readonly" -msgstr "Readonly" - -#. module: base -#: field:res.partner.event,type:0 -msgid "Type of Event" -msgstr "Τύπος Συμβάντος" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_type -#: model:ir.ui.menu,name:base.menu_ir_sequence_type -msgid "Sequence Types" -msgstr "Τύποι Αρίθμησης" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "To be installed" -msgstr "To be installed" - -#. module: base -#: model:ir.module.module,shortdesc:base.module_meta_information -msgid "Base" -msgstr "Βάση" - -#. module: base -#: model:res.country,name:base.lr -msgid "Liberia" -msgstr "Liberia" - -#. module: base -#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 -#: field:res.partner,comment:0 field:res.partner.function,ref:0 -msgid "Notes" -msgstr "Σημειώσεις" - -#. module: base -#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 field:ir.values,value:0 -#: field:ir.values,value_unpickle:0 -msgid "Value" -msgstr "Τιμή" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update Translations" -msgstr "Ανανέωση Μεταφράσεων" - -#. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Set" - -#. module: base -#: model:res.country,name:base.mc -msgid "Monaco" -msgstr "Monaco" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Minutes" -msgstr "Λεπτά" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "The modules have been upgraded / installed !" -msgstr "The modules have been upgraded / installed !" - -#. module: base -#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 -msgid "Help" -msgstr "Βοήθεια" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" - -#. module: base -#: code:tools/amount_to_text_en.py:0 -#, python-format -msgid "Number too large '%d', can not translate it" -msgstr "ΠΟλύ μεγάλος αριθμός '%d', δε μεταφράζεται" - -#. module: base -#: wizard_button:server.action.create,step_1,create:0 -msgid "Create" -msgstr "Δημιουργήστε" - -#. module: base -#: field:ir.exports,export_fields:0 -msgid "Export ID" -msgstr "Export ID" - -#. module: base -#: model:res.country,name:base.fr -msgid "France" -msgstr "France" - -#. module: base -#: field:workflow.activity,flow_stop:0 -msgid "Flow Stop" -msgstr "Στάση ροής" - -#. module: base -#: model:res.country,name:base.ar -msgid "Argentina" -msgstr "Argentina" - -#. module: base -#: model:res.country,name:base.af -msgid "Afghanistan, Islamic State of" -msgstr "Afghanistan, Islamic State of" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Error !" -msgstr "Σφάλμα!" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry -msgid "country_id" -msgstr "country_id" - -#. module: base -#: field:ir.report.custom,frequency:0 -msgid "Frequency" -msgstr "Συχνότητα" - -#. module: base -#: field:ir.cron,interval_type:0 -msgid "Interval Unit" -msgstr "" - -#. module: base -#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 -msgid "Kind" -msgstr "Είδος" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "This method does not exist anymore" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Manual" -msgstr "Manual" - -#. module: base -#: field:res.bank,fax:0 field:res.partner.address,fax:0 -msgid "Fax" -msgstr "Fax" - -#. module: base -#: field:res.lang,thousands_sep:0 -msgid "Thousands Separator" -msgstr "Διαχωριστής Χιλιάδων" - -#. module: base -#: field:res.request,create_date:0 -msgid "Created Date" -msgstr "Ημερ/νία Δημιουργίας" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Line Plot" -msgstr "Γραμμικό Διάγραμμα" - -#. module: base -#: help:ir.actions.server,loop_action:0 -msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." -msgstr "Select the action that will be executed. Loop action will not be avaliable inside loop." - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (TW) / 正體字" -msgstr "Chinese (TW) / 正體字" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_UP" -msgstr "STOCK_GO_UP" - -#. module: base -#: model:ir.model,name:base.model_res_request -msgid "res.request" -msgstr "res.request" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" -msgstr "pdf" - -#. module: base -#: field:ir.default,company_id:0 field:ir.property,company_id:0 -#: field:ir.values,company_id:0 view:res.company:0 -#: field:res.users,company_id:0 -msgid "Company" -msgstr "Εταιρεία" - -#. module: base -#: field:ir.attachment,datas:0 -msgid "File Content" -msgstr "Περιεχόμενα Φακέλου" - -#. module: base -#: model:res.country,name:base.pa -msgid "Panama" -msgstr "Panama" - -#. module: base -#: selection:ir.report.custom,state:0 -msgid "Unsubscribed" -msgstr "Μη καταχωρημένο" - -#. module: base -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Προεπισκόπηση" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Skip Step" -msgstr "Παράλειψη Βήματος" - -#. module: base -#: model:res.country,name:base.pn -msgid "Pitcairn Island" -msgstr "Pitcairn Island" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_event_type-act -#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act -msgid "Active Partner Events" -msgstr "Ενεργά Συμβάντα Συνεργάτη" - -#. module: base -#: model:ir.actions.act_window,name:base.action_rule -#: model:ir.ui.menu,name:base.menu_action_rule -msgid "Record Rules" -msgstr "Record Rules" - -#. module: base -#: view:ir.sequence:0 -msgid "Day of the year: %(doy)s" -msgstr "Ημέρα του χρόνου: %(day)s" - -#. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "Ουδέτερη Ζώνη" - -#. module: base -#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 -#: model:ir.ui.menu,name:base.next_id_15 -msgid "Properties" -msgstr "Ιδιότητες" - -#. module: base -#: view:res.lang:0 -msgid "%A - Full weekday name." -msgstr "%A - Πλήρες όνομα ημέρας εβδομάδας" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Μήνες" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Selection" -msgstr "Επιλογή" - -#. module: base -#: field:ir.rule,domain_force:0 -msgid "Force Domain" -msgstr "Force Domain" - -#. module: base -#: model:ir.actions.act_window,name:base.action_attachment -#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment -msgid "Attachments" -msgstr "Συνημμένα" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Validate" -msgstr "_Validate" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_wizard -msgid "maintenance.contract.wizard" -msgstr "maintenance.contract.wizard" - -#. module: base -#: field:ir.actions.server,child_ids:0 -msgid "Other Actions" -msgstr "Άλλες Ενέργειες" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Done" -msgstr "Ολοκληρωμένο" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Validated" -msgstr "Επικυρωμένο" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Δίδα" - -#. module: base -#: field:ir.model.access,perm_write:0 -msgid "Write Access" -msgstr "Δικαίωμα Εγγραφής" - -#. module: base -#: field:res.bank,city:0 field:res.partner,city:0 -#: field:res.partner.address,city:0 field:res.partner.bank,city:0 -msgid "City" -msgstr "Πόλη" - -#. module: base -#: model:res.country,name:base.qa -msgid "Qatar" -msgstr "Qatar" - -#. module: base -#: model:res.country,name:base.it -msgid "Italy" -msgstr "Italy" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<>" -msgstr "<>" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<=" -msgstr "<=" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Estonian / Eesti keel" -msgstr "Estonian / Eesti keel" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese / português" -msgstr "Portugese / português" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3 or later version" -msgstr "GPL-3 or later version" - -#. module: base -#: field:workflow.activity,action:0 -msgid "Python Action" -msgstr "Python Action" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Unknown position in inherited view %s !" -msgstr "Unknown position in inherited view %s !" - -#. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Πιθανότητα (0,50)" - -#. module: base -#: field:ir.report.custom,repeat_header:0 -msgid "Repeat Header" -msgstr "Repeat Header" - -#. module: base -#: field:res.users,address_id:0 -msgid "Address" -msgstr "Διεύθυνση" - -#. module: base -#: field:ir.module.module,latest_version:0 -msgid "Installed version" -msgstr "Εγκατεστημένη Έκδοση" - -#. module: base -#: model:ir.ui.menu,name:base.menu_workflow_root -msgid "Workflow Definitions" -msgstr "Ορισμοί Ροών Εργασίας" - -#. module: base -#: model:res.country,name:base.mr -msgid "Mauritania" -msgstr "Μαυριτανία" - -#. module: base -#: view:workflow.activity:0 field:workflow.workitem,act_id:0 -msgid "Activity" -msgstr "Activity" - -#. module: base -#: field:res.company,parent_id:0 -msgid "Parent Company" -msgstr "Μητρική Εταιρεία" - -#. module: base -#: field:res.currency.rate,rate:0 -msgid "Rate" -msgstr "Ποσοστό" - -#. module: base -#: model:res.country,name:base.cg -msgid "Congo" -msgstr "Congo" - -#. module: base -#: model:ir.model,name:base.model_ir_exports_line -msgid "ir.exports.line" -msgstr "ir.exports.line" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "STOCK_MEDIA_PAUSE" - -#. module: base -#: model:ir.model,name:base.model_res_country_state -msgid "Country state" -msgstr "Νομός" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form_all -#: model:ir.ui.menu,name:base.menu_ir_property_form_all -msgid "All Properties" -msgstr "Όλες οι ιδιότητες" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_window -#: model:ir.ui.menu,name:base.menu_ir_action_window -msgid "Window Actions" -msgstr "Ενέργειες Παραθύρου" - -#. module: base -#: model:res.country,name:base.kn -msgid "Saint Kitts & Nevis Anguilla" -msgstr "Saint Kitts & Nevis Anguilla" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HOME" -msgstr "STOCK_HOME" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence -msgid "ir.sequence" -msgstr "ir.sequence" - -#. module: base -#: help:ir.actions.server,srcmodel_id:0 -msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." -msgstr "Object in which you want to create / write the object. If it is empty then refer to the Object field." - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "Not Installed" -msgstr "Not Installed" - -#. module: base -#: field:workflow.activity,out_transitions:0 -msgid "Outgoing Transitions" -msgstr "Εκροές" - -#. module: base -#: field:ir.ui.menu,icon:0 -msgid "Icon" -msgstr "Εικονίδιο" - -#. module: base -#: wizard_button:module.lang.import,init,finish:0 -#: wizard_button:module.lang.install,start,end:0 -#: wizard_button:module.module.update,update,open_window:0 -msgid "Ok" -msgstr "ΟΚ" - -#. module: base -#: model:res.country,name:base.mq -msgid "Martinique (French)" -msgstr "Martinique (French)" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request-act -#: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 -msgid "Requests" -msgstr "Αιτήσεις" - -#. module: base -#: model:res.country,name:base.ye -msgid "Yemen" -msgstr "Yemen" - -#. module: base -#: selection:workflow.activity,split_mode:0 -msgid "Or" -msgstr "Or" - -#. module: base -#: model:res.country,name:base.pk -msgid "Pakistan" -msgstr "Pakistan" - -#. module: base -#: model:res.country,name:base.al -msgid "Albania" -msgstr "Albania" - -#. module: base -#: model:res.country,name:base.ws -msgid "Samoa" -msgstr "Samoa" - -#. module: base -#: field:ir.ui.menu,child_id:0 -msgid "Child IDs" -msgstr "Child IDs" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Problem in configuration `Record Id` in Server Action!" -msgstr "Problem in configuration `Record Id` in Server Action!" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ValidateError" -msgstr "ValidateError" - -#. module: base -#: wizard_button:base.module.import,init,import:0 -#: model:ir.actions.wizard,name:base.wizard_base_module_import -#: model:ir.ui.menu,name:base.menu_wizard_module_import -msgid "Import module" -msgstr "Import module" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DISCONNECT" -msgstr "STOCK_DISCONNECT" - -#. module: base -#: model:res.country,name:base.la -msgid "Laos" -msgstr "Laos" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Email" -msgstr "Email" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Resynchronise Terms" -msgstr "Ανασυγχρονισμός Όρων" - -#. module: base -#: model:res.country,name:base.tg -msgid "Togo" -msgstr "Togo" - -#. module: base -#: selection:workflow.activity,kind:0 -msgid "Stop All" -msgstr "Όλα Stop" - -#. module: base -#: view:res.lang:0 -msgid "3. %x ,%X ==> 12/05/08, 18:25:20" -msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Cascade" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Field %d should be a figure" -msgstr "Το πεδίο %d πρέπει να έιναι αριθμός" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Επόμενο Βήμα Ρυθμίσεων" - -#. module: base -#: field:res.groups,comment:0 -msgid "Comment" -msgstr "Σχόλιο" - -#. module: base -#: model:res.country,name:base.ro -msgid "Romania" -msgstr "Romania" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PREFERENCES" -msgstr "STOCK_PREFERENCES" - -#. module: base -#: field:res.country.state,name:0 -msgid "State Name" -msgstr "Όνομα Νομού" - -#. module: base -#: field:workflow.activity,join_mode:0 -msgid "Join Mode" -msgstr "Πλήρες Mode" - -#. module: base -#: field:res.users,context_tz:0 -msgid "Timezone" -msgstr "Ζώνη Ώρας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_LAST" -msgstr "STOCK_GOTO_LAST" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_xml -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.xml" -msgstr "ir.actions.report.xml" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." -msgstr "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." - -#. module: base -#: wizard_button:module.lang.install,init,start:0 -msgid "Start installation" -msgstr "Start installation" - -#. module: base -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." -msgstr "Σφάλμα! Υπάρχει ήδη ίδια περιγραφή συνδεδεμένου μέλους." - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_2 -msgid "OpenERP Partners" -msgstr "Συνεργάτες OpenERP" - -#. module: base -#: model:res.country,name:base.by -msgid "Belarus" -msgstr "Belarus / Λευκορωσία" - -#. module: base -#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 -#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 -#: field:ir.actions.url,name:0 -msgid "Action Name" -msgstr "Όνομα Ενέργειας" - -#. module: base -#: selection:res.request,priority:0 -msgid "Normal" -msgstr "Κανονικό" - -#. module: base -#: field:res.bank,street2:0 field:res.partner.address,street2:0 -msgid "Street2" -msgstr "Οδός 2" - -#. module: base -#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 -#: view:res.users:0 -msgid "User" -msgstr "Χρήστης" - -#. module: base -#: model:res.country,name:base.pr -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Άνοιγμα Παραθύρου" - -#. module: base -#: field:ir.module.repository,filter:0 -msgid "Filter" -msgstr "Φίλτρο" - -#. module: base -#: model:res.country,name:base.ch -msgid "Switzerland" -msgstr "Switzerland / Ελβετία" - -#. module: base -#: model:res.country,name:base.gd -msgid "Grenada" -msgstr "Grenada" - -#. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Trigger Configuration" - -#. module: base -#: selection:server.action.create,init,type:0 -msgid "Open Report" -msgstr "Ανοικτή Αναφορά" - -#. module: base -#: field:res.currency,rounding:0 -msgid "Rounding factor" -msgstr "Παράγοντας στρογγυλοποίησης" - -#. module: base -#: model:ir.model,name:base.model_res_company -msgid "res.company" -msgstr "res.company" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "System upgrade done" -msgstr "System upgrade done" - -#. module: base -#: model:res.country,name:base.so -msgid "Somalia" -msgstr "Somalia" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_simple_view_form -msgid "Configure Simple View" -msgstr "Ρυθμίσεις Απλής Προβολής" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_13 -msgid "Important customers" -msgstr "Σημαντικοί Πελάτες" - -#. module: base -#: field:res.request,act_to:0 field:res.request.history,act_to:0 -msgid "To" -msgstr "Σε" - -#. module: base -#: field:ir.cron,args:0 -msgid "Arguments" -msgstr "Arguments" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "sxw" -msgstr "sxw" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The value \"%s\" for the field \"%s\" is not in the selection" -msgstr "Η τιμή \"%s\" για οτ πεδίο \"%s\" δεν είναι επιλεγμένη!" - -#. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "Automatic XSL:RML" - -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Manual domain setup" - -#. module: base -#: field:res.partner,customer:0 -#: model:res.partner.category,name:base.res_partner_category_0 -#: selection:res.partner.event,partner_type:0 -msgid "Customer" -msgstr "Πελάτης" - -#. module: base -#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 -msgid "Report Name" -msgstr "Όνομα Αναφοράς" - -#. module: base -#: field:ir.module.module,shortdesc:0 -msgid "Short Description" -msgstr "Σύντομη Περιγραφή" - -#. module: base -#: field:res.partner.event,partner_type:0 -msgid "Partner Relation" -msgstr "Σχέση Πελάτη" - -#. module: base -#: field:ir.actions.act_window,context:0 -msgid "Context Value" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Hour 00->24: %(h24)s" -msgstr "Ώρα 00->24: %(h24)s" - -#. module: base -#: field:res.request.history,date_sent:0 -msgid "Date sent" -msgstr "Ημερ/νία Αποστολής" - -#. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Μήνας: %(month)s" - -#. module: base -#: field:ir.actions.act_window.view,sequence:0 -#: field:ir.actions.server,sequence:0 field:ir.actions.todo,sequence:0 -#: field:ir.module.repository,sequence:0 -#: field:ir.report.custom.fields,sequence:0 view:ir.sequence:0 -#: field:ir.ui.menu,sequence:0 field:ir.ui.view_sc,sequence:0 -#: field:res.partner.bank,sequence:0 -#: field:wizard.ir.model.menu.create.line,sequence:0 -msgid "Sequence" -msgstr "Αρίθμηση" - -#. module: base -#: model:res.country,name:base.tn -msgid "Tunisia" -msgstr "Tunisia" - -#. module: base -#: field:ir.actions.wizard,name:0 -msgid "Wizard Info" -msgstr "Wizard Info" - -#. module: base -#: help:ir.cron,numbercall:0 -msgid "" -"Number of time the function is called,\n" -"a negative number indicates that the function will always be called" -msgstr "" -"Number of time the function is called,\n" -"a negative number indicates that the function will always be called" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Install" -msgstr "Cancel Install" - -#. module: base -#: view:res.lang:0 -msgid "Legends for Date and Time Formats" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Monthly" -msgstr "Μηνιαία" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_som-act -#: model:ir.ui.menu,name:base.menu_res_partner_som-act -msgid "States of mind" -msgstr "Ψυχικές διαθέσεις" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_ASCENDING" -msgstr "STOCK_SORT_ASCENDING" - -#. module: base -#: view:ir.model:0 view:res.groups:0 -msgid "Access Rules" -msgstr "Κανονισμοί Προσβάσεων" - -#. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Table Ref." - -#. module: base -#: field:res.roles,parent_id:0 -msgid "Parent" -msgstr "Γονέας" - -#. module: base -#: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 -#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 -#: field:ir.model,model:0 field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 field:ir.model.grid,model:0 -#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 field:ir.ui.view,model:0 -#: field:ir.values,model_id:0 field:res.request.link,object:0 -#: field:wizard.ir.model.menu.create,model_id:0 -#: field:workflow.triggers,model:0 -msgid "Object" -msgstr "Αντικείμενο" - -#. module: base -#: model:ir.model,name:base.model_ir_default -msgid "ir.default" -msgstr "ir.default" - -#. module: base -#: view:ir.sequence:0 -msgid "Minute: %(min)s" -msgstr "Λεπτά: %(min)s" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" -msgstr "Χρονοδιάγραμμα" - -#. module: base -#: view:res.lang:0 -msgid "%w - Weekday as a decimal number [0(Sunday),6]." -msgstr "%w - Η ημέρα της εβδομάδας σε δεκαδική μορφή [0 Κυριακή, 1 Δευτέρα... 6 Σάββατο]." - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export translation file" -msgstr "Εξαγωγή Αρχείου Ματάφρασης" - -#. module: base -#: field:ir.ui.view_sc,user_id:0 -msgid "User Ref." -msgstr "User Ref." - -#. module: base -#: model:ir.ui.menu,name:base.menu_base_config -#: model:ir.ui.menu,name:base.menu_config view:res.company:0 -msgid "Configuration" -msgstr "Ρυθμίσεις" - -#. module: base -#: field:ir.actions.server,expression:0 -msgid "Loop Expression" -msgstr "Loop Expression" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" -msgstr "Πωλητής Λιανικής" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Σε μορφή πίνακα" - -#. module: base -#: field:ir.actions.todo,start_on:0 -msgid "Start On" -msgstr "Start On" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_5 -msgid "Gold Partner" -msgstr "Χρυσός Συνεργάτης" - -#. module: base -#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 -#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 -#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 -msgid "Partner" -msgstr "Συνεργάτης" - -#. module: base -#: model:res.country,name:base.tr -msgid "Turkey" -msgstr "Turkey" - -#. module: base -#: model:res.country,name:base.fk -msgid "Falkland Islands" -msgstr "Falkland Islands" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "odt" -msgstr "odt" - -#. module: base -#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 -#: field:ir.report.custom,type:0 -msgid "Report Type" -msgstr "Τύπος Αναφοράς" - -#. module: base -#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 -#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 -#: field:maintenance.contract,state:0 field:res.bank,state:0 -#: view:res.country.state:0 field:res.partner.bank,state_id:0 -#: field:res.request,state:0 field:workflow.instance,state:0 -#: field:workflow.workitem,state:0 -msgid "State" -msgstr "Κατάσταση" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "Other proprietary" -msgstr "Άλλα περουσιακά" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administration" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation -#: model:ir.ui.menu,name:base.menu_action_translation -msgid "All terms" -msgstr "Όλοι οι όροι" - -#. module: base -#: model:res.country,name:base.no -msgid "Norway" -msgstr "Norway" - -#. module: base -#: view:res.lang:0 -msgid "4. %b, %B ==> Dec, December" -msgstr "4. %b, %B ==> Δεκ, Δεκέμβριος" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Load an Official Translation" -msgstr "Φόρτωση Επίσημης Μετάφρασης" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_10 -msgid "Open Source Service Company" -msgstr "Open Source Service Company" - -#. module: base -#: selection:res.request,state:0 -msgid "waiting" -msgstr "σε αναμονή" - -#. module: base -#: field:ir.attachment,link:0 -msgid "Link" -msgstr "Σύνδεσμος" - -#. module: base -#: model:ir.model,name:base.model_workflow_triggers -msgid "workflow.triggers" -msgstr "workflow.triggers" - -#. module: base -#: field:ir.report.custom.fields,report_id:0 -msgid "Report Ref" -msgstr "Report Ref" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-hr" -msgstr "terp-hr" - -#. module: base -#: help:ir.actions.wizard,multi:0 -msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND" -msgstr "STOCK_DND" - -#. module: base -#: model:res.country,name:base.hm -msgid "Heard and McDonald Islands" -msgstr "Heard and McDonald Islands" - -#. module: base -#: field:ir.actions.act_window,view_id:0 -msgid "View Ref." -msgstr "View Ref." - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch (Belgium) / Nederlands (Belgïe)" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_repository_tree -#: view:ir.module.repository:0 -#: model:ir.ui.menu,name:base.menu_module_repository_tree -msgid "Repository list" -msgstr "Κατάλογος αποθηκών" - -#. module: base -#: field:res.company,rml_header1:0 -msgid "Report Header" -msgstr "Report Header" - -#. module: base -#: field:res.roles,child_id:0 -msgid "Children" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 -#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 -#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 -#: field:ir.actions.wizard,type:0 -msgid "Action Type" -msgstr "Τύπος Ενέργειας" - -#. module: base -#: field:res.partner.bank.type,field_ids:0 -msgid "Type fields" -msgstr "Τύποι πεδίων " - -#. module: base -#: field:ir.module.module,category_id:0 -msgid "Category" -msgstr "Κατηγορία" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FLOPPY" -msgstr "STOCK_FLOPPY" - -#. module: base -#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 -msgid "SMS" -msgstr "SMS" - -#. module: base -#: model:res.country,name:base.cr -msgid "Costa Rica" -msgstr "Costa Rica" - -#. module: base -#: code:addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "Your can't submit bug reports due to uncovered modules: %s" -msgstr "" - -#. module: base -#: view:ir.model:0 view:res.request:0 -msgid "Status" -msgstr "Κατάσταση" - -#. module: base -#: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 -msgid "Currencies" -msgstr "Νομίσματα" - -#. module: base -#: view:ir.sequence:0 -msgid "Hour 00->12: %(h12)s" -msgstr "Ώρα 00->12: %(h12)s" - -#. module: base -#: help:res.partner.address,active:0 -msgid "Uncheck the active field to hide the contact." -msgstr "Ξετικάρετε το ενεργό πεδίο για να κρύψετε την επαφή" - -#. module: base -#: model:res.country,name:base.dk -msgid "Denmark" -msgstr "Denmark" - -#. module: base -#: field:res.country,code:0 -msgid "Country Code" -msgstr "Κωδικός Χώρας" - -#. module: base -#: model:ir.model,name:base.model_workflow_instance -msgid "workflow.instance" -msgstr "workflow.instance" - -#. module: base -#: view:res.lang:0 -msgid "10. %S ==> 20" -msgstr "10. %S ==> 20" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "undefined get method !" -msgstr "undefined get method !" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_madam -msgid "Madam" -msgstr "Κυρία" - -#. module: base -#: model:res.country,name:base.ee -msgid "Estonia" -msgstr "Estonia" - -#. module: base -#: model:res.country,name:base.nl -msgid "Netherlands" -msgstr "Netherlands / Ολλανδία" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_4 -msgid "Low Level Objects" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom -msgid "ir.report.custom" -msgstr "ir.report.custom" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Purchase Offer" -msgstr "Προσφορά Αγοράς" - -#. module: base -#: model:ir.model,name:base.model_ir_values -msgid "ir.values" -msgstr "ir.values" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_FIT" -msgstr "STOCK_ZOOM_FIT" - -#. module: base -#: model:res.country,name:base.cd -msgid "Congo, The Democratic Republic of the" -msgstr "Congo, The Democratic Republic of the" - -#. module: base -#: view:res.request:0 field:res.request,body:0 -#: field:res.request.history,req_id:0 -msgid "Request" -msgstr "Αίτηση" - -#. module: base -#: model:res.country,name:base.jp -msgid "Japan" -msgstr "Japan" - -#. module: base -#: field:ir.cron,numbercall:0 -msgid "Number of Calls" -msgstr "Αριθμός Κλήσεων" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Language file loaded." -msgstr "Το αρχείο γλώσσας φορτώθηκε" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_info:0 -msgid "Modules to update" -msgstr "Modules to update" - -#. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Οργανόγραμμα Εταιρείας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_BOTTOM" -msgstr "STOCK_GOTO_BOTTOM" - -#. module: base -#: help:ir.actions.server,sequence:0 -msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." -msgstr "Σημαντικό όταν έχουμε πολλές ενέργειες. Η εκτέλεσή τους θα καθορίζεται από αυτό, το μικρότερο νούμερο σημαίνει μεγαλύτερη προτεραιότητα." - -#. module: base -#: field:ir.actions.report.xml,header:0 -msgid "Add RML header" -msgstr "Add RML header" - -#. module: base -#: model:res.country,name:base.gr -msgid "Greece" -msgstr "Greece / Ελλάδα" - -#. module: base -#: field:res.request,trigger_date:0 -msgid "Trigger Date" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Croatian / hrvatski jezik" -msgstr "Croatian / hrvatski jezik" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_FORWARD" -msgstr "STOCK_GO_FORWARD" - -#. module: base -#: help:ir.actions.server,code:0 -msgid "Python code to be executed" -msgstr "Python code to be executed" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Uninstallable" - -#. module: base -#: view:res.partner.category:0 -msgid "Partner Category" -msgstr "Κατηγορία Συνεργάτη" - -#. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 -msgid "Trigger" -msgstr "" - -#. module: base -#: field:ir.model.fields,translate:0 -msgid "Translate" -msgstr "Μετάφραση" - -#. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" -msgstr "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" - -#. module: base -#: field:res.request.history,body:0 -msgid "Body" -msgstr "Σώμα" - -#. module: base -#: wizard_button:res.partner.spam_send,init,send:0 -msgid "Send Email" -msgstr "Αποστολή Email" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_FONT" -msgstr "STOCK_SELECT_FONT" - -#. module: base -#: field:res.users,menu_id:0 -msgid "Menu Action" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "choose" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Graph" -msgstr "" - -#. module: base -#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 -msgid "Partner Ref." -msgstr "Εταιρική Αναφ." - -#. module: base -#: field:ir.report.custom,print_format:0 -msgid "Print format" -msgstr "Μορφή Εκτύπωσης" - -#. module: base -#: model:ir.ui.menu,name:base.menu_low_workflow -msgid "Workflow Items" -msgstr "" - -#. module: base -#: field:res.request,ref_doc2:0 -msgid "Document Ref 2" -msgstr "Document Ref 2" - -#. module: base -#: field:res.request,ref_doc1:0 -msgid "Document Ref 1" -msgstr "Document Ref 1" - -#. module: base -#: model:res.country,name:base.ga -msgid "Gabon" -msgstr "Gabon" - -#. module: base -#: model:ir.model,name:base.model_ir_model_data -msgid "ir.model.data" -msgstr "ir.model.data" - #. module: base #: view:ir.model:0 view:res.groups:0 msgid "Access Rights" @@ -6290,15 +2113,36 @@ msgid "Greenland" msgstr "Greenland (Γροιλανδία)" #. module: base -#: help:ir.actions.report.xml,report_rml:0 -msgid "The .rml path of the file or NULL if the content is in report_rml_content" -msgstr "The .rml path of the file or NULL if the content is in report_rml_content" +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Χαμηλή" #. module: base #: field:res.partner.bank,acc_number:0 msgid "Account Number" msgstr "Αριθμός Λογαριασμού" +#. module: base +#: view:res.users:0 +msgid "Skip" +msgstr "Skip" + +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" +msgstr "Δημιουργήστε μενού" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "STOCK_MEDIA_RECORD" + +#. module: base +#: model:res.country,name:base.in +msgid "India" +msgstr "Ινδία" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -6314,41 +2158,193 @@ msgstr "Η εμφάνιση του μενού αυτού βασίζεται στ msgid "New Caledonia (French)" msgstr "New Caledonia (French)" +#. module: base +#: model:res.country,name:base.ls +msgid "Lesotho" +msgstr "Lesotho" + +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "Μετάφραση" + #. module: base #: field:res.partner.function,name:0 msgid "Function Name" msgstr "Όνομα Λειτουργίας" #. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Cancel" -msgstr "_Cancel" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "Προβολή:" #. module: base -#: model:res.country,name:base.cy -msgid "Cyprus" -msgstr "Cyprus" +#: model:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Grant Access To Menus" +msgstr "Πρόσβαση στα Menu" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 -msgid "Subject" -msgstr "Υποκείμενο" +#: field:res.partner.category,name:0 +msgid "Category Name" +msgstr "Όνομα Κατηγορίας" + +#. module: base +#: view:res.config.view:0 +msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." +msgstr "Επιλέξτε την απλοποιημένη μορφή αν δοκιμάζετε το OpenERP για πρώτη φορά. Οι λιγότερο συνηθισμένες επιλογές και πεδία δεν θα προβάλονται. Μπορείτε να το αλλάξετε αυτό αργότερα από το μενού της Διαχείρισης." + +#. module: base +#: model:res.country,name:base.tz +msgid "Tanzania" +msgstr "Tanzania" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "STOCK_JUSTIFY_CENTER" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "User ID" + +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "Ετικέτες" #. module: base #: field:res.request,act_from:0 field:res.request.history,act_from:0 msgid "From" msgstr "Από" +#. module: base +#: model:res.country,name:base.cz +msgid "Czech Republic" +msgstr "Czech Republic" + +#. module: base +#: model:res.country,name:base.mr +msgid "Mauritania" +msgstr "Μαυριτανία" + +#. module: base +#: model:res.country,name:base.sb +msgid "Solomon Islands" +msgstr "Solomon Islands" + +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "Επιλεγμένο Παράθυρο" + +#. module: base +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "Ο ΦΠΑ δε φαίνεται σωστός" + +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "client_action_multi, client_action_relate" + +#. module: base +#: model:res.country,name:base.ad +msgid "Andorra, Principality of" +msgstr "Andorra, Principality of" + +#. module: base +#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 +msgid "Child Categories" +msgstr "Υποκατηγορίες" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" msgstr "Επόμενο" +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "TGZ Archive" +msgstr "Αρχείο TGZ" + +#. module: base +#: model:res.country,name:base.bm +msgid "Bermuda" +msgstr "Bermuda" + +#. module: base +#: model:res.country,name:base.pe +msgid "Peru" +msgstr "Peru" + +#. module: base +#: field:res.partner.som,factor:0 +msgid "Factor" +msgstr "Παράγοντας" + +#. module: base +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "%B - Πλήρες όνομα μήνα." + +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "Εmail αποστολέα" + +#. module: base +#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 +#: field:ir.values,key:0 view:res.partner:0 +msgid "Type" +msgstr "Τύπος" + +#. module: base +#: model:res.country,name:base.bj +msgid "Benin" +msgstr "Benin" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Skipped" +msgstr "Skipped" + #. module: base #: selection:ir.ui.menu,icon:0 -msgid "terp-report" -msgstr "terp-report" +msgid "STOCK_ZOOM_IN" +msgstr "STOCK_ZOOM_IN" + +#. module: base +#: view:res.lang:0 +msgid "8. %I:%M:%S %p ==> 06:25:20 PM" +msgstr "8. %I:%M:%S %p ==> 06:25:20 μ.μ." + +#. module: base +#: model:res.country,name:base.mx +msgid "Mexico" +msgstr "Mexico" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "res.partner.title" + +#. module: base +#: model:res.country,name:base.gu +msgid "Guam (USA)" +msgstr "Guam (USA)" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "ir.actions.actions" + +#. module: base +#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation +msgid "Translations" +msgstr "Μεταφράσεις" #. module: base #: field:ir.actions.report.xml,report_rml_content:0 @@ -6356,21 +2352,75 @@ msgstr "terp-report" msgid "RML content" msgstr "RML content" +#. module: base +#: field:ir.report.custom.fields,field_child3:0 +msgid "Field child3" +msgstr "Field child3" + #. module: base #: view:workflow.activity:0 msgid "Incoming transitions" msgstr "Εισερχόμενες μεταβάσεις" +#. module: base +#: model:res.country,name:base.tn +msgid "Tunisia" +msgstr "Tunisia" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Not Searchable" +msgstr "" + #. module: base #: model:res.country,name:base.cn msgid "China" msgstr "China" #. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password empty !" -msgstr "Κενό Password!" +#: field:res.partner.event.type,key:0 +msgid "Key" +msgstr "Key" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OK" +msgstr "STOCK_OK" + +#. module: base +#: field:ir.cron,nextcall:0 +msgid "Next Call Date" +msgstr "Επόμενη Ημερ/νία Κλήσης" + +#. module: base +#: field:res.company,rml_header:0 +msgid "RML Header" +msgstr "RML Header" + +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Set" + +#. module: base +#: model:res.country,name:base.ua +msgid "Ukraine" +msgstr "Ukraine" + +#. module: base +#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "Εικονικό" + +#. module: base +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Invalid XML for View Architecture!" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" +msgstr "ir.exports" #. module: base #: model:res.country,name:base.eh @@ -6383,9 +2433,54 @@ msgid "workflow" msgstr "ροή εργασίας" #. module: base -#: model:res.country,name:base.id -msgid "Indonesia" -msgstr "Indonesia" +#: wizard_field:res.partner.sms_send,init,app_id:0 +msgid "API ID" +msgstr "API ID" + +#. module: base +#: model:res.country,name:base.ky +msgid "Cayman Islands" +msgstr "Cayman Islands" + +#. module: base +#: field:ir.rule.group,rules:0 +msgid "Tests" +msgstr "Tests" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 +msgid "Module Category" +msgstr "Module Category" + +#. module: base +#: model:res.country,name:base.mu +msgid "Mauritius" +msgstr "Mauritius" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "Οδηγός αναφοράς" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "Scan for new modules" +msgstr "Scan for new modules" + +#. module: base +#: model:ir.model,name:base.model_ir_module_repository +msgid "Module Repository" +msgstr "Module Repository" + +#. module: base +#: model:res.country,name:base.ml +msgid "Mali" +msgstr "Mali" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" +msgstr "STOCK_UNINDENT" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -6393,15 +2488,31 @@ msgid "At Once" msgstr "" #. module: base -#: selection:ir.actions.server,state:0 -msgid "Write Object" -msgstr "" +#: model:ir.ui.menu,name:base.menu_security +msgid "Security" +msgstr "Ασφάλεια" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +msgid "Report Custom" +msgstr "Ειδική Αναφορά" #. module: base #: model:res.country,name:base.bg msgid "Bulgaria" msgstr "Bulgaria" +#. module: base +#: field:ir.cron,interval_number:0 +msgid "Interval Number" +msgstr "Interval Number" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND" +msgstr "STOCK_FIND" + #. module: base #: model:res.country,name:base.ao msgid "Angola" @@ -6412,6 +2523,21 @@ msgstr "Angola" msgid "French Southern Territories" msgstr "French Southern Territories" +#. module: base +#: model:res.country,name:base.td +msgid "Chad" +msgstr "Chad" + +#. module: base +#: model:res.country,name:base.za +msgid "South Africa" +msgstr "South Africa" + +#. module: base +#: model:res.country,name:base.tk +msgid "Tokelau" +msgstr "Tokelau" + #. module: base #: view:ir.actions.server:0 msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" @@ -6422,6 +2548,35 @@ msgstr "" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. module: base +#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 field:res.groups,model_access:0 +msgid "Access Controls" +msgstr "Ρυθμίσεις Πρόσβασης" + +#. module: base +#: model:res.country,name:base.bn +msgid "Brunei Darussalam" +msgstr "Brunei Darussalam" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_lang_export +msgid "wizard.module.lang.export" +msgstr "wizard.module.lang.export" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Installed" +msgstr "Installed" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +msgid "Partner Functions" +msgstr "Λειτουργίες Συνεργατών" + #. module: base #: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 #: view:res.currency:0 field:res.currency,name:0 @@ -6430,9 +2585,19 @@ msgid "Currency" msgstr "Νόμισμα" #. module: base -#: field:res.partner.canal,name:0 -msgid "Channel Name" -msgstr "" +#: view:res.lang:0 +msgid "%Y - Year with century as a decimal number." +msgstr "%Y - Το έτος (πλήρως)." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish (AR) / Español (AR)" +msgstr "Spanish (AR) / Español (AR)" + +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "workflow.triggers" #. module: base #: view:res.lang:0 @@ -6440,55 +2605,295 @@ msgid "5. %y, %Y ==> 08, 2008" msgstr "5. %y, %Y ==> 08, 2008" #. module: base -#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 -msgid "Object ID" -msgstr "ID Αντικειμένου" +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "module,type,name,res_id,src,value" #. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Landscape" -msgstr "Τοπίο" +#: model:res.country,name:base.sa +msgid "Saudi Arabia" +msgstr "Saudi Arabia" + +#. module: base +#: model:res.country,name:base.hu +msgid "Hungary" +msgstr "Hungary" + +#. module: base +#: model:res.country,name:base.ne +msgid "Niger" +msgstr "Νίγηρας" + +#. module: base +#: model:res.country,name:base.ba +msgid "Bosnia-Herzegovina" +msgstr "Bosnia-Herzegovina" + +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "Διάταξη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" +msgstr "STOCK_UNDO" + +#. module: base +#: model:res.country,name:base.br +msgid "Brazil" +msgstr "Brazil" + +#. module: base +#: help:ir.rule.group,rules:0 +msgid "The rule is satisfied if at least one test is True" +msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Weeks" +msgstr "Εβδομάδες" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr ">=" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" +msgstr "ir.actions.report.xml" #. module: base #: model:ir.ui.menu,name:base.menu_administration msgid "Administration" msgstr "Διαχείριση" +#. module: base +#: field:ir.sequence,number_next:0 +msgid "Next Number" +msgstr "Επόμενος Αριθμός" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "Get file" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "This function will check for new modules in the 'addons' path and on module repositories:" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid "child_of" msgstr "child_of" +#. module: base +#: view:res.currency:0 field:res.currency,rate_ids:0 +msgid "Rates" +msgstr "Ποσοστά" + +#. module: base +#: view:res.lang:0 +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 - Ο αριθμός της εβδομάδας στο χρόνο (με Δευτέρα πρώτη ημέρα της εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του νέου χρόνου πριν την πρώτη Δευτέρα θεωρούνται εβδομάδα 0." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_BACK" +msgstr "STOCK_GO_BACK" + +#. module: base +#: model:res.country,name:base.sy +msgid "Syria" +msgstr "Syria" + +#. module: base +#: view:res.lang:0 +msgid "======================================================" +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" +msgstr "Επικυρωμένο" + +#. module: base +#: field:ir.report.custom.fields,field_child2:0 +msgid "Field child2" +msgstr "" + +#. module: base +#: field:ir.values,key2:0 view:res.partner.event.type:0 +#: field:res.partner.event.type,name:0 +msgid "Event Type" +msgstr "Τύπος Συμβάντος" + +#. module: base +#: field:ir.report.custom.fields,field_child0:0 +msgid "Field child0" +msgstr "Field child0" + +#. module: base +#: field:ir.report.custom.fields,field_child1:0 +msgid "Field child1" +msgstr "Field child1" + +#. module: base +#: field:ir.module.module,website:0 field:res.partner,website:0 +msgid "Website" +msgstr "Ιστοσελίδα" + +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Field Selection" +msgstr "Field Selection" + +#. module: base +#: view:res.roles:0 +msgid "Role" +msgstr "Ρόλος" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "https://translations.launchpad.net/openobject" +msgstr "https://translations.launchpad.net/openobject" + #. module: base #: model:res.country,name:base.ir msgid "Iran" msgstr "Iran" +#. module: base +#: model:res.country,name:base.dz +msgid "Algeria" +msgstr "Algeria" + #. module: base #: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 #: field:wizard.module.lang.export,state:0 msgid "unknown" msgstr "άγνωστο" +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_som-act +#: model:ir.ui.menu,name:base.menu_res_partner_som-act +msgid "States of mind" +msgstr "Ψυχικές διαθέσεις" + +#. module: base +#: model:res.country,name:base.gs +msgid "S. Georgia & S. Sandwich Isls." +msgstr "S. Georgia & S. Sandwich Isls." + +#. module: base +#: field:ir.actions.url,url:0 +msgid "Action URL" +msgstr "Action URL" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "STOCK_REMOVE" + #. module: base #: field:ir.ui.view_sc,res_id:0 msgid "Resource Ref." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "STOCK_JUSTIFY_FILL" + +#. module: base +#: model:res.country,name:base.mh +msgid "Marshall Islands" +msgstr "Marshall Islands" + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" +msgstr "ir.model.access" + +#. module: base +#: field:res.currency.rate,name:0 field:res.partner,date:0 +#: field:res.partner.event,date:0 field:res.request,date_sent:0 +msgid "Date" +msgstr "Ημερ/νία" + #. module: base #: model:res.country,name:base.ki msgid "Kiribati" msgstr "Kiribati" +#. module: base +#: model:res.country,name:base.ht +msgid "Haiti" +msgstr "Haiti" + #. module: base #: model:res.country,name:base.iq msgid "Iraq" msgstr "Iraq" #. module: base -#: view:ir.actions.server:0 -msgid "Action to Launch" -msgstr "Επιλογή Ενέργειας" +#: view:ir.attachment:0 field:ir.attachment,datas:0 +msgid "Data" +msgstr "Δεδομένα" + +#. module: base +#: selection:ir.translation,type:0 +msgid "RML" +msgstr "RML" + +#. module: base +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." +msgstr "Οι Ομάδες χρησιμοποιούνται για τον ορισμό δικαιωμάτων πρόσβασης στις οθόνες και τα μενού." + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +msgid "Partners by Categories" +msgstr "Συνεργάτες ανά Κατηγορίες" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 +msgid "Requests" +msgstr "Αιτήσεις" + +#. module: base +#: model:res.country,name:base.cl +msgid "Chile" +msgstr "Chile (Χιλή)" + +#. module: base +#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "Γλώσσα" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "XSL" + +#. module: base +#: model:res.country,name:base.gm +msgid "Gambia" +msgstr "Gambia" #. module: base #: wizard_view:base.module.import,import:0 @@ -6496,6 +2901,23 @@ msgstr "Επιλογή Ενέργειας" msgid "Module import" msgstr "Εισαγωγή Module" +#. module: base +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "tree_but_action, client_print_multi" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 +msgid "Companies" +msgstr "Εταιρείες" + +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 +msgid "If set to true, the action will not be displayed on the right toolbar of a form view." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -6503,15 +2925,50 @@ msgid "Suppliers Partners" msgstr "Προμηθευτές" #. module: base -#: model:ir.model,name:base.model_ir_sequence_type -msgid "ir.sequence.type" -msgstr "ir.sequence.type" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Για εξαγωγή νέας γλώσσας, μην επιλέξετε καμμία γλώσσα." + +#. module: base +#: model:res.country,name:base.be +msgid "Belgium" +msgstr "Belgium" #. module: base #: selection:wizard.module.lang.export,format:0 msgid "CSV File" msgstr "Αρχείο CSV" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Συνημμένο με" + +#. module: base +#: field:res.lang,decimal_point:0 +msgid "Decimal Separator" +msgstr "Υποδιαστολή" + +#. module: base +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" +msgstr "SXW path" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" +msgstr "STOCK_MEDIA_PLAY" + +#. module: base +#: field:ir.model.data,date_init:0 +msgid "Init Date" +msgstr "Αρχική Ημερ/νία" + +#. module: base +#: field:res.company,rml_header2:0 +msgid "RML Internal Header" +msgstr "RML Internal Header" + #. module: base #: selection:ir.model,state:0 selection:ir.model.grid,state:0 msgid "Base Object" @@ -6540,31 +2997,61 @@ msgstr "(year)=" msgid "Dependencies :" msgstr "Dependencies :" +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "Χαρακτηριστικά" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-partner" msgstr "terp-partner" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Bad query." -msgstr "Bad query." +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "Δημιουργός" + +#. module: base +#: view:ir.actions.server:0 field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +msgid "Python Code" +msgstr "Python Code" + +#. module: base +#: model:res.country,name:base.gq +msgid "Equatorial Guinea" +msgstr "Equatorial Guinea" #. module: base #: field:ir.model.fields,field_description:0 msgid "Field Label" msgstr "Όνομα Πεδίου" +#. module: base +#: model:ir.module.module,description:base.module_meta_information +msgid "The kernel of OpenERP, needed for all installation." +msgstr "The kernel of OpenERP, needed for all installation." + +#. module: base +#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 +msgid "View Mode" +msgstr "Τρόπος Προβολής" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Swedish / svenska" +msgstr "Swedish / svenska" + #. module: base #: model:res.country,name:base.dj msgid "Djibouti" msgstr "Djibouti" #. module: base -#: field:ir.translation,value:0 -msgid "Translation Value" -msgstr "Μετάφραση" +#: field:ir.report.custom,frequency:0 +msgid "Frequency" +msgstr "Συχνότητα" #. module: base #: model:res.country,name:base.ag @@ -6572,20 +3059,61 @@ msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #. module: base -#: field:ir.actions.server,condition:0 -#: field:ir.report.custom.fields,fc0_condition:0 -#: field:workflow.transition,condition:0 -msgid "Condition" -msgstr "Συνθήκη" +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +msgid "Import a Translation File" +msgstr "Εισαγωγή Αρχείου Μετάφρασης" #. module: base -#: model:res.country,name:base.zr -msgid "Zaire" -msgstr "Zaire" +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.ui.menu,name:base.menu_partner_customer_form +msgid "Customers Partners" +msgstr "Πελάτες" #. module: base -#: field:ir.model.data,res_id:0 field:ir.translation,res_id:0 -#: field:workflow.instance,res_id:0 field:workflow.triggers,res_id:0 +#: field:res.company,child_ids:0 +msgid "Child Companies" +msgstr "Θυγατρικές Εταιρείες" + +#. module: base +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Πρόσβαση Ανάγνωσης" + +#. module: base +#: model:ir.ui.menu,name:base.menu_management +msgid "Modules Management" +msgstr "Διαχείριση Modules" + +#. module: base +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" +msgstr "Repeat Header" + +#. module: base +#: model:res.country,name:base.ni +msgid "Nicaragua" +msgstr "Nicaragua" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "html" + +#. module: base +#: model:res.country,name:base.ck +msgid "Cook Islands" +msgstr "Cook Islands" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Source Activity" + +#. module: base +#: field:ir.attachment,res_id:0 field:ir.model.data,res_id:0 +#: field:ir.translation,res_id:0 field:workflow.instance,res_id:0 +#: field:workflow.triggers,res_id:0 msgid "Resource ID" msgstr "" @@ -6596,9 +3124,29 @@ msgid "Information" msgstr "Πληροφορίες" #. module: base -#: view:wizard.module.lang.export:0 -msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." -msgstr "Η επίσημη μετάφραση του OpenERP/OpenObjects module γίνονται με κειμενογράφο. Για το συγχρονισμό όλων των προσπαθειών χρησιμοποιούμε το online interface." +#: selection:wizard.module.lang.export,format:0 +msgid "PO File" +msgstr "Αρχείο PO" + +#. module: base +#: view:res.partner.event:0 +msgid "General Description" +msgstr "Γενική Περιγραφή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MISSING_IMAGE" +msgstr "STOCK_MISSING_IMAGE" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "Ορισμός Νέων Χρηστών" + +#. module: base +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Ουδέτερη Ζώνη" #. module: base #: field:ir.actions.report.xml,report_rml:0 @@ -6610,26 +3158,66 @@ msgstr "RML path" msgid "Next Configuration Wizard" msgstr "Επόμενος Wizard Ρυθμίσεων" +#. module: base +#: model:ir.model,name:base.model_ir_rule_group +msgid "ir.rule.group" +msgstr "ir.rule.group" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation Done" +msgstr "Η εγκατάσταση ολοκληρώθηκε" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Maintenance contract added !" +msgstr "Το Συβόλαιο Συντήρησης προστέθηκε!" + +#. module: base +#: field:ir.rule,field_id:0 selection:ir.translation,type:0 +msgid "Field" +msgstr "Πεδίο" + #. module: base #: selection:ir.actions.todo,type:0 selection:res.partner.address,type:0 msgid "Other" msgstr "Άλλο" #. module: base -#: view:res.request:0 -msgid "Reply" -msgstr "Απάντηση" +#: help:ir.actions.server,email:0 +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 "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" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Turkish / Türkçe" -msgstr "Turkish / Türkçe" +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "Formula" + +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Όνομα Ρόλου" #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" msgstr "Ειασγωγή νέας Γλώσσας" +#. module: base +#: model:res.country,name:base.ve +msgid "Venezuela" +msgstr "Venezuela" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Installed version" +msgstr "Εγκατεστημένη Έκδοση" + +#. module: base +#: view:res.lang:0 +msgid "9. %j ==> 340" +msgstr "9. %j ==> 340" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form #: model:ir.ui.menu,name:base.menu_workflow_activity view:workflow:0 @@ -6637,11 +3225,72 @@ msgstr "Ειασγωγή νέας Γλώσσας" msgid "Activities" msgstr "Δραστηριότητες" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Αφοσιωμένος Πωλητής" + +#. module: base +#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 +msgid "Parent Menu" +msgstr "Επάνω Μενού" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "Εξαγωγή Αρχείου Μετάφρασης" + +#. module: base +#: model:res.country,name:base.is +msgid "Iceland" +msgstr "Iceland" + +#. module: base +#: model:res.country,name:base.zm +msgid "Zambia" +msgstr "Zambia" + #. module: base #: field:ir.actions.act_window,auto_refresh:0 msgid "Auto-Refresh" msgstr "Auto-Refresh" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "-" + +#. module: base +#: model:res.country,name:base.mw +msgid "Malawi" +msgstr "Malawi" + +#. module: base +#: field:ir.attachment,name:0 +msgid "Attachment Name" +msgstr "Όνομα Συνημμένου" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Upgrade" +msgstr "Ακύρωση Αναβάθμισης" + +#. module: base +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "Week of the year: %(woy)s" + +#. module: base +#: model:res.country,name:base.ci +msgid "Ivory Coast (Cote D'Ivoire)" +msgstr "Ivory Coast (Cote D'Ivoire)" + #. module: base #: selection:ir.report.custom.fields,fc0_op:0 #: selection:ir.report.custom.fields,fc1_op:0 @@ -6651,10 +3300,142 @@ msgid "=" msgstr "=" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Second field should be figures" -msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμητικό" +#: field:res.payterm,name:0 +msgid "Payment Term (short name)" +msgstr "Όρος Πληρωμής (σύντομα)" + +#. module: base +#: model:ir.model,name:base.model_res_bank view:res.bank:0 +#: field:res.partner.bank,bank:0 +msgid "Bank" +msgstr "Τράπεζα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "STOCK_HARDDISK" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "Αναφορές:" + +#. module: base +#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 field:ir.module.category,name:0 +#: field:ir.module.module,name:0 field:ir.module.module.dependency,name:0 +#: rml:ir.module.reference:0 field:ir.module.repository,name:0 +#: field:ir.property,name:0 field:ir.report.custom.fields,name:0 +#: field:ir.rule.group,name:0 field:ir.values,name:0 +#: field:maintenance.contract.module,name:0 field:res.bank,name:0 +#: field:res.config.view,name:0 field:res.lang,name:0 field:res.partner,name:0 +#: field:res.partner.bank.type,name:0 field:res.request.link,name:0 +#: field:res.users,name:0 field:workflow,name:0 field:workflow.activity,name:0 +msgid "Name" +msgstr "Όνομα" + +#. module: base +#: model:ir.model,name:base.model_ir_property +msgid "ir.property" +msgstr "ir.property" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "STOCK_APPLY" + +#. module: base +#: model:res.country,name:base.ms +msgid "Montserrat" +msgstr "Montserrat" + +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "Αναφορές" + +#. module: base +#: wizard_view:server.action.create,init:0 +#: wizard_field:server.action.create,init,type:0 +msgid "Select Action Type" +msgstr "Επιλογή Τύπου Κίνησης" + +#. module: base +#: field:workflow,on_create:0 +msgid "On Create" +msgstr "On Create" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Παρακαλώ επιλέξτε το αρχείο .ZIP για εισαγωγή του module" + +#. module: base +#: view:res.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "Για να αλλαχθεί το password σας θα πρέπει να αποσυνδεθείτε και να επανασυνδεθείτε στο σύστημα." + +#. module: base +#: model:res.country,name:base.gy +msgid "Guyana" +msgstr "Guyana" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "GPL-3" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2" +msgstr "GPL-2" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Resynchronise Terms" +msgstr "Ανασυγχρονισμός Όρων" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese (BR) / português (BR)" +msgstr "Portugese (BR) / português (BR)" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +msgid "ir.sequence.type" +msgstr "ir.sequence.type" + +#. module: base +#: field:ir.actions.server,record_id:0 +msgid "Create Id" +msgstr "Create Id" + +#. module: base +#: model:res.country,name:base.hn +msgid "Honduras" +msgstr "Honduras" + +#. module: base +#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "Προβολή Δομής" + +#. module: base +#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 +msgid "Covered Modules" +msgstr "Modules που καλύπτονται" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Average" +msgstr "Υπολογισμός Μέσου Όρου" + +#. module: base +#: field:res.users,context_tz:0 +msgid "Timezone" +msgstr "Ζώνη Ώρας" #. module: base #: model:ir.actions.act_window,name:base.action_model_grid_security @@ -6663,102 +3444,438 @@ msgid "Access Controls Grid" msgstr "Πλέγμα ελέγχων προσπέλασης" #. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_actions -#: model:ir.ui.menu,name:base.menu_custom_action -#: model:ir.ui.menu,name:base.menu_ir_sequence_actions -#: model:ir.ui.menu,name:base.next_id_6 -msgid "Actions" -msgstr "Ενέργειες" +#: field:ir.module.module,demo:0 +msgid "Demo data" +msgstr "Demo data" #. module: base #: selection:res.request,priority:0 msgid "High" msgstr "Υψηλή" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_instance_form +#: model:ir.ui.menu,name:base.menu_workflow_instance +msgid "Instances" +msgstr "Instances" + +#. module: base +#: model:res.country,name:base.aq +msgid "Antarctica" +msgstr "Antarctica" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" msgstr "Εξαγωγή" +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "Όλες οι ιδιότητες" + +#. module: base +#: wizard_button:module.upgrade,end,config:0 +#: wizard_button:module.upgrade,start,config:0 +msgid "Start configuration" +msgstr "Εκκίνηση ρυθμίσεων" + +#. module: base +#: model:res.country,name:base.na +msgid "Namibia" +msgstr "Namibia" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "STOCK_DISCONNECT" + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "Περιγραφή Πεδίων" + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "Έλεγχος νέων modules" + +#. module: base +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comoros" + +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action +msgid "Server Actions" +msgstr "Server Actions" + +#. module: base +#: model:res.country,name:base.tp +msgid "East Timor" +msgstr "East Timor" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Web" +msgstr "Web" + #. module: base #: help:res.bank,bic:0 msgid "Bank Identifier Code" msgstr "Κώδικας προσδιοριστικών τράπεζας" +#. module: base +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflow Definitions" +msgstr "Ορισμοί Ροών Εργασίας" + #. module: base #: model:res.country,name:base.tm msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:0 code:addons/base/ir/ir_model.py:0 -#: code:addons/base/maintenance/maintenance.py:0 -#: code:addons/base/module/module.py:0 code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 code:report/custom.py:0 -#, python-format -msgid "Error" -msgstr "Σφάλμα" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" +msgstr "STOCK_CDROM" #. module: base -#: model:res.country,name:base.pm -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre and Miquelon" +#: field:workflow.activity,action:0 +msgid "Python Action" +msgstr "Python Action" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "You can also import .po files." + +#. module: base +#: field:res.partner.event,planned_revenue:0 +msgid "Planned Revenue" +msgstr "Προγραμματισμένα Έσοδα" + +#. module: base +#: view:ir.rule.group:0 +msgid "Record rules" +msgstr "Κανόνες αρχείων" + +#. module: base +#: wizard_view:module.lang.import,init:0 +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 "Πρέπει να εισάγετε ένα αρχείο .CSV με κωδικοποίηση UTF-8. Παρακαλώ ελέγξτε ότι η πρώτη γραμμή του αρχείου σας είναι:" + +#. module: base +#: help:res.country,name:0 +msgid "The full name of the country." +msgstr "Πλήρες όνομα χώρας." + +#. module: base +#: model:res.country,name:base.et +msgid "Ethiopia" +msgstr "Ethiopia" + +#. module: base +#: view:res.lang:0 +msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." +msgstr "%H - Η Ώρα (24ωρη μορφή) σε δεκαδική μορφή [00, 23]." + +#. module: base +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." +msgstr "%M - Τα λεπτά της ώρας σε δεκαδική μορφή [00, 59]." #. module: base #: help:ir.actions.report.xml,header:0 msgid "Add or not the coporate RML header" msgstr "Add or not the coporate RML header" +#. module: base +#: help:res.country.state,code:0 +msgid "The state code in three chars.\n" +msgstr "Ο κωδικός πολιτείας αποτελείται από 3 χαρακτήρες\n" + +#. module: base +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" +msgstr "Ακρίβεια Υπολογισμού" + +#. module: base +#: view:ir.rule:0 +msgid "Test" +msgstr "Test" + +#. module: base +#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 +#: selection:ir.translation,type:0 +#: field:wizard.ir.model.menu.create.line,view_id:0 +msgid "View" +msgstr "Προβολή" + #. module: base #: field:res.partner.event,document:0 msgid "Document" msgstr "Έγγραφο" +#. module: base +#: model:res.country,name:base.kg +msgid "Kyrgyz Republic (Kyrgyzstan)" +msgstr "Kyrgyz Republic (Kyrgyzstan)" + +#. module: base +#: view:ir.model:0 view:ir.model.fields:0 +msgid "Security on Groups" +msgstr "Ασφάλεια σε Ομάδες" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REFRESH" msgstr "STOCK_REFRESH" +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Hours" +msgstr "Ώρες" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "Τύποι Αρίθμησης" + #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_STOP" -msgstr "STOCK_STOP" +msgid "STOCK_HOME" +msgstr "STOCK_HOME" + +#. module: base +#: field:res.bank,zip:0 field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "ΤΚ" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FILE" +msgstr "STOCK_FILE" + +#. module: base +#: model:res.country,name:base.uz +msgid "Uzbekistan" +msgstr "Uzbekistan" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be installed" +msgstr "To be installed" #. module: base #: view:wizard.module.update_translations:0 msgid "Update" msgstr "Ανανέωση" +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 +#: model:ir.ui.menu,name:base.menu_ir_cron_act +msgid "Scheduled Actions" +msgstr "Προγραμματισμένες ενέργειες" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_module +msgid "maintenance contract modules" +msgstr "modules συμβολαίου συντήρησης" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_meta_information +msgid "Base" +msgstr "Βάση" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "ir.actions.wizard" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "Σύνδεσμος" + +#. module: base +#: view:res.partner:0 view:res.request:0 field:res.request,history:0 +msgid "History" +msgstr "Ιστορικό" + +#. module: base +#: model:res.country,name:base.mk +msgid "FYROM" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be removed" +msgstr "Προς διαγραφή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_WARNING" +msgstr "STOCK_DIALOG_WARNING" + +#. module: base +#: model:res.country,name:base.lr +msgid "Liberia" +msgstr "Liberia" + #. module: base #: model:ir.actions.report.xml,name:base.ir_module_reference_print msgid "Technical guide" msgstr "Τεχνικός οδηγός" +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "Προορισμός" + +#. module: base +#: help:ir.values,res_id:0 +msgid "Keep 0 if the action must appear on all resources." +msgstr "0 αν η ενέργεια πρέπει να εμφανίζεται σε όλους τους πόρους." + +#. module: base +#: field:ir.cron,interval_type:0 +msgid "Interval Unit" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "cs_CS" +msgstr "cs_CS" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONVERT" msgstr "STOCK_CONVERT" #. module: base -#: model:res.country,name:base.tz -msgid "Tanzania" -msgstr "Tanzania" +#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 +#: field:res.partner,comment:0 field:res.partner.function,ref:0 +msgid "Notes" +msgstr "Σημειώσεις" #. module: base -#: model:res.country,name:base.cx -msgid "Christmas Island" -msgstr "Christmas Island" +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "ir.rule" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "Ημέρες" + +#. module: base +#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "Τιμή" + +#. module: base +#: field:ir.actions.server,write_id:0 +msgid "Write Id" +msgstr "Write Id" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "Ανανέωση Μεταφράσεων" + +#. module: base +#: selection:ir.translation,type:0 field:res.bank,code:0 +#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 +msgid "Code" +msgstr "Κωδικός" + +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" +msgstr "Προεπιλεγμένο Πλάτος" #. module: base #: view:ir.actions.server:0 msgid "Other Actions Configuration" msgstr "Ρυθμίσεις Άλλων Ενεργειών" +#. module: base +#: model:res.country,name:base.mc +msgid "Monaco" +msgstr "Monaco" + +#. module: base +#: field:res.company,rml_footer1:0 +msgid "Report Footer 1" +msgstr "Report Footer 1" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_EXECUTE" msgstr "STOCK_EXECUTE" +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "Λεπτά" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "The modules have been upgraded / installed !" +msgstr "The modules have been upgraded / installed !" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "odt" + +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "Τιμή Τομέα" + +#. module: base +#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 +msgid "Help" +msgstr "Βοήθεια" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "Accepted Links in Requests" + +#. module: base +#: field:ir.module.category,module_nr:0 +msgid "Number of Modules" +msgstr "Number of Modules" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "STOCK_YES" + +#. module: base +#: view:ir.actions.server:0 +msgid "SMS Configuration" +msgstr "Ρύθμιση SMS" + +#. module: base +#: view:ir.cron:0 +msgid "Technical Data" +msgstr "Τεχνικά Δεδομένα" + #. module: base #: model:ir.actions.act_window,name:base.res_partner_canal-act #: model:ir.model,name:base.model_res_partner_canal @@ -6766,21 +3883,111 @@ msgstr "STOCK_EXECUTE" msgid "Channels" msgstr "Κανάλια" +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "Λίστα Προσβάσεων" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "draft" +msgstr "πρόχειρα" + +#. module: base +#: model:res.country,name:base.kn +msgid "Saint Kitts & Nevis Anguilla" +msgstr "Saint Kitts & Nevis Anguilla" + +#. module: base +#: help:ir.actions.server,condition:0 +msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" +msgstr "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" + #. module: base #: view:ir.module.module:0 msgid "Schedule for Installation" msgstr "Προγραμματισμός εγκατάστασης" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Χρονολογία χωρίς τον αιώνα: %(y)s" + #. module: base #: selection:ir.model.fields,select_level:0 msgid "Advanced Search" msgstr "Προχωρημένη Αναζήτηση" +#. module: base +#: view:res.lang:0 +msgid "7. %H:%M:%S ==> 18:25:20" +msgstr "7. %H:%M:%S ==> 18:25:20" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 +msgid "Partners" +msgstr "Συνεργάτες" + +#. module: base +#: help:ir.actions.server,message:0 +msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" +msgstr "Συγκεκριμενοποιήστε το μήνυμα. Μπορείτε να χρησιμοποιήσετε τα πεδία του αντικειμένου, π.χ. \"Αγαπητέ [[ object.partner_id.name ]]\"" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "STOCK_MEDIA_PAUSE" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +msgid "Bank Type" +msgstr "Τύπος Τράπεζας" + +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "Trigger Name" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "Δημιουργήστε" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export ID" +msgstr "Export ID" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "Παρακαλώ επαναφορτώστε το menu tab (Ctrl+t Ctrl+r)." + #. module: base #: view:res.request:0 msgid "Send" msgstr "Αποστολή" +#. module: base +#: model:res.country,name:base.fr +msgid "France" +msgstr "France" + +#. module: base +#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 +#: field:res.request,priority:0 field:res.request.link,priority:0 +msgid "Priority" +msgstr "Προτεραιότητα" + #. module: base #: field:ir.translation,src:0 msgid "Source" @@ -6792,9 +3999,19 @@ msgid "Keep empty for a private address, not related to partner." msgstr "" #. module: base -#: model:res.country,name:base.vu -msgid "Vanuatu" -msgstr "Vanuatu" +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "Εκκίνηση Ροής" + +#. module: base +#: view:ir.sequence:0 +msgid "Legend (for prefix, suffix)" +msgstr "Κανόνες (για πρόθεμα, επίθεμα)" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" +msgstr "Στάση ροής" #. module: base #: view:res.company:0 @@ -6802,42 +4019,220 @@ msgid "Internal Header/Footer" msgstr "Internal Header/Footer" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." -msgstr "Αποθύκευση του εγγράφου σε μορφή .tgz. Τα αρχεία είναι UTF-8 %s και μπορούν να επεξεργαστούν με κειμενογράφο." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" +msgstr "STOCK_JUSTIFY_LEFT" #. module: base -#: wizard_button:module.upgrade,end,config:0 -#: wizard_button:module.upgrade,start,config:0 -msgid "Start configuration" -msgstr "Εκκίνηση ρυθμίσεων" +#: view:res.partner.bank:0 +msgid "Bank Account Owner" +msgstr "Ιδιοκτήτης Τραπεζικού Λογαριασμού" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form +#: model:ir.ui.menu,name:base.menu_values_form +msgid "Client Actions Connections" +msgstr "Client Actions Connections" + +#. module: base +#: field:ir.ui.view,name:0 +msgid "View Name" +msgstr "Όνομα Προβολής" + +#. module: base +#: field:ir.ui.view_sc,resource:0 +msgid "Resource Name" +msgstr "Περιγραφή Πόρου" + +#. module: base +#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +msgid "Multi Actions" +msgstr "Multi Actions" + +#. module: base +#: model:res.country,name:base.af +msgid "Afghanistan, Islamic State of" +msgstr "Afghanistan, Islamic State of" + +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "Τύπος Διεύθυνσης" + +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." +msgstr "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." + +#. module: base +#: view:res.company:0 view:res.partner:0 +msgid "General Information" +msgstr "Γενικές Πληροφορίες" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "Αυτόματο" + +#. module: base +#: selection:ir.module.module,state:0 +msgid "Not Installable" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_window +#: model:ir.ui.menu,name:base.menu_ir_action_window +msgid "Window Actions" +msgstr "Ενέργειες Παραθύρου" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "workflow.activity" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group By" +msgstr "Ομαδοποίηση Ανά" + +#. module: base +#: model:res.country,name:base.gp +msgid "Guadeloupe (French)" +msgstr "Guadeloupe (French)" + +#. module: base +#: field:ir.translation,value:0 +msgid "Translation Value" +msgstr "Μετάφραση" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" msgstr "Catalan / Català" +#. module: base +#: view:res.request:0 +msgid "End of Request" +msgstr "Τέλος Αίτησης" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Accumulate" +msgstr "Συσσώρευση" + +#. module: base +#: view:res.request:0 +msgid "References" +msgstr "Παραπομπές" + #. module: base #: model:res.country,name:base.do msgid "Dominican Republic" msgstr "Dominican Republic" +#. module: base +#: view:res.lang:0 +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 -Ο αριθμός της εβδομάδας στο έτος (Κυριακή πρώτη ημέρα της εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του χρόνου πριν την 1η Κυριακή θεωρούνται η εβδομάδα 0." + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "Αυτή η διαδικασία μπορεί να πάρει λίγα λεπτά." + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" #. module: base -#: model:res.country,name:base.sa -msgid "Saudi Arabia" -msgstr "Saudi Arabia" +#: selection:ir.ui.menu,icon:0 +msgid "terp-product" +msgstr "terp-product" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Τα ιστογράμματα (bar charts) χρειάζονται τουλάχιστον δύο πεδία" +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "" + +#. module: base +#: model:res.country,name:base.gh +msgid "Ghana" +msgstr "Ghana" + +#. module: base +#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 +msgid "Kind" +msgstr "Είδος" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" +msgstr "ir.exports.line" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of Calls" +msgstr "Αριθμός Κλήσεων" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "Manual" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Could you check your contract information ?" +msgstr "Παρακαλώ ελέγξτε τα στοιχεία σας" + +#. module: base +#: model:res.country,name:base.hm +msgid "Heard and McDonald Islands" +msgstr "Heard and McDonald Islands" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created Date" +msgstr "Ημερ/νία Δημιουργίας" + +#. module: base +#: wizard_button:base.module.import,init,end:0 +#: selection:ir.actions.todo,state:0 +#: wizard_button:module.lang.import,init,end:0 +#: wizard_button:module.lang.install,init,end:0 +#: wizard_button:module.module.update,init,end:0 +#: wizard_button:module.upgrade,next,end:0 +#: wizard_button:res.partner.sms_send,init,end:0 +#: wizard_button:res.partner.spam_send,init,end:0 +#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 +#: view:wizard.module.update_translations:0 +msgid "Cancel" +msgstr "Ακύρωση" + +#. module: base +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory" +msgstr "Φάκελλος" + +#. module: base +#: field:res.partner.event,som:0 field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Line Plot" +msgstr "Γραμμικό Διάγραμμα" + +#. module: base +#: field:wizard.ir.model.menu.create,name:0 +msgid "Menu Name" +msgstr "Όνομα Μενού" #. module: base #: help:res.partner,supplier:0 @@ -6849,6 +4244,31 @@ msgstr "Κάντε κλικ εδώ αν πρόκειται για Προμηθε msgid "Relation Field" msgstr "Πεδίο Σχέσης" +#. module: base +#: help:res.users,password:0 +msgid "Keep empty if you don't want the user to be able to connect on the system." +msgstr "Αφήστε το κενό αν δεν επιθυμείτε ο χρήστης να συνδέεται στο σύστημα." + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report Title" +msgstr "Τίτλος Αναφοράς" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish / Español" +msgstr "Spanish / Español" + +#. module: base +#: field:ir.report.custom.fields,fontcolor:0 +msgid "Font color" +msgstr "Χρώμα γραμματοσειράς" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (TW) / 正體字" +msgstr "Chinese (TW) / 正體字" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -6859,10 +4279,25 @@ msgstr "Destination Instance" msgid "Action on Multiple Doc." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_DESCENDING" +msgstr "STOCK_SORT_DESCENDING" + #. module: base #: view:wizard.module.lang.export:0 -msgid "https://translations.launchpad.net/openobject" -msgstr "https://translations.launchpad.net/openobject" +msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." +msgstr "Η επίσημη μετάφραση του OpenERP/OpenObjects module γίνονται με κειμενογράφο. Για το συγχρονισμό όλων των προσπαθειών χρησιμοποιούμε το online interface." + +#. module: base +#: model:res.country,name:base.my +msgid "Malaysia" +msgstr "Malaysia" + +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" +msgstr "ir.model.config" #. module: base #: model:ir.actions.act_window,name:base.action_partner_title @@ -6870,26 +4305,96 @@ msgstr "https://translations.launchpad.net/openobject" msgid "Titles" msgstr "Τίτλοι" +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" +msgstr "res.request.history" + +#. module: base +#: view:ir.actions.server:0 +msgid "Client Action Configuration" +msgstr "" + +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "Λογότυπο" + #. module: base #: field:ir.actions.todo,start_date:0 msgid "Start Date" msgstr "Ημερ/νία Εκκίνησης" #. module: base -#: field:ir.actions.report.xml,report_xml:0 -msgid "XML path" -msgstr "XML path" +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.model,name:base.model_res_partner_address +#: model:ir.ui.menu,name:base.menu_partner_address_form +#: view:res.partner.address:0 +msgid "Partner Addresses" +msgstr "Διευθύνσεις Συνεργάτη" + +#. module: base +#: model:res.country,name:base.us +msgid "United States" +msgstr "USA" + +#. module: base +#: field:ir.default,company_id:0 field:ir.property,company_id:0 +#: field:ir.values,company_id:0 view:res.company:0 +#: field:res.users,company_id:0 +msgid "Company" +msgstr "Εταιρεία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "STOCK_PROPERTIES" + +#. module: base +#: model:res.country,name:base.so +msgid "Somalia" +msgstr "Somalia" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Κύριε" + +#. module: base +#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 +msgid "New Window" +msgstr "Νέο Παράθυρο" #. module: base #: model:res.country,name:base.gn msgid "Guinea" msgstr "Guinea" +#. module: base +#: model:res.country,name:base.pa +msgid "Panama" +msgstr "Panama" + #. module: base #: model:res.country,name:base.lu msgid "Luxembourg" msgstr "Luxembourg" +#. module: base +#: model:res.country,name:base.cv +msgid "Cape Verde" +msgstr "Cape Verde (Πράσινο Ακρωτήριο)" + +#. module: base +#: model:res.country,name:base.bs +msgid "Bahamas" +msgstr "Μπαχάμες" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "Εμπορική Προοπτική" + #. module: base #: model:ir.actions.todo,note:base.config_wizard_step_user msgid "" @@ -6902,34 +4407,172 @@ msgstr "" " " #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Χαμηλή" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NETWORK" +msgstr "STOCK_NETWORK" #. module: base -#: view:ir.values:0 -msgid "tree_but_action, client_print_multi" -msgstr "tree_but_action, client_print_multi" +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Συνημμένο" + +#. module: base +#: model:res.country,name:base.ie +msgid "Ireland" +msgstr "Ireland" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +#: model:ir.ui.menu,name:base.menu_partner_customer_form_new +msgid "New Partner" +msgstr "Νέος Συνεργάτης" + +#. module: base +#: wizard_field:module.module.update,update,update:0 +msgid "Number of modules updated" +msgstr "Αριθμός ενημερωμένων modules" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +msgstr "STOCK_EDIT" + +#. module: base +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Προεπισκόπηση" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Skip Step" +msgstr "Παράλειψη Βήματος" + +#. module: base +#: model:ir.actions.act_window,name:base.act_res_partner_event +#: field:res.partner,events:0 field:res.partner.event,name:0 +msgid "Events" +msgstr "Συμβάντα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles +#: model:ir.ui.menu,name:base.menu_action_res_roles +msgid "Roles Structure" +msgstr "Διάρθρωση Ρόλων" + +#. module: base +#: model:res.country,name:base.pn +msgid "Pitcairn Island" +msgstr "Pitcairn Island" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 +msgid "ir.actions.url" +msgstr "ir.actions.url" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_STOP" +msgstr "STOCK_MEDIA_STOP" + +#. module: base +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "View Ref." + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "Μη καταχωρημένο" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +msgid "Active Partner Events" +msgstr "Ενεργά Συμβάντα Συνεργάτη" #. module: base #: model:res.country,name:base.sv msgid "El Salvador" msgstr "El Salvador" +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" +msgstr "Πορτραίτο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-graph" +msgstr "terp-graph" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" +msgstr "Record Rules" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Στοιχεία Συνεργάτη" + +#. module: base +#: wizard_field:module.module.update,update,add:0 +msgid "Number of modules added" +msgstr "Number of modules added" + #. module: base #: field:res.bank,phone:0 field:res.partner.address,phone:0 msgid "Phone" msgstr "Τηλέφωνο" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +msgstr "Ημέρα του χρόνου: %(day)s" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Απαιτούμενος Ρόλος" + +#. module: base +#: field:ir.actions.act_window,groups_id:0 +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 +#: view:res.users:0 field:res.users,groups_id:0 +msgid "Groups" +msgstr "Ομάδες" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French / Français" +msgstr "Γαλλικά / Français" + #. module: base #: field:res.groups,menu_access:0 msgid "Access Menu" msgstr "Μενού Πρόσβασης" #. module: base -#: model:res.country,name:base.th -msgid "Thailand" -msgstr "Thailand" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Δημιουργημένα Μενού" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch (Belgium) / Nederlands (Belgïe)" +msgstr "" + +#. module: base +#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 +#: model:ir.ui.menu,name:base.next_id_15 +msgid "Properties" +msgstr "Ιδιότητες" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -6939,11 +4582,105 @@ msgstr "Thailand" msgid ">" msgstr ">" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" +msgstr "STOCK_ADD" + +#. module: base +#: field:workflow.triggers,workitem_id:0 +msgid "Workitem" +msgstr "" + +#. module: base +#: model:res.country,name:base.ge +msgid "Georgia" +msgstr "Georgia" + +#. module: base +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "Διαχωριστής Χιλιάδων" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry +msgid "country_id" +msgstr "country_id" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "STOCK_DIALOG_AUTHENTICATION" + +#. module: base +#: model:res.country,name:base.pl +msgid "Poland" +msgstr "Poland" + #. module: base #: field:ir.model.access,perm_unlink:0 msgid "Delete Permission" msgstr "Διαγραφή Πρόσβασης" +#. module: base +#: field:workflow.activity,signal_send:0 +msgid "Signal (subflow.*)" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_OUT" +msgstr "STOCK_ZOOM_OUT" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "Επιλογή" + +#. module: base +#: field:ir.values,meta:0 +msgid "Meta Datas" +msgstr "Μετα-Δεδομένα" + +#. module: base +#: field:ir.model,name:0 field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 field:ir.values,model:0 +msgid "Object Name" +msgstr "Όνομα Αντικειμένου" + +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 selection:ir.values,key:0 +msgid "Action" +msgstr "Ενέργεια" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard +msgid "Wizards" +msgstr "Οδηγοί" + +#. module: base +#: field:ir.rule,domain_force:0 +msgid "Force Domain" +msgstr "Force Domain" + +#. module: base +#: help:ir.actions.server,expression:0 +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 "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`." + +#. module: base +#: model:ir.model,name:base.model_ir_cron +msgid "ir.cron" +msgstr "ir.cron" + #. module: base #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 @@ -6955,29 +4692,76 @@ msgstr "Και" msgid "Object Relation" msgstr "Σχέση Αντικειμένου" +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment +msgid "Attachments" +msgstr "Συνημμένα" + +#. module: base +#: field:res.request,act_to:0 field:res.request.history,act_to:0 +msgid "To" +msgstr "Σε" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Validate" +msgstr "_Validate" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_wizard +msgid "maintenance.contract.wizard" +msgstr "maintenance.contract.wizard" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "STOCK_SELECT_COLOR" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT" msgstr "STOCK_PRINT" #. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "<" -msgstr "<" +#: view:res.partner:0 +msgid "General" +msgstr "Γενικό" #. module: base -#: model:res.country,name:base.uz -msgid "Uzbekistan" -msgstr "Uzbekistan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" +msgstr "STOCK_NO" #. module: base -#: model:ir.model,name:base.model_ir_actions_act_window -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_window" -msgstr "ir.actions.act_window" +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "Report Header" + +#. module: base +#: field:ir.actions.server,child_ids:0 +msgid "Other Actions" +msgstr "Άλλες Ενέργειες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "terp-mrp" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "Ολοκληρωμένο" + +#. module: base +#: field:workflow.activity,out_transitions:0 +msgid "Outgoing Transitions" +msgstr "Εκροές" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" +msgstr "Τιμολόγιο" #. module: base #: model:res.country,name:base.vi @@ -6985,20 +4769,152 @@ msgid "Virgin Islands (USA)" msgstr "Virgin Islands (USA)" #. module: base -#: model:res.country,name:base.tw -msgid "Taiwan" -msgstr "Taiwan" +#: help:res.partner,vat:0 +msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." +msgstr "Αριθμός ΦΠΑ. Επιλέξτε αυτό αν ο συνεργάτης πληρώνει ΦΠΑ. Χρησιμοποιείται στην περιοδική δήλωση ΦΠΑ." #. module: base -#: view:ir.rule:0 -msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "If you don't force the domain, it will use the simple domain setup" +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Μήνες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" + +#. module: base +#: model:res.country,name:base.cy +msgid "Cyprus" +msgstr "Cyprus" + +#. module: base +#: field:ir.model.access,perm_write:0 +msgid "Write Access" +msgstr "Δικαίωμα Εγγραφής" + +#. module: base +#: model:res.country,name:base.bb +msgid "Barbados" +msgstr "Barbados" + +#. module: base +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Μέγεθος" + +#. module: base +#: field:res.bank,city:0 field:res.partner,city:0 +#: field:res.partner.address,city:0 field:res.partner.bank,city:0 +msgid "City" +msgstr "Πόλη" + +#. module: base +#: model:res.country,name:base.mg +msgid "Madagascar" +msgstr "Madagascar" + +#. module: base +#: model:res.country,name:base.it +msgid "Italy" +msgstr "Italy" + +#. module: base +#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +msgid "Custom Object" +msgstr "Παραμετροποιημένο αντικείμενο" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "<>" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 +msgid "Menu" +msgstr "Menu" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" +msgstr "<=" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "Εξαγωγή Δεδομένων" + +#. module: base +#: model:res.country,name:base.fm +msgid "Micronesia" +msgstr "Micronesia" + +#. module: base +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "res.partner.som" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Estonian / Eesti keel" +msgstr "Estonian / Eesti keel" + +#. module: base +#: field:ir.module.module,menus_by_module:0 view:res.groups:0 +msgid "Menus" +msgstr "Μενού" + +#. module: base +#: help:ir.rule.group,global:0 +msgid "Make the rule global, otherwise it needs to be put on a group or user" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_UP" +msgstr "STOCK_GO_UP" + +#. module: base +#: view:ir.values:0 +msgid "Action To Launch" +msgstr "Επιλογή Ενέργειας" + +#. module: base +#: model:res.country,name:base.um +msgid "USA Minor Outlying Islands" +msgstr "USA Minor Outlying Islands" + +#. module: base +#: field:ir.actions.url,target:0 +msgid "Action Target" +msgstr "Στόχος Ενέργειας" #. module: base #: field:ir.report.custom,field_parent:0 field:ir.ui.view,field_parent:0 msgid "Child Field" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "uk_UK" +msgstr "" + +#. module: base +#: model:res.country,name:base.ai +msgid "Anguilla" +msgstr "Anguilla" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese / português" +msgstr "Portugese / português" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "GPL-3 or later version" + #. module: base #: field:ir.actions.act_window,usage:0 #: field:ir.actions.act_window_close,usage:0 field:ir.actions.actions,usage:0 @@ -7007,25 +4923,103 @@ msgstr "" msgid "Action Usage" msgstr "Χρήση Ενέργειας" +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" +msgstr "res.request" + +#. module: base +#: model:res.country,name:base.il +msgid "Israel" +msgstr "Israel" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "Confirmation" +msgstr "Επιβεβαίωση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_server_action_create +msgid "Create Action" +msgstr "Δημιουργία Ενέργειας" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" msgstr "workflow.workitem" #. module: base -#: selection:ir.module.module,state:0 -msgid "Not Installable" -msgstr "" +#: field:ir.ui.view_sc,name:0 +msgid "Shortcut Name" +msgstr "Όνομα Συντόμευσης" #. module: base -#: rml:ir.module.reference:0 -msgid "View :" -msgstr "Προβολή:" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Πιστωτικό Όριο" #. module: base -#: field:ir.model.fields,view_load:0 -msgid "View Auto-Load" -msgstr "Αυτόματη Φόρτωση Προβολής" +#: model:res.country,name:base.pg +msgid "Papua New Guinea" +msgstr "Παπούα Νέα Γουινέα" + +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Πιθανότητα (0,50)" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Uninstallable" + +#. module: base +#: field:ir.module.module,url:0 field:ir.module.repository,url:0 +msgid "URL" +msgstr "URL" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "Turkish / Türkçe" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" +msgstr "Objects" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" +msgstr "Εισαγωγές / Εξαγωγές" + +#. module: base +#: field:res.users,address_id:0 +msgid "Address" +msgstr "Διεύθυνση" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Your system will be upgraded." +msgstr "Το σύστημα θα αναβαθμιστεί" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +msgid "Configure User" +msgstr "Ρυθμίσεις Χρήστη" + +#. module: base +#: field:ir.report.custom,print_format:0 +msgid "Print format" +msgstr "Μορφή Εκτύπωσης" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7037,20 +5031,168 @@ msgstr "STOCK_JUMP_TO" msgid "End Date" msgstr "Ημερ/νία Λήξης" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-calendar" +msgstr "terp-calendar" + #. module: base #: field:ir.exports,resource:0 field:ir.property,res_id:0 msgid "Resource" msgstr "" +#. module: base +#: field:ir.actions.server,email:0 +msgid "Email Address" +msgstr "Email Address" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-tools" +msgstr "terp-tools" + +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +msgid "Payment term" +msgstr "Όροι Πληρωμής" + +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Report xml" +msgstr "Αναφορά xml" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_open_categ +#: model:ir.actions.act_window,name:base.open_module_tree +#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree +#: field:wizard.module.lang.export,modules:0 +msgid "Modules" +msgstr "Modules" + +#. module: base +#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 +#: field:workflow.workitem,subflow_id:0 +msgid "Subflow" +msgstr "" + +#. module: base +#: help:ir.values,action_id:0 +msgid "This field is not used, it only helps you to select the right action." +msgstr "Αυτό το πεδίο δεν χρησιμοποιείται, απλά σας βοηθά να επιλέξετε την σωστή ενέργεια." + +#. module: base +#: model:res.country,name:base.tt +msgid "Trinidad and Tobago" +msgstr "Trinidad and Tobago" + #. module: base #: field:maintenance.contract,name:0 field:maintenance.contract.wizard,name:0 msgid "Contract ID" msgstr "" #. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "center" -msgstr "κέντρο" +#: model:res.country,name:base.lv +msgid "Latvia" +msgstr "Latvia (Λεττονία)" + +#. module: base +#: view:ir.values:0 +msgid "Values" +msgstr "Τιμές" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_INFO" +msgstr "STOCK_DIALOG_INFO" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_upgrade +#: model:ir.ui.menu,name:base.menu_wizard_upgrade +msgid "Apply Scheduled Upgrades" +msgstr "Apply Scheduled Upgrades" + +#. module: base +#: view:workflow.activity:0 field:workflow.workitem,act_id:0 +msgid "Activity" +msgstr "Activity" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 +#: field:res.partner,bank_ids:0 +msgid "Banks" +msgstr "Τράπεζες" + +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "res.config.view" + +#. module: base +#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 +msgid "Shortcut" +msgstr "Συντόμευση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-sale" +msgstr "terp-sale" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mappings" +msgstr "Field Mappings" + +#. module: base +#: view:res.lang:0 +msgid "%d - Day of the month as a decimal number [01,31]." +msgstr "%d - Η ημέρα του μήνα σε δεκαδική μορφή [01, 31]." + +#. module: base +#: view:res.lang:0 +msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." +msgstr "%I - Η Ώρα (12ωρο) σε δεκαδική μορφή [01, 12]." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Romanian / limba română" +msgstr "Romanian / limba română" + +#. module: base +#: field:res.company,parent_id:0 +msgid "Parent Company" +msgstr "Μητρική Εταιρεία" + +#. module: base +#: field:ir.values,object:0 +msgid "Is Object" +msgstr "" + +#. module: base +#: field:ir.cron,doall:0 +msgid "Repeat Missed" +msgstr "" + +#. module: base +#: help:ir.actions.server,state:0 +msgid "Type of the Action that is to be executed" +msgstr "Τύπος Ενέργειας για εκτέλεση" + +#. module: base +#: field:ir.server.object.lines,server_id:0 +msgid "Object Mapping" +msgstr "" + +#. module: base +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "Δημοσιοποιημένη Έκδοση" + +#. module: base +#: help:res.currency,rate:0 help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "Ισοτιμία νομίσματος" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -7060,9 +5202,133 @@ msgid "States" msgstr "Νομοί" #. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group or user" -msgstr "" +#: model:res.country,name:base.ug +msgid "Uganda" +msgstr "Uganda" + +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "Ποσοστό" + +#. module: base +#: model:res.country,name:base.cg +msgid "Congo" +msgstr "Congo" + +#. module: base +#: view:ir.actions.server:0 +msgid "Create / Write" +msgstr "Δημιουργία / Εγγραφή" + +#. module: base +#: view:res.lang:0 +msgid "Examples" +msgstr "Παραδείγματα" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +msgid "Customization" +msgstr "Προσαρμογή" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category without removing it." +msgstr "The active field allows you to hide the category without removing it." + +#. module: base +#: model:res.country,name:base.py +msgid "Paraguay" +msgstr "Paraguay" + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Προεπιλεγμένη Τιμή" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Object:" +msgstr "Αντικείμενο:" + +#. module: base +#: model:res.country,name:base.st +msgid "Saint Tome (Sao Tome) and Principe" +msgstr "Saint Tome (Sao Tome) and Principe" + +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "Νομός" + +#. module: base +#: model:res.country,name:base.bw +msgid "Botswana" +msgstr "Botswana" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Calculate Count" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "αριστερά" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "Readonly" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "ir.ui.view_sc" + +#. module: base +#: view:ir.model:0 view:res.request:0 +msgid "Status" +msgstr "Κατάσταση" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +msgid "Report Xml" +msgstr "Αναφορά Xml" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +msgid "Partner Titles" +msgstr "Τίτλοι Συνεργάτη" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "Υπηρεσία" + +#. module: base +#: field:ir.actions.report.xml,report_xml:0 +msgid "XML path" +msgstr "XML path" + +#. module: base +#: help:ir.actions.act_window,auto_refresh:0 +msgid "Add an auto-refresh on the view" +msgstr "Add an auto-refresh on the view" + +#. module: base +#: model:res.country,name:base.lt +msgid "Lithuania" +msgstr "Lithuania" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Base Field" +msgstr "Base Field" #. module: base #: field:ir.attachment,datas_fname:0 field:wizard.module.lang.export,name:0 @@ -7075,9 +5341,9 @@ msgid "Access" msgstr "Πρόσβαση" #. module: base -#: model:res.country,name:base.sk -msgid "Slovak Republic" -msgstr "Slovak Republic" +#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "Εταιρική Αναφ." #. module: base #: model:res.country,name:base.aw @@ -7085,29 +5351,122 @@ msgid "Aruba" msgstr "Aruba" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Weeks" -msgstr "Εβδομάδες" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_DOWN" +msgstr "STOCK_GO_DOWN" + +#. module: base +#: model:res.country,name:base.tw +msgid "Taiwan" +msgstr "Taiwan" + +#. module: base +#: model:res.country,name:base.ar +msgid "Argentina" +msgstr "Argentina" + +#. module: base +#: help:res.partner,user_id:0 +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "Ο χρήστης, υπεύθυνος για την επικοινωνία με το συνεργάτη, αν υπάρχει." #. module: base #: field:res.groups,name:0 msgid "Group Name" msgstr "Όνομα Ομάδας" +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_download:0 +msgid "Modules to download" +msgstr "Modules to download" + +#. module: base +#: model:res.country,name:base.ch +msgid "Switzerland" +msgstr "Switzerland / Ελβετία" + #. module: base #: model:res.country,name:base.bh msgid "Bahrain" msgstr "Bahrain" #. module: base -#: model:res.partner.category,name:base.res_partner_category_12 -msgid "Segmentation" -msgstr "Καταμερισμός" +#: field:res.bank,fax:0 field:res.partner.address,fax:0 +msgid "Fax" +msgstr "Fax" + +#. module: base +#: model:res.country,name:base.ye +msgid "Yemen" +msgstr "Yemen" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_workitem_form +#: model:ir.ui.menu,name:base.menu_workflow_workitem +msgid "Workitems" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND" -msgstr "STOCK_FIND" +msgid "STOCK_PRINT_PREVIEW" +msgstr "STOCK_PRINT_PREVIEW" + +#. module: base +#: field:wizard.module.lang.export,advice:0 +msgid "Advice" +msgstr "Συμβουλή" + +#. module: base +#: model:res.country,name:base.si +msgid "Slovenia" +msgstr "Slovenia" + +#. module: base +#: model:ir.model,name:base.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom_fields +msgid "ir.report.custom.fields" +msgstr "ir.report.custom.fields" + +#. module: base +#: model:res.country,name:base.uk +msgid "United Kingdom" +msgstr "United Kingdom" + +#. module: base +#: model:res.country,name:base.de +msgid "Germany" +msgstr "Germany" + +#. module: base +#: help:ir.actions.server,srcmodel_id:0 +msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." +msgstr "Object in which you want to create / write the object. If it is empty then refer to the Object field." + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Not Installed" +msgstr "Not Installed" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Lithuanian / Lietuvių kalba" +msgstr "Lithuanian / Lietuvių kalba" + +#. module: base +#: field:res.users,action_id:0 +msgid "Home Action" +msgstr "Home Action" + +#. module: base +#: field:ir.ui.menu,icon:0 +msgid "Icon" +msgstr "Εικονίδιο" #. module: base #: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard @@ -7116,51 +5475,202 @@ msgstr "STOCK_FIND" msgid "Add Maintenance Contract" msgstr "Προσθήκη Συμβολαίου Συντήρησης" +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +msgid "Ok" +msgstr "ΟΚ" + +#. module: base +#: field:res.lang,grouping:0 +msgid "Separator Format" +msgstr "Μορφή Διαχωριστή" + +#. module: base +#: model:res.country,name:base.pk +msgid "Pakistan" +msgstr "Pakistan" + +#. module: base +#: field:ir.ui.view,inherit_id:0 +msgid "Inherited View" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base +#: model:res.country,name:base.mq +msgid "Martinique (French)" +msgstr "Martinique (French)" + +#. module: base +#: view:res.lang:0 +msgid "%p - Equivalent of either AM or PM." +msgstr "%p - Αντίστοιχο με το π.μ ή το μ.μ." + #. module: base #: field:ir.actions.act_window,limit:0 field:ir.report.custom,limitt:0 msgid "Limit" msgstr "Όριο" +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Actions" +msgstr "Επαναληπτικές ενέργειες" + #. module: base #: help:ir.actions.server,wkf_model_id:0 msgid "Workflow to be executed on this model." msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Διεύθυνση Συνεργάτη" + +#. module: base +#: model:res.country,name:base.sn +msgid "Senegal" +msgstr "Senegal" + +#. module: base +#: model:res.country,name:base.ws +msgid "Samoa" +msgstr "Samoa" + +#. module: base +#: model:res.country,name:base.nz +msgid "New Zealand" +msgstr "New Zealand" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "STOCK_DND" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "Or" + #. module: base #: model:res.country,name:base.jm msgid "Jamaica" msgstr "Jamaica" +#. module: base +#: model:res.country,name:base.al +msgid "Albania" +msgstr "Albania" + +#. module: base +#: field:maintenance.contract,date_stop:0 +msgid "Ending Date" +msgstr "Ημερ/νία Λήξης" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "Uninstalled modules" + +#. module: base +#: model:res.country,name:base.nf +msgid "Norfolk Island" +msgstr "Norfolk Island" + +#. module: base +#: model:res.country,name:base.kz +msgid "Kazakhstan" +msgstr "Kazakhstan" + #. module: base #: model:res.country,name:base.az msgid "Azerbaijan" msgstr "Azerbaijan" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Warning" -msgstr "Warning" +#: model:ir.actions.act_window,name:base.open_module_tree_install +#: model:ir.ui.menu,name:base.menu_module_tree_install +msgid "Installed modules" +msgstr "Installed modules" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Your Maintenance Contracts" +msgstr "Συμβόλαια Συντήρησης" + +#. module: base +#: field:ir.ui.menu,child_id:0 +msgid "Child IDs" +msgstr "Child IDs" + +#. module: base +#: model:res.country,name:base.ae +msgid "United Arab Emirates" +msgstr "United Arab Emirates" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 +msgid "Module" +msgstr "Module" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Arabic / الْعَرَبيّة" msgstr "Arabic / الْعَرَبيّة" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + #. module: base #: model:res.country,name:base.gi msgid "Gibraltar" msgstr "Gibraltar" +#. module: base +#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 +msgid "Client Action" +msgstr "Ενέργεια Πελάτη" + #. module: base #: model:res.country,name:base.vg msgid "Virgin Islands (British)" msgstr "Virgin Islands (British)" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PREVIOUS" -msgstr "STOCK_MEDIA_PREVIOUS" +#: model:res.country,name:base.bd +msgid "Bangladesh" +msgstr "Bangladesh" + +#. module: base +#: field:workflow.transition,signal:0 +msgid "Signal (button Name)" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "Καθορισμένες Αναφορές" + +#. module: base +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "Σφάλμα! Υπάρχει εταιρεία με την ίδια περιγραφή" + +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" +msgstr "Fiji" #. module: base #: selection:module.lang.install,init,lang:0 @@ -7168,19 +5678,40 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Trigger Configuration" #. module: base -#: model:res.country,name:base.rw -msgid "Rwanda" -msgstr "Rwanda" +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" #. module: base -#: constraint:res.partner:0 -msgid "The VAT doesn't seem to be correct." -msgstr "Ο ΦΠΑ δε φαίνεται σωστός" +#: field:ir.actions.server,loop_action:0 +msgid "Loop Action" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 +msgid "Version" +msgstr "Έκδοση" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +#: view:maintenance.contract:0 +msgid "Maintenance Contract" +msgstr "Συμβόλαιο Συντήρησης" + +#. module: base +#: help:ir.actions.server,trigger_obj_id:0 +msgid "Select the object from the model on which the workflow will executed." +msgstr "" + +#. module: base +#: model:res.country,name:base.la +msgid "Laos" +msgstr "Laos" #. module: base #: selection:ir.report.custom.fields,operation:0 @@ -7193,29 +5724,50 @@ msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Ημέρα Εβδομάδας(0:Δευτέρα): %(ημέρες)" #. module: base -#: model:res.country,name:base.ck -msgid "Cook Islands" -msgstr "Cook Islands" +#: selection:ir.actions.server,state:0 +msgid "Email" +msgstr "Email" + +#. module: base +#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 +msgid "Channel" +msgstr "Κανάλι" + +#. module: base +#: field:ir.model.access,perm_create:0 +msgid "Create Access" +msgstr "Δημιουργία Πρόσβασης" #. module: base #: help:ir.actions.server,mobile:0 msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" msgstr "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +#: model:ir.ui.menu,name:base.menu_partner_other_form +msgid "Others Partners" +msgstr "Άλλοι Συνεργάτες" + #. module: base #: field:ir.model.data,noupdate:0 msgid "Non Updatable" msgstr "" #. module: base -#: model:res.country,name:base.sg -msgid "Singapore" -msgstr "Singapore" +#: model:res.country,name:base.cu +msgid "Cuba" +msgstr "Cuba" #. module: base -#: selection:ir.actions.act_window,target:0 -msgid "Current Window" -msgstr "" +#: field:res.partner.address,state_id:0 +msgid "Fed. State" +msgstr "Νομός" + +#. module: base +#: view:res.lang:0 +msgid "%S - Second as a decimal number [00,61]." +msgstr "%S - Το δευτερόλεπτο σε δεκαδική μορφή [00, 60]." #. module: base #: view:ir.values:0 @@ -7223,48 +5775,240 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NETWORK" -msgstr "STOCK_NETWORK" +#: selection:wizard.module.lang.export,state:0 +msgid "get" +msgstr "πάρε" #. module: base -#: model:ir.model,name:base.model_res_country field:res.bank,country:0 -#: view:res.country:0 field:res.country.state,country_id:0 -#: field:res.partner,country:0 field:res.partner.address,country_id:0 -#: field:res.partner.bank,country_id:0 -msgid "Country" -msgstr "Χώρα" +#: model:res.country,name:base.yt +msgid "Mayotte" +msgstr "Mayotte" + +#. module: base +#: model:res.country,name:base.ro +msgid "Romania" +msgstr "Romania" + +#. module: base +#: view:res.lang:0 +msgid "%w - Weekday as a decimal number [0(Sunday),6]." +msgstr "%w - Η ημέρα της εβδομάδας σε δεκαδική μορφή [0 Κυριακή, 1 Δευτέρα... 6 Σάββατο]." + +#. module: base +#: model:res.country,name:base.am +msgid "Armenia" +msgstr "Armenia" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 +#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +msgid "Fields" +msgstr "Πεδία" + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: model:ir.ui.menu,name:base.menu_config view:res.company:0 +msgid "Configuration" +msgstr "Ρυθμίσεις" + +#. module: base +#: field:maintenance.contract,date_start:0 +msgid "Starting Date" +msgstr "Ημερ/νία Εκκίνησης" + +#. module: base +#: view:ir.model:0 field:ir.model.fields,ttype:0 +msgid "Field Type" +msgstr "Τύπος Πεδίου" #. module: base #: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 msgid "Complete Name" msgstr "Πλήρες Όνομα" +#. module: base +#: field:res.country.state,code:0 +msgid "State Code" +msgstr "Κωδικός Περιοχής" + +#. module: base +#: field:ir.model.fields,on_delete:0 +msgid "On delete" +msgstr "On delete" + +#. module: base +#: view:res.request:0 +msgid "Reply" +msgstr "Απάντηση" + +#. module: base +#: field:ir.cron,function:0 field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +msgid "Function" +msgstr "Λειτουργία" + +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "Έτος με τον αιώνα: %(year)s" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Cancel" +msgstr "_Cancel" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" msgstr "Καταχώρηση Αναφοράς" #. module: base -#: field:ir.values,object:0 -msgid "Is Object" +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +msgid "in" +msgstr "σε" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-report" +msgstr "terp-report" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +msgid "Workflows" +msgstr "Ροές Εργασίας" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" +msgstr "Αρχική Προβολή" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Left-to-Right" +msgstr "Left-to-Right" + +#. module: base +#: help:ir.actions.wizard,multi:0 +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." msgstr "" #. module: base -#: field:res.partner.category,name:0 -msgid "Category Name" -msgstr "Όνομα Κατηγορίας" +#: field:res.lang,translatable:0 +msgid "Translatable" +msgstr "Translatable" #. module: base -#: model:res.partner.category,name:base.res_partner_category_15 -msgid "IT sector" -msgstr "IT sector" +#: selection:ir.report.custom,frequency:0 +msgid "Daily" +msgstr "Ημερήσια" + +#. module: base +#: view:res.lang:0 +msgid "3. %x ,%X ==> 12/05/08, 18:25:20" +msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Cascade" +msgstr "" + +#. module: base +#: model:res.country,name:base.se +msgid "Sweden" +msgstr "Sweden" + +#. module: base +#: model:res.country,name:base.au +msgid "Australia" +msgstr "Australia" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard View" +msgstr "Προβολή Wizard" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Gantt" +msgstr "Gantt" + +#. module: base +#: view:ir.property:0 +msgid "Property" +msgstr "Ιδιοκτησία" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type +#: view:res.partner.bank.type:0 +msgid "Bank Account Type" +msgstr "Τύπος Τραπεζικού Λογαριασμού" + +#. module: base +#: field:res.partner.category,complete_name:0 +msgid "Full Name" +msgstr "Πλήρες Όνομα" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "Επόμενο Βήμα Ρυθμίσεων" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-project" +msgstr "" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "Σχόλιο" + +#. module: base +#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "Τομέας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "STOCK_PREFERENCES" + +#. module: base +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 +msgid "Subject" +msgstr "Υποκείμενο" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "sv_SV" +msgstr "sv_SV" #. module: base #: view:res.lang:0 msgid "%X - Appropriate time representation." msgstr "%X - Ορθή μορφή ώρας." +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Action Configuration" +msgstr "Ρυθμίσεις Επαναληπτικών ενεργειών" + +#. module: base +#: model:res.country,name:base.qa +msgid "Qatar" +msgstr "Qatar" + #. module: base #: view:res.company:0 msgid "Your Logo - Use a size of about 450x150 pixels." @@ -7276,15 +6020,46 @@ msgid "The Separator Format should be like [,n] where 0 < n :starting from Unit msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form_new -#: model:ir.ui.menu,name:base.menu_partner_customer_form_new -msgid "New Partner" -msgstr "Νέος Συνεργάτης" +#: model:res.country,name:base.at +msgid "Austria" +msgstr "Austria" #. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Portrait" -msgstr "Πορτραίτο" +#: model:res.country,name:base.mz +msgid "Mozambique" +msgstr "Mozambique" + +#. module: base +#: model:res.country,name:base.tv +msgid "Tuvalu" +msgstr "Τουβαλού" + +#. module: base +#: field:workflow.activity,join_mode:0 +msgid "Join Mode" +msgstr "Πλήρες Mode" + +#. module: base +#: model:res.country,name:base.jp +msgid "Japan" +msgstr "Japan" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" +msgstr "Ημερολόγιο" + +#. module: base +#: field:ir.actions.act_window.view,multi:0 +msgid "On Multiple Doc." +msgstr "On Multiple Doc." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" +msgstr "STOCK_GOTO_LAST" #. module: base #: selection:ir.translation,type:0 @@ -7292,9 +6067,26 @@ msgid "Wizard Button" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIRECTORY" -msgstr "STOCK_DIRECTORY" +#: model:res.country,name:base.nl +msgid "Netherlands" +msgstr "Netherlands / Ολλανδία" + +#. module: base +#: field:res.partner,address:0 view:res.partner.address:0 +msgid "Contacts" +msgstr "Στοιχεία" + +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Graph" +msgstr "" #. module: base #: field:ir.module.module,installed_version:0 @@ -7306,21 +6098,118 @@ msgstr "Τελευταία έκδοση" msgid "ir.actions.server" msgstr "ir.actions.server" +#. module: base +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "res.company" + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "Start installation" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "κλειστά" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "Module dependency" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "right" +msgstr "δεξιά" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Draft" +msgstr "Πρόχειρα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" +msgstr "STOCK_DND_MULTIPLE" + +#. module: base +#: model:ir.ui.menu,name:base.maintenance +msgid "Maintenance" +msgstr "Συντήρηση" + +#. module: base +#: model:res.country,name:base.sj +msgid "Svalbard and Jan Mayen Islands" +msgstr "Svalbard and Jan Mayen Islands" + +#. module: base +#: view:res.config.view:0 +msgid "Choose Your Mode" +msgstr "Επιλογή Mode" + #. module: base #: view:ir.actions.report.custom:0 msgid "Report custom" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "STOCK_OPEN" + +#. module: base +#: view:ir.actions.server:0 field:workflow.activity,action_id:0 +msgid "Server Action" +msgstr "Server Action" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 +msgid "Login" +msgstr "Είσοδος" + +#. module: base +#: model:res.country,name:base.mp +msgid "Northern Mariana Islands" +msgstr "Northern Mariana Islands" + +#. module: base +#: model:res.country,name:base.by +msgid "Belarus" +msgstr "Belarus / Λευκορωσία" + +#. module: base +#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 +#: field:ir.actions.url,name:0 +msgid "Action Name" +msgstr "Όνομα Ενέργειας" + #. module: base #: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "Πρόοδος Ρυθμίσεων" +#. module: base +#: field:res.company,rml_footer2:0 +msgid "Report Footer 2" +msgstr "Report Footer 2" + #. module: base #: model:ir.ui.menu,name:base.next_id_11 msgid "Configuration Wizards" msgstr "Wizards Ρυθμίσεων" +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "ir.actions.act_window.view" + +#. module: base +#: field:res.bank,street2:0 field:res.partner.address,street2:0 +msgid "Street2" +msgstr "Οδός 2" + #. module: base #: field:workflow.activity,split_mode:0 msgid "Split Mode" @@ -7332,14 +6221,26 @@ msgid "Localisation" msgstr "" #. module: base -#: selection:res.config.view,view:0 -msgid "Simplified Interface" -msgstr "Simplified Interface" +#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 +msgid "Dependencies" +msgstr "Εξαρτήσεις" #. module: base -#: model:res.country,name:base.cl -msgid "Chile" -msgstr "Chile (Χιλή)" +#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "Χρήστης" + +#. module: base +#: view:ir.actions.server:0 +msgid "Action to Launch" +msgstr "Επιλογή Ενέργειας" + +#. module: base +#: model:res.country,name:base.pr +msgid "Puerto Rico" +msgstr "Puerto Rico" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7347,10 +6248,26 @@ msgid "STOCK_REVERT_TO_SAVED" msgstr "STOCK_REVERT_TO_SAVED" #. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_import -#: model:ir.ui.menu,name:base.menu_wizard_lang_import -msgid "Import a Translation File" -msgstr "Εισαγωγή Αρχείου Μετάφρασης" +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "Απεγκατάσταση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "STOCK_JUSTIFY_RIGHT" + +#. module: base +#: model:res.country,name:base.lc +msgid "Saint Lucia" +msgstr "Saint Lucia" + +#. module: base +#: field:ir.actions.server,condition:0 +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:workflow.transition,condition:0 +msgid "Condition" +msgstr "Συνθήκη" #. module: base #: help:ir.values,model_id:0 @@ -7358,9 +6275,30 @@ msgid "This field is not used, it only helps you to select a good model." msgstr "Το πεδίο αυτό δε χρησιομοποιείται, βοηθά στην επιλογή του καλύτερου μοντέλου." #. module: base -#: field:ir.ui.view,name:0 -msgid "View Name" -msgstr "Όνομα Προβολής" +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "Χρώμα Φόντου" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" +msgstr "Απλή μορφή τομέα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation_untrans +#: model:ir.ui.menu,name:base.menu_action_translation_untrans +msgid "Untranslated terms" +msgstr "Μη μεταφρασμένοι όροι" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" + +#. module: base +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 @@ -7368,20 +6306,84 @@ msgid "Italian / Italiano" msgstr "Italian / Italiano" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" -msgstr "" +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +msgid "Import module" +msgstr "Import module" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users +#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 +#: field:ir.rule.group,users:0 +#: model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 +#: field:res.groups,users:0 field:res.roles,users:0 view:res.users:0 +msgid "Users" +msgstr "Χρήστες" + +#. module: base +#: view:workflow.transition:0 +msgid "Transition" +msgstr "Ροή" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "Ορολογία Εφαρμογής" + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "Ημερ/νία γέννησης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contact Titles" +msgstr "Τίτλοι Επαφής" + +#. module: base +#: field:ir.module.repository,filter:0 +msgid "Filter" +msgstr "Φίλτρο" + +#. module: base +#: field:ir.actions.todo,active:0 field:ir.cron,active:0 +#: field:ir.module.repository,active:0 field:ir.sequence,active:0 +#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 +#: field:res.partner,active:0 field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 field:res.request,active:0 +#: field:res.users,active:0 +msgid "Active" +msgstr "Ενεργό" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "Polish / Język polski" #. module: base #: model:res.country,name:base.hr msgid "Croatia" msgstr "Croatia" +#. module: base +#: model:res.country,name:base.mn +msgid "Mongolia" +msgstr "Mongolia" + #. module: base #: field:ir.actions.server,mobile:0 msgid "Mobile No" msgstr "Κινητό" +#. module: base +#: model:res.country,name:base.th +msgid "Thailand" +msgstr "Thailand" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_by_category #: model:ir.actions.act_window,name:base.action_partner_category_form @@ -7391,6 +6393,11 @@ msgstr "Κινητό" msgid "Partner Categories" msgstr "Καατηγορίες Συνεργατών" +#. module: base +#: model:res.country,name:base.gd +msgid "Grenada" +msgstr "Grenada" + #. module: base #: field:ir.sequence,code:0 field:ir.sequence.type,code:0 msgid "Sequence Code" @@ -7402,81 +6409,397 @@ msgid "a5" msgstr "Α5" #. module: base -#: model:res.country,name:base.sc -msgid "Seychelles" -msgstr "Seychelles" +#: selection:server.action.create,init,type:0 +msgid "Open Report" +msgstr "Ανοικτή Αναφορά" + +#. module: base +#: field:res.currency,rounding:0 +msgid "Rounding factor" +msgstr "Παράγοντας στρογγυλοποίησης" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Field" +msgstr "Πεδίο Wizard" + +#. module: base +#: model:res.country,name:base.bz +msgid "Belize" +msgstr "Belize" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" +msgstr "terp-stock" + +#. module: base +#: field:ir.model.fields,select_level:0 +msgid "Searchable" +msgstr "" + +#. module: base +#: model:res.country,name:base.uy +msgid "Uruguay" +msgstr "" + +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "" + +#. module: base +#: view:res.partner.som:0 +msgid "Partner State of Mind" +msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_bank view:res.partner.bank:0 msgid "Bank Accounts" msgstr "Τραπεζικοί Λογαριασμοί" +#. module: base +#: selection:ir.ui.view,type:0 +msgid "mdx" +msgstr "" + #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" msgstr "Sierra Leone" #. module: base -#: view:res.company:0 view:res.partner:0 -msgid "General Information" -msgstr "Γενικές Πληροφορίες" +#: model:res.country,name:base.eg +msgid "Egypt" +msgstr "Egypt" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-product" -msgstr "terp-product" +#: field:ir.sequence,prefix:0 +msgid "Prefix" +msgstr "Πρόθεμα" + +#. module: base +#: model:res.country,name:base.rw +msgid "Rwanda" +msgstr "Rwanda" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "German / Deutsch" +msgstr "Γερμανικά / Deutsch" + +#. module: base +#: help:ir.actions.server,trigger_name:0 +msgid "Select the Signal name that is to be used as the trigger." +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Fields Mapping" +msgstr "Αντιστοιχία πεδίων" + +#. module: base +#: model:res.country,name:base.bi +msgid "Burundi" +msgstr "Burundi" + +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:module.upgrade,end,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:server.action.create,step_1,end:0 +#: view:wizard.module.lang.export:0 +msgid "Close" +msgstr "Κλείσιμο" + +#. module: base +#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 +msgid "Sequence Name" +msgstr "Όνομα Αρίθμησης" #. module: base #: model:res.country,name:base.tc msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "System upgrade done" +msgstr "System upgrade done" + +#. module: base +#: model:res.country,name:base.sc +msgid "Seychelles" +msgstr "Seychelles" + +#. module: base +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" +msgstr "SXW content" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_simple_view_form +msgid "Configure Simple View" +msgstr "Ρυθμίσεις Απλής Προβολής" + +#. module: base +#: wizard_button:module.upgrade,next,start:0 +msgid "Start Upgrade" +msgstr "Έναρξη Αναβάθμισης" + +#. module: base +#: model:res.country,name:base.bt +msgid "Bhutan" +msgstr "Bhutan" + +#. module: base +#: field:ir.default,ref_id:0 +msgid "ID Ref." +msgstr "ID Ref." + #. module: base #: field:res.partner.bank,owner_name:0 msgid "Account Owner" msgstr "Ιδιοκτήτης Λογαρισμού" #. module: base -#: field:workflow,osv:0 field:workflow.instance,res_type:0 +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "Set NULL" + +#. module: base +#: field:ir.report.custom.fields,fc1_condition:0 +#: field:ir.report.custom.fields,fc2_condition:0 +#: field:ir.report.custom.fields,fc3_condition:0 +msgid "condition" +msgstr "συνθήκη" + +#. module: base +#: model:res.country,name:base.sg +msgid "Singapore" +msgstr "Singapore" + +#. module: base +#: model:res.country,name:base.mt +msgid "Malta" +msgstr "Μάλτα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_report_custom +#: view:ir.report.custom:0 +msgid "Custom Report" +msgstr "Ειδική Αναφορά" + +#. module: base +#: field:ir.actions.server,fields_lines:0 +msgid "Field Mappings." +msgstr "" + +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "Ξετικάρετε το ενεργό πεδίο για να κρύψετε την επαφή" + +#. module: base +#: field:ir.cron,args:0 +msgid "Arguments" +msgstr "Arguments" + +#. module: base +#: field:ir.attachment,res_model:0 field:workflow,osv:0 +#: field:workflow.instance,res_type:0 msgid "Resource Object" msgstr "" #. module: base -#: field:ir.cron,function:0 field:res.partner.address,function:0 -#: selection:workflow.activity,kind:0 -msgid "Function" -msgstr "Λειτουργία" +#: selection:ir.actions.report.xml,report_type:0 +msgid "sxw" +msgstr "sxw" + +#. module: base +#: field:ir.module.module,shortdesc:0 +msgid "Short Description" +msgstr "Σύντομη Περιγραφή" + +#. module: base +#: model:res.country,name:base.gf +msgid "French Guyana" +msgstr "Γαλλική Γουιάνα" + +#. module: base +#: selection:ir.actions.url,target:0 +msgid "This Window" +msgstr "Αυτό το παράθυρο" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Μορφή Αρχείου" + +#. module: base +#: field:ir.model,state:0 field:ir.model.fields,state:0 +#: field:ir.model.grid,state:0 +msgid "Manually Created" +msgstr "Δημιουργημένα από Χρήστη" + +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "Αποθήκη" + +#. module: base +#: field:ir.attachment,description:0 field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 view:res.partner.event:0 +#: field:res.partner.event,description:0 view:res.request:0 +msgid "Description" +msgstr "Περιγραφή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "STOCK_INDENT" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "type,name,res_id,src,value" + +#. module: base +#: field:ir.actions.wizard,name:0 +msgid "Wizard Info" +msgstr "Wizard Info" #. module: base #: selection:res.partner.address,type:0 msgid "Delivery" msgstr "Παράδοση" +#. module: base +#: field:res.bank,street:0 field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" +msgstr "Οδός" + +#. module: base +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "Automatic XSL:RML" + #. module: base #: field:ir.attachment,preview:0 msgid "Image Preview" msgstr "Προεπισκόπηση Εικόνας" +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "ir.actions.configuration.wizard" + +#. module: base +#: view:workflow.workitem:0 +msgid "Workflow Workitems" +msgstr "Λειτουργία επαφής" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "STOCK_COPY" + +#. module: base +#: model:res.country,name:base.vc +msgid "Saint Vincent & Grenadines" +msgstr "Saint Vincent & Grenadines" + #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "" +#. module: base +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Manual domain setup" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "Εξαγωγή Γλώσσας" + +#. module: base +#: field:res.partner,customer:0 selection:res.partner.event,partner_type:0 +msgid "Customer" +msgstr "Πελάτης" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Unvalidated" +msgstr "Μη Επικυρωμένα" + #. module: base #: model:res.country,name:base.gw msgid "Guinea Bissau" msgstr "Γουινέα Μπισάου" +#. module: base +#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 +msgid "Report Name" +msgstr "Όνομα Αναφοράς" + #. module: base #: view:workflow.instance:0 msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Partners: " -msgstr "Συνεργάτες " +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "Αρχιτεκτονική Βάσης Δεδομένων" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +#: wizard_view:res.partner.spam_send,init:0 +msgid "Mass Mailing" +msgstr "Ομαδική Αλληλογραφία" + +#. module: base +#: model:res.country,name:base.io +msgid "British Indian Ocean Territory" +msgstr "British Indian Ocean Territory" + +#. module: base +#: model:ir.model,name:base.model_res_country field:res.bank,country:0 +#: view:res.country:0 field:res.country.state,country_id:0 +#: field:res.partner,country:0 field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 +msgid "Country" +msgstr "Χώρα" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Module successfully imported !" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "κέντρο" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" +msgstr "ir.actions.act_window_close" + +#. module: base +#: field:res.partner.event,partner_type:0 +msgid "Partner Relation" +msgstr "Σχέση Πελάτη" + +#. module: base +#: field:ir.actions.act_window,context:0 +msgid "Context Value" +msgstr "" #. module: base #: model:res.country,name:base.kp @@ -7488,45 +6811,82 @@ msgstr "Βόρεια Κορέα" msgid "Unsubscribe Report" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "Ώρα 00->24: %(h24)s" + +#. module: base +#: model:res.country,name:base.zw +msgid "Zimbabwe" +msgstr "Zimbabwe" + #. module: base #: selection:ir.actions.server,state:0 msgid "Create Object" msgstr "Δημιουργία Αντικειμένου" +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "Α4" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" msgstr "Κωδικός BIC/Swift" #. module: base -#: model:res.partner.category,name:base.res_partner_category_1 -msgid "Prospect" +#: field:res.request.history,name:0 +msgid "Summary" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Polish / Język polski" -msgstr "Polish / Język polski" +#: field:res.request.history,date_sent:0 +msgid "Date sent" +msgstr "Ημερ/νία Αποστολής" #. module: base -#: field:ir.exports,name:0 -msgid "Export Name" +#: model:ir.model,name:base.model_res_partner_function +msgid "Function of the contact" msgstr "" #. module: base -#: help:res.partner.address,type:0 -msgid "Used to select automatically the right address according to the context in sales and purchases documents." -msgstr "" +#: model:ir.actions.act_window,name:base.open_module_tree_upgrade +#: model:ir.ui.menu,name:base.menu_module_tree_upgrade +msgid "Modules to be installed, upgraded or removed" +msgstr "Modules to be installed, upgraded or removed" #. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Choose a language to install:" -msgstr "Επιλέξτε γλώσσα για εγκατάσταση:" +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Μήνας: %(month)s" #. module: base -#: model:res.country,name:base.lk -msgid "Sri Lanka" -msgstr "Σρι Λάνκα / Κευλάνη" +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "Πωλήσεις & Αγορές" + +#. module: base +#: model:res.country,name:base.mm +msgid "Myanmar" +msgstr "Myanmar" + +#. module: base +#: field:ir.actions.act_window.view,sequence:0 +#: field:ir.actions.server,sequence:0 field:ir.actions.todo,sequence:0 +#: field:ir.module.repository,sequence:0 +#: field:ir.report.custom.fields,sequence:0 view:ir.sequence:0 +#: field:ir.ui.menu,sequence:0 field:ir.ui.view_sc,sequence:0 +#: field:res.partner.bank,sequence:0 +#: field:wizard.ir.model.menu.create.line,sequence:0 +msgid "Sequence" +msgstr "Αρίθμηση" + +#. module: base +#: view:res.lang:0 +msgid "11. %U or %W ==> 48 (49th week)" +msgstr "11. %U or %W ==> 48 (49η εβδομάδα)" #. module: base #: selection:module.lang.install,init,lang:0 @@ -7534,34 +6894,384 @@ msgid "Russian / русский язык" msgstr "Ρώσσικα / русский язык" #. module: base -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "txt" +#: help:ir.cron,numbercall:0 +msgid "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" msgstr "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" #. module: base #: selection:module.lang.install,init,lang:0 -msgid "Greek / Ελληνικά" -msgstr "" +msgid "Chinese (CN) / 简体中文" +msgstr "Chinese (CN) / 简体中文" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "Html from html" -msgstr "" +#: view:ir.rule.group:0 +msgid "The rule is satisfied if all test are True (AND)" +msgstr "The rule is satisfied if all test are True (AND)" #. module: base -#: model:res.country,name:base.mk -msgid "FYROM" -msgstr "" +#: field:ir.report.custom,footer:0 +msgid "Report Footer" +msgstr "Report Footer" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_NEXT" +msgstr "STOCK_MEDIA_NEXT" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Right-to-Left" +msgstr "Right-to-Left" + +#. module: base +#: model:res.country,name:base.yu +msgid "Yugoslavia" +msgstr "Yugoslavia" + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Choose a language to install:" +msgstr "Επιλέξτε γλώσσα για εγκατάσταση:" + +#. module: base +#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 +msgid "Partner" +msgstr "Συνεργάτης" + +#. module: base +#: model:res.country,name:base.lk +msgid "Sri Lanka" +msgstr "Σρι Λάνκα / Κευλάνη" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Install" +msgstr "Cancel Install" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "Εισαγωγή γλώσσας" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Note that this operation my take a few minutes." +msgstr "Η διαδικασία αυτή μπορεί να πάρει μερικά λεπτά." + +#. module: base +#: field:ir.model.data,name:0 +msgid "XML Identifier" +msgstr "XML Identifier" + +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Δεν μπορείτε να δημιουργήσετε τέτοιο έγγραφο! (%s)" + +#~ msgid "The unlink method is not implemented on this object !" +#~ msgstr "Η μέθοδος αποσύνδεσης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + +#~ msgid "" +#~ "The sum of the data (2nd field) is null.\n" +#~ "We can't draw a pie chart !" +#~ msgstr "" +#~ "Το άθροισμα των δεδομένων στο 2ο πεδίο είναι μηδενικό.\n" +#~ "Αδύνατη η δημιουργία κυκλικού διαγράμματος !" + +#~ msgid "new" +#~ msgstr "νέο" + +#~ 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 "Αποθηκέυστε αυτό το έγγραφο σε %s αρχείο και επεξργαστείτε το με επεξεργαστή κειμένου ή άλλο πρόγραμμα. Η κωδικοποίηση του αρχείου είναι UTF-8." + +#~ msgid "Password mismatch !" +#~ msgstr "Το password δεν είναι το ίδιο!" + +#~ msgid "This url '%s' must provide an html file with links to zip modules" +#~ msgstr "This url '%s' must provide an html file with links to zip modules" + +#~ msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" +#~ msgstr "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" + +#~ msgid "The read method is not implemented on this object !" +#~ msgstr "Η μέθοδος ανάγνωσης δεν έχει αναπτυχθεί για αυτό το αντικείμενο!" + +#~ msgid "Custom fields must have a name that starts with 'x_' !" +#~ msgstr "Τα ειδικά πεδία πρέπει να έχουν όνομα που ξεκινάει από 'x_' !" + +#~ msgid "You can not remove the model '%s' !" +#~ msgstr "Δεν μπορείτε να διαγράψετε το μοντέλο '%s' !" + +#~ msgid "Basic Partner" +#~ msgstr "Βασικός Συνεργάτης" + +#~ msgid "You try to bypass an access rule (Document type: %s)." +#~ msgstr "Υπάρχουν κανόνες πρόσβασης για έγγραφα %s." + +#~ msgid "Pie charts need exactly two fields" +#~ msgstr "Το κυκλικό διάγραμμα χρειάζεται ακριβώς δύο πεδία" + +#~ msgid "The search method is not implemented on this object !" +#~ msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + +#~ msgid "Attached ID" +#~ msgstr "Attached ID" + +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Δεν μπορείτε να διαβάσετε αυτό το έγγραφο! (%s)" + +#~ msgid "" +#~ "Some installed modules depends on the module you plan to desinstall :\n" +#~ " %s" +#~ msgstr "" +#~ "Some installed modules depends on the module you plan to desinstall :\n" +#~ " %s" + +#~ msgid "Attached Model" +#~ msgstr "Συνδεδεμένο Μοντέλο" + +#~ msgid "Can not remove root user!" +#~ msgstr "Can not remove root user!" + +#~ msgid "Not implemented search_memory method !" +#~ msgstr "Not implemented search_memory method !" + +#~ msgid "Couldn't generate the next id because some partners have an alphabetic id !" +#~ msgstr "Αδύνατη η δημιουργία του επόμενου id διότι κάποιοι συνεργάτες έχουν αλφαβητικό id!" + +#~ msgid "Not implemented set_memory method !" +#~ msgstr "Not implemented set_memory method !" + +#~ msgid "Enter at least one field !" +#~ msgstr "Συμπληρώστε ένα πεδίο τουλάχιστον!" + +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Δεν μπορείτε να επέμβετε στο έγγραφο! (%s)" + +#~ msgid "The perm_read method is not implemented on this object !" +#~ msgstr "The perm_read method is not implemented on this object !" + +#~ msgid "Openstuff.net" +#~ msgstr "Openstuff.net" + +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Δεν μπορείτε να διαγράψετε αυτό το έγγραφο! (%s)" + +#~ msgid "Can not upgrade module '%s'. It is not installed." +#~ msgstr "Can not upgrade module '%s'. It is not installed." + +#~ msgid "HR sector" +#~ msgstr "Τμήμα Ανθρωπίνων Πόρων" + +#~ msgid "Please specify an action to launch !" +#~ msgstr "Παρακαλώ επιλέξτε ενέργειας προς εκτέλεση!" + +#~ msgid "Please check that all your lines have %d columns." +#~ msgstr "Παρακαλώ ελέγξτε ότι όλες οι γραμμές σας έχουν %d στήλες." + +#~ msgid "Recursion error in modules dependencies !" +#~ msgstr "Recursion error in modules dependencies !" + +#~ msgid "Ukrainian / украї́нська мо́ва" +#~ msgstr "Ukrainian / украї́нська мо́ва" + +#~ msgid "Error ! You can not create recursive categories." +#~ msgstr "Σφάλμα! Υπάρχει κατηγορία με την ίδια περιγραφή." + +#~ msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." +#~ msgstr "Αποθηκεύστε αυτό το έγγραφο σε αρχείο .CSV και επεξεργαστείτε το με το υπολογιστικό πρόγραμμα της επιλογής σας. Η κωδικοποίηση του αρχείου είναι UTF-8. Πρέπει να μετεφράσετε την τελευταία στήλη πριν το επανεισάγετε." + +#~ msgid "Telecom sector" +#~ msgstr "Τηλεπικοινωνίες" + +#~ msgid "" +#~ "You try to upgrade a module that depends on the module: %s.\n" +#~ "But this module is not available in your system." +#~ msgstr "" +#~ "You try to upgrade a module that depends on the module: %s.\n" +#~ "But this module is not available in your system." + +#~ msgid "Invalid operation" +#~ msgstr "Invalid operation" + +#~ msgid "" +#~ "You try to install a module that depends on the module: %s.\n" +#~ "But this module is not available in your system." +#~ msgstr "" +#~ "You try to install a module that depends on the module: %s.\n" +#~ "But this module is not available in your system." + +#~ msgid "You can not remove the field '%s' !" +#~ msgstr "Δεν μπορείτε να διαγράψετε το πεδίο '%s' !" + +#~ msgid "You try to remove a module that is installed or will be installed" +#~ msgstr "You try to remove a module that is installed or will be installed" + +#~ msgid "Error occurred while validating the field(s) %s: %s" +#~ msgstr "Σφάλμα κατά την επικύρωση των πεδίων %s: %s" + +#~ msgid "Using a relation field which uses an unknown object" +#~ msgstr "Using a relation field which uses an unknown object" + +#~ msgid "The write method is not implemented on this object !" +#~ msgstr "Η μέθοδος εγγραφής δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + +#~ msgid "The name of the group can not start with \"-\"" +#~ msgstr "Το όνομα της ομάδας δεν μπορεί να ξεκινάει με \"-\"" + +#~ msgid "Tree can only be used in tabular reports" +#~ msgstr "Το δέντρο μπορεί να χρησιμοποιηθεί μόνο σε αναφορές με μορφή πίνακα" + +#~ msgid "Wrong ID for the browse record, got %r, expected an integer." +#~ msgstr "Wrong ID for the browse record, got %r, expected an integer." + +#~ msgid "The create method is not implemented on this object !" +#~ msgstr "The create method is not implemented on this object !" + +#~ msgid "The name_get method is not implemented on this object !" +#~ msgstr "The name_get method is not implemented on this object !" + +#~ msgid "Not Implemented" +#~ msgstr "Μη ενεργοποιημένο" + +#~ msgid "Textile Suppliers" +#~ msgstr "Προμηθευτές Υφασμάτων" + +#~ msgid "Macedonia" +#~ msgstr "F.Y.R.O.M." + +#~ msgid "Addresses" +#~ msgstr "Διευθύνσεις" + +#~ msgid "Records were modified in the meanwhile" +#~ msgstr "Οι εγγραφές έχουν τροποποιηθεί στο μεταξύ" + +#~ msgid "The name_search method is not implemented on this object !" +#~ msgstr "The name_search method is not implemented on this object !" + +#~ msgid "Module %s: Invalid Quality Certificate" +#~ msgstr "Module %s: Invalid Quality Certificate" + +#~ msgid "" +#~ "Can not create the module file:\n" +#~ " %s" +#~ msgstr "" +#~ "Can not create the module file:\n" +#~ " %s" + +#~ msgid "UserError" +#~ msgstr "UserError" + +#~ msgid "The copy method is not implemented on this object !" +#~ msgstr "The copy method is not implemented on this object !" + +#~ msgid "AccessError" +#~ msgstr "AccessError" + +#~ msgid "You cannot perform this operation." +#~ msgstr "Δεν μπορείτε να εκτελέσετε αυτή τη λειτουργία." + +#~ msgid "Not implemented get_memory method !" +#~ msgstr "Not implemented get_memory method !" + +#~ msgid "Can not create the module file: %s !" +#~ msgstr "Can not create the module file: %s !" + +#~ msgid "Please specify server option --smtp-from !" +#~ msgstr "Please specify server option --smtp-from !" + +#~ msgid "Bad customers" +#~ msgstr "Κακοί πελάτες" + +#~ msgid "Bad file format" +#~ msgstr "Μορφή αρχείου εσφαλμένη" + +#~ msgid "Number too large '%d', can not translate it" +#~ msgstr "ΠΟλύ μεγάλος αριθμός '%d', δε μεταφράζεται" + +#~ msgid "Error !" +#~ msgstr "Σφάλμα!" + +#~ msgid "This method does not exist anymore" +#~ msgstr "This method does not exist anymore" + +#~ msgid "File Content" +#~ msgstr "Περιεχόμενα Φακέλου" + +#~ msgid "%A - Full weekday name." +#~ msgstr "%A - Πλήρες όνομα ημέρας εβδομάδας" + +#~ msgid "Unknown position in inherited view %s !" +#~ msgstr "Unknown position in inherited view %s !" + +#~ msgid "Problem in configuration `Record Id` in Server Action!" +#~ msgstr "Problem in configuration `Record Id` in Server Action!" + +#~ msgid "ValidateError" +#~ msgstr "ValidateError" + +#~ msgid "Field %d should be a figure" +#~ msgstr "Το πεδίο %d πρέπει να έιναι αριθμός" + +#~ msgid "Error ! You can not create recursive associated members." +#~ msgstr "Σφάλμα! Υπάρχει ήδη ίδια περιγραφή συνδεδεμένου μέλους." + +#~ msgid "OpenERP Partners" +#~ msgstr "Συνεργάτες OpenERP" + +#~ msgid "Important customers" +#~ msgstr "Σημαντικοί Πελάτες" + +#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" +#~ msgstr "Η τιμή \"%s\" για οτ πεδίο \"%s\" δεν είναι επιλεγμένη!" + +#~ msgid "Gold Partner" +#~ msgstr "Χρυσός Συνεργάτης" + +#~ msgid "Open Source Service Company" +#~ msgstr "Open Source Service Company" + +#~ msgid "undefined get method !" +#~ msgstr "undefined get method !" + +#~ msgid "Password empty !" +#~ msgstr "Κενό Password!" + +#~ msgid "Bad query." +#~ msgstr "Bad query." + +#~ msgid "Second field should be figures" +#~ msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμητικό" + +#~ msgid "Error" +#~ msgstr "Σφάλμα" + +#~ msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +#~ msgstr "Αποθύκευση του εγγράφου σε μορφή .tgz. Τα αρχεία είναι UTF-8 %s και μπορούν να επεξεργαστούν με κειμενογράφο." + +#~ msgid "Bar charts need at least two fields" +#~ msgstr "Τα ιστογράμματα (bar charts) χρειάζονται τουλάχιστον δύο πεδία" + +#~ msgid "Segmentation" +#~ msgstr "Καταμερισμός" + +#~ msgid "Warning" +#~ msgstr "Warning" + +#~ msgid "IT sector" +#~ msgstr "IT sector" + +#~ msgid "Partners: " +#~ msgstr "Συνεργάτες " #~ msgid "Can not define a column %s. Reserved keyword !" #~ msgstr "Δεν μπορείτε να καθορίσετε στήλη '%s' . Κρατημένη λέξη " @@ -7572,12 +7282,6 @@ msgstr "" #~ msgid "nl_BE" #~ msgstr "nl_BE" -#~ msgid "sv_SV" -#~ msgstr "sv_SV" - -#~ msgid "cs_CS" -#~ msgstr "cs_CS" - #~ msgid "State 2" #~ msgstr "Πολιτεία" diff --git a/bin/addons/base_setup/i18n/el_GR.po b/bin/addons/base_setup/i18n/el_GR.po index b6ac6736293..20d9c9a7419 100644 --- a/bin/addons/base_setup/i18n/el_GR.po +++ b/bin/addons/base_setup/i18n/el_GR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0-alpha\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-11-15 08:33:16+0000\n" +"POT-Creation-Date: 2009-06-08 21:23:39+0000\n" "PO-Revision-Date: 2008-11-15 08:33:16+0000\n" "Last-Translator: P. Christeas \n" "Language-Team: \n" @@ -25,12 +25,15 @@ msgstr "Πόλη" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 -msgid "" -"You can start configuring the system or connect directly to the database " -"using the default setup." -msgstr "" -"Μπορείτε να ξεκινήσετε την παραμετροποίηση του συστήματος ή να συνδεθείτε " -"απευθείας στην βάση δεδομένων χρησιμοποιώντας την προκαθορισμένη εγκατάσταση." +msgid "You can start configuring the system or connect directly to the database using the default setup." +msgstr "Μπορείτε να ξεκινήσετε την παραμετροποίηση του συστήματος ή να συνδεθείτε απευθείας στην βάση δεδομένων χρησιμοποιώντας την προκαθορισμένη εγκατάσταση." + +#. module: base_setup +#: wizard_field:base_setup.base_setup,company,zip:0 +#: wizard_field:base_setup.base_setup,init,zip:0 +#: wizard_field:base_setup.base_setup,update,zip:0 +msgid "Zip code" +msgstr "Ταχυδρομικος Κώδικας" #. module: base_setup #: wizard_view:base_setup.base_setup,init:0 @@ -49,23 +52,13 @@ msgstr "Έναρξη Παραμετροποίησης" #. module: base_setup #: wizard_view:base_setup.base_setup,init:0 -msgid "" -"You'll be able to install more modules later through the Administration menu." -msgstr "" -"Θα είστε σε θέση να εγκαταστήσετε περισσότερες ενότητες αργότερα μέσω του " -"μενού Διαχείρισης." +msgid "You'll be able to install more modules later through the Administration menu." +msgstr "Θα είστε σε θέση να εγκαταστήσετε περισσότερες ενότητες αργότερα μέσω του μενού Διαχείρισης." #. module: base_setup #: wizard_view:base_setup.base_setup,init:0 -msgid "" -"A profile sets a pre-selection of modules for specific needs. These profiles " -"have been setup to help you discover the different aspects of OpenERP. This " -"is just an overview, we have 300+ available modules." -msgstr "" -"Ένα προφίλ θέτει σε εφαρμογή μιά συγκεκριμένη επιλογή ενοτήτων για ειδικές " -"ανάγκες. Αυτά τα προφίλ έχουν ρυθμιστεί για να σας βοηθήσουν να ανακαλύψετε " -"τις διαφορετικές οπτικές του OpenERP. Αυτό είναι απλά μιά περίληψη, έχουμε " -"πάνω απο 300 ενότητες διαθέσιμες." +msgid "A profile sets a pre-selection of modules for specific needs. These profiles have been setup to help you discover the different aspects of OpenERP. This is just an overview, we have 300+ available modules." +msgstr "Ένα προφίλ θέτει σε εφαρμογή μιά συγκεκριμένη επιλογή ενοτήτων για ειδικές ανάγκες. Αυτά τα προφίλ έχουν ρυθμιστεί για να σας βοηθήσουν να ανακαλύψετε τις διαφορετικές οπτικές του OpenERP. Αυτό είναι απλά μιά περίληψη, έχουμε πάνω απο 300 ενότητες διαθέσιμες." #. module: base_setup #: wizard_button:base_setup.base_setup,company,update:0 @@ -82,8 +75,8 @@ msgstr "E-mail" #. module: base_setup #: wizard_field:base_setup.base_setup,company,state_id:0 -#: wizard_field:base_setup.base_setup,update,state_id:0 #: wizard_field:base_setup.base_setup,init,state_id:0 +#: wizard_field:base_setup.base_setup,update,state_id:0 msgid "State" msgstr "Κατάσταση Λογαριασμού" @@ -127,8 +120,8 @@ msgstr "Διεύθυνση2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Πληροφορίες Αναφοράς" +msgid "Define Main Company" +msgstr "Καθορίστε Κύρια Εταιρία" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -139,8 +132,8 @@ msgstr "Τηλέφωνο" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Καθορίστε Κύρια Εταιρία" +msgid "Report Information" +msgstr "Πληροφορίες Αναφοράς" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 @@ -149,6 +142,19 @@ msgstr "Καθορίστε Κύρια Εταιρία" msgid "Company Name" msgstr "Επωνυμία Επιχείρησης" +#. module: base_setup +#: help:base_setup.base_setup,company,rml_footer2:0 +#: help:base_setup.base_setup,init,rml_footer2:0 +#: help:base_setup.base_setup,update,rml_footer2:0 +msgid "" +"This sentence will appear at the bottom of your reports.\n" +"We suggest you to put bank information here:\n" +"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" +msgstr "" +"Αυτή η πρόταση θα εμφανίζεται στο κάτω μέρος των αναφορών σας.\n" +"Σας προτείνουμε να εισάγετε πληροφορίες τράπεζας εδω:\n" +"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" + #. module: base_setup #: wizard_field:base_setup.base_setup,company,country_id:0 #: wizard_field:base_setup.base_setup,init,country_id:0 @@ -167,11 +173,17 @@ msgid "Setup" msgstr "Εγκατάσταση" #. module: base_setup -#: wizard_field:base_setup.base_setup,company,zip:0 -#: wizard_field:base_setup.base_setup,init,zip:0 -#: wizard_field:base_setup.base_setup,update,zip:0 -msgid "Zip code" -msgstr "Ταχυδρομικος Κώδικας" +#: help:base_setup.base_setup,company,rml_footer1:0 +#: help:base_setup.base_setup,init,rml_footer1:0 +#: help:base_setup.base_setup,update,rml_footer1:0 +msgid "" +"This sentence will appear at the bottom of your reports.\n" +"We suggest you to write legal sentences here:\n" +"Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" +msgstr "" +"Αυτή η πρόταση θα εμφανίζεται στο κάτω μέρος των αναφορών σας.\n" +"Σας προτείνουμε να γράψετε προτάσεις όπως:\n" +"Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" #. module: base_setup #: wizard_view:base_setup.base_setup,update:0 @@ -189,11 +201,17 @@ msgid "Installation Done" msgstr "Ολοκλήρωση Εγκατάστασης" #. module: base_setup -#: wizard_field:base_setup.base_setup,company,logo:0 -#: wizard_field:base_setup.base_setup,init,logo:0 -#: wizard_field:base_setup.base_setup,update,logo:0 -msgid "Logo" -msgstr "Logo" +#: help:base_setup.base_setup,company,rml_header1:0 +#: help:base_setup.base_setup,init,rml_header1:0 +#: help:base_setup.base_setup,update,rml_header1:0 +msgid "" +"This sentence will appear at the top right corner of your reports.\n" +"We suggest you to put a slogan here:\n" +"\"Open Source Business Solutions\"." +msgstr "" +"Αυτή η εγκατάσταση θα εμφανίζεται στην πάνω δεξιά γωνία των αναφορών σας.\n" +"Σας προτείνουμε να βάλετε το slogan σας εδώ:\n" +"\"Open Source Business Solutions\"." #. module: base_setup #: wizard_field:base_setup.base_setup,company,rml_header1:0 @@ -209,8 +227,8 @@ msgstr "Το Logo σας - Χρησιμοποιήστε ένα μέγεθος π #. module: base_setup #: wizard_field:base_setup.base_setup,company,currency:0 -#: wizard_field:base_setup.base_setup,update,currency:0 #: wizard_field:base_setup.base_setup,init,currency:0 +#: wizard_field:base_setup.base_setup,update,currency:0 msgid "Currency" msgstr "Νόμισμα" @@ -221,62 +239,30 @@ msgstr "Νόμισμα" msgid "Street" msgstr "Οδός" +#. module: base_setup +#: wizard_button:base_setup.base_setup,finish,menu:0 +msgid "Use Directly" +msgstr "Χρήση Απευθείας" + #. module: base_setup #: wizard_button:base_setup.base_setup,init,menu:0 msgid "Cancel" msgstr "Άκυρο" #. module: base_setup -#: wizard_button:base_setup.base_setup,finish,menu:0 -msgid "Use Directly" -msgstr "Χρήση Απευθείας" +#: wizard_field:base_setup.base_setup,company,logo:0 +#: wizard_field:base_setup.base_setup,init,logo:0 +#: wizard_field:base_setup.base_setup,update,logo:0 +msgid "Logo" +msgstr "Logo" + +#. module: base_setup +#: model:ir.module.module,shortdesc:base_setup.module_meta_information +msgid "Base Setup" +msgstr "Βασική Εγκατάσταση" #. module: base_setup #: wizard_button:base_setup.base_setup,company,init:0 #: wizard_button:base_setup.base_setup,update,company:0 msgid "Previous" msgstr "Προηγούμενο" - -#. module: base_setup -#: help:base_setup.base_setup,company,rml_footer2:0 -#: help:base_setup.base_setup,init,rml_footer2:0 -#: help:base_setup.base_setup,update,rml_footer2:0 -msgid "" -"This sentence will appear at the bottom of your reports.\n" -"We suggest you to put bank information here:\n" -"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" -msgstr "" -"Αυτή η πρόταση θα εμφανίζεται στο κάτω μέρος των αναφορών σας.\n" -"Σας προτείνουμε να εισάγετε πληροφορίες τράπεζας εδω:\n" -"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" - -#. module: base_setup -#: help:base_setup.base_setup,company,rml_footer1:0 -#: help:base_setup.base_setup,init,rml_footer1:0 -#: help:base_setup.base_setup,update,rml_footer1:0 -msgid "" -"This sentence will appear at the bottom of your reports.\n" -"We suggest you to write legal sentences here:\n" -"Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" -msgstr "" -"Αυτή η πρόταση θα εμφανίζεται στο κάτω μέρος των αναφορών σας.\n" -"Σας προτείνουμε να γράψετε προτάσεις όπως:\n" -"Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" - -#. module: base_setup -#: help:base_setup.base_setup,company,rml_header1:0 -#: help:base_setup.base_setup,init,rml_header1:0 -#: help:base_setup.base_setup,update,rml_header1:0 -msgid "" -"This sentence will appear at the top right corner of your reports.\n" -"We suggest you to put a slogan here:\n" -"\"Open Source Business Solutions\"." -msgstr "" -"Αυτή η εγκατάσταση θα εμφανίζεται στην πάνω δεξιά γωνία των αναφορών σας.\n" -"Σας προτείνουμε να βάλετε το slogan σας εδώ:\n" -"\"Open Source Business Solutions\"." - -#. module: base_setup -#: model:ir.module.module,shortdesc:base_setup.module_meta_information -msgid "Base Setup" -msgstr "Βασική Εγκατάσταση" From 3ec840e5299bcaf40d5adc01180d688128c76b19 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 9 Jun 2009 02:46:20 +0300 Subject: [PATCH 149/251] Base_setup el_GR translations. bzr revid: p_christ@hol.gr-20090608234620-tk5rp2aabf7kybcp --- bin/addons/base_setup/i18n/el_GR.po | 85 +++++++++++++++++------------ 1 file changed, 49 insertions(+), 36 deletions(-) diff --git a/bin/addons/base_setup/i18n/el_GR.po b/bin/addons/base_setup/i18n/el_GR.po index 20d9c9a7419..6d23143b0e6 100644 --- a/bin/addons/base_setup/i18n/el_GR.po +++ b/bin/addons/base_setup/i18n/el_GR.po @@ -1,19 +1,18 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_setup # -# Copyright (C) 2008,2009 P. Christeas msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0-alpha\n" +"Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-06-08 21:23:39+0000\n" -"PO-Revision-Date: 2008-11-15 08:33:16+0000\n" -"Last-Translator: P. Christeas \n" +"POT-Creation-Date: 2009-02-06 15:20:38+0000\n" +"PO-Revision-Date: 2009-05-30 03:33+0200\n" +"Last-Translator: Panagiotis Kranidiotis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" #. module: base_setup @@ -25,40 +24,54 @@ msgstr "Πόλη" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 -msgid "You can start configuring the system or connect directly to the database using the default setup." -msgstr "Μπορείτε να ξεκινήσετε την παραμετροποίηση του συστήματος ή να συνδεθείτε απευθείας στην βάση δεδομένων χρησιμοποιώντας την προκαθορισμένη εγκατάσταση." +msgid "" +"You can start configuring the system or connect directly to the database " +"using the default setup." +msgstr "" +"Μπορείτε να ξεκινήσετε τις ρυθμίσεις του συστήματος ή να συνδεθείτε απ' " +"ευθείας με τη βάση δεδομένων χρησιμοποιώντας προεπιλγμένες ρυθμίσεις." #. module: base_setup #: wizard_field:base_setup.base_setup,company,zip:0 #: wizard_field:base_setup.base_setup,init,zip:0 #: wizard_field:base_setup.base_setup,update,zip:0 msgid "Zip code" -msgstr "Ταχυδρομικος Κώδικας" +msgstr "Ταχ. Κώδικας" #. module: base_setup #: wizard_view:base_setup.base_setup,init:0 msgid "Select a Profile" -msgstr "Επιλέξτε Προφίλ" +msgstr "Επιλογή Προφίλ" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 msgid "Report header" -msgstr "Κεφαλίδα αναφοράς" +msgstr "Κεφαλίδα Αναφορών" #. module: base_setup #: wizard_button:base_setup.base_setup,finish,config:0 msgid "Start Configuration" -msgstr "Έναρξη Παραμετροποίησης" +msgstr "Εκκίνηση Ρυθμίσεων" #. module: base_setup #: wizard_view:base_setup.base_setup,init:0 -msgid "You'll be able to install more modules later through the Administration menu." -msgstr "Θα είστε σε θέση να εγκαταστήσετε περισσότερες ενότητες αργότερα μέσω του μενού Διαχείρισης." +msgid "" +"You'll be able to install more modules later through the Administration menu." +msgstr "" +"θα μπορέσετε να εγκαταστήσετε περισσότερα αρθρώματα του προγράμματος " +"αργότερα, από το μενού της Διαχείρισης." #. module: base_setup #: wizard_view:base_setup.base_setup,init:0 -msgid "A profile sets a pre-selection of modules for specific needs. These profiles have been setup to help you discover the different aspects of OpenERP. This is just an overview, we have 300+ available modules." -msgstr "Ένα προφίλ θέτει σε εφαρμογή μιά συγκεκριμένη επιλογή ενοτήτων για ειδικές ανάγκες. Αυτά τα προφίλ έχουν ρυθμιστεί για να σας βοηθήσουν να ανακαλύψετε τις διαφορετικές οπτικές του OpenERP. Αυτό είναι απλά μιά περίληψη, έχουμε πάνω απο 300 ενότητες διαθέσιμες." +msgid "" +"A profile sets a pre-selection of modules for specific needs. These profiles " +"have been setup to help you discover the different aspects of OpenERP. This " +"is just an overview, we have 300+ available modules." +msgstr "" +"Το προφίλ ορίζει μια προεπιλογή αρθρωμάτων για συγκεκριμένες ανάγκες. Αυτά " +"τα προφίλ έχουν δημιουργηθεί για να σας βοηθήσουν να ανακαλύψετε διαφορετικά " +"κομμάτια του OpenERP. Αυτό είναι μόνο μια γενική επισκόπηση, υπάρχουν πάνω " +"από 300 αρθρώματα του προγράμματος. " #. module: base_setup #: wizard_button:base_setup.base_setup,company,update:0 @@ -78,12 +91,12 @@ msgstr "E-mail" #: wizard_field:base_setup.base_setup,init,state_id:0 #: wizard_field:base_setup.base_setup,update,state_id:0 msgid "State" -msgstr "Κατάσταση Λογαριασμού" +msgstr "State" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 msgid "Your new database is now fully installed." -msgstr "Η νέα σας βάση δεδομένων έχει εγκατασταθεί πλήρως." +msgstr "Η νέα βάση δεδομένων σας εγκαταστάθηκε πλήρως." #. module: base_setup #: wizard_field:base_setup.base_setup,company,profile:0 @@ -97,14 +110,14 @@ msgstr "Προφίλ" #: wizard_field:base_setup.base_setup,init,rml_footer1:0 #: wizard_field:base_setup.base_setup,update,rml_footer1:0 msgid "Report Footer 1" -msgstr "Υποσέλιδο Αναφοράς 1" +msgstr "Υποσέλιδο Αναφορών 1" #. module: base_setup #: wizard_field:base_setup.base_setup,company,rml_footer2:0 #: wizard_field:base_setup.base_setup,init,rml_footer2:0 #: wizard_field:base_setup.base_setup,update,rml_footer2:0 msgid "Report Footer 2" -msgstr "Υποσέλιδο Αναφοράς 2" +msgstr "Υποσέλιδο Αναφορών 2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 @@ -116,12 +129,12 @@ msgstr "Γενικές Πληροφορίες" #: wizard_field:base_setup.base_setup,init,street2:0 #: wizard_field:base_setup.base_setup,update,street2:0 msgid "Street2" -msgstr "Διεύθυνση2" +msgstr "Οδός 2" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 msgid "Define Main Company" -msgstr "Καθορίστε Κύρια Εταιρία" +msgstr "Ορισμός Κύριας Εταιρείας" #. module: base_setup #: wizard_field:base_setup.base_setup,company,phone:0 @@ -133,14 +146,14 @@ msgstr "Τηλέφωνο" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 msgid "Report Information" -msgstr "Πληροφορίες Αναφοράς" +msgstr "Πληροφορίες Αναφορών" #. module: base_setup #: wizard_field:base_setup.base_setup,company,name:0 #: wizard_field:base_setup.base_setup,init,name:0 #: wizard_field:base_setup.base_setup,update,name:0 msgid "Company Name" -msgstr "Επωνυμία Επιχείρησης" +msgstr "Όνομα Εταιρείας" #. module: base_setup #: help:base_setup.base_setup,company,rml_footer2:0 @@ -152,8 +165,8 @@ msgid "" "IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" msgstr "" "Αυτή η πρόταση θα εμφανίζεται στο κάτω μέρος των αναφορών σας.\n" -"Σας προτείνουμε να εισάγετε πληροφορίες τράπεζας εδω:\n" -"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" +"Σας προτείνουμε να βάλετε εδώ τις οικονομικές πληροφορίες:\n" +"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - ΑΦΜ: BE0477.472.701" #. module: base_setup #: wizard_field:base_setup.base_setup,company,country_id:0 @@ -182,7 +195,7 @@ msgid "" "Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" msgstr "" "Αυτή η πρόταση θα εμφανίζεται στο κάτω μέρος των αναφορών σας.\n" -"Σας προτείνουμε να γράψετε προτάσεις όπως:\n" +"Σας προτείνουμε να βάλετε εδώ νομικές πληροφορίες:\n" "Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" #. module: base_setup @@ -198,7 +211,7 @@ msgstr "Εγκατάσταση" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 msgid "Installation Done" -msgstr "Ολοκλήρωση Εγκατάστασης" +msgstr "Η Εγκατάσταση ολοκληρώθηκε" #. module: base_setup #: help:base_setup.base_setup,company,rml_header1:0 @@ -209,8 +222,8 @@ msgid "" "We suggest you to put a slogan here:\n" "\"Open Source Business Solutions\"." msgstr "" -"Αυτή η εγκατάσταση θα εμφανίζεται στην πάνω δεξιά γωνία των αναφορών σας.\n" -"Σας προτείνουμε να βάλετε το slogan σας εδώ:\n" +"Αυτή η πρόταση θα εμφανίζεται στο πάνω δεξιά μέρος των αναφορών σας.\n" +"Σας προτείνουμε να βάλετε ένα σλόγκαν εδώ:\n" "\"Open Source Business Solutions\"." #. module: base_setup @@ -223,7 +236,7 @@ msgstr "Κεφαλίδα Αναφοράς" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "Το Logo σας - Χρησιμοποιήστε ένα μέγεθος περίπου 450x150 pixels." +msgstr "Το λογότυπό σας: αρχείο μεγέθους 450x150 pixels." #. module: base_setup #: wizard_field:base_setup.base_setup,company,currency:0 @@ -242,24 +255,24 @@ msgstr "Οδός" #. module: base_setup #: wizard_button:base_setup.base_setup,finish,menu:0 msgid "Use Directly" -msgstr "Χρήση Απευθείας" +msgstr "Άμεση Χρήση " #. module: base_setup #: wizard_button:base_setup.base_setup,init,menu:0 msgid "Cancel" -msgstr "Άκυρο" +msgstr "Ακύρωση" #. module: base_setup #: wizard_field:base_setup.base_setup,company,logo:0 #: wizard_field:base_setup.base_setup,init,logo:0 #: wizard_field:base_setup.base_setup,update,logo:0 msgid "Logo" -msgstr "Logo" +msgstr "Λογότυπο" #. module: base_setup #: model:ir.module.module,shortdesc:base_setup.module_meta_information msgid "Base Setup" -msgstr "Βασική Εγκατάσταση" +msgstr "Εγκατάσταση Βασικών Ρυθμίσεων" #. module: base_setup #: wizard_button:base_setup.base_setup,company,init:0 From 358924f1356de76b91960cf7397c93fb2e428f0d Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 9 Jun 2009 02:47:25 +0300 Subject: [PATCH 150/251] Fixes for el_GR translations. bzr revid: p_christ@hol.gr-20090608234725-d0y6gwa7byu4wwyv --- bin/addons/base_setup/i18n/el_GR.po | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/bin/addons/base_setup/i18n/el_GR.po b/bin/addons/base_setup/i18n/el_GR.po index 6d23143b0e6..49b75785f99 100644 --- a/bin/addons/base_setup/i18n/el_GR.po +++ b/bin/addons/base_setup/i18n/el_GR.po @@ -2,18 +2,20 @@ # This file contains the translation of the following modules: # * base_setup # +# P. Christeas , 2009. msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-02-06 15:20:38+0000\n" -"PO-Revision-Date: 2009-05-30 03:33+0200\n" -"Last-Translator: Panagiotis Kranidiotis \n" -"Language-Team: \n" +"PO-Revision-Date: 2009-06-09 02:47+0300\n" +"Last-Translator: P. Christeas \n" +"Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" +"X-Generator: Lokalize 0.3\n" #. module: base_setup #: wizard_field:base_setup.base_setup,company,city:0 @@ -29,7 +31,7 @@ msgid "" "using the default setup." msgstr "" "Μπορείτε να ξεκινήσετε τις ρυθμίσεις του συστήματος ή να συνδεθείτε απ' " -"ευθείας με τη βάση δεδομένων χρησιμοποιώντας προεπιλγμένες ρυθμίσεις." +"ευθείας με τη βάση δεδομένων χρησιμοποιώντας προεπιλεγμένες ρυθμίσεις." #. module: base_setup #: wizard_field:base_setup.base_setup,company,zip:0 @@ -91,7 +93,7 @@ msgstr "E-mail" #: wizard_field:base_setup.base_setup,init,state_id:0 #: wizard_field:base_setup.base_setup,update,state_id:0 msgid "State" -msgstr "State" +msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 @@ -279,3 +281,4 @@ msgstr "Εγκατάσταση Βασικών Ρυθμίσεων" #: wizard_button:base_setup.base_setup,update,company:0 msgid "Previous" msgstr "Προηγούμενο" + From 9537f7b61bac1fc04f7658ee5ca7d2c1a5b642a7 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 10 Jun 2009 20:35:24 +0300 Subject: [PATCH 151/251] Debian build: Remove all patches, have setup.py not check modules. In build scenarios, python modules may be missing from the build machine. Then, allow setup.py to carry on. bzr revid: p_christ@hol.gr-20090610173524-fmqucmype469zm9i --- debian/patches/series | 2 -- debian/rules | 12 ++++++++---- setup.py | 3 ++- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/debian/patches/series b/debian/patches/series index d06879374fc..e69de29bb2d 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +0,0 @@ -01-autobuild.patch -02-migrate.patch diff --git a/debian/rules b/debian/rules index 83d9bfa54fe..f3a9000e712 100755 --- a/debian/rules +++ b/debian/rules @@ -1,6 +1,6 @@ #!/usr/bin/make -f -include /usr/share/quilt/quilt.make +# include /usr/share/quilt/quilt.make clean: clean-patched unpatch clean-patched: patch @@ -8,7 +8,7 @@ clean-patched: patch dh_testroot rm -f build-stamp - python setup.py clean + NO_CHECK_MODULES=1 python setup.py clean rm -rf build openerp-server -find $(CURDIR) -type f -name "*.pyc" | xargs rm -f @@ -23,7 +23,7 @@ install: patch dh_prep dh_installdirs - python setup.py install --no-compile --prefix=$(CURDIR)/debian/openerp-server/usr + NO_CHECK_MODULES=1 python setup.py install --no-compile --prefix=$(CURDIR)/debian/openerp-server/usr # Adjusting program location sed -i -e 's|cd .*python.*/site-packages|cd /usr/lib|' debian/openerp-server/usr/bin/openerp-server @@ -56,4 +56,8 @@ binary-indep: install dh_md5sums dh_builddeb -.PHONY: clean build install binary binary-arch binary-indep +patch: + +unpatch: + +.PHONY: clean build install binary binary-arch binary-indep patch unpatch diff --git a/setup.py b/setup.py index 9eb2ce631ce..69cf5de0d73 100755 --- a/setup.py +++ b/setup.py @@ -121,7 +121,8 @@ def data_files(): return files -check_modules() +if not os.getenv('NO_CHECK_MODULES',False) : + check_modules() f = file('openerp-server','w') start_script = """#!/bin/sh\necho "OpenERP Setup - The content of this file is generated at the install stage\n" """ From 9c584b3f0f390fcb5479239028eef9ae2f491276 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 10 Jun 2009 22:33:35 +0300 Subject: [PATCH 152/251] Hack setup.py to include additional addons. Since most addons will be located in another repo, try to find that repo and include a list of addons specified in 'server_modules.list' in the repo. This way, the basic server package will include a range of common addons. bzr revid: p_christ@hol.gr-20090610193335-mnby3puowcm6pv02 --- setup.py | 56 ++++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 44 insertions(+), 12 deletions(-) diff --git a/setup.py b/setup.py index 69cf5de0d73..5881b5f3a5e 100755 --- a/setup.py +++ b/setup.py @@ -72,11 +72,35 @@ def check_modules(): if not ok: sys.exit(1) -def find_addons(): +def _find_addons(): for (dp, dn, names) in os.walk(opj('bin', 'addons')): if '__terp__.py' in names: - modname = dp.replace(os.path.sep, '.').replace('bin', 'openerp-server', 1) - yield modname + modname = os.path.basename(dp) + yield (modname, dp) + #look for extra modules + try: + empath = os.getenv('EXTRA_MODULES_PATH','../addons/') + f = open(opj(empath,'server_modules.list'),'r') + # print 'Getting modules from:' , opj(empath,'server_modules.list') + mods = f.readlines() + for mname in mods: + mname = mname.strip() + if not mname: + continue + if os.path.exists(opj(empath,mname,'__terp__.py')): + yield ( mname, opj(empath,mname) ) + else: + print "Module %s specified, but no valid path." % mname + except: + pass + +__found_addons = None + +# Cache the results of _find_addons() and return them +def find_addons(found_addons = None): + if not found_addons: + found_addons = _find_addons() + return found_addons def data_files(): '''Build list of data files to be installed''' @@ -107,18 +131,18 @@ def data_files(): opj('bin', 'server.pkey'), opj('bin', 'server.cert')])) - for addon in find_addons(): - addonname = addon.split('.')[-1] - add_path = addon.replace('.', os.path.sep).replace('openerp-server', 'bin', 1) - addon_path = opj('lib', 'python%s' % py_short_version, 'site-packages', add_path.replace('bin', 'openerp-server', 1)) + for (addonname, add_path) in find_addons(): + addon_path = opj('lib', 'python%s' % py_short_version, 'site-packages', 'openerp-server','addons', addonname) pathfiles = [] for root, dirs, innerfiles in os.walk(add_path): - innerfiles = filter(lambda file: os.path.splitext(file)[1] not in ('.pyc', '.pyd', '.pyo'), innerfiles) + innerfiles = filter(lambda fil: os.path.splitext(fil)[1] not in ('.pyc', '.pyd', '.pyo'), innerfiles) if innerfiles: - res = os.path.normpath(opj(addon_path, root.replace(opj('bin','addons', addonname), '.'))) - pathfiles.extend(((res, map(lambda file: opj(root, file), innerfiles)),)) + res = os.path.normpath(opj(addon_path, root.replace(opj(add_path), '.'))) + pathfiles.extend(((res, map(lambda fil: opj(root, fil), innerfiles)),)) files.extend(pathfiles) + # for tup in files: + # print "Files:", tup[0], tup[1] return files if not os.getenv('NO_CHECK_MODULES',False) : @@ -129,6 +153,13 @@ start_script = """#!/bin/sh\necho "OpenERP Setup - The content of this file is g f.write(start_script) f.close() +def find_package_dirs(): + res = {} + for (mod, path) in find_addons(): + res ['openerp-server.addons.'+ mod ] = path + res ['openerp-server'] = 'bin' + return res + class openerp_server_install(install): def run(self): # create startup script @@ -183,12 +214,13 @@ setup(name = name, 'openerp-server.wizard', 'openerp-server.report.render.odt2odt', 'openerp-server.workflow'] + \ - list(find_addons()), - package_dir = {'openerp-server': 'bin'}, + list(map( lambda (a, p): 'openerp-server.addons.'+ a ,find_addons())), + package_dir = find_package_dirs(), console = [ { "script" : "bin\\openerp-server.py", "icon_resources" : [ (1,"pixmaps\\openerp-icon.ico") ] } ], options = options, ) +# # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From fbd87ff9608086288d8090115033cecee4523191 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 13 Jun 2009 17:37:34 +0300 Subject: [PATCH 153/251] Ir.cron: when an exception occurs, log it. bzr revid: p_christ@hol.gr-20090613143734-crws6uecjnmxpjsy --- bin/addons/base/ir/ir_cron.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/addons/base/ir/ir_cron.py b/bin/addons/base/ir/ir_cron.py index 3000e0f93fc..c3e327b9f82 100644 --- a/bin/addons/base/ir/ir_cron.py +++ b/bin/addons/base/ir/ir_cron.py @@ -107,8 +107,10 @@ class ir_cron(osv.osv, netsvc.Agent): addsql = ', active=False' cr.execute("update ir_cron set nextcall=%s, numbercall=%s"+addsql+" where id=%s", (nextcall.strftime('%Y-%m-%d %H:%M:%S'), numbercall, job['id'])) cr.commit() - except: - print "Exception in cron!" + except Exception,ex: + logger=netsvc.Logger() + logger.notifyChannel('cron', netsvc.LOG_WARNING, + 'Exception in cron:'+str(ex)) finally: cr.commit() cr.close() From 133d34b24cb82e02c6c73eae9f07b4bdb5b96aab Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 13 Jun 2009 18:15:59 +0300 Subject: [PATCH 154/251] [MAJOR]: change the system user for Mandriva to "openerp". After this commit, systems MUST upgrade their installations. bzr revid: p_christ@hol.gr-20090613151559-4yffmcnpq8d36jas --- doc/README.urpmi | 2 +- doc/README.userchange | 31 +++++++++++++++++++++++++++++++ doc/openerp-server.conf | 2 +- doc/openerp-server.init | 2 +- 4 files changed, 34 insertions(+), 3 deletions(-) create mode 100644 doc/README.userchange diff --git a/doc/README.urpmi b/doc/README.urpmi index 719ac8249f3..ce8fb706703 100644 --- a/doc/README.urpmi +++ b/doc/README.urpmi @@ -18,7 +18,7 @@ unix user name): $ su - # su - postgres - $ createuser tinyerp + $ 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 diff --git a/doc/README.userchange b/doc/README.userchange new file mode 100644 index 00000000000..f6cc0ab0666 --- /dev/null +++ b/doc/README.userchange @@ -0,0 +1,31 @@ +Important note for OpenERP build >= 5.0.1-11xrg: + +THE USERNAME HAS CHANGED!! + +Former user "tinyerp" is now called "openerp". + + +For that, you will have to make sure the following files are chowned +to the new user: + +/var/log/openerp +/var/spool/openerp +/var/run/openerp +/etc/openerp +/etc/openerp/cert.cfg +/etc/openerp-server.conf +/etc/logrotate.d/openerp-server + +Then, rename the user in the postgres database: + + psql -U postgres postgres + + ALTER ROLE tinyerp RENAME TO openerp; + +Then, edit your openerp-server.conf to depict the change: +- db_user = tinyerp ++ db_user = openerp + +Good luck! + + diff --git a/doc/openerp-server.conf b/doc/openerp-server.conf index 668b4aaf7cb..3b58a008329 100644 --- a/doc/openerp-server.conf +++ b/doc/openerp-server.conf @@ -13,7 +13,7 @@ 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 = tinyerp +db_user = openerp db_password = False ; Uncomment these for xml-rpc over SSL ; secure = True diff --git a/doc/openerp-server.init b/doc/openerp-server.init index 01d2b7b6b33..d9cc35362f9 100644 --- a/doc/openerp-server.init +++ b/doc/openerp-server.init @@ -51,7 +51,7 @@ RETVAL=0 start() { echo -n $"Starting $desc ($prog): " - daemon --user tinyerp --check openerp-server \ + daemon --user openerp --check openerp-server \ "/usr/bin/setsid /usr/bin/openerp-server \ -c /etc/openerp-server.conf \ --pidfile=$PIDFILE \ From be01111acaefea08a6d9911b57a192f731d64907 Mon Sep 17 00:00:00 2001 From: Panagiotis Kranidiotis Date: Wed, 17 Jun 2009 18:27:18 +0300 Subject: [PATCH 155/251] update greek translations bzr revid: kranidiotis@vatica.org-20090617152718-lrvnjw3hsv78emjn --- bin/addons/base/i18n/el_GR.po | 12535 +++++++++++++++++--------------- 1 file changed, 6539 insertions(+), 5996 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index daf404798a0..45562e65efc 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -1,105 +1,553 @@ -# Translation of OpenERP Server. # This file contains the translation of the following modules: # * base # -# P. Christeas , 2009. msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-06-08 21:23:39+0000\n" -"PO-Revision-Date: 2009-06-06 12:04+0300\n" -"Last-Translator: P. Christeas \n" -"Language-Team: Greek \n" +"POT-Creation-Date: 2009-02-06 15:20:38+0000\n" +"PO-Revision-Date: 2009-06-15 02:42+0200\n" +"Last-Translator: Panagiotis Kranidiotis \n" +"Language-Team: nls@hellug.gr \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-05-28 09:14+0000\n" -"X-Generator: Lokalize 0.3\n" -"X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" +"X-Poedit-Country: GREECE\n" "X-Poedit-SourceCharset: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: base -#: model:res.country,name:base.ca -msgid "Canada" -msgstr "Canada" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_STOP" -msgstr "STOCK_STOP" - -#. module: base -#: selection:ir.actions.act_window,target:0 -msgid "Current Window" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "Legends for Date and Time Formats" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_name:0 -msgid "Internal Name" -msgstr "Εσωτερικό όνομα" #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" -msgstr "Αγία Έλενα" +msgstr "Saint Helena" #. module: base #: wizard_view:res.partner.sms_send,init:0 msgid "SMS - Gateway: clickatell" msgstr "SMS - Gateway: clickatell" -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Monthly" -msgstr "Μηνιαία" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Unknown" -msgstr "Άγνωστο" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "This wizard will detect new terms in the application so that you can update them manually." -msgstr "This wizard will detect new terms in the application so that you can update them manually." - -#. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" - #. module: base #: view:res.lang:0 msgid "%j - Day of the year as a decimal number [001,366]." msgstr "%j - Ημέρα του χρόνου σε δεκαδική μορφή [001,366]." #. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "You may have to reinstall some language pack." -msgstr "Πιθανόν να χρειαστεί να επανεγκαταστήσετε κάποιο πακέτο γλώσσας." +#: field:ir.values,meta_unpickle:0 +msgid "Metadata" +msgstr "Metadata" + +#. module: base +#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "Προβολή Δομής" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not create this kind of document! (%s)" +msgstr "Δεν μπορείτε να δημιουργήσετε τέτοιο έγγραφο! (%s)" + +#. module: base +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "Κωδικός (πχ: en__US)" + +#. module: base +#: view:workflow:0 field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +msgid "Workflow" +msgstr "Ροή έργασίας" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " +msgstr "Για επίσημες μεταφράσεις μπορείτε να επισκεφθείτε το σύνδεσμο: " + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Hungarian / Magyar" +msgstr "Hungarian / Magyar" + +#. module: base +#: field:ir.actions.server,wkf_model_id:0 +msgid "Workflow On" +msgstr "Ροή Εργασίας σε λειτουργία" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "Δημιουργημένες Προβολές" + +#. module: base +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "Εκροές" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "Ετησίως" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Η μέθοδος αποσύνδεσης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "Επιλεγμένο Παράθυρο" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_simple_view +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 "" +"Επιλέξτε ανάμεσα στην Απλοποιημένη Εγκατάσταση ή την Εκτεταμένη.\n" +"Αν δοκιμάζετε το πρόγραμμα ή το χρησιμοποιείτε για πρώτη φορά, σας " +"προτείνουμε\n" +"την απλοποιημένη μορφή, η οποία έχει λιγότερες επιλογές αλλά είναι " +"ευκολότερη στην\n" +"κατανόηση. Μπορείτε να μετατρέψετε την εγκατάσταση αργότερα." + +#. module: base +#: code:report/custom.py:0 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Το άθροισμα των δεδομένων στο 2ο πεδίο είναι μηδενικό.\n" +"Αδύνατη η δημιουργία κυκλικού διαγράμματος !" + +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "South Korea" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Ροές" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "ir.ui.view.custom" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_custom +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.custom" +msgstr "ir.actions.report.custom" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_SAVE" -msgstr "STOCK_SAVE" +msgid "STOCK_CANCEL" +msgstr "STOCK_CANCEL" #. module: base -#: model:ir.actions.act_window,name:base.action_res_users_my -msgid "Change My Preferences" -msgstr "Αλλαγή Προτιμήσεων" +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "Ταξινόμηση ανά" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Άνοιγμα Παραθύρου" +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "Αριθμός Προασύξησης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_tree +#: model:ir.ui.menu,name:base.menu_action_res_company_tree +msgid "Company's Structure" +msgstr "Δομή Εταιρίας" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom_fields +msgid "ir.report.custom.fields" +msgstr "ir.report.custom.fields" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "new" +msgstr "νέο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_TOP" +msgstr "STOCK_GOTO_TOP" + +#. module: base +#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 +msgid "On multiple doc." +msgstr "Σε πολλαπλά έγγραφα." + +#. module: base +#: field:ir.module.category,module_nr:0 +msgid "Number of Modules" +msgstr "Αριθμός Αρθρωμάτων" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "Μέγιστο Μέγεθος" + +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "Όνομα Επαφής" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +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 "" +"Αποθηκέυστε αυτό το έγγραφο σε %s αρχείο και επεξργαστείτε το με επεξεργαστή " +"κειμένου ή άλλο πρόγραμμα. Η κωδικοποίηση του αρχείου είναι UTF-8." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password mismatch !" +msgstr "Τα συνθηματικά δεν ταιριάζουν!" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "This url '%s' must provide an html file with links to zip modules" +msgstr "" +"Αυτή η διεύθυνση '%s' πρέπει να οδηγεί σε ένα αρχείο html με links σε " +"συμπιεσμένα αρχεία τα οποία αποτελούν τα Αρθρώματα" + +#. module: base +#: selection:res.request,state:0 +msgid "active" +msgstr "ενεργό" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +msgid "Wizard Name" +msgstr "Όνομα Αυτόματου Οδηγού" + +#. module: base +#: view:res.lang:0 +msgid "%y - Year without century as a decimal number [00,99]." +msgstr "%y - Χρονολογία χωρίς τον αιώνα, σε δεκαδική μορφή [00, 99]." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" + +#. module: base +#: help:ir.rule.group,rules:0 +msgid "The rule is satisfied if at least one test is True" +msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Get Max" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "Προεπιλεγμένο όριο για την προβολή λίστας" + +#. module: base +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Ανανέωση Ημερ/νίας" + +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "Αντικείμενο - Πηγή" + +#. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form +msgid "Config Wizard Steps" +msgstr "Ρύθμιση Βημάτων Αυτόματου Οδηγού" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "ir.ui.view_sc" + +#. module: base +#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 +msgid "Group" +msgstr "Ομάδα" + +#. module: base +#: field:ir.exports.line,name:0 field:ir.translation,name:0 +#: field:res.partner.bank.type.field,name:0 +msgid "Field Name" +msgstr "Όνομα Πεδίου" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "Μη εγκατεστημένα Αρθρώματα" + +#. module: base +#: wizard_view:server.action.create,init:0 +#: wizard_field:server.action.create,init,type:0 +msgid "Select Action Type" +msgstr "Επιλογή Τύπου Ενέργειας" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Configure" +msgstr "Ρυθμίσεις" + +#. module: base +#: model:res.country,name:base.tv +msgid "Tuvalu" +msgstr "Tuvalu" + +#. module: base +#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +msgid "Custom Object" +msgstr "Εδικό Αντικείμενο" + +#. module: base +#: field:res.lang,date_format:0 +msgid "Date Format" +msgstr "Μορφή Ημερ/νίας" + +#. module: base +#: field:res.bank,email:0 field:res.partner.address,email:0 +msgid "E-Mail" +msgstr "E-Mail" + +#. module: base +#: model:res.country,name:base.an +msgid "Netherlands Antilles" +msgstr "Netherlands Antilles (Ολλανδικές Αντίλλες)" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "" +"You can not remove the admin user as it is used internally for resources " +"created by OpenERP (updates, module installation, ...)" +msgstr "Ο χρήστης admin δεν μπορεί να διαγραφεί!" + +#. module: base +#: model:res.country,name:base.gf +msgid "French Guyana" +msgstr "French Guyana (Γαλλική Γουιάνα)" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bosnian / bosanski jezik" +msgstr "Bosnian / bosanski jezik" + +#. module: base +#: help:ir.actions.report.xml,attachment_use:0 +msgid "" +"If you check this, then the second time the user prints with same attachment " +"name, it returns the previous report." +msgstr "" +"Αν επιλέξετε αυτό, τη δεύτερη φορά που ο χρήστης θα εκτυπώσει το ίδιο όνομα " +"συνημμένου, θα εκτυπωθεί η προηγούμενη αναφορά." + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Η μέθοδος ανάγνωσης δεν έχει αναπτυχθεί για αυτό το αντικείμενο!" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "STOCK_MEDIA_REWIND" + +#. module: base +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "Κείμενο" + +#. module: base +#: field:res.country,name:0 +msgid "Country Name" +msgstr "Όνομα Χώρας" + +#. module: base +#: model:res.country,name:base.co +msgid "Colombia" +msgstr "Colombia" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule Upgrade" +msgstr "Προγραμματισμός Αναβάθμισης" + +#. module: base +#: field:ir.actions.report.custom,report_id:0 +msgid "Report Ref." +msgstr "Report Ref." + +#. module: base +#: help:res.country,code:0 +msgid "" +"The ISO country code in two chars.\n" +"You can use this field for quick search." +msgstr "" +"Κωδικός Χώρας (Διψήφιος ISO).\n" +"Χρησιμοποιήστε το για γρήγορη αναζήτηση." + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "Xor" + +#. module: base +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "Πωλήσεις & Αγορές" + +#. module: base +#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 +msgid "Wizard" +msgstr "Αυτόματος Οδηγός" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" +msgstr "STOCK_CUT" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard +msgid "Wizards" +msgstr "Οδηγοί" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Extended Interface" +msgstr "Εκτεταμένη Εγκατάσταση" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Τα ειδικά πεδία πρέπει να έχουν όνομα που ξεκινάει από 'x_' !" + +#. module: base +#: help:ir.actions.server,action_id:0 +msgid "Select the Action Window, Report, Wizard to be executed." +msgstr "Επιλογή Παραθύρου Κίνησης, Αναφοράς, Αυτόματου Οδηγού προς εκτέλεση." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "Η Εξαγωγή Επετεύχθει" + +#. module: base +#: view:ir.model:0 +msgid "Model Description" +msgstr "Περιγραφή Μοντέλου" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "Φράση Εναύσματος (trigger)." + +#. module: base +#: model:res.country,name:base.jo +msgid "Jordan" +msgstr "Jordan (Ιορδανία)" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not remove the model '%s' !" +msgstr "Δεν μπορείτε να διαγράψετε το μοντέλο '%s' !" + +#. module: base +#: model:res.country,name:base.er +msgid "Eritrea" +msgstr "Eritrea" + +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "Ρυθμίσεις απλής προβολής" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bulgarian / български" +msgstr "Bulgarian / български" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "ir.actions.actions" + +#. module: base +#: model:ir.actions.act_window,name:base.action_report_custom +#: view:ir.report.custom:0 +msgid "Custom Report" +msgstr "Ειδική Αναφορά" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "Ιστόγραμμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_ERROR" +msgstr "STOCK_DIALOG_ERROR" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDEX" +msgstr "STOCK_INDEX" + +#. module: base +#: model:res.country,name:base.rs +msgid "Serbia" +msgstr "Serbia" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard View" +msgstr "Προβολή Αυτόματου Οδηγού" + +#. module: base +#: model:res.country,name:base.kh +msgid "Cambodia, Kingdom of" +msgstr "Cambodia, Kingdom of (Καμπότζη)" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +msgid "Sequences" +msgstr "Ιεραρχήσεις" #. module: base #: selection:ir.ui.menu,icon:0 @@ -107,14 +555,1505 @@ msgid "STOCK_DIALOG_QUESTION" msgstr "STOCK_DIALOG_QUESTION" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-account" -msgstr "terp-account" +#: model:res.country,name:base.pg +msgid "Papua New Guinea" +msgstr "Papua New Guinea (Παπούα Νέα Γουινέα)" #. module: base -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." +#: model:res.partner.category,name:base.res_partner_category_4 +msgid "Basic Partner" +msgstr "Βασικός Συνεργάτης" + +#. module: base +#: rml:ir.module.reference:0 +msgid "," +msgstr "," + +#. module: base +#: model:res.country,name:base.es +msgid "Spain" +msgstr "Ισπανία" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "You may have to reinstall some language pack." +msgstr "Πιθανόν να χρειαστεί να επανεγκαταστήσετε κάποιο πακέτο γλώσσας." + +#. module: base +#: field:res.partner.address,mobile:0 +msgid "Mobile" +msgstr "Κινητό" + +#. module: base +#: model:res.country,name:base.om +msgid "Oman" +msgstr "Oman" + +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +msgid "Payment term" +msgstr "Όροι Πληρωμής" + +#. module: base +#: model:res.country,name:base.nu +msgid "Niue" +msgstr "Niue" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Work Days" +msgstr "Ημέρες Εργασίας" + +#. module: base +#: help:ir.values,action_id:0 +msgid "This field is not used, it only helps you to select the right action." msgstr "" +"Αυτό το πεδίο δεν χρησιμοποιείται, απλά σας βοηθά να επιλέξετε την σωστή " +"ενέργεια. " + +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" +msgstr "Δημιουργήστε μενού" + +#. module: base +#: model:res.country,name:base.in +msgid "India" +msgstr "India" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_module +msgid "maintenance contract modules" +msgstr "maintenance contract modules" + +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "client_action_multi, client_action_relate" + +#. module: base +#: model:res.country,name:base.ad +msgid "Andorra, Principality of" +msgstr "Andorra, Principality of" + +#. module: base +#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 +msgid "Child Categories" +msgstr "Υποκατηγορίες" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "TGZ Archive" +msgstr "Αρχείο TGZ" + +#. module: base +#: field:res.partner.som,factor:0 +msgid "Factor" +msgstr "Παράγοντας" + +#. module: base +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "%B - Πλήρες όνομα μήνα." + +#. module: base +#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 +#: field:ir.values,key:0 view:res.partner:0 +msgid "Type" +msgstr "Τύπος" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FILE" +msgstr "STOCK_FILE" + +#. module: base +#: model:res.country,name:base.gu +msgid "Guam (USA)" +msgstr "Guam (USA)" + +#. module: base +#: model:ir.model,name:base.model_ir_model_grid +msgid "Objects Security Grid" +msgstr "Διάγραμμα Ασφαλείας Αντικειμένων" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_DOWN" +msgstr "STOCK_GO_DOWN" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OK" +msgstr "STOCK_OK" + +#. module: base +#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "Εικονικό" + +#. module: base +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Άκυρο XML για Αρχιτεκτονική Όψης!" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "You try to bypass an access rule (Document type: %s)." +msgstr "Υπάρχουν κανόνες πρόσβασης για έγγραφα %s." + +#. module: base +#: model:res.country,name:base.ky +msgid "Cayman Islands" +msgstr "Cayman Islands" + +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" +msgstr "Ικανοποιητικό" + +#. module: base +#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 +msgid "Sequence Name" +msgstr "Όνομα Ιεράρχησης" + +#. module: base +#: model:res.country,name:base.td +msgid "Chad" +msgstr "Chad" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish (AR) / Español (AR)" +msgstr "Spanish (AR) / Español (AR)" + +#. module: base +#: model:res.country,name:base.ug +msgid "Uganda" +msgstr "Uganda" + +#. module: base +#: model:res.country,name:base.ne +msgid "Niger" +msgstr "Niger (Νίγηρας)" + +#. module: base +#: model:res.country,name:base.ba +msgid "Bosnia-Herzegovina" +msgstr "Bosnia-Herzegovina" + +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "Διάταξη" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr ">=" + +#. module: base +#: view:res.lang:0 +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 - Ο αριθμός της εβδομάδας στο χρόνο (με Δευτέρα πρώτη ημέρα της " +"εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του νέου χρόνου πριν " +"την πρώτη Δευτέρα θεωρούνται εβδομάδα 0." + +#. module: base +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" +msgstr "Προϋπολογισμένο Κόστος" + +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" +msgstr "ir.model.config" + +#. module: base +#: field:ir.module.module,website:0 field:res.partner,website:0 +msgid "Website" +msgstr "Ιστοσελίδα" + +#. module: base +#: field:ir.rule.group,rules:0 +msgid "Tests" +msgstr "Tests" + +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "Αποθήκευση αρχείων" + +#. module: base +#: model:res.country,name:base.gs +msgid "S. Georgia & S. Sandwich Isls." +msgstr "S. Georgia & S. Sandwich Isls." + +#. module: base +#: field:ir.actions.url,url:0 +msgid "Action URL" +msgstr "URL Ενέργειας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "STOCK_JUSTIFY_FILL" + +#. module: base +#: model:res.country,name:base.mh +msgid "Marshall Islands" +msgstr "Marshall Islands" + +#. module: base +#: model:res.country,name:base.ht +msgid "Haiti" +msgstr "Haiti" + +#. module: base +#: selection:ir.translation,type:0 +msgid "RML" +msgstr "RML" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +msgid "Partners by Categories" +msgstr "Συνεργάτες ανά Κατηγορίες" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Pie charts need exactly two fields" +msgstr "Το κυκλικό διάγραμμα χρειάζεται ακριβώς δύο πεδία" + +#. module: base +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Για εξαγωγή νέας γλώσσας, μην επιλέξετε καμμία γλώσσα." + +#. module: base +#: model:res.country,name:base.md +msgid "Moldavia" +msgstr "Moldavia" + +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "Χαρακτηριστικά" + +#. module: base +#: field:ir.report.custom,frequency:0 +msgid "Frequency" +msgstr "Συχνότητα" + +#. module: base +#: field:ir.report.custom.fields,fc0_op:0 +#: field:ir.report.custom.fields,fc1_op:0 +#: field:ir.report.custom.fields,fc2_op:0 +#: field:ir.report.custom.fields,fc3_op:0 +msgid "Relation" +msgstr "Σχέση" + +#. module: base +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Πρόσβαση Ανάγνωσης" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" +msgstr "ir.exports" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MISSING_IMAGE" +msgstr "STOCK_MISSING_IMAGE" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "Ορισμός Νέων Χρηστών" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "STOCK_REMOVE" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" +msgstr "ακατέργαστο" + +#. module: base +#: help:ir.actions.server,email:0 +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 "" +"Τα πεδία που ια χρησιμοποιηθούν για εισαγωγή διεύθυνσης email π.χ. όταν " +"επιλέγετε το τιμολόγιο`object.invoice_address_id.email` είναι το πεδίο που " +"δίδει τη σωστή διεύθυνση." + +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Όνομα Ρόλου" + +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Αφοσιωμένος Πωλητής" + +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "-" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + +#. module: base +#: field:res.payterm,name:0 +msgid "Payment Term (short name)" +msgstr "Όρος Πληρωμής (σύντομα)" + +#. module: base +#: model:ir.model,name:base.model_res_bank view:res.bank:0 +#: field:res.partner.bank,bank:0 +msgid "Bank" +msgstr "Τράπεζα" + +#. module: base +#: view:res.lang:0 +msgid "Examples" +msgstr "Παραδείγματα" + +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "Αναφορές" + +#. module: base +#: field:workflow,on_create:0 +msgid "On Create" +msgstr "Κατά τη Δημιουργία" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Παρακαλώ επιλέξτε το αρχείο .ZIP για εισαγωγή του Αρθρώματος" + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Προεπιλεγμένη Τιμή" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 +msgid "Login" +msgstr "Είσοδος" + +#. module: base +#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 +msgid "Covered Modules" +msgstr "Αρθρώματα που καλύπτονται" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "STOCK_COPY" + +#. module: base +#: model:ir.model,name:base.model_res_request_link +msgid "res.request.link" +msgstr "res.request.link" + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "Έλγχος νέων Αρθρωμάτων" + +#. module: base +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comoros" + +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action +msgid "Server Actions" +msgstr "Server Actions" + +#. module: base +#: model:res.country,name:base.tp +msgid "East Timor" +msgstr "East Timor" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" +msgstr "Απλή μορφή τομέα" + +#. module: base +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" +msgstr "Ακρίβεια Υπολογισμού" + +#. module: base +#: model:res.country,name:base.kg +msgid "Kyrgyz Republic (Kyrgyzstan)" +msgstr "Kyrgyz Republic (Kyrgyzstan)" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +msgid "wizard.ir.model.menu.create.line" +msgstr "wizard.ir.model.menu.create.line" + +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "Συνημμένη ID" + +#. module: base +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "Ημέρα: %(day)s" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not read this document! (%s)" +msgstr "Δεν μπορείτε να διαβάσετε αυτό το έγγραφο! (%s)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND_AND_REPLACE" +msgstr "STOCK_FIND_AND_REPLACE" + +#. module: base +#: model:res.country,name:base.mv +msgid "Maldives" +msgstr "Maldives" + +#. module: base +#: help:ir.values,res_id:0 +msgid "Keep 0 if the action must appear on all resources." +msgstr "0 αν η ενέργεια πρέπει να εμφανίζεται σε όλους τους πόρους." + +#. module: base +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "ir.rule" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "Ημέρες" + +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" +msgstr "Προεπιλεγμένο Πλάτος" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-calendar" +msgstr "terp-calendar" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"Some installed modules depends on the module you plan to desinstall :\n" +" %s" +msgstr "" +"Κάποια εγκατεστημένα Αρθρώματα εξαρτώνται από αυτό που σχεδιάζετε να " +"απεγκαταστήσετε:\n" +" %s" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "STOCK_YES" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +msgid "Report Custom" +msgstr "Ειδική Αναφορά" + +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Χρονολογία χωρίς τον αιώνα: %(y)s" + +#. module: base +#: view:res.lang:0 +msgid "7. %H:%M:%S ==> 18:25:20" +msgstr "7. %H:%M:%S ==> 18:25:20" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 +msgid "Partners" +msgstr "Συνεργάτες" + +#. module: base +#: help:ir.actions.server,message:0 +msgid "" +"Specify the message. You can use the fields from the object. e.g. `Dear " +"[[ object.partner_id.name ]]`" +msgstr "" +"Συγκεκριμενοποιήστε το μήνυμα. Μπορείτε να χρησιμοποιήσετε τα πεδία του " +"αντικειμένου, π.χ. 'Αγαπητέ [[ object.partner_id.name ]]'" + +#. module: base +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "Συνδεδεμένο Μοντέλο" + +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "Όνομα Εναύσματος" + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" +msgstr "ir.model.access" + +#. module: base +#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 +#: field:res.request,priority:0 field:res.request.link,priority:0 +msgid "Priority" +msgstr "Προτεραιότητα" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Πηγή Δράσης" + +#. module: base +#: view:ir.sequence:0 +msgid "Legend (for prefix, suffix)" +msgstr "Υπόμνημα (για προθέματα, επιθήματα)" + +#. module: base +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "Τύπος" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Can not remove root user!" +msgstr "Can not remove root user!" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" +msgstr "STOCK_JUSTIFY_LEFT" + +#. module: base +#: model:res.country,name:base.mw +msgid "Malawi" +msgstr "Malawi" + +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "Τύπος Διεύθυνσης" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "Αυτόματα" + +#. module: base +#: view:res.request:0 +msgid "End of Request" +msgstr "Τέλος Αίτησης" + +#. module: base +#: view:res.request:0 +msgid "References" +msgstr "Παραπομπές" + +#. module: base +#: view:res.lang:0 +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 -Ο αριθμός της εβδομάδας στο έτος (Κυριακή πρώτη ημέρα της εβδομάδας) σε " +"δεκαδική μορφή [00, 53]. Όλες οι ημέρες του χρόνου πριν την 1η Κυριακή " +"θεωρούνται η εβδομάδα 0." + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "Αυτή η διαδικασία μπορεί να πάρει λίγα λεπτά." + +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Tree" +msgstr "Δέντρο" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Could you check your contract information ?" +msgstr "Παρακαλώ ελέγξτε τα στοιχεία σας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" +msgstr "STOCK_CLEAR" + +#. module: base +#: help:res.users,password:0 +msgid "" +"Keep empty if you don't want the user to be able to connect on the system." +msgstr "Αφήστε το κενό αν δεν επιθυμείτε ο χρήστης να συνδέεται στο σύστημα." + +#. module: base +#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 +msgid "View Mode" +msgstr "Mode Προβολής" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Not implemented search_memory method !" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish / Español" +msgstr "Spanish / Español" + +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "Λογότυπο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "STOCK_PROPERTIES" + +#. module: base +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "Uninstall (beta)" + +#. module: base +#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 +msgid "New Window" +msgstr "Νέο Παράθυρο" + +#. module: base +#: model:res.country,name:base.bs +msgid "Bahamas" +msgstr "Bahamas" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "Εμπορική Προοπτική" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "" +"Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "" +"Αδύνατη η δημιουργία του επόμενου id διότι κάποιοι συνεργάτες έχουν " +"αλφαβητικό id!" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Συνημμένο" + +#. module: base +#: model:res.country,name:base.ie +msgid "Ireland" +msgstr "Ireland" + +#. module: base +#: wizard_field:module.module.update,update,update:0 +msgid "Number of modules updated" +msgstr "Αριθμός Αρθρωμάτων που ενημερώθηκαν" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Not implemented set_memory method !" + +#. module: base +#: field:ir.actions.act_window,groups_id:0 +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 +#: view:res.users:0 field:res.users,groups_id:0 +msgid "Groups" +msgstr "Ομάδες" + +#. module: base +#: model:res.country,name:base.bz +msgid "Belize" +msgstr "Belize" + +#. module: base +#: model:res.country,name:base.ge +msgid "Georgia" +msgstr "Georgia" + +#. module: base +#: model:res.country,name:base.pl +msgid "Poland" +msgstr "Poland" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be removed" +msgstr "Προς διαγραφή" + +#. module: base +#: field:ir.values,meta:0 +msgid "Meta Datas" +msgstr "Meta Datas" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "" +"This wizard will detect new terms in the application so that you can update " +"them manually." +msgstr "" +"Ο Αυτόματος Οδηγός θα ανιχνεύσει νέους όρους της εφαρμογής ώστε να τους " +"ενημερώσετε." + +#. module: base +#: help:ir.actions.server,expression:0 +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 "" +"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`." + +#. module: base +#: field:ir.model,name:0 field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 field:ir.values,model:0 +msgid "Object Name" +msgstr "Όνομα Αντικειμένου" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Field" +msgstr "Πεδίο Αυτόματου Οδηγού" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "STOCK_SELECT_COLOR" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" +msgstr "STOCK_NO" + +#. module: base +#: model:res.country,name:base.st +msgid "Saint Tome (Sao Tome) and Principe" +msgstr "Saint Tome (Sao Tome) and Principe" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" +msgstr "Τιμολόγιο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + +#. module: base +#: model:res.country,name:base.bb +msgid "Barbados" +msgstr "Barbados" + +#. module: base +#: model:res.country,name:base.mg +msgid "Madagascar" +msgstr "Madagascar" + +#. module: base +#: constraint:ir.model:0 +msgid "" +"The Object name must start with x_ and not contain any special character !" +msgstr "" +"Το όνομα πρέπει να ξεκινάει με x_ και να μην περιέχει ειδικούς χαρακτήρες!" + +#. module: base +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "Επόμενος Αυτόματος Οδηγός" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 +msgid "Menu" +msgstr "Μενού" + +#. module: base +#: field:res.currency,rate:0 +msgid "Current Rate" +msgstr "Τρέχουσα Ισοτιμία" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" +msgstr "Αρχική Προβολή" + +#. module: base +#: view:ir.values:0 +msgid "Action To Launch" +msgstr "Επιλογή Ενέργειας" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +msgid "in" +msgstr "σε" + +#. module: base +#: field:ir.actions.url,target:0 +msgid "Action Target" +msgstr "Στόχος Ενέργειας" + +#. module: base +#: model:res.country,name:base.ai +msgid "Anguilla" +msgstr "Anguilla" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "Confirmation" +msgstr "Επιβεβαίωση" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Enter at least one field !" +msgstr "Συμπληρώστε ένα πεδίο τουλάχιστον!" + +#. module: base +#: field:ir.ui.view_sc,name:0 +msgid "Shortcut Name" +msgstr "Όνομα Συντόμευσης" + +#. module: base +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Πιστωτικό Όριο" + +#. module: base +#: help:ir.actions.server,write_id:0 +msgid "" +"Provide the field name that the record id refers to for the write operation. " +"If it is empty it will refer to the active id of the object." +msgstr "" +"Provide the field name that the record id refers to for the write operation. " +"If it is empty it will refer to the active id of the object." + +#. module: base +#: model:res.country,name:base.zw +msgid "Zimbabwe" +msgstr "Zimbabwe" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" +msgstr "Εισαγωγές / Εξαγωγές" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +msgid "Configure User" +msgstr "Ρυθμίσεις Χρήστη" + +#. module: base +#: field:ir.actions.server,email:0 +msgid "Email Address" +msgstr "Email Address" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not write in this document! (%s)" +msgstr "Δεν μπορείτε να επέμβετε στο έγγραφο! (%s)" + +#. module: base +#: view:ir.actions.server:0 field:workflow.activity,action_id:0 +msgid "Server Action" +msgstr "Server Action" + +#. module: base +#: model:res.country,name:base.tt +msgid "Trinidad and Tobago" +msgstr "Trinidad and Tobago" + +#. module: base +#: model:res.country,name:base.lv +msgid "Latvia" +msgstr "Latvia (Λεττονία)" + +#. module: base +#: view:ir.values:0 +msgid "Values" +msgstr "Τιμές" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mappings" +msgstr "Field Mappings" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +msgid "Customization" +msgstr "Προσαρμογή" + +#. module: base +#: model:res.country,name:base.py +msgid "Paraguay" +msgstr "Paraguay" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "αριστερά" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" +msgstr "ir.actions.act_window_close" + +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "Προορισμός" + +#. module: base +#: model:res.country,name:base.lt +msgid "Lithuania" +msgstr "Lithuania" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT_PREVIEW" +msgstr "STOCK_PRINT_PREVIEW" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "The perm_read method is not implemented on this object !" + +#. module: base +#: model:res.country,name:base.si +msgid "Slovenia" +msgstr "Slovenia" + +#. module: base +#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 +msgid "Channel" +msgstr "Κανάλι" + +#. module: base +#: view:res.lang:0 +msgid "%p - Equivalent of either AM or PM." +msgstr "%p - Αντίστοιχο με το π.μ ή το μ.μ." + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Actions" +msgstr "Επαναληπτικές ενέργειες" + +#. module: base +#: field:maintenance.contract,date_stop:0 +msgid "Ending Date" +msgstr "Ημερ/νία Λήξης" + +#. module: base +#: model:res.country,name:base.nz +msgid "New Zealand" +msgstr "New Zealand" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "Openstuff.net" + +#. module: base +#: model:res.country,name:base.nf +msgid "Norfolk Island" +msgstr "Norfolk Island" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" +msgstr "STOCK_MEDIA_PLAY" + +#. module: base +#: field:ir.rule,operator:0 +msgid "Operator" +msgstr "Συνάρτηση" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation Done" +msgstr "Η εγκατάσταση ολοκληρώθηκε" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "STOCK_OPEN" + +#. module: base +#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 +msgid "Client Action" +msgstr "Client Action" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "right" +msgstr "δεξιά" + +#. module: base +#: model:res.country,name:base.bd +msgid "Bangladesh" +msgstr "Bangladesh" + +#. module: base +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "Σφάλμα! Υπάρχει εταιρεία με την ίδια περιγραφή" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" +msgstr "Έγκυρο" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not delete this document! (%s)" +msgstr "Δεν μπορείτε να διαγράψετε αυτό το έγγραφο! (%s)" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "XSL" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +#: model:ir.ui.menu,name:base.menu_partner_other_form +msgid "Others Partners" +msgstr "Άλλοι Συνεργάτες" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "" +"Δεν είναι δυνατή η αναβάθμιση του Αρθρώματος %s' διότι δεν είναι " +"εγκατεστημένο." + +#. module: base +#: model:res.country,name:base.cu +msgid "Cuba" +msgstr "Cuba" + +#. module: base +#: view:res.lang:0 +msgid "%S - Second as a decimal number [00,61]." +msgstr "%S - Το δευτερόλεπτο σε δεκαδική μορφή [00, 60]." + +#. module: base +#: model:res.country,name:base.am +msgid "Armenia" +msgstr "Armenia" + +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "Έτος με τον αιώνα: %(year)s" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Daily" +msgstr "Ημερήσια" + +#. module: base +#: model:res.country,name:base.se +msgid "Sweden" +msgstr "Sweden" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Gantt" +msgstr "Gantt" + +#. module: base +#: view:ir.property:0 +msgid "Property" +msgstr "Ιδιότητα" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type +#: view:res.partner.bank.type:0 +msgid "Bank Account Type" +msgstr "Τύπος Τραπεζικού Λογαριασμού" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-project" +msgstr "terp-project" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Action Configuration" +msgstr "Ρυθμίσεις Επαναληπτικών ενεργειών" + +#. module: base +#: model:res.country,name:base.at +msgid "Austria" +msgstr "Austria" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" +msgstr "Ημερολόγιο" + +#. module: base +#: field:workflow.activity,signal_send:0 +msgid "Signal (subflow.*)" +msgstr "Σινιάλο (υπο-ροή.*)" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "Τμήμα Ανθρωπίνων Πόρων" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "Εξάρτηση Αρθρωμάτων" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Draft" +msgstr "Πρόχειρα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "STOCK_JUSTIFY_CENTER" + +#. module: base +#: view:res.config.view:0 +msgid "Choose Your Mode" +msgstr "Επιλογή Mode" + +#. module: base +#: field:res.company,rml_footer1:0 +msgid "Report Footer 1" +msgstr "Report Footer 1" + +#. module: base +#: field:res.company,rml_footer2:0 +msgid "Report Footer 2" +msgstr "Report Footer 2" + +#. module: base +#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 field:res.groups,model_access:0 +msgid "Access Controls" +msgstr "Ρυθμίσεις Πρόσβασης" + +#. module: base +#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 +msgid "Dependencies" +msgstr "Dependencies" + +#. module: base +#: field:res.partner,parent_id:0 +msgid "Main Company" +msgstr "Κύρια Εταρεία" + +#. module: base +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "Χρώμα Φόντου" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"If you use a formula type, use a python expression using the variable " +"'object'." +msgstr "" +"If you use a formula type, use a python expression using the variable " +"'object'." + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "Ημερ/νία γέννησης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contact Titles" +msgstr "Τίτλοι Επαφής" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "tlh_TLH" +msgstr "tlh_TLH" + +#. module: base +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "res.partner.som" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "workflow.activity" + +#. module: base +#: field:ir.model.fields,select_level:0 +msgid "Searchable" +msgstr "Αναζητήσιμο" + +#. module: base +#: model:res.country,name:base.uy +msgid "Uruguay" +msgstr "Uruguay" + +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "Document Link" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "res.partner.title" + +#. module: base +#: field:ir.sequence,prefix:0 +msgid "Prefix" +msgstr "Prefix" + +#. module: base +#: field:ir.actions.server,loop_action:0 +msgid "Loop Action" +msgstr "Loop Action" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "German / Deutsch" +msgstr "German / Deutsch" + +#. module: base +#: help:ir.actions.server,trigger_name:0 +msgid "Select the Signal name that is to be used as the trigger." +msgstr "Επιλέξτε το όνομα του Σινιάλου για χρήση ως Έναυσμα (trigger)." + +#. module: base +#: view:ir.actions.server:0 +msgid "Fields Mapping" +msgstr "Fields Mapping" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Κύριε" + +#. module: base +#: wizard_button:module.upgrade,next,start:0 +msgid "Start Upgrade" +msgstr "Έναρξη Αναβάθμισης" + +#. module: base +#: field:ir.default,ref_id:0 +msgid "ID Ref." +msgstr "ID Ref." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French / Français" +msgstr "French / Français" + +#. module: base +#: model:res.country,name:base.mt +msgid "Malta" +msgstr "Malta" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "nl_BE" +msgstr "nl_BE" + +#. module: base +#: field:ir.actions.server,fields_lines:0 +msgid "Field Mappings." +msgstr "Field Mappings." + +#. module: base +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 +msgid "Module" +msgstr "Άρθρωμα" + +#. module: base +#: field:ir.attachment,description:0 field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 view:res.partner.event:0 +#: field:res.partner.event,description:0 view:res.request:0 +msgid "Description" +msgstr "Περιγραφή" + +#. module: base +#: model:ir.model,name:base.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: base +#: field:res.users,action_id:0 +msgid "Home Action" +msgstr "Home Action" + +#. module: base +#: field:res.lang,grouping:0 +msgid "Separator Format" +msgstr "Μορφή Διαχωριστή" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "Εξαγωγή Γλώσσας" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Unvalidated" +msgstr "Μη Επικυρωμένα" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "Αρχιτεκτονική Βάσης Δεδομένων" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +#: wizard_view:res.partner.spam_send,init:0 +msgid "Mass Mailing" +msgstr "Ομαδική Αλληλογραφία" + +#. module: base +#: model:res.country,name:base.yt +msgid "Mayotte" +msgstr "Mayotte" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "Μπορείτε επίσης να εισαγάγετε αρχεία .po." + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify an action to launch !" +msgstr "Παρακαλώ επιλέξτε ενέργειας προς εκτέλεση!" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "STOCK_JUSTIFY_RIGHT" + +#. module: base +#: model:ir.model,name:base.model_res_partner_function +msgid "Function of the contact" +msgstr "Λειτουργία επαφής" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_upgrade +#: model:ir.ui.menu,name:base.menu_module_tree_upgrade +msgid "Modules to be installed, upgraded or removed" +msgstr "Αρθρώματα για εγκατάσταση, αναβάθμιση, απεγκατάσταση" + +#. module: base +#: view:res.payterm:0 +msgid "Payment Term" +msgstr "Όρος Πληρωμής" + +#. module: base +#: field:ir.report.custom,footer:0 +msgid "Report Footer" +msgstr "Report Footer" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Right-to-Left" +msgstr "Right-to-Left" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Παρακαλώ ελέγξτε ότι όλες οι γραμμές σας έχουν %d στήλες." + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "Εισαγωγή γλώσσας" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 +#: model:ir.ui.menu,name:base.menu_ir_cron_act +msgid "Scheduled Actions" +msgstr "Προγραμματισμένες ενέργειες" #. module: base #: field:res.partner,title:0 field:res.partner.address,title:0 @@ -123,176 +2062,61 @@ msgid "Title" msgstr "Τίτλος" #. module: base -#: wizard_field:res.partner.sms_send,init,text:0 -msgid "SMS Message" -msgstr "Μήνυμα SMS" - -#. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "ir.server.object.lines" - -#. module: base -#: model:ir.model,name:base.model_ir_model_grid -msgid "Objects Security Grid" -msgstr "Objects Security Grid" - -#. module: base -#: model:res.country,name:base.cm -msgid "Cameroon" -msgstr "Cameroon" - -#. module: base -#: model:res.country,name:base.bf -msgid "Burkina Faso" -msgstr "Burkina Faso" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE" +msgstr "STOCK_SAVE" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_ASCENDING" -msgstr "STOCK_SORT_ASCENDING" +msgid "terp-account" +msgstr "terp-account" #. module: base -#: view:ir.model:0 view:res.groups:0 -msgid "Access Rules" -msgstr "Κανονισμοί Προσβάσεων" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONNECT" -msgstr "STOCK_CONNECT" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_FORWARD" -msgstr "STOCK_MEDIA_FORWARD" +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Recursion error in modules dependencies !" +msgstr "Σφάλμα στις εξαρτήσεις Αρθρωμάτων!" #. module: base #: view:ir.model:0 msgid "Create a Menu" -msgstr "Create a Menu" +msgstr "Δημμιουργία Μενού" #. module: base -#: wizard_field:module.lang.import,init,code:0 -msgid "Code (eg:en__US)" -msgstr "Code (eg:en__US)" - -#. module: base -#: field:res.roles,parent_id:0 -msgid "Parent" -msgstr "Γονέας" - -#. module: base -#: model:res.country,name:base.tg -msgid "Togo" -msgstr "Togo" - -#. module: base -#: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 -#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 -#: field:ir.model,model:0 field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 field:ir.model.grid,model:0 -#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 field:ir.ui.view,model:0 -#: field:ir.values,model_id:0 field:res.request.link,object:0 -#: field:wizard.ir.model.menu.create,model_id:0 -#: field:workflow.triggers,model:0 -msgid "Object" -msgstr "Αντικείμενο" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To browse official translations, you can visit this link: " -msgstr "To browse official translations, you can visit this link: " +#: help:res.partner,vat:0 +msgid "" +"Value Added Tax number. Check the box if the partner is subjected to the " +"VAT. Used by the VAT legal statement." +msgstr "" +"Αριθμός ΦΠΑ. Επιλέξτε αυτό αν ο συνεργάτης πληρώνει ΦΠΑ. Χρησιμοποιείται " +"στην περιοδική δήλωση ΦΠΑ." #. module: base #: model:ir.actions.act_window,name:base.action_module_category_tree #: model:ir.ui.menu,name:base.menu_action_module_category_tree msgid "Categories of Modules" -msgstr "Κατηγορίες Modules" - -#. module: base -#: view:ir.actions.server:0 -msgid "Email Configuration" -msgstr "Ρυθμίσεις Email" - -#. module: base -#: model:res.country,name:base.cc -msgid "Cocos (Keeling) Islands" -msgstr "Cocos (Keeling) Islands" +msgstr "Κατηγορίες Αρθρωμάτων" #. module: base #: selection:module.lang.install,init,lang:0 -msgid "Hungarian / Magyar" -msgstr "Hungarian / Magyar" - -#. module: base -#: model:ir.model,name:base.model_ir_default -msgid "ir.default" -msgstr "ir.default" +msgid "Ukrainian / украї́нська мо́ва" +msgstr "Ukrainian / украї́нська мо́ва" #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "Not Started" -#. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" -msgstr "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" - -#. module: base -#: view:res.company:0 -msgid "Header/Footer" -msgstr "Header/Footer" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" -msgstr "STOCK_ZOOM_100" - #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" msgstr "Russian Federation" -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type_field -msgid "Bank type fields" -msgstr "Πεδία τύπου Τραπεζών" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_ERROR" -msgstr "STOCK_DIALOG_ERROR" - -#. module: base -#: field:ir.actions.server,wkf_model_id:0 -msgid "Workflow On" -msgstr "" - #. module: base #: model:res.country,name:base.dm msgid "Dominica" msgstr "Dominica" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch / Nederlands" -msgstr "Dutch / Nederlands" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export translation file" -msgstr "Εξαγωγή Αρχείου Ματάφρασης" - -#. module: base -#: field:ir.sequence,padding:0 -msgid "Number padding" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form #: model:ir.ui.menu,name:base.menu_action_res_roles_form view:res.roles:0 @@ -307,100 +2131,14 @@ msgid "Countries" msgstr "Χώρες" #. module: base -#: field:ir.rule,operator:0 -msgid "Operator" -msgstr "" +#: view:ir.rule.group:0 +msgid "Record rules" +msgstr "Καταχώρηση κανόνων" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Get Max" - -#. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Views" -msgstr "Created Views" - -#. module: base -#: selection:res.request,priority:0 -msgid "Normal" -msgstr "Κανονικό" - -#. module: base -#: model:res.country,name:base.pm -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre and Miquelon" - -#. module: base -#: model:res.country,name:base.to -msgid "Tonga" -msgstr "Tonga" - -#. module: base -#: field:ir.ui.view_sc,user_id:0 -msgid "User Ref." -msgstr "User Ref." - -#. module: base -#: model:res.country,name:base.vu -msgid "Vanuatu" -msgstr "Vanuatu" - -#. module: base -#: wizard_view:server.action.create,step_1:0 -#: wizard_field:server.action.create,step_1,report:0 -msgid "Select Report" -msgstr "Επιλογή Αναφοράς" - -#. module: base -#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 -msgid "Wizard" -msgstr "Οδηγός" - -#. module: base -#: view:workflow.activity:0 -msgid "Outgoing transitions" -msgstr "Εκροές" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_REWIND" -msgstr "STOCK_MEDIA_REWIND" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Yearly" -msgstr "Ετησίως" - -#. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "Sudan" - -#. module: base -#: rml:ir.module.reference:0 -msgid "1cm 28cm 20cm 28cm" -msgstr "1cm 28cm 20cm 28cm" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mapping" -msgstr "Field Mapping" - -#. module: base -#: model:res.country,name:base.mo -msgid "Macau" -msgstr "Macau" - -#. module: base -#: field:ir.actions.server,expression:0 -msgid "Loop Expression" -msgstr "Loop Expression" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "ΦΠΑ" #. module: base #: view:res.lang:0 @@ -408,27 +2146,9 @@ msgid "12. %w ==> 5 ( Friday is the 6th day)" msgstr "12. %w ==> 5 (Η Παρασκευή είναι η 6η ημέρα)" #. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Παγκόσμια" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" -msgstr "Πωλητής Λιανικής" - -#. module: base -#: field:ir.model.config,password:0 field:maintenance.contract,password:0 -#: field:maintenance.contract.wizard,password:0 -#: wizard_field:res.partner.sms_send,init,password:0 -#: field:res.users,password:0 -msgid "Password" -msgstr "Password" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLEAR" -msgstr "STOCK_CLEAR" +#: constraint:res.partner.category:0 +msgid "Error ! You can not create recursive categories." +msgstr "Σφάλμα! Υπάρχει κατηγορία με την ίδια περιγραφή." #. module: base #: view:res.lang:0 @@ -449,72 +2169,15 @@ msgstr "" "- The last parenthesis must match the extension of the module." #. module: base -#: field:ir.default,field_name:0 -msgid "Object Field" -msgstr "Πεδίο Αντικειμένου" - -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_simple_view -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 "" -"Choose between the \"Simplified Interface\" or the extended one.\n" -"Ιf 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" -" " - -#. module: base -#: field:ir.actions.todo,start_on:0 -msgid "Start On" -msgstr "Start On" - -#. module: base -#: field:ir.rule,operand:0 -msgid "Operand" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "If you don't force the domain, it will use the simple domain setup" - -#. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "Νότια Κορέα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Ροές" +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." +msgstr "%M - Τα λεπτά της ώρας σε δεκαδική μορφή [00, 59]." #. module: base #: model:res.country,name:base.tj msgid "Tajikistan" msgstr "Tajikistan" -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_custom -msgid "ir.ui.view.custom" -msgstr "ir.ui.view.custom" - -#. module: base -#: model:res.country,name:base.tr -msgid "Turkey" -msgstr "Turkey" - -#. module: base -#: model:res.country,name:base.fk -msgid "Falkland Islands" -msgstr "Falkland Islands" - #. module: base #: model:ir.actions.act_window,name:base.act_values_form_action #: model:ir.ui.menu,name:base.menu_values_form_action @@ -524,97 +2187,18 @@ msgstr "Connect Actions To Client Events" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" -msgstr "GPL-2 or later version" - -#. module: base -#: selection:workflow.activity,kind:0 -msgid "Stop All" -msgstr "Όλα Stop" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NEW" -msgstr "STOCK_NEW" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_custom -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.custom" -msgstr "ir.actions.report.custom" - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "Xor" -msgstr "Xή" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CANCEL" -msgstr "STOCK_CANCEL" +msgstr "GPL-2 ή μεταγενέστερη έκδοση" #. module: base #: selection:res.partner.event,type:0 msgid "Prospect Contact" -msgstr "Πιθανή Επαφή" +msgstr "Επαφή Πιθανού Συνεργάτη" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "None" -msgstr "Κανένα" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Sale Opportunity" -msgstr "Ευκαιρία Πώλησης" - -#. module: base -#: field:ir.report.custom,sortby:0 -msgid "Sorted By" -msgstr "Ταξινόμηση ανά" - -#. module: base -#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 -#: field:ir.report.custom,type:0 -msgid "Report Type" -msgstr "Τύπος Αναφοράς" - -#. module: base -#: field:ir.sequence,number_increment:0 -msgid "Increment Number" -msgstr "Αριθμός Προσαύξησης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_tree -#: model:ir.ui.menu,name:base.menu_action_res_company_tree -msgid "Company's Structure" -msgstr "Δομή Εταιρίας" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "Other proprietary" -msgstr "Άλλα περουσιακά" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administration" - -#. module: base -#: model:res.country,name:base.sz -msgid "Swaziland" -msgstr "Swaziland" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PREVIOUS" -msgstr "STOCK_MEDIA_PREVIOUS" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation -#: model:ir.ui.menu,name:base.menu_action_translation -msgid "All terms" -msgstr "Όλοι οι όροι" +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "ir.actions.wizard" #. module: base #: model:res.country,name:base.nr @@ -622,20 +2206,9 @@ msgid "Nauru" msgstr "Nauru" #. module: base -#: model:res.country,name:base.no -msgid "Norway" -msgstr "Norway" - -#. module: base -#: view:res.lang:0 -msgid "4. %b, %B ==> Dec, December" -msgstr "4. %b, %B ==> Δεκ, Δεκέμβριος" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Load an Official Translation" -msgstr "Φόρτωση Επίσημης Μετάφρασης" +#: model:ir.model,name:base.model_ir_property +msgid "ir.property" +msgstr "ir.property" #. module: base #: selection:ir.actions.act_window,view_type:0 @@ -643,117 +2216,34 @@ msgstr "Φόρτωση Επίσημης Μετάφρασης" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Form" -msgstr "Form" +msgstr "Φόρμα" #. module: base -#: field:workflow.transition,act_to:0 -msgid "Destination Activity" -msgstr "Δραστηριότητα προορισμού" +#: code:osv/orm.py:0 +#, python-format +msgid "Can not define a column %s. Reserved keyword !" +msgstr "Η στήλη %s δεν μπορεί να οριστει. Η λέξη κλειδί χρησιμοποιείται ήδη!" #. module: base #: model:res.country,name:base.me msgid "Montenegro" msgstr "Montenegro" -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_window" -msgstr "ir.actions.act_window" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: help:ir.actions.server,loop_action:0 -msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." -msgstr "Select the action that will be executed. Loop action will not be avaliable inside loop." - -#. module: base -#: selection:res.request,state:0 -msgid "waiting" -msgstr "σε αναμονή" - -#. module: base -#: model:res.country,name:base.va -msgid "Holy See (Vatican City State)" -msgstr "Holy See (Vatican City State)" - -#. module: base -#: view:ir.values:0 -msgid "Connect Events to Actions" -msgstr "Σύνδεση Συνβάντων με Ενέργειες" - -#. module: base -#: field:res.partner.event,type:0 -msgid "Type of Event" -msgstr "Τύπος Συμβάντος" - -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Valid" -msgstr "Έγκυρο" - -#. module: base -#: field:ir.report.custom.fields,fc0_op:0 -#: field:ir.report.custom.fields,fc1_op:0 -#: field:ir.report.custom.fields,fc2_op:0 -#: field:ir.report.custom.fields,fc3_op:0 -msgid "Relation" -msgstr "Σχέση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_TOP" -msgstr "STOCK_GOTO_TOP" - -#. module: base -#: field:ir.values,meta_unpickle:0 -msgid "Metadata" -msgstr "Metadata" - -#. module: base -#: view:res.lang:0 -msgid "%m - Month as a decimal number [01,12]." -msgstr "%m - Ο μήνας σε δεκαδική μορφή [01,12]" - -#. module: base -#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 -#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 -#: field:maintenance.contract,state:0 field:res.bank,state:0 -#: view:res.country.state:0 field:res.partner.bank,state_id:0 -#: field:res.request,state:0 field:workflow.instance,state:0 -#: field:workflow.workitem,state:0 -msgid "State" -msgstr "Κατάσταση" +#: view:ir.cron:0 +msgid "Technical Data" +msgstr "Τεχνικά Δεδομένα" #. module: base #: view:res.partner:0 field:res.partner,category_id:0 msgid "Categories" msgstr "Κατηγορίες" -#. module: base -#: field:ir.report.custom.fields,report_id:0 -msgid "Report Ref" -msgstr "Report Ref" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-hr" -msgstr "terp-hr" - -#. module: base -#: field:res.partner.bank.type.field,size:0 -msgid "Max. Size" -msgstr "Μέγιστο Μέγεθος" - -#. module: base -#: model:res.country,name:base.id -msgid "Indonesia" -msgstr "Indonesia" - #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 @@ -763,32 +2253,17 @@ msgstr "Προς αναβάθμιση" #. module: base #: model:res.country,name:base.ly msgid "Libya" -msgstr "Libya" - -#. module: base -#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 -msgid "Parent Category" -msgstr "Βασική κατηγορία" +msgstr "Libya (Λιβύη)" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-purchase" msgstr "terp-purchase" -#. module: base -#: field:res.partner.address,name:0 -msgid "Contact Name" -msgstr "Όνομα Επαφής" - -#. module: base -#: model:res.country,name:base.fi -msgid "Finland" -msgstr "Finland" - #. module: base #: wizard_field:module.module.update,init,repositories:0 msgid "Repositories" -msgstr "Χώροι αποθήκευσης" +msgstr "Αποθήκες Αρχείων" #. module: base #: model:res.country,name:base.cf @@ -800,111 +2275,25 @@ msgstr "Central African Republic" msgid "Liechtenstein" msgstr "Liechtenstein" -#. module: base -#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 -msgid "Contact" -msgstr "Στοιχεία επικοινωνίας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND_AND_REPLACE" -msgstr "STOCK_FIND_AND_REPLACE" - #. module: base #: model:res.partner.title,name:base.res_partner_title_ltd msgid "Ltd" msgstr "ΕΠΕ" -#. module: base -#: selection:res.request,state:0 -msgid "active" -msgstr "ενεργό" - -#. module: base -#: field:ir.actions.wizard,wiz_name:0 -msgid "Wizard Name" -msgstr "Όνομα Οδηγού" - -#. module: base -#: view:res.lang:0 -msgid "%y - Year without century as a decimal number [00,99]." -msgstr "%y - Χρονολογία χωρίς τον αιώνα, σε δεκαδική μορφή [00, 99]." - -#. module: base -#: model:res.country,name:base.as -msgid "American Samoa" -msgstr "American Samoa" - -#. module: base -#: selection:ir.model.fields,state:0 -msgid "Custom Field" -msgstr "Ειδικό Πεδίο" - -#. module: base -#: field:ir.actions.server,srcmodel_id:0 -msgid "Model" -msgstr "Μοντέλο" - #. module: base #: field:res.partner,ean13:0 msgid "EAN13" msgstr "EAN13" -#. module: base -#: model:ir.actions.act_window,name:base.open_repository_tree -#: view:ir.module.repository:0 -#: model:ir.ui.menu,name:base.menu_module_repository_tree -msgid "Repository list" -msgstr "Κατάλογος αποθηκών" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line -msgid "wizard.ir.model.menu.create.line" -msgstr "wizard.ir.model.menu.create.line" - #. module: base #: model:res.country,name:base.pt msgid "Portugal" msgstr "Portugal" #. module: base -#: view:ir.module.module:0 -msgid "Cancel Uninstall" -msgstr "Cancel Uninstall" - -#. module: base -#: model:ir.model,name:base.model_res_currency_rate -msgid "Currency Rate" -msgstr "Ισοτιμία Νομίσματος" - -#. module: base -#: view:workflow:0 field:workflow.activity,wkf_id:0 -#: field:workflow.instance,wkf_id:0 -msgid "Workflow" -msgstr "Ροή έργασίας" - -#. module: base -#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 -#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 -#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 -#: field:ir.actions.wizard,type:0 -msgid "Action Type" -msgstr "Τύπος Ενέργειας" - -#. module: base -#: help:ir.actions.act_window,limit:0 -msgid "Default limit for the list view" -msgstr "Προεπιλεγμένο όριο για την προβολή λίστας" - -#. module: base -#: model:res.country,name:base.vn -msgid "Vietnam" -msgstr "Vietnam" - -#. module: base -#: model:res.country,name:base.sk -msgid "Slovak Republic" -msgstr "Slovak Republic" +#: selection:maintenance.contract,state:0 +msgid "Unvalid" +msgstr "Άκυρο" #. module: base #: field:ir.module.module,certificate:0 @@ -916,83 +2305,11 @@ msgstr "Πιστοποιητικό Ποιότητας" msgid "6. %d, %m ==> 05, 12" msgstr "6. %d, %m ==> 05, 12" -#. module: base -#: field:ir.actions.act_window,src_model:0 -msgid "Source Object" -msgstr "Πηγαίο Αντικείμενο" - -#. module: base -#: model:ir.model,name:base.model_ir_model_data -msgid "ir.model.data" -msgstr "ir.model.data" - -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Object" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,report_rml:0 -msgid "The .rml path of the file or NULL if the content is in report_rml_content" -msgstr "The .rml path of the file or NULL if the content is in report_rml_content" - -#. module: base -#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form -#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form -msgid "Config Wizard Steps" -msgstr "Config Wizard Steps" - -#. module: base -#: field:ir.module.module,category_id:0 -msgid "Category" -msgstr "Κατηγορία" - -#. module: base -#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 -msgid "Group" -msgstr "Ομάδα" - -#. module: base -#: model:res.country,name:base.sm -msgid "San Marino" -msgstr "San Marino" - #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." msgstr "Κάντε κλικ εδώ αν ο Συνεργάτης είναι Πελάτης." -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FLOPPY" -msgstr "STOCK_FLOPPY" - -#. module: base -#: model:res.country,name:base.kw -msgid "Kuwait" -msgstr "Kuwait" - -#. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Υπογραφή" - -#. module: base -#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 -msgid "SMS" -msgstr "SMS" - -#. module: base -#: model:res.country,name:base.cr -msgid "Costa Rica" -msgstr "Costa Rica" - -#. module: base -#: field:ir.exports.line,name:0 field:ir.translation,name:0 -#: field:res.partner.bank.type.field,name:0 -msgid "Field Name" -msgstr "Όνομα Πεδίου" - #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window #: model:ir.model,name:base.model_res_lang @@ -1001,34 +2318,9 @@ msgid "Languages" msgstr "Γλώσσες" #. module: base -#: field:workflow.workitem,inst_id:0 -msgid "Instance" -msgstr "Instance" - -#. module: base -#: help:ir.actions.report.xml,attachment:0 -msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." -msgstr "Το όνομα αρχείου που θα αποθηκευθεί το αποτέλεσμα της εκτύπωσης. Αφήστε το κενό αν δεν επιθυμείτε να αποθηκεύετε τις εκτυπώσεις αναφορών. Μπορείτε να χρησιμοποιήσετε μια έκφραση python με τις παραμέτρους object και time." - -#. module: base -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Το όνομα πρέπει να ξεκινάει με x_ και να μην περιέχει ειδικούς χαρακτήρες" - -#. module: base -#: model:res.country,name:base.ng -msgid "Nigeria" -msgstr "Nigeria" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "txt" -msgstr "" - -#. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Table Ref." +#: model:res.country,name:base.pw +msgid "Palau" +msgstr "Palau" #. module: base #: model:res.country,name:base.ec @@ -1036,30 +2328,31 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: view:ir.module.module:0 -msgid "Schedule Upgrade" -msgstr "Προγραμματισμός Αναβάθμισης" +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "" +"Save this document to a .CSV file and open it with your favourite " +"spreadsheet software. The file encoding is UTF-8. You have to translate the " +"latest column before reimporting it." +msgstr "" +"Αποθηκεύστε αυτό το έγγραφο σε αρχείο .CSV και επεξεργαστείτε το με το " +"υπολογιστικό πρόγραμμα της επιλογής σας. Η κωδικοποίηση του αρχείου είναι " +"UTF-8. Πρέπει να μετεφράσετε την τελευταία στήλη πριν το επανεισάγετε." #. module: base -#: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 -msgid "Currencies" -msgstr "Νομίσματα" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Configure" -msgstr "Ρυθμίσεις" +#: model:res.country,name:base.au +msgid "Australia" +msgstr "Australia" #. module: base #: help:res.partner,lang:0 -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 "Αν η επιλεγμένη γλώσσα έχει εισαχθεί στο σύστημα όλα τα έγγραφα από και προς αυτό τον Συνεργάτη θα εκτυπώνονται σε αυτή τη γλώσσα. Αν όχι, θα εκτυπώνονται στα αγγλικά." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDERLINE" -msgstr "STOCK_UNDERLINE" +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 "" +"Αν η επιλεγμένη γλώσσα έχει εισαχθεί στο σύστημα όλα τα έγγραφα από και προς " +"αυτό τον Συνεργάτη θα εκτυπώνονται σε αυτή τη γλώσσα. Αν όχι, θα " +"εκτυπώνονται στα αγγλικά." #. module: base #: rml:ir.module.reference:0 @@ -1067,94 +2360,25 @@ msgid "Menu :" msgstr "Menu :" #. module: base -#: field:ir.actions.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Next Wizard" - -#. module: base -#: view:ir.values:0 -msgid "Values for Event Type" -msgstr "Τιμές για τον Τύπο Συμβάντος" - -#. module: base -#: model:res.country,name:base.zr -msgid "Zaire" -msgstr "Zaire" - -#. module: base -#: field:res.lang,date_format:0 -msgid "Date Format" -msgstr "Μορφή Ημερ/νίας" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Always Searchable" -msgstr "Always Searchable" - -#. module: base -#: field:res.bank,email:0 field:res.partner.address,email:0 -msgid "E-Mail" -msgstr "E-Mail" - -#. module: base -#: view:ir.sequence:0 -msgid "Day: %(day)s" -msgstr "Ημέρα: %(day)s" - -#. module: base -#: field:ir.exports,name:0 -msgid "Export Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.an -msgid "Netherlands Antilles" -msgstr "Ολλανδικές Αντίλλες" - -#. module: base -#: view:ir.sequence:0 -msgid "Minute: %(min)s" -msgstr "Λεπτά: %(min)s" - -#. module: base -#: model:res.country,name:base.hk -msgid "Hong Kong" -msgstr "Hong Kong" +#: selection:ir.model.fields,state:0 +msgid "Base Field" +msgstr "Base Field" #. module: base #: wizard_view:module.module.update,update:0 msgid "New modules" -msgstr "New modules" +msgstr "Νέα Αρθρώματα" #. module: base -#: view:ir.sequence:0 -msgid "Hour 00->12: %(h12)s" -msgstr "Ώρα 00->12: %(h12)s" - -#. module: base -#: help:ir.actions.server,name:0 -msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" -msgstr "" - -#. module: base -#: field:res.currency,rate:0 -msgid "Current Rate" -msgstr "Τρέχουσα Ισοτιμία" +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" +msgstr "SXW content" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" -msgstr "Action to Trigger" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" -msgstr "Χρονοδιάγραμμα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_BOLD" -msgstr "STOCK_BOLD" +msgstr "Ενέργεια προς Εκκίνηση" #. module: base #: field:ir.report.custom.fields,fc0_operande:0 @@ -1170,16 +2394,6 @@ msgstr "Constraint" msgid "Default" msgstr "Προεπιλογή" -#. module: base -#: model:res.country,name:base.dk -msgid "Denmark" -msgstr "Denmark" - -#. module: base -#: model:res.country,name:base.ph -msgid "Philippines" -msgstr "Philippines" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -1187,118 +2401,29 @@ msgid "Required" msgstr "Απαραίτητα" #. module: base -#: model:ir.model,name:base.model_ir_sequence -msgid "ir.sequence" -msgstr "ir.sequence" +#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "Τομέας" #. module: base -#: field:res.country,code:0 -msgid "Country Code" -msgstr "Κωδικός Χώρας" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Greek / Ελληνικά" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,view_type:0 -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Tree" -msgstr "Δέντρο" - -#. module: base -#: model:res.country,name:base.ma -msgid "Morocco" -msgstr "Morocco" - -#. module: base -#: view:res.request.history:0 -msgid "Request History" -msgstr "Αίτηση Ιστορικού" - -#. module: base -#: model:ir.model,name:base.model_workflow_instance -msgid "workflow.instance" -msgstr "workflow.instance" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bosnian / bosanski jezik" -msgstr "Βοσνιακό / bosanski jezik" - -#. module: base -#: view:res.lang:0 -msgid "10. %S ==> 20" -msgstr "10. %S ==> 20" - -#. module: base -#: help:ir.actions.report.xml,attachment_use:0 -msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." -msgstr "Αν επιλέξετε αυτό, τη δεύτερη φορά που ο χρήστης θα εκτυπώσει το ίδιο όνομα συνημμένου, θα εκτυπωθεί η προηγούμενη αναφορά." - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Partial" -msgstr "Μερικό" +#: field:res.request.history,name:0 +msgid "Summary" +msgstr "Περίληψη" #. module: base #: help:ir.actions.server,subject:0 -msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" -msgstr "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" +msgid "" +"Specify the subject. You can use fields from the object, e.g. `Hello " +"[[ object.partner_id.name ]]`" +msgstr "" +"Specify the subject. You can use fields from the object, e.g. `Hello " +"[[ object.partner_id.name ]]`" #. module: base -#: view:res.lang:0 -msgid "2. %a ,%A ==> Fri, Friday" -msgstr "2. %a ,%A ==> Παρ, Παρασκευή" - -#. module: base -#: field:ir.actions.server,trigger_obj_id:0 -msgid "Trigger On" -msgstr "Trigger On" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_madam -msgid "Madam" -msgstr "Κυρία" - -#. module: base -#: model:ir.model,name:base.model_res_request_link -msgid "res.request.link" -msgstr "res.request.link" - -#. module: base -#: field:res.partner.event,planned_cost:0 -msgid "Planned Cost" -msgstr "Προϋπολογισμένο Κόστος" - -#. module: base -#: model:res.country,name:base.ee -msgid "Estonia" -msgstr "Estonia" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 -msgid "Partner Events" -msgstr "Συμβάντα Συνεργάτη" - -#. module: base -#: field:res.partner.bank.type,field_ids:0 -msgid "Type fields" -msgstr "Τύποι πεδίων " - -#. module: base -#: field:ir.actions.todo,note:0 -msgid "Text" -msgstr "Κείμενο" - -#. module: base -#: view:res.lang:0 -msgid "%a - Abbreviated weekday name." -msgstr "%a - Συντομο όνομα ημέρας" +#: view:res.company:0 +msgid "Header/Footer" +msgstr "Header/Footer" #. module: base #: model:res.country,name:base.lb @@ -1306,95 +2431,44 @@ msgid "Lebanon" msgstr "Lebanon" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CUT" -msgstr "STOCK_CUT" +#: wizard_field:module.lang.import,init,name:0 +msgid "Language name" +msgstr "Όνομα Γλώσσας" #. module: base -#: rml:ir.module.reference:0 -msgid "Introspection report on objects" -msgstr "Introspection report on objects" +#: model:res.country,name:base.va +msgid "Holy See (Vatican City State)" +msgstr "Holy See (Vatican City State)" #. module: base -#: model:res.country,name:base.pf -msgid "Polynesia (French)" -msgstr "Polynesia (French)" - -#. module: base -#: field:res.country,name:0 -msgid "Country Name" -msgstr "Όνομα Χώρας" - -#. module: base -#: field:res.company,name:0 -msgid "Company Name" -msgstr "Όνομα Εταιρείας" - -#. module: base -#: model:res.country,name:base.co -msgid "Colombia" -msgstr "Κολομβία" +#: help:ir.actions.server,condition:0 +msgid "" +"Condition that is to be tested before action is executed, e.g. object." +"list_price > object.cost_price" +msgstr "" +"Condition that is to be tested before action is executed, e.g. object." +"list_price > object.cost_price" #. module: base #: wizard_field:base.module.import,init,module_file:0 msgid "Module .ZIP file" -msgstr "Module .ZIP file" +msgstr "Αρχείο Αρθρώματος.ZIP" #. module: base -#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard -#: wizard_button:res.partner.sms_send,init,send:0 -msgid "Send SMS" -msgstr "Αποστολή SMS" +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "Τηλεπικοινωνίες" #. module: base -#: field:ir.actions.report.custom,report_id:0 -msgid "Report Ref." -msgstr "Report Ref." - -#. module: base -#: field:res.roles,child_id:0 -msgid "Children" -msgstr "" - -#. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Report Fields" - -#. module: base -#: help:res.country,code:0 -msgid "" -"The ISO country code in two chars.\n" -"You can use this field for quick search." -msgstr "" -"Κωδικός Χώρας (Διψήφιος ISO).\n" -"Χρησιμοποιήστε το για γρήγορη αναζήτηση." - -#. module: base -#: model:res.country,name:base.pw -msgid "Palau" -msgstr "Palau" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "Αντικείμενο Εναύσματος" #. module: base #: selection:ir.report.custom,state:0 msgid "Subscribed" msgstr "Καταχωρημένο" -#. module: base -#: model:res.country,name:base.ke -msgid "Kenya" -msgstr "Kenya" - -#. module: base -#: help:ir.actions.server,model_id:0 -msgid "Select the object on which the action will work (read, write, create)." -msgstr "Select the object on which the action will work (read, write, create)." - -#. module: base -#: model:res.country,name:base.np -msgid "Nepal" -msgstr "Nepal" - #. module: base #: wizard_view:module.lang.install,init:0 wizard_view:module.upgrade,next:0 msgid "System Upgrade" @@ -1405,193 +2479,42 @@ msgstr "Αναβάθμιση Συστήματος" msgid "Incoming Transitions" msgstr "Εισροές" -#. module: base -#: field:res.partner.event,event_ical_id:0 -msgid "iCal id" -msgstr "iCal id" - -#. module: base -#: wizard_field:module.lang.import,init,name:0 -msgid "Language name" -msgstr "Όνομα Γλώσσας" - -#. module: base -#: field:res.partner,parent_id:0 -msgid "Main Company" -msgstr "Κύρια Εταρεία" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Extended Interface" -msgstr "Εκτεταμένη Προβολή" - -#. module: base -#: field:res.country.state,name:0 -msgid "State Name" -msgstr "Όνομα Νομού" - #. module: base #: model:res.country,name:base.sr msgid "Suriname" msgstr "Suriname" #. module: base -#: model:ir.ui.menu,name:base.next_id_4 -msgid "Low Level Objects" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 -msgid "On multiple doc." -msgstr "Σε πολλαπλά έγγραφα." - -#. module: base -#: model:ir.model,name:base.model_res_groups -msgid "res.groups" -msgstr "res.groups" - -#. module: base -#: help:ir.actions.server,action_id:0 -msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "Επιλογή Παραθύρου Κίνησης, Αναφοράς, Wizard προς εμφάνιση." - -#. module: base -#: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 -#: field:wizard.ir.model.menu.create.line,view_type:0 -msgid "View Type" -msgstr "Τύπος Προβολής" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Simplified Interface" -msgstr "Simplified Interface" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ITALIC" -msgstr "STOCK_ITALIC" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export done" -msgstr "Η Εξαγωγή Επετεύχθει" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field -msgid "acc_number" -msgstr "acc_number" - -#. module: base -#: view:ir.model:0 -msgid "Model Description" -msgstr "Περιγραφή Μοντέλου" - -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Unvalid" -msgstr "Άκυρο" - -#. module: base -#: wizard_view:res.partner.sms_send,init:0 -msgid "Bulk SMS send" -msgstr "Μαζική αποστολή SMS" +#: field:ir.values,key2:0 view:res.partner.event.type:0 +#: field:res.partner.event.type,name:0 +msgid "Event Type" +msgstr "Τύπος Συμβάντος" #. module: base #: view:res.partner.bank:0 model:res.partner.bank.type,name:base.bank_normal msgid "Bank account" msgstr "Τραπεζικός λογαριασμός" -#. module: base -#: field:res.partner.canal,name:0 -msgid "Channel Name" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_values -msgid "ir.values" -msgstr "ir.values" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Pie Chart" -msgstr "Κυκλικό Διάγραμμα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" - -#. module: base -#: help:ir.values,key2:0 -msgid "The kind of action or button in the client side that will trigger the action." -msgstr "The kind of action or button in the client side that will trigger the action." - -#. module: base -#: view:ir.sequence:0 -msgid "Seconde: %(sec)s" -msgstr "Δευτερόλεπτο: %(sec)s" - -#. module: base -#: model:res.country,name:base.jo -msgid "Jordan" -msgstr "Ιορδανία" - -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "Multiple rules on same objects are joined using operator OR" - #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "Τύπος Αρίθμησης" +msgstr "Τύπος Ιεράρχησης" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" -msgstr "wizard.ir.model.menu.create" +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"You try to upgrade a module that depends on the module: %s.\n" +"But this module is not available in your system." +msgstr "" +"Προσπαθείτε να αναβαθμίσετε ένα Άρθρωμα το οποίο εξαρτάται από το Άρθρωμα: %" +"s.\n" +"που όμως δεν είναι εγκατεστημένο." #. module: base -#: model:res.country,name:base.md -msgid "Moldavia" -msgstr "Moldavia" - -#. module: base -#: help:ir.model.fields,on_delete:0 -msgid "On delete property for many2one fields" -msgstr "On delete property for many2one fields" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_update -#: model:ir.ui.menu,name:base.menu_module_update -msgid "Update Modules List" -msgstr "Ενημέρωση Λίστας Modules" - -#. module: base -#: model:res.country,name:base.er -msgid "Eritrea" -msgstr "Ερυθρέα" - -#. module: base -#: model:res.country,name:base.cd -msgid "Congo, The Democratic Republic of the" -msgstr "Congo, The Democratic Republic of the" - -#. module: base -#: view:res.config.view:0 -msgid "Configure simple view" -msgstr "Ρυθμίσεις απλής προβολής" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bulgarian / български" -msgstr "Bulgarian / български" +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Διεύθυνση Συνεργάτη" #. module: base #: field:ir.module.module,license:0 @@ -1599,9 +2522,10 @@ msgid "License" msgstr "Άδεια Χρήσης" #. module: base -#: model:res.country,name:base.re -msgid "Reunion (French)" -msgstr "Reunion (French)" +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Invalid operation" +msgstr "Άκυρη λειτουργία" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1609,91 +2533,27 @@ msgid "STOCK_SAVE_AS" msgstr "STOCK_SAVE_AS" #. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_actions -#: model:ir.ui.menu,name:base.menu_custom_action -#: model:ir.ui.menu,name:base.menu_ir_sequence_actions -#: model:ir.ui.menu,name:base.next_id_6 -msgid "Actions" -msgstr "Ενέργειες" +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" +msgstr "Μοντέλο" #. module: base -#: view:res.request:0 field:res.request,body:0 -#: field:res.request.history,req_id:0 -msgid "Request" -msgstr "Αίτηση" +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"You try to install a module that depends on the module: %s.\n" +"But this module is not available in your system." +msgstr "" +"Προσπαθείτε να εγκαταστήσετε ένα Άρθρωμα το οποίο εξαρτάται από το Άρθρωμα: %" +"s.\n" +"που όμως δεν είναι εγκατεστημένο." #. module: base -#: model:ir.model,name:base.model_ir_report_custom -msgid "ir.report.custom" -msgstr "ir.report.custom" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Continue" -msgstr "Συνέχεια" - -#. module: base -#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 -msgid "Object ID" -msgstr "ID Αντικειμένου" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form -#: model:ir.ui.menu,name:base.menu_ir_property_form -msgid "Default Properties" -msgstr "Προεπιλεγμένες Ιδιότητες" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Slovenian / slovenščina" -msgstr "Slovenian / slovenščina" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Bar Chart" -msgstr "Ιστόγραμμα" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" -msgstr "pdf" - -#. module: base -#: field:ir.actions.server,message:0 -#: wizard_field:res.partner.spam_send,init,text:0 -msgid "Message" -msgstr "Μήνυμα" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Language file loaded." -msgstr "Το αρχείο γλώσσας φορτώθηκε" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Purchase Offer" -msgstr "Προσφορά Αγοράς" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_info:0 -msgid "Modules to update" -msgstr "Modules to update" - -#. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Ανανέωση Ημερ/νίας" - -#. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Οργανόγραμμα Εταιρείας" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Δίδα" +#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 +#: selection:ir.translation,type:0 +#: field:wizard.ir.model.menu.create.line,view_id:0 +msgid "View" +msgstr "Προβολή" #. module: base #: view:ir.actions.act_window:0 @@ -1701,228 +2561,57 @@ msgid "Open a Window" msgstr "Νεο Παράθυρο" #. module: base -#: model:res.country,name:base.bv -msgid "Bouvet Island" -msgstr "Bouvet Island" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDEX" -msgstr "STOCK_INDEX" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Σε μορφή πίνακα" - -#. module: base -#: field:ir.report.custom,print_orientation:0 -msgid "Print orientation" -msgstr "" - -#. module: base -#: model:res.country,name:base.rs -msgid "Serbia" -msgstr "Σερβία" - -#. module: base -#: view:res.payterm:0 -msgid "Payment Term" -msgstr "Όρος Πληρωμής" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_BOTTOM" -msgstr "STOCK_GOTO_BOTTOM" - -#. module: base -#: help:ir.actions.server,sequence:0 -msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." -msgstr "Σημαντικό όταν έχουμε πολλές ενέργειες. Η εκτέλεσή τους θα καθορίζεται από αυτό, το μικρότερο νούμερο σημαίνει μεγαλύτερη προτεραιότητα." - -#. module: base -#: field:ir.actions.report.xml,header:0 -msgid "Add RML header" -msgstr "Add RML header" - -#. module: base -#: model:res.country,name:base.cx -msgid "Christmas Island" -msgstr "Christmas Island" - -#. module: base -#: model:res.country,name:base.kh -msgid "Cambodia, Kingdom of" -msgstr "Καμπότζη, Βασίλειο της" - -#. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Landscape" -msgstr "Τοπίο" - -#. module: base -#: wizard_field:module.lang.import,init,data:0 -#: field:wizard.module.lang.export,data:0 -msgid "File" -msgstr "Αρχείο" - -#. module: base -#: model:res.country,name:base.gr -msgid "Greece" -msgstr "Greece / Ελλάδα" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_2 -msgid "User Interface" -msgstr "User Interface" - -#. module: base -#: view:res.users:0 -msgid "Add User" -msgstr "Προσθήκη Χρήστη" - -#. module: base -#: field:res.request,trigger_date:0 -msgid "Trigger Date" -msgstr "" +#: model:res.country,name:base.gq +msgid "Equatorial Guinea" +msgstr "Equatorial Guinea" #. module: base #: wizard_view:base.module.import,init:0 msgid "Module Import" -msgstr "Module Import" +msgstr "Εισαγωγή Αρθρώματος" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Croatian / hrvatski jezik" -msgstr "Croatian / hrvatski jezik" +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not remove the field '%s' !" +msgstr "Δεν μπορείτε να διαγράψετε το πεδίο '%s' !" #. module: base -#: field:ir.attachment,create_date:0 -msgid "Date Created" -msgstr "Ημερ/νία Δημιουργίας" - -#. module: base -#: model:res.country,name:base.mv -msgid "Maldives" -msgstr "Maldives" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 -#: model:ir.ui.menu,name:base.menu_ir_sequence_form -#: model:ir.ui.menu,name:base.next_id_5 -msgid "Sequences" -msgstr "Συχνότητες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_FORWARD" -msgstr "STOCK_GO_FORWARD" - -#. module: base -#: view:res.users:0 -msgid "Roles are used to defined available actions, provided by workflows." -msgstr "Οι ρόλοι χρησιμοποιούνται σε καθορισμένες ενέργειες που προκύπτουν από τις ροές εργασίας." +#: field:res.bank,zip:0 field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "ΤΚ" #. module: base #: field:ir.module.module,author:0 msgid "Author" msgstr "Δημιουργός" -#. module: base -#: help:ir.actions.server,code:0 -msgid "Python code to be executed" -msgstr "Python code to be executed" - -#. module: base -#: field:ir.actions.report.xml,report_xsl:0 -msgid "XSL path" -msgstr "XSL path" - -#. module: base -#: view:res.lang:0 -msgid "%b - Abbreviated month name." -msgstr "%b - Σύντομο όνομα μήνα." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDELETE" msgstr "STOCK_UNDELETE" -#. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." -msgstr "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Ορθή εμφάνιση ημερ/νίας και ώρας" -#. module: base -#: field:ir.actions.report.xml,attachment_use:0 -msgid "Reload from Attachment" -msgstr "Επαναφόρτωση από συνημμένο" - -#. module: base -#: view:res.partner.category:0 -msgid "Partner Category" -msgstr "Κατηγορία Συνεργάτη" - -#. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 -msgid "Trigger" -msgstr "" - -#. module: base -#: help:ir.actions.server,write_id:0 -msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." -msgstr "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." - -#. module: base -#: field:res.partner,supplier:0 -msgid "Supplier" -msgstr "Προμηθευτής" - #. module: base #: model:res.country,name:base.bo msgid "Bolivia" msgstr "Bolivia" #. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" -msgstr "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Close" -msgstr "_Close" - -#. module: base -#: field:res.request.history,body:0 -msgid "Body" -msgstr "Σώμα" - -#. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expression" -msgstr "Trigger Expression" +#: model:res.country,name:base.gh +msgid "Ghana" +msgstr "Ghana" #. module: base #: field:res.lang,direction:0 msgid "Direction" msgstr "Κατεύθυνση" -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Full" -msgstr "Πλήρες" - #. module: base #: model:ir.model,name:base.model_wizard_module_update_translations msgid "wizard.module.update_translations" @@ -1945,19 +2634,20 @@ msgid "Rules" msgstr "Κανόνες" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_FONT" -msgstr "STOCK_SELECT_FONT" - -#. module: base -#: rml:ir.module.reference:0 -msgid "," -msgstr "," - -#. module: base -#: field:res.users,menu_id:0 -msgid "Menu Action" +#: code:addons/base/module/module.py:0 +#, python-format +msgid "You try to remove a module that is installed or will be installed" msgstr "" +"Προσπαθείτε να απεγκαταστήσετε ένα εγκατεστημένο άρθρωμα ή ένα που πρόκειται " +"να εγκατασταθεί" + +#. module: base +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"Το είδος ενέργειας ή κουμπιού στον client το οποίο θα σημάνει την έναρξη της " +"ενέργειας." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1970,118 +2660,16 @@ msgid "Guatemala" msgstr "Guatemala" #. module: base -#: field:ir.model.fields,view_load:0 -msgid "View Auto-Load" -msgstr "Αυτόματη Φόρτωση Προβολής" - -#. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "ΦΠΑ" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIRECTORY" -msgstr "STOCK_DIRECTORY" - -#. module: base -#: wizard_button:res.partner.spam_send,init,send:0 -msgid "Send Email" -msgstr "Αποστολή Email" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "<" -msgstr "<" - -#. module: base -#: model:res.country,name:base.es -msgid "Spain" -msgstr "Ισπανία" +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +msgid "Workflows" +msgstr "Ροές Εργασίας" #. module: base #: model:ir.actions.act_window,name:base.action_config_wizard_form #: model:ir.ui.menu,name:base.menu_config_module msgid "Configuration Wizard" -msgstr "Configuration Wizard" - -#. module: base -#: view:res.request.link:0 -msgid "Request Link" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_todo -msgid "ir.actions.todo" -msgstr "ir.actions.todo" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_FIT" -msgstr "STOCK_ZOOM_FIT" - -#. module: base -#: field:res.partner.address,mobile:0 -msgid "Mobile" -msgstr "Κινητό" - -#. module: base -#: model:res.country,name:base.om -msgid "Oman" -msgstr "Ομάν" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "Html from html" -msgstr "" - -#. module: base -#: field:res.lang,time_format:0 -msgid "Time Format" -msgstr "Μορφή Ώρας" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Iteration" -msgstr "Επανάληψη" - -#. module: base -#: model:ir.ui.menu,name:base.menu_low_workflow -msgid "Workflow Items" -msgstr "" - -#. module: base -#: field:res.request,ref_doc2:0 -msgid "Document Ref 2" -msgstr "Document Ref 2" - -#. module: base -#: wizard_view:module.lang.install,start:0 -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 "Η επιλεγμένη γλώσσα εγκαταστάθηκε επιτυχώς. Πρέπει να αλλάξετε τις Προτιμήσεις του χρήστη και να ανοίξετε ένα νέο μενού για να δείτε τις αλλαγές." - -#. module: base -#: field:res.request,ref_doc1:0 -msgid "Document Ref 1" -msgstr "Document Ref 1" - -#. module: base -#: model:res.country,name:base.ga -msgid "Gabon" -msgstr "Gabon" - -#. module: base -#: model:res.country,name:base.nu -msgid "Niue" -msgstr "Νιούε" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Work Days" -msgstr "Ημέρες Εργασίας" +msgstr "Αυτόματος Οδηγός Ρυθμίσεων" #. module: base #: model:ir.model,name:base.model_res_roles @@ -2097,87 +2685,22 @@ msgstr "" "0=Πολύ Επείγον\n" "10=Μη επείγον" -#. module: base -#: field:ir.sequence,suffix:0 -msgid "Suffix" -msgstr "Πρόσφυμα" - -#. module: base -#: view:ir.model:0 view:res.groups:0 -msgid "Access Rights" -msgstr "Δικαιώματα Πρόσβασης" - -#. module: base -#: model:res.country,name:base.gl -msgid "Greenland" -msgstr "Greenland (Γροιλανδία)" - -#. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Χαμηλή" - -#. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account Number" -msgstr "Αριθμός Λογαριασμού" - #. module: base #: view:res.users:0 msgid "Skip" msgstr "Skip" #. module: base -#: model:ir.actions.act_window,name:base.act_menu_create -#: view:wizard.ir.model.menu.create:0 -msgid "Create Menu" -msgstr "Δημιουργήστε μενού" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_RECORD" -msgstr "STOCK_MEDIA_RECORD" - -#. module: base -#: model:res.country,name:base.in -msgid "India" -msgstr "Ινδία" - -#. module: base -#: view:res.lang:0 -msgid "1. %c ==> Fri Dec 5 18:25:20 2008" -msgstr "1. %c ==> Παρ Δεκ 5 18:25:20 2008" - -#. module: base -#: help:ir.ui.menu,groups_id:0 -msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." -msgstr "Η εμφάνιση του μενού αυτού βασίζεται στις ομάδες. Αν το πεδίο μείνει κενό, το σύστημα θα κανονίζει την εμφάνιση του μενού με βάση την πρόσβαση Ανάγνωσης του κάθε αντικειμένου." - -#. module: base -#: model:res.country,name:base.nc -msgid "New Caledonia (French)" -msgstr "New Caledonia (French)" +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "Αποδεκτοί Σύνδεσμοι στις Αιτήσεις" #. module: base #: model:res.country,name:base.ls msgid "Lesotho" msgstr "Lesotho" -#. module: base -#: field:ir.model.fields,translate:0 -msgid "Translate" -msgstr "Μετάφραση" - -#. module: base -#: field:res.partner.function,name:0 -msgid "Function Name" -msgstr "Όνομα Λειτουργίας" - -#. module: base -#: rml:ir.module.reference:0 -msgid "View :" -msgstr "Προβολή:" - #. module: base #: model:ir.actions.act_window,name:base.grant_menu_access #: model:ir.ui.menu,name:base.menu_grant_menu_access @@ -2185,89 +2708,31 @@ msgid "Grant Access To Menus" msgstr "Πρόσβαση στα Menu" #. module: base -#: field:res.partner.category,name:0 -msgid "Category Name" -msgstr "Όνομα Κατηγορίας" +#: model:res.country,name:base.ke +msgid "Kenya" +msgstr "Kenya" #. module: base #: view:res.config.view:0 -msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." -msgstr "Επιλέξτε την απλοποιημένη μορφή αν δοκιμάζετε το OpenERP για πρώτη φορά. Οι λιγότερο συνηθισμένες επιλογές και πεδία δεν θα προβάλονται. Μπορείτε να το αλλάξετε αυτό αργότερα από το μενού της Διαχείρισης." +msgid "" +"Choose the simplified interface if you are testing OpenERP for the first " +"time. Less used options or fields are automatically hidden. You will be able " +"to change this, later, through the Administration menu." +msgstr "" +"Επιλέξτε την απλοποιημένη εγκατάσταση αν δοκιμάζετε το OpenERP για πρώτη " +"φορά. Οι λιγότερο συνηθισμένες επιλογές και πεδία δεν θα προβάλονται. " +"Μπορείτε να το αλλάξετε αυτό αργότερα από το μενού της Διαχείρισης. " #. module: base -#: model:res.country,name:base.tz -msgid "Tanzania" -msgstr "Tanzania" +#: code:osv/orm.py:0 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Σφάλμα κατά την επικύρωση των πεδίων %s: %s" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_CENTER" -msgstr "STOCK_JUSTIFY_CENTER" - -#. module: base -#: field:workflow.instance,uid:0 -msgid "User ID" -msgstr "User ID" - -#. module: base -#: model:ir.actions.report.xml,name:base.res_partner_address_report -msgid "Labels" -msgstr "Ετικέτες" - -#. module: base -#: field:res.request,act_from:0 field:res.request.history,act_from:0 -msgid "From" -msgstr "Από" - -#. module: base -#: model:res.country,name:base.cz -msgid "Czech Republic" -msgstr "Czech Republic" - -#. module: base -#: model:res.country,name:base.mr -msgid "Mauritania" -msgstr "Μαυριτανία" - -#. module: base -#: model:res.country,name:base.sb -msgid "Solomon Islands" -msgstr "Solomon Islands" - -#. module: base -#: field:ir.actions.act_window,target:0 -msgid "Target Window" -msgstr "Επιλεγμένο Παράθυρο" - -#. module: base -#: constraint:res.partner:0 -msgid "The VAT doesn't seem to be correct." -msgstr "Ο ΦΠΑ δε φαίνεται σωστός" - -#. module: base -#: view:ir.values:0 -msgid "client_action_multi, client_action_relate" -msgstr "client_action_multi, client_action_relate" - -#. module: base -#: model:res.country,name:base.ad -msgid "Andorra, Principality of" -msgstr "Andorra, Principality of" - -#. module: base -#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 -msgid "Child Categories" -msgstr "Υποκατηγορίες" - -#. module: base -#: wizard_button:server.action.create,init,step_1:0 -msgid "Next" -msgstr "Επόμενο" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "TGZ Archive" -msgstr "Αρχείο TGZ" +#: model:res.country,name:base.sm +msgid "San Marino" +msgstr "San Marino" #. module: base #: model:res.country,name:base.bm @@ -2280,26 +2745,14 @@ msgid "Peru" msgstr "Peru" #. module: base -#: field:res.partner.som,factor:0 -msgid "Factor" -msgstr "Παράγοντας" +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "Set NULL" #. module: base -#: view:res.lang:0 -msgid "%B - Full month name." -msgstr "%B - Πλήρες όνομα μήνα." - -#. module: base -#: wizard_field:res.partner.spam_send,init,from:0 -msgid "Sender's email" -msgstr "Εmail αποστολέα" - -#. module: base -#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 -#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 -#: field:ir.values,key:0 view:res.partner:0 -msgid "Type" -msgstr "Τύπος" +#: field:res.partner.event,som:0 field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Προδιάθεση" #. module: base #: model:res.country,name:base.bj @@ -2307,85 +2760,24 @@ msgid "Benin" msgstr "Benin" #. module: base -#: selection:ir.actions.todo,state:0 -msgid "Skipped" -msgstr "Skipped" +#: view:ir.rule.group:0 +msgid "The rule is satisfied if all test are True (AND)" +msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό (AND)" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_IN" -msgstr "STOCK_ZOOM_IN" - -#. module: base -#: view:res.lang:0 -msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -msgstr "8. %I:%M:%S %p ==> 06:25:20 μ.μ." - -#. module: base -#: model:res.country,name:base.mx -msgid "Mexico" -msgstr "Mexico" - -#. module: base -#: model:ir.model,name:base.model_res_partner_title -msgid "res.partner.title" -msgstr "res.partner.title" - -#. module: base -#: model:res.country,name:base.gu -msgid "Guam (USA)" -msgstr "Guam (USA)" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_actions -msgid "ir.actions.actions" -msgstr "ir.actions.actions" - -#. module: base -#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation -msgid "Translations" -msgstr "Μεταφράσεις" - -#. module: base -#: field:ir.actions.report.xml,report_rml_content:0 -#: field:ir.actions.report.xml,report_rml_content_data:0 -msgid "RML content" -msgstr "RML content" - -#. module: base -#: field:ir.report.custom.fields,field_child3:0 -msgid "Field child3" -msgstr "Field child3" - -#. module: base -#: view:workflow.activity:0 -msgid "Incoming transitions" -msgstr "Εισερχόμενες μεταβάσεις" - -#. module: base -#: model:res.country,name:base.tn -msgid "Tunisia" -msgstr "Tunisia" +msgid "STOCK_CONNECT" +msgstr "STOCK_CONNECT" #. module: base #: selection:ir.model.fields,select_level:0 msgid "Not Searchable" -msgstr "" - -#. module: base -#: model:res.country,name:base.cn -msgid "China" -msgstr "China" +msgstr "Μη Αναζητήσιμο" #. module: base #: field:res.partner.event.type,key:0 msgid "Key" -msgstr "Key" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OK" -msgstr "STOCK_OK" +msgstr "Κλειδί" #. module: base #: field:ir.cron,nextcall:0 @@ -2395,97 +2787,27 @@ msgstr "Επόμενη Ημερ/νία Κλήσης" #. module: base #: field:res.company,rml_header:0 msgid "RML Header" -msgstr "RML Header" - -#. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Set" - -#. module: base -#: model:res.country,name:base.ua -msgid "Ukraine" -msgstr "Ukraine" - -#. module: base -#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 -msgid "Dummy" -msgstr "Εικονικό" - -#. module: base -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalid XML for View Architecture!" - -#. module: base -#: model:ir.model,name:base.model_ir_exports -msgid "ir.exports" -msgstr "ir.exports" - -#. module: base -#: model:res.country,name:base.eh -msgid "Western Sahara" -msgstr "Western Sahara" - -#. module: base -#: model:ir.model,name:base.model_workflow -msgid "workflow" -msgstr "ροή εργασίας" +msgstr "RML Κεφαλίδα" #. module: base #: wizard_field:res.partner.sms_send,init,app_id:0 msgid "API ID" msgstr "API ID" -#. module: base -#: model:res.country,name:base.ky -msgid "Cayman Islands" -msgstr "Cayman Islands" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Tests" - -#. module: base -#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 -msgid "Module Category" -msgstr "Module Category" - #. module: base #: model:res.country,name:base.mu msgid "Mauritius" msgstr "Mauritius" -#. module: base -#: rml:ir.module.reference:0 -msgid "Reference Guide" -msgstr "Οδηγός αναφοράς" - #. module: base #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" -msgstr "Scan for new modules" +msgstr "Αναζήτηση νέων Αρθρωμάτων" #. module: base #: model:ir.model,name:base.model_ir_module_repository msgid "Module Repository" -msgstr "Module Repository" - -#. module: base -#: model:res.country,name:base.ml -msgid "Mali" -msgstr "Mali" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNINDENT" -msgstr "STOCK_UNINDENT" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "At Once" -msgstr "" +msgstr "Τοποθεσία Αρθρωμάτων" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -2493,72 +2815,16 @@ msgid "Security" msgstr "Ασφάλεια" #. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_custom -#: model:ir.ui.menu,name:base.menu_ir_action_report_custom -msgid "Report Custom" -msgstr "Ειδική Αναφορά" - -#. module: base -#: model:res.country,name:base.bg -msgid "Bulgaria" -msgstr "Bulgaria" - -#. module: base -#: field:ir.cron,interval_number:0 -msgid "Interval Number" -msgstr "Interval Number" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND" -msgstr "STOCK_FIND" - -#. module: base -#: model:res.country,name:base.ao -msgid "Angola" -msgstr "Angola" - -#. module: base -#: model:res.country,name:base.tf -msgid "French Southern Territories" -msgstr "French Southern Territories" - -#. module: base -#: model:res.country,name:base.td -msgid "Chad" -msgstr "Chad" +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Using a relation field which uses an unknown object" +msgstr "Using a relation field which uses an unknown object" #. module: base #: model:res.country,name:base.za msgid "South Africa" msgstr "South Africa" -#. module: base -#: model:res.country,name:base.tk -msgid "Tokelau" -msgstr "Tokelau" - -#. module: base -#: view:ir.actions.server:0 -msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HELP" -msgstr "STOCK_HELP" - -#. module: base -#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access -#: view:res.groups:0 field:res.groups,model_access:0 -msgid "Access Controls" -msgstr "Ρυθμίσεις Πρόσβασης" - -#. module: base -#: model:res.country,name:base.bn -msgid "Brunei Darussalam" -msgstr "Brunei Darussalam" - #. module: base #: model:ir.model,name:base.model_wizard_module_lang_export msgid "wizard.module.lang.export" @@ -2568,51 +2834,12 @@ msgstr "wizard.module.lang.export" #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "Installed" -msgstr "Installed" +msgstr "Εγκατεστημένο" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_function_form -#: model:ir.ui.menu,name:base.menu_partner_function_form -#: view:res.partner.function:0 -msgid "Partner Functions" -msgstr "Λειτουργίες Συνεργατών" - -#. module: base -#: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 -#: view:res.currency:0 field:res.currency,name:0 -#: field:res.currency.rate,currency_id:0 -msgid "Currency" -msgstr "Νόμισμα" - -#. module: base -#: view:res.lang:0 -msgid "%Y - Year with century as a decimal number." -msgstr "%Y - Το έτος (πλήρως)." - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish (AR) / Español (AR)" -msgstr "Spanish (AR) / Español (AR)" - -#. module: base -#: model:ir.model,name:base.model_workflow_triggers -msgid "workflow.triggers" -msgstr "workflow.triggers" - -#. module: base -#: view:res.lang:0 -msgid "5. %y, %Y ==> 08, 2008" -msgstr "5. %y, %Y ==> 08, 2008" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "module,type,name,res_id,src,value" -msgstr "module,type,name,res_id,src,value" - -#. module: base -#: model:res.country,name:base.sa -msgid "Saudi Arabia" -msgstr "Saudi Arabia" +#: model:res.country,name:base.sn +msgid "Senegal" +msgstr "Senegal" #. module: base #: model:res.country,name:base.hu @@ -2620,95 +2847,24 @@ msgid "Hungary" msgstr "Hungary" #. module: base -#: model:res.country,name:base.ne -msgid "Niger" -msgstr "Νίγηρας" - -#. module: base -#: model:res.country,name:base.ba -msgid "Bosnia-Herzegovina" -msgstr "Bosnia-Herzegovina" - -#. module: base -#: field:ir.report.custom.fields,alignment:0 -msgid "Alignment" -msgstr "Διάταξη" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDO" -msgstr "STOCK_UNDO" +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "res.groups" #. module: base #: model:res.country,name:base.br msgid "Brazil" msgstr "Brazil" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Weeks" -msgstr "Εβδομάδες" - -#. module: base -#: selection:ir.rule,operator:0 -msgid ">=" -msgstr ">=" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_xml -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.xml" -msgstr "ir.actions.report.xml" - -#. module: base -#: model:ir.ui.menu,name:base.menu_administration -msgid "Administration" -msgstr "Διαχείριση" - #. module: base #: field:ir.sequence,number_next:0 msgid "Next Number" msgstr "Επόμενος Αριθμός" -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Get file" -msgstr "Get file" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "This function will check for new modules in the 'addons' path and on module repositories:" -msgstr "This function will check for new modules in the 'addons' path and on module repositories:" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "raw" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "child_of" - #. module: base #: view:res.currency:0 field:res.currency,rate_ids:0 msgid "Rates" -msgstr "Ποσοστά" - -#. module: base -#: view:res.lang:0 -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 - Ο αριθμός της εβδομάδας στο χρόνο (με Δευτέρα πρώτη ημέρα της εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του νέου χρόνου πριν την πρώτη Δευτέρα θεωρούνται εβδομάδα 0." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_BACK" -msgstr "STOCK_GO_BACK" +msgstr "Ισοτιμίες" #. module: base #: model:res.country,name:base.sy @@ -2718,23 +2874,17 @@ msgstr "Syria" #. module: base #: view:res.lang:0 msgid "======================================================" -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Validated" -msgstr "Επικυρωμένο" +msgstr "======================================================" #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" -msgstr "" +msgstr "Field child2" #. module: base -#: field:ir.values,key2:0 view:res.partner.event.type:0 -#: field:res.partner.event.type,name:0 -msgid "Event Type" -msgstr "Τύπος Συμβάντος" +#: field:ir.report.custom.fields,field_child3:0 +msgid "Field child3" +msgstr "Field child3" #. module: base #: field:ir.report.custom.fields,field_child0:0 @@ -2746,82 +2896,15 @@ msgstr "Field child0" msgid "Field child1" msgstr "Field child1" -#. module: base -#: field:ir.module.module,website:0 field:res.partner,website:0 -msgid "Website" -msgstr "Ιστοσελίδα" - #. module: base #: field:ir.model.fields,selection:0 msgid "Field Selection" msgstr "Field Selection" #. module: base -#: view:res.roles:0 -msgid "Role" -msgstr "Ρόλος" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "https://translations.launchpad.net/openobject" -msgstr "https://translations.launchpad.net/openobject" - -#. module: base -#: model:res.country,name:base.ir -msgid "Iran" -msgstr "Iran" - -#. module: base -#: model:res.country,name:base.dz -msgid "Algeria" -msgstr "Algeria" - -#. module: base -#: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 -#: field:wizard.module.lang.export,state:0 -msgid "unknown" -msgstr "άγνωστο" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_som-act -#: model:ir.ui.menu,name:base.menu_res_partner_som-act -msgid "States of mind" -msgstr "Ψυχικές διαθέσεις" - -#. module: base -#: model:res.country,name:base.gs -msgid "S. Georgia & S. Sandwich Isls." -msgstr "S. Georgia & S. Sandwich Isls." - -#. module: base -#: field:ir.actions.url,url:0 -msgid "Action URL" -msgstr "Action URL" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REMOVE" -msgstr "STOCK_REMOVE" - -#. module: base -#: field:ir.ui.view_sc,res_id:0 -msgid "Resource Ref." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_FILL" -msgstr "STOCK_JUSTIFY_FILL" - -#. module: base -#: model:res.country,name:base.mh -msgid "Marshall Islands" -msgstr "Marshall Islands" - -#. module: base -#: model:ir.model,name:base.model_ir_model_access -msgid "ir.model.access" -msgstr "ir.model.access" +#: selection:res.request,state:0 +msgid "draft" +msgstr "πρόχειρα" #. module: base #: field:res.currency.rate,name:0 field:res.partner,date:0 @@ -2830,114 +2913,36 @@ msgid "Date" msgstr "Ημερ/νία" #. module: base -#: model:res.country,name:base.ki -msgid "Kiribati" -msgstr "Kiribati" +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" +msgstr "SXW path" #. module: base -#: model:res.country,name:base.ht -msgid "Haiti" -msgstr "Haiti" - -#. module: base -#: model:res.country,name:base.iq -msgid "Iraq" -msgstr "Iraq" - -#. module: base -#: view:ir.attachment:0 field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" msgstr "Δεδομένα" -#. module: base -#: selection:ir.translation,type:0 -msgid "RML" -msgstr "RML" - #. module: base #: view:res.users:0 msgid "Groups are used to defined access rights on each screen and menu." -msgstr "Οι Ομάδες χρησιμοποιούνται για τον ορισμό δικαιωμάτων πρόσβασης στις οθόνες και τα μενού." +msgstr "" +"Οι Ομάδες χρησιμοποιούνται για τον ορισμό δικαιωμάτων πρόσβασης στις οθόνες " +"και τα μενού." #. module: base -#: model:ir.actions.act_window,name:base.action_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_main -msgid "Partners by Categories" -msgstr "Συνεργάτες ανά Κατηγορίες" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request-act -#: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 -msgid "Requests" -msgstr "Αιτήσεις" - -#. module: base -#: model:res.country,name:base.cl -msgid "Chile" -msgstr "Chile (Χιλή)" - -#. module: base -#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 -#: field:res.partner,lang:0 field:res.users,context_lang:0 -#: field:wizard.module.lang.export,lang:0 -#: field:wizard.module.update_translations,lang:0 -msgid "Language" -msgstr "Γλώσσα" - -#. module: base -#: selection:ir.translation,type:0 -msgid "XSL" -msgstr "XSL" - -#. module: base -#: model:res.country,name:base.gm -msgid "Gambia" -msgstr "Gambia" - -#. module: base -#: wizard_view:base.module.import,import:0 -#: wizard_view:base.module.import,init:0 -msgid "Module import" -msgstr "Εισαγωγή Module" - -#. module: base -#: view:ir.values:0 -msgid "tree_but_action, client_print_multi" -msgstr "tree_but_action, client_print_multi" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 -msgid "Companies" -msgstr "Εταιρείες" +#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 +msgid "Parent Menu" +msgstr "Επάνω Μενού" #. module: base #: help:ir.actions.act_window.view,multi:0 #: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 -msgid "If set to true, the action will not be displayed on the right toolbar of a form view." +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_supplier_form -#: model:ir.ui.menu,name:base.menu_partner_supplier_form -msgid "Suppliers Partners" -msgstr "Προμηθευτές" - -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Για εξαγωγή νέας γλώσσας, μην επιλέξετε καμμία γλώσσα." - -#. module: base -#: model:res.country,name:base.be -msgid "Belgium" -msgstr "Belgium" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "CSV File" -msgstr "Αρχείο CSV" +"Αν ρυθμιστεί 'true', η ενέργεια δε θα εμφανίζεται στη δεξιά γραμμή εργαλείων " +"της φόρμας." #. module: base #: view:ir.attachment:0 @@ -2950,29 +2955,3748 @@ msgid "Decimal Separator" msgstr "Υποδιαστολή" #. module: base -#: field:ir.actions.report.xml,report_sxw:0 -msgid "SXW path" -msgstr "SXW path" +#: view:res.partner:0 view:res.request:0 field:res.request,history:0 +msgid "History" +msgstr "Ιστορικό" + +#. module: base +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "Δημιουργός" + +#. module: base +#: model:res.country,name:base.mx +msgid "Mexico" +msgstr "Mexico" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Swedish / svenska" +msgstr "Swedish / svenska" + +#. module: base +#: field:res.company,child_ids:0 +msgid "Child Companies" +msgstr "Θυγατρικές Εταιρείες" + +#. module: base +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" + +#. module: base +#: model:res.country,name:base.ni +msgid "Nicaragua" +msgstr "Nicaragua" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "Η μέθοδος εγγραφής δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + +#. module: base +#: view:res.partner.event:0 +msgid "General Description" +msgstr "Γενική Περιγραφή" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "Ευκαιρία Πώλησης" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Maintenance contract added !" +msgstr "Το Συβόλαιο Συντήρησης προστέθηκε!" + +#. module: base +#: field:ir.rule,field_id:0 selection:ir.translation,type:0 +msgid "Field" +msgstr "Πεδίο" + +#. module: base +#: model:res.country,name:base.ve +msgid "Venezuela" +msgstr "Venezuela" + +#. module: base +#: view:res.lang:0 +msgid "9. %j ==> 340" +msgstr "9. %j ==> 340" + +#. module: base +#: model:res.country,name:base.zm +msgid "Zambia" +msgstr "Zambia" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +msgid "Report Xml" +msgstr "Αναφορά Xml" + +#. module: base +#: help:res.partner,user_id:0 +msgid "" +"The internal user that is in charge of communicating with this partner if " +"any." +msgstr "Ο χρήστης, υπεύθυνος για την επικοινωνία με το συνεργάτη, αν υπάρχει." + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Upgrade" +msgstr "Ακύρωση Αναβάθμισης" + +#. module: base +#: model:res.country,name:base.ci +msgid "Ivory Coast (Cote D'Ivoire)" +msgstr "Ivory Coast (Cote D'Ivoire)" + +#. module: base +#: model:res.country,name:base.kz +msgid "Kazakhstan" +msgstr "Kazakhstan" + +#. module: base +#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 field:ir.module.category,name:0 +#: field:ir.module.module,name:0 field:ir.module.module.dependency,name:0 +#: rml:ir.module.reference:0 field:ir.module.repository,name:0 +#: field:ir.property,name:0 field:ir.report.custom.fields,name:0 +#: field:ir.rule.group,name:0 field:ir.values,name:0 +#: field:maintenance.contract.module,name:0 field:res.bank,name:0 +#: field:res.config.view,name:0 field:res.lang,name:0 field:res.partner,name:0 +#: field:res.partner.bank.type,name:0 field:res.request.link,name:0 +#: field:res.users,name:0 field:workflow,name:0 field:workflow.activity,name:0 +msgid "Name" +msgstr "Όνομα" + +#. module: base +#: model:res.country,name:base.ms +msgid "Montserrat" +msgstr "Montserrat" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "Ορολογία Εφαρμογής" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Average" +msgstr "Υπολογισμός Μέσου Όρου" + +#. module: base +#: field:ir.module.module,demo:0 +msgid "Demo data" +msgstr "Demo δεδομένα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_instance_form +#: model:ir.ui.menu,name:base.menu_workflow_instance +msgid "Instances" +msgstr "Instances" + +#. module: base +#: model:res.country,name:base.aq +msgid "Antarctica" +msgstr "Antarctica" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" +msgstr "Νέος Συνεργάτης" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "ir.actions.act_window.view" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Web" +msgstr "Web" + +#. module: base +#: field:res.partner.event,planned_revenue:0 +msgid "Planned Revenue" +msgstr "Προγραμματισμένα Έσοδα" + +#. module: base +#: wizard_view:module.lang.import,init:0 +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 "" +"Πρέπει να εισάγετε ένα αρχείο .CSV με κωδικοποίηση UTF-8. Παρακαλώ ελέγξτε " +"ότι η πρώτη γραμμή του αρχείου σας είναι:" + +#. module: base +#: model:res.country,name:base.et +msgid "Ethiopia" +msgstr "Ethiopia" + +#. module: base +#: view:res.lang:0 +msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." +msgstr "%H - Η Ώρα (24ωρη μορφή) σε δεκαδική μορφή [00, 23]." + +#. module: base +#: view:res.roles:0 +msgid "Role" +msgstr "Ρόλος" + +#. module: base +#: help:res.country.state,code:0 +msgid "The state code in three chars.\n" +msgstr "Ο κωδικός κατάστασης με 3 χαρακτήρες\n" + +#. module: base +#: model:res.country,name:base.sj +msgid "Svalbard and Jan Mayen Islands" +msgstr "Svalbard and Jan Mayen Islands" + +#. module: base +#: view:ir.rule:0 +msgid "Test" +msgstr "Test" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group By" +msgstr "Ομαδοποίηση Ανά" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PLAY" -msgstr "STOCK_MEDIA_PLAY" +msgid "STOCK_DIALOG_WARNING" +msgstr "STOCK_DIALOG_WARNING" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_IN" +msgstr "STOCK_ZOOM_IN" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "κλειστά" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "get" +msgstr "πάρε" + +#. module: base +#: help:ir.model.fields,on_delete:0 +msgid "On delete property for many2one fields" +msgstr "On delete property for many2one fields" + +#. module: base +#: field:ir.actions.server,write_id:0 +msgid "Write Id" +msgstr "Write Id" + +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "Τιμή Τομέα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "STOCK_ITALIC" + +#. module: base +#: view:ir.actions.server:0 +msgid "SMS Configuration" +msgstr "Ρύθμιση SMS " + +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "Λίστα Προσβάσεων" + +#. module: base +#: model:res.country,name:base.um +msgid "USA Minor Outlying Islands" +msgstr "USA Minor Outlying Islands" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +msgid "Bank Type" +msgstr "Τύπος Τράπεζας" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "The name of the group can not start with \"-\"" +msgstr "Το όνομα της ομάδας δεν μπορεί να ξεκινάει με \"-\"" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "Παρακαλώ επαναφορτώστε τη σελίδα του μενού (Ctrl+t Ctrl+r)." + +#. module: base +#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 +msgid "Shortcut" +msgstr "Συντόμευση" #. module: base #: field:ir.model.data,date_init:0 msgid "Init Date" msgstr "Αρχική Ημερ/νία" +#. module: base +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "Εκκίνηση Ροής" + +#. module: base +#: view:ir.model:0 view:ir.model.fields:0 +msgid "Security on Groups" +msgstr "Ασφάλεια σε Ομάδες" + +#. module: base +#: view:res.partner.bank:0 +msgid "Bank Account Owner" +msgstr "Ιδιοκτήτης Τραπεζικού Λογαριασμού" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form +#: model:ir.ui.menu,name:base.menu_values_form +msgid "Client Actions Connections" +msgstr "Client Actions Connections" + +#. module: base +#: field:ir.ui.view_sc,resource:0 +msgid "Resource Name" +msgstr "Περιγραφή Πόρου" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Hours" +msgstr "Ώρες" + +#. module: base +#: model:res.country,name:base.gp +msgid "Guadeloupe (French)" +msgstr "Guadeloupe (French)" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Accumulate" +msgstr "Συσσώρευση" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Tree can only be used in tabular reports" +msgstr "Το δέντρο μπορεί να χρησιμοποιηθεί μόνο σε αναφορές με μορφή πίνακα" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory" +msgstr "Φάκελλος" + +#. module: base +#: field:wizard.ir.model.menu.create,name:0 +msgid "Menu Name" +msgstr "Όνομα Μενού" + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report Title" +msgstr "Τίτλος Αναφοράς" + +#. module: base +#: field:ir.report.custom.fields,fontcolor:0 +msgid "Font color" +msgstr "Χρώμα γραμματοσειράς" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_DESCENDING" +msgstr "STOCK_SORT_DESCENDING" + +#. module: base +#: model:res.country,name:base.my +msgid "Malaysia" +msgstr "Malaysia" + +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" +msgstr "res.request.history" + +#. module: base +#: view:ir.actions.server:0 +msgid "Client Action Configuration" +msgstr "Client Action Configuration" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.model,name:base.model_res_partner_address +#: view:res.partner.address:0 +msgid "Partner Addresses" +msgstr "Διευθύνσεις Συνεργάτη" + +#. module: base +#: model:res.country,name:base.cv +msgid "Cape Verde" +msgstr "Cape Verde (Πράσινο Ακρωτήριο)" + +#. module: base +#: model:ir.actions.act_window,name:base.act_res_partner_event +#: field:res.partner,events:0 field:res.partner.event,name:0 +msgid "Events" +msgstr "Συμβάντα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles +#: model:ir.ui.menu,name:base.menu_action_res_roles +msgid "Roles Structure" +msgstr "Διάρθρωση Ρόλων" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 +msgid "ir.actions.url" +msgstr "ir.actions.url" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_STOP" +msgstr "STOCK_MEDIA_STOP" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "Wrong ID for the browse record, got %r, expected an integer." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" +msgstr "STOCK_DND_MULTIPLE" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Επαφές Συνεργάτη" + +#. module: base +#: wizard_field:module.module.update,update,add:0 +msgid "Number of modules added" +msgstr "Αριθμός Αρθρωμάτων που προστέθηκαν" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Απαιτούμενος Ρόλος" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "The create method is not implemented on this object !" + +#. module: base +#: field:workflow.triggers,workitem_id:0 +msgid "Workitem" +msgstr "Workitem" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "STOCK_DIALOG_AUTHENTICATION" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_OUT" +msgstr "STOCK_ZOOM_OUT" + +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 selection:ir.values,key:0 +msgid "Action" +msgstr "Ενέργεια" + +#. module: base +#: view:ir.actions.server:0 +msgid "Email Configuration" +msgstr "Ρυθμίσεις Email " + +#. module: base +#: model:ir.model,name:base.model_ir_cron +msgid "ir.cron" +msgstr "ir.cron" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "terp-mrp" + +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +msgid "Trigger On" +msgstr "Έναυσμα σε λειτουργία" + +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" +msgstr "Fiji" + +#. module: base +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Μέγεθος" + +#. module: base +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Sudan" + +#. module: base +#: view:res.lang:0 +msgid "%m - Month as a decimal number [01,12]." +msgstr "%m - Ο μήνας σε δεκαδική μορφή [01,12]" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "Εξαγωγή Δεδομένων" + +#. module: base +#: model:res.country,name:base.fm +msgid "Micronesia" +msgstr "Micronesia" + +#. module: base +#: view:res.request.history:0 +msgid "Request History" +msgstr "Αίτηση Ιστορικού" + +#. module: base +#: field:ir.module.module,menus_by_module:0 view:res.groups:0 +msgid "Menus" +msgstr "Μενού" + +#. module: base +#: model:res.country,name:base.il +msgid "Israel" +msgstr "Israel" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_server_action_create +msgid "Create Action" +msgstr "Δημιουργία Ενέργειας" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "html" + +#. module: base +#: field:res.lang,time_format:0 +msgid "Time Format" +msgstr "Μορφή Ώρας" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Your system will be upgraded." +msgstr "Το σύστημα θα αναβαθμιστεί" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "Καθορισμένες Αναφορές" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-tools" +msgstr "terp-tools" + +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Report xml" +msgstr "Αναφορά xml" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_open_categ +#: model:ir.actions.act_window,name:base.open_module_tree +#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree +#: field:wizard.module.lang.export,modules:0 +msgid "Modules" +msgstr "Αρθρώματα" + +#. module: base +#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 +#: field:workflow.workitem,subflow_id:0 +msgid "Subflow" +msgstr "Υπο-ροή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" +msgstr "STOCK_UNDO" + +#. module: base +#: field:workflow.transition,signal:0 +msgid "Signal (button Name)" +msgstr "Σινιάλο (όνομα πλήκτρου)" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 +#: field:res.partner,bank_ids:0 +msgid "Banks" +msgstr "Τράπεζες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-sale" +msgstr "terp-sale" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "You cannot perform this operation." +msgstr "Δεν μπορείτε να εκτελέσετε αυτή τη λειτουργία." + +#. module: base +#: view:res.lang:0 +msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." +msgstr "%I - Η Ώρα (12ωρο) σε δεκαδική μορφή [01, 12]." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Romanian / limba română" +msgstr "Romanian / limba română" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" +msgstr "STOCK_ADD" + +#. module: base +#: field:ir.cron,doall:0 +msgid "Repeat Missed" +msgstr "Επανάληψη Παραλειπομένων" + +#. module: base +#: help:ir.actions.server,state:0 +msgid "Type of the Action that is to be executed" +msgstr "Τύπος Ενέργειας για εκτέλεση" + +#. module: base +#: field:ir.server.object.lines,server_id:0 +msgid "Object Mapping" +msgstr "Χάρτης Αντικειμένων" + +#. module: base +#: help:res.currency,rate:0 help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "Ισοτιμία νομίσματος" + +#. module: base +#: model:res.country,name:base.uk +msgid "United Kingdom" +msgstr "United Kingdom" + +#. module: base +#: view:ir.actions.server:0 +msgid "Create / Write" +msgstr "Δημιουργία / Εγγραφή" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category without removing it." +msgstr "" +"Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία χωρίς να την " +"διαγράψετε." + +#. module: base +#: rml:ir.module.reference:0 +msgid "Object:" +msgstr "Αντικείμενο:" + +#. module: base +#: model:res.country,name:base.bw +msgid "Botswana" +msgstr "Botswana" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +msgid "Partner Titles" +msgstr "Τίτλοι Συνεργάτη" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "Υπηρεσία" + +#. module: base +#: help:ir.actions.act_window,auto_refresh:0 +msgid "Add an auto-refresh on the view" +msgstr "Add an auto-refresh on the view" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_download:0 +msgid "Modules to download" +msgstr "Αρθρώματα για λήψη" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_workitem_form +#: model:ir.ui.menu,name:base.menu_workflow_workitem +msgid "Workitems" +msgstr "Workitems" + +#. module: base +#: field:wizard.module.lang.export,advice:0 +msgid "Advice" +msgstr "Συμβουλή" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Lithuanian / Lietuvių kalba" +msgstr "Lithuanian / Lietuvių kalba" + +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "" +"Provide the field name where the record id is stored after the create " +"operations. If it is empty, you can not track the new record." +msgstr "" +"Provide the field name where the record id is stored after the create " +"operations. If it is empty, you can not track the new record." + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Couldn't find tag '%s' in parent view !" +msgstr "Αδύνατη η εύρεση της ετικέτας '%s' στη μητρική προβολή!" + +#. module: base +#: field:ir.ui.view,inherit_id:0 +msgid "Inherited View" +msgstr "Παράγωγος Προβολή" + +#. module: base +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base +#: model:ir.model,name:base.model_ir_rule_group +msgid "ir.rule.group" +msgstr "ir.rule.group" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_install +#: model:ir.ui.menu,name:base.menu_module_tree_install +msgid "Installed modules" +msgstr "Εγκατεστημένα Αρθρώματα" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The name_get method is not implemented on this object !" +msgstr "The name_get method is not implemented on this object !" + +#. module: base +#: model:res.country,name:base.lc +msgid "Saint Lucia" +msgstr "Saint Lucia" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +#: view:maintenance.contract:0 +msgid "Maintenance Contract" +msgstr "Συμβόλαιο Συντήρησης" + +#. module: base +#: help:ir.actions.server,trigger_obj_id:0 +msgid "Select the object from the model on which the workflow will executed." +msgstr "" +"Επιλέξτε το αντικείμενο από το μοντέλο στο οποίο η ροή εργασίας θα " +"εκτελεστεί." + +#. module: base +#: field:ir.model,state:0 field:ir.model.fields,state:0 +#: field:ir.model.grid,state:0 +msgid "Manually Created" +msgstr "Δημιουργημένα από Χρήστη" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Calculate Count" + +#. module: base +#: field:ir.model.access,perm_create:0 +msgid "Create Access" +msgstr "Δημιουργία Πρόσβασης" + +#. module: base +#: field:res.partner.address,state_id:0 +msgid "Fed. State" +msgstr "Πολιτεία" + +#. module: base +#: model:res.country,name:base.io +msgid "British Indian Ocean Territory" +msgstr "British Indian Ocean Territory" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "Field Mapping" + +#. module: base +#: field:maintenance.contract,date_start:0 +msgid "Starting Date" +msgstr "Ημερ/νία Εκκίνησης" + +#. module: base +#: view:ir.model:0 field:ir.model.fields,ttype:0 +msgid "Field Type" +msgstr "Τύπος Πεδίου" + +#. module: base +#: field:res.country.state,code:0 +msgid "State Code" +msgstr "Κωδικός Κατάστασης" + +#. module: base +#: field:ir.model.fields,on_delete:0 +msgid "On delete" +msgstr "On delete" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Left-to-Right" +msgstr "Left-to-Right" + +#. module: base +#: field:res.lang,translatable:0 +msgid "Translatable" +msgstr "Translatable" + +#. module: base +#: model:res.country,name:base.vn +msgid "Vietnam" +msgstr "Vietnam" + +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Υπογραφή" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not Implemented" +msgstr "Μη ενεργοποιημένο" + +#. module: base +#: field:res.partner.category,complete_name:0 +msgid "Full Name" +msgstr "Πλήρες Όνομα" + +#. module: base +#: model:res.country,name:base.mz +msgid "Mozambique" +msgstr "Mozambique" + +#. module: base +#: field:ir.actions.server,message:0 +#: wizard_field:res.partner.spam_send,init,text:0 +msgid "Message" +msgstr "Μήνυμα" + +#. module: base +#: field:ir.actions.act_window.view,multi:0 +msgid "On Multiple Doc." +msgstr "On Multiple Doc." + +#. module: base +#: field:res.partner,address:0 view:res.partner.address:0 +msgid "Contacts" +msgstr "Στοιχεία" + +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_upgrade +#: model:ir.ui.menu,name:base.menu_wizard_upgrade +msgid "Apply Scheduled Upgrades" +msgstr "Εφαρμογή Προγραμματισμένων Ενημερώσεων" + +#. module: base +#: model:ir.ui.menu,name:base.maintenance +msgid "Maintenance" +msgstr "Συντήρηση" + +#. module: base +#: model:res.country,name:base.mp +msgid "Northern Mariana Islands" +msgstr "Northern Mariana Islands" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "module,type,name,res_id,src,value" + +#. module: base +#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 +msgid "Version" +msgstr "Έκδοση" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "wizard.ir.model.menu.create" + +#. module: base +#: view:workflow.transition:0 +msgid "Transition" +msgstr "Ροή" + +#. module: base +#: field:ir.actions.todo,active:0 field:ir.cron,active:0 +#: field:ir.module.repository,active:0 field:ir.sequence,active:0 +#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 +#: field:res.partner,active:0 field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 field:res.request,active:0 +#: field:res.users,active:0 +msgid "Active" +msgstr "Ενεργό" + +#. module: base +#: model:res.country,name:base.na +msgid "Namibia" +msgstr "Namibia" + +#. module: base +#: model:res.country,name:base.mn +msgid "Mongolia" +msgstr "Mongolia" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Δημιουργημένα Μενού" + +#. module: base +#: view:res.partner.som:0 +msgid "Partner State of Mind" +msgstr "Προδιάθεση Συνεργάτη" + +#. module: base +#: model:res.country,name:base.bi +msgid "Burundi" +msgstr "Burundi" + +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:module.upgrade,end,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:server.action.create,step_1,end:0 +#: view:wizard.module.lang.export:0 +msgid "Close" +msgstr "Κλείσιμο" + +#. module: base +#: model:res.country,name:base.bt +msgid "Bhutan" +msgstr "Bhutan" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +msgstr "Προμηθευτές Υφασμάτων" + +#. module: base +#: selection:ir.actions.url,target:0 +msgid "This Window" +msgstr "Αυτό το παράθυρο" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Μορφή Αρχείου" + +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "res.config.view" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "STOCK_INDENT" + +#. module: base +#: view:workflow.workitem:0 +msgid "Workflow Workitems" +msgstr "Λειτουργία επαφής" + +#. module: base +#: model:res.country,name:base.vc +msgid "Saint Vincent & Grenadines" +msgstr "Saint Vincent & Grenadines" + +#. module: base +#: field:ir.model.config,password:0 field:maintenance.contract,password:0 +#: field:maintenance.contract.wizard,password:0 +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:res.users,password:0 +msgid "Password" +msgstr "Συνθηματικό" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 +#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +msgid "Fields" +msgstr "Πεδία" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Εισαγωγή επιτυχής !" + +#. module: base +#: model:res.country,name:base.mk +msgid "Macedonia" +msgstr "F.Y.R.O.M." + #. module: base #: field:res.company,rml_header2:0 msgid "RML Internal Header" -msgstr "RML Internal Header" +msgstr "RML Εσωτερική Κεφαλίδα" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "Α4" + +#. module: base +#: view:ir.rule.group:0 +msgid "Multiple rules on same objects are joined using operator OR" +msgstr "" +"Πολλαπλοί κανόνες στα ίδια αντικείμενα συνδέονται μέσω της λογικής " +"συνάρτησης 'Ή'" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field +msgid "acc_number" +msgstr "acc_number" + +#. module: base +#: model:ir.ui.menu,name:base.menu_partner_address_form +msgid "Addresses" +msgstr "Διευθύνσεις" + +#. module: base +#: model:res.country,name:base.mm +msgid "Myanmar" +msgstr "Myanmar" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (CN) / 简体中文" +msgstr "Chinese (CN) / 简体中文" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_NEXT" +msgstr "STOCK_MEDIA_NEXT" + +#. module: base +#: field:res.bank,street:0 field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" +msgstr "Οδός" + +#. module: base +#: model:res.country,name:base.yu +msgid "Yugoslavia" +msgstr "Yugoslavia" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Note that this operation my take a few minutes." +msgstr "Η διαδικασία αυτή μπορεί να πάρει μερικά λεπτά." + +#. module: base +#: field:ir.model.data,name:0 +msgid "XML Identifier" +msgstr "XML Identifier" + +#. module: base +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "Canada" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Internal Name" +msgstr "Εσωτερικό όνομα" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Unknown" +msgstr "Άγνωστο" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" +msgstr "Αλλαγή Προτιμήσεων" + +#. module: base +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "Swaziland" + +#. module: base +#: wizard_field:res.partner.sms_send,init,text:0 +msgid "SMS Message" +msgstr "Μήνυμα SMS " + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +msgstr "STOCK_EDIT" + +#. module: base +#: model:res.country,name:base.cm +msgid "Cameroon" +msgstr "Cameroon" + +#. module: base +#: model:res.country,name:base.bf +msgid "Burkina Faso" +msgstr "Burkina Faso" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" +msgstr "STOCK_MEDIA_FORWARD" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Skipped" +msgstr "Skipped" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Custom Field" +msgstr "Ειδικό Πεδίο" + +#. module: base +#: model:res.country,name:base.cc +msgid "Cocos (Keeling) Islands" +msgstr "Cocos (Keeling) Islands" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "User ID" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e.[[ object.partner_id.name ]]" + +#. module: base +#: view:res.lang:0 +msgid "11. %U or %W ==> 48 (49th week)" +msgstr "11. %U or %W ==> 48 (49η εβδομάδα)" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "Πεδία τύπου Τραπεζών" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "type,name,res_id,src,value" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch / Nederlands" +msgstr "Dutch / Nederlands" + +#. module: base +#: wizard_view:server.action.create,step_1:0 +#: wizard_field:server.action.create,step_1,report:0 +msgid "Select Report" +msgstr "Επιλογή Αναφοράς" + +#. module: base +#: field:ir.report.custom.fields,fc1_condition:0 +#: field:ir.report.custom.fields,fc2_condition:0 +#: field:ir.report.custom.fields,fc3_condition:0 +msgid "condition" +msgstr "συνθήκη" + +#. module: base +#: rml:ir.module.reference:0 +msgid "1cm 28cm 20cm 28cm" +msgstr "1cm 28cm 20cm 28cm" + +#. module: base +#: field:ir.sequence,suffix:0 +msgid "Suffix" +msgstr "Επίθημα" + +#. module: base +#: model:res.country,name:base.mo +msgid "Macau" +msgstr "Macau" + +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "Ετικέτες" + +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "Εmail αποστολέα" + +#. module: base +#: field:ir.default,field_name:0 +msgid "Object Field" +msgstr "Πεδίο Αντικειμένου" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Records were modified in the meanwhile" +msgstr "Οι εγγραφές έχουν τροποποιηθεί στο μεταξύ" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NEW" +msgstr "STOCK_NEW" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "None" +msgstr "Κανένα" + +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Report Fields" + +#. module: base +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" +msgstr "Προορσιμός Δράσης" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The name_search method is not implemented on this object !" +msgstr "The name_search method is not implemented on this object !" + +#. module: base +#: view:ir.values:0 +msgid "Connect Events to Actions" +msgstr "Σύνδεση Συνβάντων με Ενέργειες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" + +#. module: base +#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "Ανήκει στην Κατηγορία" + +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" +msgstr "Finland" + +#. module: base +#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "Επαφή" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Uninstall" +msgstr "Ακύρωση Απεγκατάστασης" + +#. module: base +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "Ισοτιμία Νομίσματος" + +#. module: base +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Module %s: Invalid Quality Certificate" +msgstr "Άρθρωμα %s: Άκυρο Πιστοποιητικό Ποιότητας" + +#. module: base +#: model:res.country,name:base.kw +msgid "Kuwait" +msgstr "Kuwait" + +#. module: base +#: field:workflow.workitem,inst_id:0 +msgid "Instance" +msgstr "Instance" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +msgid "" +"This is the filename of the attachment used to store the printing result. " +"Keep empty to not save the printed reports. You can use a python expression " +"with the object and time variables." +msgstr "" +"Το όνομα αρχείου που θα αποθηκευθεί το αποτέλεσμα της εκτύπωσης. Αφήστε το " +"κενό αν δεν επιθυμείτε να αποθηκεύετε τις εκτυπώσεις αναφορών. Μπορείτε να " +"χρησιμοποιήσετε μια έκφραση python με τις παραμέτρους object και time." + +#. module: base +#: model:res.country,name:base.ng +msgid "Nigeria" +msgstr "Nigeria" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "STOCK_UNDERLINE" + +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "Τιμές για τον Τύπο Συμβάντος " + +#. module: base +#: model:res.country,name:base.zr +msgid "Zaire" +msgstr "Zaire" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "Πάντα Αναζητήσιμο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" + +#. module: base +#: model:res.country,name:base.hk +msgid "Hong Kong" +msgstr "Hong Kong" + +#. module: base +#: help:ir.actions.server,name:0 +msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" +msgstr "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" +msgstr "STOCK_ZOOM_100" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" +msgstr "STOCK_BOLD" + +#. module: base +#: model:res.country,name:base.ph +msgid "Philippines" +msgstr "Philippines" + +#. module: base +#: model:res.country,name:base.ma +msgid "Morocco" +msgstr "Morocco" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-graph" +msgstr "terp-graph" + +#. module: base +#: view:res.lang:0 +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "2. %a ,%A ==> Παρ, Παρασκευή" + +#. module: base +#: wizard_view:module.lang.install,start:0 +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 "" +"Η επιλεγμένη γλώσσα εγκαταστάθηκε επιτυχώς. Πρέπει να αλλάξετε τις " +"Προτιμήσεις του χρήστη και να ανοίξετε ένα νέο μενού για να δείτε τις " +"αλλαγές." + +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 +msgid "Partner Events" +msgstr "Συμβάντα Συνεργάτη" + +#. module: base +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" + +#. module: base +#: view:res.lang:0 +msgid "%a - Abbreviated weekday name." +msgstr "%a - Συντομο όνομα ημέρας" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Introspection report on objects" +msgstr "Introspection report on objects" + +#. module: base +#: model:res.country,name:base.pf +msgid "Polynesia (French)" +msgstr "Polynesia (French)" + +#. module: base +#: field:res.company,name:0 +msgid "Company Name" +msgstr "Όνομα Εταιρείας" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +#: wizard_button:res.partner.sms_send,init,send:0 +msgid "Send SMS" +msgstr "Αποστολή SMS" + +#. module: base +#: model:res.country,name:base.np +msgid "Nepal" +msgstr "Nepal" + +#. module: base +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" +msgstr "iCal id" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +msgid "Partner Functions" +msgstr "Λειτουργίες Συνεργατών" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "Bulk SMS send" +msgstr "Bulk SMS send" + +#. module: base +#: view:res.lang:0 +msgid "%Y - Year with century as a decimal number." +msgstr "%Y - Το έτος (πλήρως)." + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Pie Chart" +msgstr "Κυκλικό Διάγραμμα " + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "Δευτερόλεπτο: %(sec)s" + +#. module: base +#: selection:ir.translation,type:0 field:res.bank,code:0 +#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 +msgid "Code" +msgstr "Κωδικός" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"Can not create the module file:\n" +" %s" +msgstr "" +"Αδύνατη η δημιουργία του αρχείου Αρθρώματος:\n" +" %s" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +msgid "Update Modules List" +msgstr "Ενημέρωση Λίστας Αρθρωμάτων" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" +msgstr "Συνέχεια" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +msgid "Default Properties" +msgstr "Προεπιλεγμένες Ιδιότητες" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Slovenian / slovenščina" +msgstr "Slovenian / slovenščina" + +#. module: base +#: field:ir.actions.report.xml,attachment_use:0 +msgid "Reload from Attachment" +msgstr "Επαναφόρτωση από συνημμένο" + +#. module: base +#: model:res.country,name:base.bv +msgid "Bouvet Island" +msgstr "Bouvet Island" + +#. module: base +#: field:ir.report.custom,print_orientation:0 +msgid "Print orientation" +msgstr "Κατεύθυνση Εκτύπωσης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "Εξαγωγή Αρχείου Μετάφρασης" + +#. module: base +#: field:ir.attachment,name:0 +msgid "Attachment Name" +msgstr "Όνομα Συνημμένου" + +#. module: base +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "Αρχείο" + +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "Προσθήκη Χρήστη" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "ir.actions.configuration.wizard" + +#. module: base +#: view:res.lang:0 +msgid "%b - Abbreviated month name." +msgstr "%b - Σύντομο όνομα μήνα." + +#. module: base +#: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 +msgid "Supplier" +msgstr "Προμηθευτής" + +#. module: base +#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +msgid "Multi Actions" +msgstr "Multi Actions" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Close" +msgstr "_Close" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Full" +msgstr "Πλήρες" + +#. module: base +#: model:res.country,name:base.as +msgid "American Samoa" +msgstr "American Samoa" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" +msgstr "Objects" + +#. module: base +#: view:res.request.link:0 +msgid "Request Link" +msgstr "Σύνδεσμος Αίτησης" + +#. module: base +#: field:ir.module.module,url:0 field:ir.module.repository,url:0 +msgid "URL" +msgstr "URL" + +#. module: base +#: help:res.country,name:0 +msgid "The full name of the country." +msgstr "Πλήρες όνομα χώρας." + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Iteration" +msgstr "Επανάληψη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" +msgstr "terp-stock" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify the Partner Email address !" +msgstr "Παρακαλώ καταχωρείστε το Email του Συνεργάτη!" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "UserError" + +#. module: base +#: model:res.country,name:base.ae +msgid "United Arab Emirates" +msgstr "United Arab Emirates" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "STOCK_MEDIA_RECORD" + +#. module: base +#: model:res.country,name:base.re +msgid "Reunion (French)" +msgstr "Reunion (French)" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "sv_SV" +msgstr "sv_SV" + +#. module: base +#: field:ir.rule.group,global:0 +msgid "Global" +msgstr "Παγκόσμια" + +#. module: base +#: model:res.country,name:base.cz +msgid "Czech Republic" +msgstr "Czech Republic" + +#. module: base +#: model:res.country,name:base.sb +msgid "Solomon Islands" +msgstr "Solomon Islands" + +#. module: base +#: view:res.lang:0 +msgid "8. %I:%M:%S %p ==> 06:25:20 PM" +msgstr "8. %I:%M:%S %p ==> 06:25:20 μ.μ." + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "The copy method is not implemented on this object !" + +#. module: base +#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation +msgid "Translations" +msgstr "Μεταφράσεις" + +#. module: base +#: field:ir.sequence,padding:0 +msgid "Number padding" +msgstr "Συμπλήρωση αριθμών" + +#. module: base +#: model:res.country,name:base.ua +msgid "Ukraine" +msgstr "Ukraine" + +#. module: base +#: model:res.country,name:base.to +msgid "Tonga" +msgstr "Tonga" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 +msgid "Module Category" +msgstr "Κατηγορίες Αρθρωμάτων" + +#. module: base +#: model:res.country,name:base.us +msgid "United States" +msgstr "USA" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "Οδηγός Παραπομπών" + +#. module: base +#: model:res.country,name:base.ml +msgid "Mali" +msgstr "Mali" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" +msgstr "STOCK_UNINDENT" + +#. module: base +#: field:ir.cron,interval_number:0 +msgid "Interval Number" +msgstr "Interval Number" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Partial" +msgstr "Μερικό" + +#. module: base +#: model:res.country,name:base.tk +msgid "Tokelau" +msgstr "Tokelau" + +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +msgid "XSL path" +msgstr "XSL path" + +#. module: base +#: model:res.country,name:base.bn +msgid "Brunei Darussalam" +msgstr "Brunei Darussalam" + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +msgid "View Type" +msgstr "Τύπος Προβολής" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "User Interface" +msgstr "Χρηστική Διεπιφάνεια" + +#. module: base +#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "Παρ. Συνεργάτη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_INFO" +msgstr "STOCK_DIALOG_INFO" + +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "Ημερ/νία Δημιουργίας" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "ir.actions.todo" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "Get file" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "" +"This function will check for new modules in the 'addons' path and on module " +"repositories:" +msgstr "" +"Η λειτουργία αυτή θα αναζητήσει νέα Αρθρώματα του προγράμματος στον κατάλογο " +"'addons' και στις τοποθεσίες Αρθρωμάτων:" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_BACK" +msgstr "STOCK_GO_BACK" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 code:osv/orm.py:0 +#, python-format +msgid "AccessError" +msgstr "AccessError" + +#. module: base +#: model:res.country,name:base.dz +msgid "Algeria" +msgstr "Algeria" + +#. module: base +#: model:res.country,name:base.be +msgid "Belgium" +msgstr "Belgium" + +#. module: base +#: view:res.lang:0 +msgid "%d - Day of the month as a decimal number [01,31]." +msgstr "%d - Η ημέρα του μήνα σε δεκαδική μορφή [01, 31]." + +#. module: base +#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "Γλώσσα" + +#. module: base +#: model:res.country,name:base.gm +msgid "Gambia" +msgstr "Gambia" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 +msgid "Companies" +msgstr "Εταιρείες" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Not implemented get_memory method !" + +#. module: base +#: view:ir.actions.server:0 field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +msgid "Python Code" +msgstr "Python Code" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Can not create the module file: %s !" +msgstr "Αδύνατη η δημιουργία του αρχείου Αρθρώματος: %s!" + +#. module: base +#: model:ir.module.module,description:base.module_meta_information +msgid "The kernel of OpenERP, needed for all installation." +msgstr "Ο πυρήνας του OpenERP, αναγκαίος για κάθε εγκατάσταση." + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.ui.menu,name:base.menu_partner_customer_form +msgid "Customers Partners" +msgstr "Πελάτες" + +#. module: base +#: wizard_button:base.module.import,init,end:0 +#: selection:ir.actions.todo,state:0 +#: wizard_button:module.lang.import,init,end:0 +#: wizard_button:module.lang.install,init,end:0 +#: wizard_button:module.module.update,init,end:0 +#: wizard_button:module.upgrade,next,end:0 +#: wizard_button:res.partner.sms_send,init,end:0 +#: wizard_button:res.partner.spam_send,init,end:0 +#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 +#: view:wizard.module.update_translations:0 +msgid "Cancel" +msgstr "Ακύρωση" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify server option --smtp-from !" +msgstr "Παρακαλώ καθορίστε την επιλογή διακομιστή --smtp-from !" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "PO File" +msgstr "Αρχείο PO" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "Προμηθευτής Μερών" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users +#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 +#: field:ir.rule.group,users:0 +#: model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 +#: field:res.groups,users:0 field:res.roles,users:0 view:res.users:0 +msgid "Users" +msgstr "Χρήστες" + +#. module: base +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "Δημοσιοποιημένη Έκδοση" + +#. module: base +#: model:res.country,name:base.is +msgid "Iceland" +msgstr "Iceland" + +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" +"Οι ρόλοι χρησιμοποιούνται σε καθορισμένες ενέργειες που προκύπτουν από τις " +"ροές εργασίας." + +#. module: base +#: model:res.country,name:base.de +msgid "Germany" +msgstr "Germany" + +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "Εβδομάδα του χρόνου: %(woy)s" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "Κακοί πελάτες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "STOCK_HARDDISK" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "Αναφορές:" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "STOCK_APPLY" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Your Maintenance Contracts" +msgstr "Συμβόλαια Συντήρησης" + +#. module: base +#: view:res.users:0 +msgid "" +"Please note that you will have to logout and relog if you change your " +"password." +msgstr "" +"Για να αλλαχθεί το συνθηματικό σας θα πρέπει να αποσυνδεθείτε και να " +"επανασυνδεθείτε στο σύστημα." + +#. module: base +#: model:res.country,name:base.gy +msgid "Guyana" +msgstr "Guyana" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "GPL-3" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2" +msgstr "GPL-2" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese (BR) / português (BR)" +msgstr "Portugese (BR) / português (BR)" + +#. module: base +#: field:ir.actions.server,record_id:0 +msgid "Create Id" +msgstr "Create Id" + +#. module: base +#: model:res.country,name:base.hn +msgid "Honduras" +msgstr "Honduras" + +#. module: base +#: model:res.country,name:base.eg +msgid "Egypt" +msgstr "Egypt" + +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "Select the object on which the action will work (read, write, create)." +msgstr "Select the object on which the action will work (read, write, create)." + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "Περιγραφή Πεδίων" + +#. module: base +#: code:tools/translate.py:0 +#, python-format +msgid "Bad file format" +msgstr "Μορφή αρχείου εσφαλμένη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" +msgstr "STOCK_CDROM" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "Readonly" + +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "Τύπος Συμβάντος" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "Τύποι Ιεράρχησης" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be installed" +msgstr "Προς εγκατάσταση" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_meta_information +msgid "Base" +msgstr "Βάση" + +#. module: base +#: model:res.country,name:base.lr +msgid "Liberia" +msgstr "Liberia" + +#. module: base +#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 +#: field:res.partner,comment:0 field:res.partner.function,ref:0 +msgid "Notes" +msgstr "Σημειώσεις" + +#. module: base +#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "Τιμή" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "Ανανέωση Μεταφράσεων" + +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Set" + +#. module: base +#: model:res.country,name:base.mc +msgid "Monaco" +msgstr "Monaco" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "Λεπτά" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "The modules have been upgraded / installed !" +msgstr "Επιτυχής εγκατάσταση / αναβάθμιση!" + +#. module: base +#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 +msgid "Help" +msgstr "Βοήθεια" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: base +#: code:tools/amount_to_text_en.py:0 +#, python-format +msgid "Number too large '%d', can not translate it" +msgstr "ΠΟλύ μεγάλος αριθμός '%d', δε μεταφράζεται" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "Δημιουργία" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export ID" +msgstr "Export ID" + +#. module: base +#: model:res.country,name:base.fr +msgid "France" +msgstr "France" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" +msgstr "Δαικοπή Ροής" + +#. module: base +#: model:res.country,name:base.ar +msgid "Argentina" +msgstr "Argentina" + +#. module: base +#: model:res.country,name:base.af +msgid "Afghanistan, Islamic State of" +msgstr "Afghanistan, Islamic State of" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Error !" +msgstr "Σφάλμα!" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry +msgid "country_id" +msgstr "country_id" + +#. module: base +#: field:ir.cron,interval_type:0 +msgid "Interval Unit" +msgstr "Μονάδα Διαστήματος" + +#. module: base +#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 +msgid "Kind" +msgstr "Είδος" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Αυτή η μέθοδος δε χρησιμοποιείται πια" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "Manual" + +#. module: base +#: field:res.bank,fax:0 field:res.partner.address,fax:0 +msgid "Fax" +msgstr "Fax" + +#. module: base +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "Διαχωριστής Χιλιάδων" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created Date" +msgstr "Ημερ/νία Δημιουργίας" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Line Plot" +msgstr "Γραμμικό Διάγραμμα" + +#. module: base +#: help:ir.actions.server,loop_action:0 +msgid "" +"Select the action that will be executed. Loop action will not be avaliable " +"inside loop." +msgstr "" +"Select the action that will be executed. Loop action will not be avaliable " +"inside loop." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (TW) / 正體字" +msgstr "Chinese (TW) / 正體字" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_UP" +msgstr "STOCK_GO_UP" + +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" +msgstr "res.request" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "pdf" + +#. module: base +#: field:ir.default,company_id:0 field:ir.property,company_id:0 +#: field:ir.values,company_id:0 view:res.company:0 +#: field:res.users,company_id:0 +msgid "Company" +msgstr "Εταιρεία" + +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "Περιεχόμενα Φακέλου" + +#. module: base +#: model:res.country,name:base.pa +msgid "Panama" +msgstr "Panama" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "Μη καταχωρημένο" + +#. module: base +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Προεπισκόπηση" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Skip Step" +msgstr "Παράλειψη Βήματος" + +#. module: base +#: model:res.country,name:base.pn +msgid "Pitcairn Island" +msgstr "Pitcairn Island" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +msgid "Active Partner Events" +msgstr "Ενεργά Συμβάντα Συνεργάτη" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" +msgstr "Record Rules" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +msgstr "Ημέρα του χρόνου: %(day)s" + +#. module: base +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Ουδέτερη Ζώνη" + +#. module: base +#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 +#: model:ir.ui.menu,name:base.next_id_15 +msgid "Properties" +msgstr "Ιδιότητες" + +#. module: base +#: view:res.lang:0 +msgid "%A - Full weekday name." +msgstr "%A - Πλήρες όνομα ημέρας εβδομάδας" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Μήνες" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "Επιλογή" + +#. module: base +#: field:ir.rule,domain_force:0 +msgid "Force Domain" +msgstr "Επιβολή Τομέα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment +msgid "Attachments" +msgstr "Συνημμένα" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Validate" +msgstr "_Validate" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_wizard +msgid "maintenance.contract.wizard" +msgstr "maintenance.contract.wizard" + +#. module: base +#: field:ir.actions.server,child_ids:0 +msgid "Other Actions" +msgstr "Άλλες Ενέργειες" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "Ολοκληρωμένο" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" +msgstr "Επικυρωμένο" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Δίδα" + +#. module: base +#: field:ir.model.access,perm_write:0 +msgid "Write Access" +msgstr "Δικαίωμα Εγγραφής" + +#. module: base +#: field:res.bank,city:0 field:res.partner,city:0 +#: field:res.partner.address,city:0 field:res.partner.bank,city:0 +msgid "City" +msgstr "Πόλη" + +#. module: base +#: model:res.country,name:base.qa +msgid "Qatar" +msgstr "Qatar" + +#. module: base +#: model:res.country,name:base.it +msgid "Italy" +msgstr "Italy" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "<>" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" +msgstr "<=" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Estonian / Eesti keel" +msgstr "Estonian / Eesti keel" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese / português" +msgstr "Portugese / português" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "GPL-3 ή μεταγενέστερη έκδοση" + +#. module: base +#: field:workflow.activity,action:0 +msgid "Python Action" +msgstr "Python Action" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Unknown position in inherited view %s !" +msgstr "Unknown position in inherited view %s !" + +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Πιθανότητα (0,50)" + +#. module: base +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" +msgstr "Repeat Header" + +#. module: base +#: field:res.users,address_id:0 +msgid "Address" +msgstr "Διεύθυνση" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Installed version" +msgstr "Εγκατεστημένη Έκδοση" + +#. module: base +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflow Definitions" +msgstr "Ορισμοί Ροών Εργασίας" + +#. module: base +#: model:res.country,name:base.mr +msgid "Mauritania" +msgstr "Μαυριτανία" + +#. module: base +#: view:workflow.activity:0 field:workflow.workitem,act_id:0 +msgid "Activity" +msgstr "Activity" + +#. module: base +#: field:res.company,parent_id:0 +msgid "Parent Company" +msgstr "Μητρική Εταιρεία" + +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "Ισοτιμία" + +#. module: base +#: model:res.country,name:base.cg +msgid "Congo" +msgstr "Congo" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" +msgstr "ir.exports.line" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "STOCK_MEDIA_PAUSE" + +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "Νομός" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "Όλες οι ιδιότητες" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_window +#: model:ir.ui.menu,name:base.menu_ir_action_window +msgid "Window Actions" +msgstr "Ενέργειες Παραθύρου" + +#. module: base +#: model:res.country,name:base.kn +msgid "Saint Kitts & Nevis Anguilla" +msgstr "Saint Kitts & Nevis Anguilla" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HOME" +msgstr "STOCK_HOME" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" +msgstr "ir.sequence" + +#. module: base +#: help:ir.actions.server,srcmodel_id:0 +msgid "" +"Object in which you want to create / write the object. If it is empty then " +"refer to the Object field." +msgstr "" +"Object in which you want to create / write the object. If it is empty then " +"refer to the Object field." + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Not Installed" +msgstr "Μη Εγκατεστημένο" + +#. module: base +#: field:workflow.activity,out_transitions:0 +msgid "Outgoing Transitions" +msgstr "Εκροές" + +#. module: base +#: field:ir.ui.menu,icon:0 +msgid "Icon" +msgstr "Εικονίδιο" + +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +msgid "Ok" +msgstr "ΟΚ" + +#. module: base +#: model:res.country,name:base.mq +msgid "Martinique (French)" +msgstr "Martinique (French)" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 +msgid "Requests" +msgstr "Αιτήσεις" + +#. module: base +#: model:res.country,name:base.ye +msgid "Yemen" +msgstr "Yemen" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "Or" + +#. module: base +#: model:res.country,name:base.pk +msgid "Pakistan" +msgstr "Pakistan" + +#. module: base +#: model:res.country,name:base.al +msgid "Albania" +msgstr "Albania" + +#. module: base +#: model:res.country,name:base.ws +msgid "Samoa" +msgstr "Samoa" + +#. module: base +#: field:ir.ui.menu,child_id:0 +msgid "Child IDs" +msgstr "Child IDs" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Problem in configuration `Record Id` in Server Action!" +msgstr "Problem in configuration `Record Id` in Server Action!" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "ValidateError" +msgstr "ValidateError" + +#. module: base +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +msgid "Import module" +msgstr "Εισαγωγή Αρθρώματος" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "STOCK_DISCONNECT" + +#. module: base +#: model:res.country,name:base.la +msgid "Laos" +msgstr "Laos" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Email" +msgstr "Email" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Resynchronise Terms" +msgstr "Ανασυγχρονισμός Όρων" + +#. module: base +#: model:res.country,name:base.tg +msgid "Togo" +msgstr "Togo" + +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "Όλα Stop" + +#. module: base +#: view:res.lang:0 +msgid "3. %x ,%X ==> 12/05/08, 18:25:20" +msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Cascade" +msgstr "Ανάλυση" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Field %d should be a figure" +msgstr "Το πεδίο %d πρέπει να έιναι αριθμός" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "Επόμενο Βήμα Ρυθμίσεων" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "Σχόλιο" + +#. module: base +#: model:res.country,name:base.ro +msgid "Romania" +msgstr "Romania" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "STOCK_PREFERENCES" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "Όνομα Κατάστασης" + +#. module: base +#: field:workflow.activity,join_mode:0 +msgid "Join Mode" +msgstr "Πλήρες Mode" + +#. module: base +#: field:res.users,context_tz:0 +msgid "Timezone" +msgstr "Ζώνη Ώρας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" +msgstr "STOCK_GOTO_LAST" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" +msgstr "ir.actions.report.xml" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "" +"To improve some terms of the official translations of OpenERP, you should " +"modify the terms directly on the launchpad interface. If you made lots of " +"translations for your own module, you can also publish all your translation " +"at once." +msgstr "" +"Για να βελτιώσετε κάποιους όρους της επίσημης μετάφρασης του OpenERP, θα " +"πρέπει να τους τροποποιείτε απ' ευθείας στο launchpad interface. Αν κάνατε " +"πολλές μεταφράσεις στο άρθρωμά σας μπορείτε να τις δημοσιεύσετε μονομιάς." + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "Εκκίνηση Εγκατάστασης" + +#. module: base +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." +msgstr "Σφάλμα! Υπάρχει ήδη ίδια περιγραφή συνδεδεμένου μέλους." + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "Συνεργάτες OpenERP " + +#. module: base +#: model:res.country,name:base.by +msgid "Belarus" +msgstr "Belarus / Λευκορωσία" + +#. module: base +#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 +#: field:ir.actions.url,name:0 +msgid "Action Name" +msgstr "Όνομα Ενέργειας" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "Κανονικό" + +#. module: base +#: field:res.bank,street2:0 field:res.partner.address,street2:0 +msgid "Street2" +msgstr "Οδός 2" + +#. module: base +#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "Χρήστης" + +#. module: base +#: model:res.country,name:base.pr +msgid "Puerto Rico" +msgstr "Puerto Rico" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Άνοιγμα Παραθύρου" + +#. module: base +#: field:ir.module.repository,filter:0 +msgid "Filter" +msgstr "Φίλτρο" + +#. module: base +#: model:res.country,name:base.ch +msgid "Switzerland" +msgstr "Switzerland / Ελβετία" + +#. module: base +#: model:res.country,name:base.gd +msgid "Grenada" +msgstr "Grenada" + +#. module: base +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Ρυθμίσεις Εναύσματος (Trigger)." + +#. module: base +#: selection:server.action.create,init,type:0 +msgid "Open Report" +msgstr "Ανοικτή Αναφορά" + +#. module: base +#: field:res.currency,rounding:0 +msgid "Rounding factor" +msgstr "Παράγοντας στρογγυλοποίησης" + +#. module: base +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "res.company" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "System upgrade done" +msgstr "Αναβάθμιση Συστήματος ολοκληρώθηκε" + +#. module: base +#: model:res.country,name:base.so +msgid "Somalia" +msgstr "Somalia" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_simple_view_form +msgid "Configure Simple View" +msgstr "Ρυθμίσεις Απλής Προβολής" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "Σημαντικοί Πελάτες" + +#. module: base +#: field:res.request,act_to:0 field:res.request.history,act_to:0 +msgid "To" +msgstr "Σε" + +#. module: base +#: field:ir.cron,args:0 +msgid "Arguments" +msgstr "Arguments" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "sxw" +msgstr "sxw" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "Η τιμή \"%s\" για οτ πεδίο \"%s\" δεν είναι επιλεγμένη!" + +#. module: base +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "Automatic XSL:RML" + +#. module: base +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Μη αυτόματη εγκατάσταση τομέα" + +#. module: base +#: field:res.partner,customer:0 +#: model:res.partner.category,name:base.res_partner_category_0 +#: selection:res.partner.event,partner_type:0 +msgid "Customer" +msgstr "Πελάτης" + +#. module: base +#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 +msgid "Report Name" +msgstr "Όνομα Αναφοράς" + +#. module: base +#: field:ir.module.module,shortdesc:0 +msgid "Short Description" +msgstr "Σύντομη Περιγραφή" + +#. module: base +#: field:res.partner.event,partner_type:0 +msgid "Partner Relation" +msgstr "Σχέση Πελάτη" + +#. module: base +#: field:ir.actions.act_window,context:0 +msgid "Context Value" +msgstr "Context Value" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "Ώρα 00->24: %(h24)s" + +#. module: base +#: field:res.request.history,date_sent:0 +msgid "Date sent" +msgstr "Ημερ/νία Αποστολής" + +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Μήνας: %(month)s" + +#. module: base +#: field:ir.actions.act_window.view,sequence:0 +#: field:ir.actions.server,sequence:0 field:ir.actions.todo,sequence:0 +#: field:ir.module.repository,sequence:0 +#: field:ir.report.custom.fields,sequence:0 view:ir.sequence:0 +#: field:ir.ui.menu,sequence:0 field:ir.ui.view_sc,sequence:0 +#: field:res.partner.bank,sequence:0 +#: field:wizard.ir.model.menu.create.line,sequence:0 +msgid "Sequence" +msgstr "Ιεράρχηση" + +#. module: base +#: model:res.country,name:base.tn +msgid "Tunisia" +msgstr "Tunisia" + +#. module: base +#: field:ir.actions.wizard,name:0 +msgid "Wizard Info" +msgstr "Πληροφορίες Αυτόματου Οδηγού" + +#. module: base +#: help:ir.cron,numbercall:0 +msgid "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" +msgstr "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Install" +msgstr "Ακύρωση Εγκατάστασης" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" +msgstr "Υπόμνημα μορφών ώρας και ημερ/νίας" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Monthly" +msgstr "Μηνιαία" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_som-act +#: model:ir.ui.menu,name:base.menu_res_partner_som-act +msgid "States of mind" +msgstr "Προδιαθέσεις" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_ASCENDING" +msgstr "STOCK_SORT_ASCENDING" + +#. module: base +#: view:ir.model:0 view:res.groups:0 +msgid "Access Rules" +msgstr "Κανονισμοί Προσβάσεων" + +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Table Ref." + +#. module: base +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "Ανήκει" + +#. module: base +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 +#: field:ir.model,model:0 field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +msgid "Object" +msgstr "Αντικείμενο" + +#. module: base +#: model:ir.model,name:base.model_ir_default +msgid "ir.default" +msgstr "ir.default" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "Λεπτά: %(min)s" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "Χρονοδιάγραμμα" + +#. module: base +#: view:res.lang:0 +msgid "%w - Weekday as a decimal number [0(Sunday),6]." +msgstr "" +"%w - Η ημέρα της εβδομάδας σε δεκαδική μορφή [0 Κυριακή, 1 Δευτέρα... 6 " +"Σάββατο]." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "Εξαγωγή Αρχείου Ματάφρασης" + +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "User Ref." + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: model:ir.ui.menu,name:base.menu_config view:res.company:0 +msgid "Configuration" +msgstr "Ρυθμίσεις" + +#. module: base +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" +msgstr "Loop Expression" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "Πωλητής Λιανικής" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Σε μορφή πίνακα" + +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "Start On" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_5 +msgid "Gold Partner" +msgstr "Χρυσός Συνεργάτης" + +#. module: base +#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 +msgid "Partner" +msgstr "Συνεργάτης" + +#. module: base +#: model:res.country,name:base.tr +msgid "Turkey" +msgstr "Turkey" + +#. module: base +#: model:res.country,name:base.fk +msgid "Falkland Islands" +msgstr "Falkland Islands" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "odt" + +#. module: base +#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 +#: field:ir.report.custom,type:0 +msgid "Report Type" +msgstr "Τύπος Αναφοράς" + +#. module: base +#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 field:res.bank,state:0 +#: view:res.country.state:0 field:res.partner.bank,state_id:0 +#: field:res.request,state:0 field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +msgid "State" +msgstr "Κατάσταση" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "Άλλα ιδιοκτησιακά" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" +msgstr "Όλοι οι όροι" + +#. module: base +#: model:res.country,name:base.no +msgid "Norway" +msgstr "Norway" + +#. module: base +#: view:res.lang:0 +msgid "4. %b, %B ==> Dec, December" +msgstr "4. %b, %B ==> Δεκ, Δεκέμβριος" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Load an Official Translation" +msgstr "Φόρτωση Επίσημης Μετάφρασης" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "Εταιρεία Συντήρησης Ανοικτού Λογισμικού" + +#. module: base +#: selection:res.request,state:0 +msgid "waiting" +msgstr "σε αναμονή" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "Σύνδεσμος" + +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "workflow.triggers" + +#. module: base +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "Report Ref" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "terp-hr" + +#. module: base +#: help:ir.actions.wizard,multi:0 +msgid "" +"If set to true, the wizard will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Αν ρυθμιστεί 'true', ο Αυτόματος οδηγός δε θα εμφανίζεται στη δεξιά γραμμή " +"εργαλείων της φόρμας. " + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "STOCK_DND" + +#. module: base +#: model:res.country,name:base.hm +msgid "Heard and McDonald Islands" +msgstr "Heard and McDonald Islands" + +#. module: base +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "View Ref." + +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree +msgid "Repository list" +msgstr "Λίστα Τοποθεσιών Αρθρωμάτων" + +#. module: base +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "Κεφαλίδα Αναφοράς" + +#. module: base +#: field:res.roles,child_id:0 +msgid "Children" +msgstr "Υπό Κατηγορίες" + +#. module: base +#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 +#: field:ir.actions.wizard,type:0 +msgid "Action Type" +msgstr "Τύπος Ενέργειας" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +msgstr "Type fields" + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "Κατηγορία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "STOCK_FLOPPY" + +#. module: base +#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "SMS" + +#. module: base +#: model:res.country,name:base.cr +msgid "Costa Rica" +msgstr "Costa Rica" + +#. module: base +#: view:ir.model:0 view:res.request:0 +msgid "Status" +msgstr "Κατάσταση" + +#. module: base +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 +msgid "Currencies" +msgstr "Νομίσματα" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "Ώρα 00->12: %(h12)s" + +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "Ξετικάρετε το ενεργό πεδίο για να κρύψετε την επαφή" + +#. module: base +#: model:res.country,name:base.dk +msgid "Denmark" +msgstr "Denmark" + +#. module: base +#: field:res.country,code:0 +msgid "Country Code" +msgstr "Κωδικός Χώρας" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "workflow.instance" + +#. module: base +#: view:res.lang:0 +msgid "10. %S ==> 20" +msgstr "10. %S ==> 20" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "undefined get method !" +msgstr "undefined get method !" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "Κυρία" + +#. module: base +#: model:res.country,name:base.ee +msgid "Estonia" +msgstr "Estonia" + +#. module: base +#: model:res.country,name:base.nl +msgid "Netherlands" +msgstr "Netherlands / Ολλανδία" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level Objects" +msgstr "Low Level Objects" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom +msgid "ir.report.custom" +msgstr "ir.report.custom" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "Προσφορά Αγοράς" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "ir.values" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "STOCK_ZOOM_FIT" + +#. module: base +#: model:res.country,name:base.cd +msgid "Congo, The Democratic Republic of the" +msgstr "Congo, The Democratic Republic of the" + +#. module: base +#: view:res.request:0 field:res.request,body:0 +#: field:res.request.history,req_id:0 +msgid "Request" +msgstr "Αίτηση" + +#. module: base +#: model:res.country,name:base.jp +msgid "Japan" +msgstr "Japan" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of Calls" +msgstr "Αριθμός Κλήσεων" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +msgstr "Το αρχείο γλώσσας φορτώθηκε" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_info:0 +msgid "Modules to update" +msgstr "Αρθρώματα για ενημέρωση" + +#. module: base +#: model:ir.actions.act_window,name:base.action2 +msgid "Company Architecture" +msgstr "Οργανόγραμμα Εταιρείας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "STOCK_GOTO_BOTTOM" + +#. module: base +#: help:ir.actions.server,sequence:0 +msgid "" +"Important when you deal with multiple actions, the execution order will be " +"decided based on this, low number is higher priority." +msgstr "" +"Σημαντικό όταν έχουμε πολλές ενέργειες. Η εκτέλεσή τους θα καθορίζεται από " +"αυτό, το μικρότερο νούμερο σημαίνει μεγαλύτερη προτεραιότητα." + +#. module: base +#: field:ir.actions.report.xml,header:0 +msgid "Add RML header" +msgstr "Add RML header" + +#. module: base +#: model:res.country,name:base.gr +msgid "Greece" +msgstr "Greece / Ελλάδα" + +#. module: base +#: field:res.request,trigger_date:0 +msgid "Trigger Date" +msgstr "Ημερ/νία Εναύσματος" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Croatian / hrvatski jezik" +msgstr "Croatian / hrvatski jezik" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "STOCK_GO_FORWARD" + +#. module: base +#: help:ir.actions.server,code:0 +msgid "Python code to be executed" +msgstr "Python code to be executed" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Uninstallable" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner Category" +msgstr "Κατηγορία Συνεργάτη" + +#. module: base +#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +msgid "Trigger" +msgstr "Έναυσμα" + +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "Μετάφραση" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e. [[ object.partner_id.name ]]" +msgstr "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e. [[ object.partner_id.name ]]" + +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "Κυρίως θέμα" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "Αποστολή Email" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" +msgstr "STOCK_SELECT_FONT" + +#. module: base +#: field:res.users,menu_id:0 +msgid "Menu Action" +msgstr "Λειτουργία Μενού" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "επιλέξτε" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Graph" +msgstr "Γράφημα" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "<" + +#. module: base +#: field:ir.report.custom,print_format:0 +msgid "Print format" +msgstr "Μορφή Εκτύπωσης" + +#. module: base +#: model:ir.ui.menu,name:base.menu_low_workflow +msgid "Workflow Items" +msgstr "Workflow Items" + +#. module: base +#: field:res.request,ref_doc2:0 +msgid "Document Ref 2" +msgstr "Document Ref 2" + +#. module: base +#: field:res.request,ref_doc1:0 +msgid "Document Ref 1" +msgstr "Document Ref 1" + +#. module: base +#: model:res.country,name:base.ga +msgid "Gabon" +msgstr "Gabon" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "ir.model.data" + +#. module: base +#: view:ir.model:0 view:res.groups:0 +msgid "Access Rights" +msgstr "Δικαιώματα Πρόσβασης" + +#. module: base +#: model:res.country,name:base.gl +msgid "Greenland" +msgstr "Greenland (Γροιλανδία)" + +#. module: base +#: help:ir.actions.report.xml,report_rml:0 +msgid "" +"The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "" +"The .rml path of the file or NULL if the content is in report_rml_content" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account Number" +msgstr "Αριθμός Λογαριασμού" + +#. module: base +#: view:res.lang:0 +msgid "1. %c ==> Fri Dec 5 18:25:20 2008" +msgstr "1. %c ==> Παρ Δεκ 5 18:25:20 2008" + +#. module: base +#: help:ir.ui.menu,groups_id:0 +msgid "" +"If you have groups, the visibility of this menu will be based on these " +"groups. If this field is empty, Open ERP will compute visibility based on " +"the related object's read access." +msgstr "" +"Η εμφάνιση του μενού αυτού βασίζεται στις ομάδες. Αν το πεδίο μείνει κενό, " +"το σύστημα θα κανονίζει την εμφάνιση του μενού με βάση την πρόσβαση " +"Ανάγνωσης του κάθε αντικειμένου." + +#. module: base +#: model:res.country,name:base.nc +msgid "New Caledonia (French)" +msgstr "New Caledonia (French)" + +#. module: base +#: field:res.partner.function,name:0 +msgid "Function Name" +msgstr "Όνομα Λειτουργίας" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Cancel" +msgstr "_Cancel" + +#. module: base +#: model:res.country,name:base.cy +msgid "Cyprus" +msgstr "Cyprus" + +#. module: base +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 +msgid "Subject" +msgstr "Υποκείμενο" + +#. module: base +#: field:res.request,act_from:0 field:res.request.history,act_from:0 +msgid "From" +msgstr "Από" + +#. module: base +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "Επόμενο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-report" +msgstr "terp-report" + +#. module: base +#: field:ir.actions.report.xml,report_rml_content:0 +#: field:ir.actions.report.xml,report_rml_content_data:0 +msgid "RML content" +msgstr "RML content" + +#. module: base +#: view:workflow.activity:0 +msgid "Incoming transitions" +msgstr "Εισροές" + +#. module: base +#: model:res.country,name:base.cn +msgid "China" +msgstr "China" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password empty !" +msgstr "Κενό Συνθηματικό!" + +#. module: base +#: model:res.country,name:base.eh +msgid "Western Sahara" +msgstr "Western Sahara" + +#. module: base +#: model:ir.model,name:base.model_workflow +msgid "workflow" +msgstr "ροή εργασίας" + +#. module: base +#: model:res.country,name:base.id +msgid "Indonesia" +msgstr "Indonesia" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" +msgstr "Αμέσως" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "Αντικέιμενο Εγγραφής" + +#. module: base +#: model:res.country,name:base.bg +msgid "Bulgaria" +msgstr "Bulgaria" + +#. module: base +#: model:res.country,name:base.ao +msgid "Angola" +msgstr "Angola" + +#. module: base +#: model:res.country,name:base.tf +msgid "French Southern Territories" +msgstr "French Southern Territories" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Only one client action will be execute, last " +"clinent action will be consider in case of multiples clients actions" +msgstr "" +"Only one client action will be execute, last " +"clinent action will be consider in case of multiples clients actions" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HELP" +msgstr "STOCK_HELP" + +#. module: base +#: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 +#: view:res.currency:0 field:res.currency,name:0 +#: field:res.currency.rate,currency_id:0 +msgid "Currency" +msgstr "Νόμισμα" + +#. module: base +#: field:res.partner.canal,name:0 +msgid "Channel Name" +msgstr "Όνομα Διαύλου" + +#. module: base +#: view:res.lang:0 +msgid "5. %y, %Y ==> 08, 2008" +msgstr "5. %y, %Y ==> 08, 2008" + +#. module: base +#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 +msgid "Object ID" +msgstr "ID Αντικειμένου" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "Τοπίο" + +#. module: base +#: model:ir.ui.menu,name:base.menu_administration +msgid "Administration" +msgstr "Διαχείριση" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "child_of" + +#. module: base +#: model:res.country,name:base.ir +msgid "Iran" +msgstr "Iran" + +#. module: base +#: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 +#: field:wizard.module.lang.export,state:0 +msgid "unknown" +msgstr "άγνωστο" + +#. module: base +#: field:ir.ui.view_sc,res_id:0 +msgid "Resource Ref." +msgstr "Παρ. Πόρου" + +#. module: base +#: model:res.country,name:base.ki +msgid "Kiribati" +msgstr "Kiribati" + +#. module: base +#: model:res.country,name:base.iq +msgid "Iraq" +msgstr "Iraq" + +#. module: base +#: view:ir.actions.server:0 +msgid "Action to Launch" +msgstr "Επιλογή Ενέργειας" + +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Εισαγωγή Αρθρωμάτων" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_supplier_form +#: model:ir.ui.menu,name:base.menu_partner_supplier_form +msgid "Suppliers Partners" +msgstr "Προμηθευτές" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +msgid "ir.sequence.type" +msgstr "ir.sequence.type" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "CSV File" +msgstr "Αρχείο CSV" #. module: base #: selection:ir.model,state:0 selection:ir.model.grid,state:0 msgid "Base Object" -msgstr "" +msgstr "Αντικείμενο Βάσης" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2997,61 +6721,31 @@ msgstr "(year)=" msgid "Dependencies :" msgstr "Dependencies :" -#. module: base -#: view:ir.module.module:0 -msgid "Features" -msgstr "Χαρακτηριστικά" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-partner" msgstr "terp-partner" #. module: base -#: field:ir.attachment,create_uid:0 -msgid "Creator" -msgstr "Δημιουργός" - -#. module: base -#: view:ir.actions.server:0 field:ir.actions.server,code:0 -#: selection:ir.actions.server,state:0 -msgid "Python Code" -msgstr "Python Code" - -#. module: base -#: model:res.country,name:base.gq -msgid "Equatorial Guinea" -msgstr "Equatorial Guinea" +#: code:osv/orm.py:0 +#, python-format +msgid "Bad query." +msgstr "Bad query." #. module: base #: field:ir.model.fields,field_description:0 msgid "Field Label" msgstr "Όνομα Πεδίου" -#. module: base -#: model:ir.module.module,description:base.module_meta_information -msgid "The kernel of OpenERP, needed for all installation." -msgstr "The kernel of OpenERP, needed for all installation." - -#. module: base -#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 -msgid "View Mode" -msgstr "Τρόπος Προβολής" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Swedish / svenska" -msgstr "Swedish / svenska" - #. module: base #: model:res.country,name:base.dj msgid "Djibouti" msgstr "Djibouti" #. module: base -#: field:ir.report.custom,frequency:0 -msgid "Frequency" -msgstr "Συχνότητα" +#: field:ir.translation,value:0 +msgid "Translation Value" +msgstr "Μετάφραση" #. module: base #: model:res.country,name:base.ag @@ -3059,63 +6753,22 @@ msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_import -#: model:ir.ui.menu,name:base.menu_wizard_lang_import -msgid "Import a Translation File" -msgstr "Εισαγωγή Αρχείου Μετάφρασης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form -#: model:ir.ui.menu,name:base.menu_partner_customer_form -msgid "Customers Partners" -msgstr "Πελάτες" - -#. module: base -#: field:res.company,child_ids:0 -msgid "Child Companies" -msgstr "Θυγατρικές Εταιρείες" - -#. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Πρόσβαση Ανάγνωσης" +#: field:ir.actions.server,condition:0 +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:workflow.transition,condition:0 +msgid "Condition" +msgstr "Συνθήκη" #. module: base #: model:ir.ui.menu,name:base.menu_management msgid "Modules Management" -msgstr "Διαχείριση Modules" +msgstr "Διαχείριση Αρθρωμάτων" #. module: base -#: field:ir.report.custom,repeat_header:0 -msgid "Repeat Header" -msgstr "Repeat Header" - -#. module: base -#: model:res.country,name:base.ni -msgid "Nicaragua" -msgstr "Nicaragua" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "html" -msgstr "html" - -#. module: base -#: model:res.country,name:base.ck -msgid "Cook Islands" -msgstr "Cook Islands" - -#. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Source Activity" - -#. module: base -#: field:ir.attachment,res_id:0 field:ir.model.data,res_id:0 -#: field:ir.translation,res_id:0 field:workflow.instance,res_id:0 -#: field:workflow.triggers,res_id:0 +#: field:ir.model.data,res_id:0 field:ir.translation,res_id:0 +#: field:workflow.instance,res_id:0 field:workflow.triggers,res_id:0 msgid "Resource ID" -msgstr "" +msgstr "Αριθμός Πόρου" #. module: base #: view:ir.cron:0 field:ir.model,info:0 field:ir.model.grid,info:0 @@ -3124,29 +6777,15 @@ msgid "Information" msgstr "Πληροφορίες" #. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "PO File" -msgstr "Αρχείο PO" - -#. module: base -#: view:res.partner.event:0 -msgid "General Description" -msgstr "Γενική Περιγραφή" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MISSING_IMAGE" -msgstr "STOCK_MISSING_IMAGE" - -#. module: base -#: view:res.users:0 -msgid "Define New Users" -msgstr "Ορισμός Νέων Χρηστών" - -#. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "Ουδέτερη Ζώνη" +#: view:wizard.module.lang.export:0 +msgid "" +"The official translations pack of all OpenERP/OpenObjects module are managed " +"through launchpad. We use their online interface to synchronize all " +"translations efforts." +msgstr "" +"Η επίσημη μετάφραση των Αρθρωμάτων του OpenERP/OpenObjects γίνονται με " +"κειμενογράφο. Για το συγχρονισμό όλων των προσπαθειών χρησιμοποιούμε το " +"online interface." #. module: base #: field:ir.actions.report.xml,report_rml:0 @@ -3156,27 +6795,7 @@ msgstr "RML path" #. module: base #: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Επόμενος Wizard Ρυθμίσεων" - -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Installation Done" -msgstr "Η εγκατάσταση ολοκληρώθηκε" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Maintenance contract added !" -msgstr "Το Συβόλαιο Συντήρησης προστέθηκε!" - -#. module: base -#: field:ir.rule,field_id:0 selection:ir.translation,type:0 -msgid "Field" -msgstr "Πεδίο" +msgstr "Επόμενος Αυτόματος Οδηγός Ρυθμίσεων" #. module: base #: selection:ir.actions.todo,type:0 selection:res.partner.address,type:0 @@ -3184,113 +6803,38 @@ msgid "Other" msgstr "Άλλο" #. module: base -#: help:ir.actions.server,email:0 -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 "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" +#: view:res.request:0 +msgid "Reply" +msgstr "Απάντηση" #. module: base -#: selection:ir.server.object.lines,type:0 -msgid "Formula" -msgstr "Formula" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "Turkish / Türkçe" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Όνομα Ρόλου" +#: model:ir.actions.act_window,name:base.action_translation_untrans +#: model:ir.ui.menu,name:base.menu_action_translation_untrans +msgid "Untranslated terms" +msgstr "Μη μεταφρασμένοι όροι" #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" msgstr "Ειασγωγή νέας Γλώσσας" -#. module: base -#: model:res.country,name:base.ve -msgid "Venezuela" -msgstr "Venezuela" - -#. module: base -#: field:ir.module.module,latest_version:0 -msgid "Installed version" -msgstr "Εγκατεστημένη Έκδοση" - -#. module: base -#: view:res.lang:0 -msgid "9. %j ==> 340" -msgstr "9. %j ==> 340" - #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form #: model:ir.ui.menu,name:base.menu_workflow_activity view:workflow:0 #: field:workflow,activities:0 msgid "Activities" -msgstr "Δραστηριότητες" - -#. module: base -#: field:res.partner,user_id:0 -msgid "Dedicated Salesman" -msgstr "Αφοσιωμένος Πωλητής" - -#. module: base -#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 -msgid "Parent Menu" -msgstr "Επάνω Μενού" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export a Translation File" -msgstr "Εξαγωγή Αρχείου Μετάφρασης" - -#. module: base -#: model:res.country,name:base.is -msgid "Iceland" -msgstr "Iceland" - -#. module: base -#: model:res.country,name:base.zm -msgid "Zambia" -msgstr "Zambia" +msgstr "Δράσεις" #. module: base #: field:ir.actions.act_window,auto_refresh:0 msgid "Auto-Refresh" msgstr "Auto-Refresh" -#. module: base -#: rml:ir.module.reference:0 -msgid "-" -msgstr "-" - -#. module: base -#: model:res.country,name:base.mw -msgid "Malawi" -msgstr "Malawi" - -#. module: base -#: field:ir.attachment,name:0 -msgid "Attachment Name" -msgstr "Όνομα Συνημμένου" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Upgrade" -msgstr "Ακύρωση Αναβάθμισης" - -#. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Week of the year: %(woy)s" -msgstr "Week of the year: %(woy)s" - -#. module: base -#: model:res.country,name:base.ci -msgid "Ivory Coast (Cote D'Ivoire)" -msgstr "Ivory Coast (Cote D'Ivoire)" - #. module: base #: selection:ir.report.custom.fields,fc0_op:0 #: selection:ir.report.custom.fields,fc1_op:0 @@ -3300,237 +6844,39 @@ msgid "=" msgstr "=" #. module: base -#: field:res.payterm,name:0 -msgid "Payment Term (short name)" -msgstr "Όρος Πληρωμής (σύντομα)" - -#. module: base -#: model:ir.model,name:base.model_res_bank view:res.bank:0 -#: field:res.partner.bank,bank:0 -msgid "Bank" -msgstr "Τράπεζα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HARDDISK" -msgstr "STOCK_HARDDISK" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reports :" -msgstr "Αναφορές:" - -#. module: base -#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 -#: field:ir.cron,name:0 field:ir.model.access,name:0 -#: field:ir.model.fields,name:0 field:ir.module.category,name:0 -#: field:ir.module.module,name:0 field:ir.module.module.dependency,name:0 -#: rml:ir.module.reference:0 field:ir.module.repository,name:0 -#: field:ir.property,name:0 field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 field:ir.values,name:0 -#: field:maintenance.contract.module,name:0 field:res.bank,name:0 -#: field:res.config.view,name:0 field:res.lang,name:0 field:res.partner,name:0 -#: field:res.partner.bank.type,name:0 field:res.request.link,name:0 -#: field:res.users,name:0 field:workflow,name:0 field:workflow.activity,name:0 -msgid "Name" -msgstr "Όνομα" - -#. module: base -#: model:ir.model,name:base.model_ir_property -msgid "ir.property" -msgstr "ir.property" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_APPLY" -msgstr "STOCK_APPLY" - -#. module: base -#: model:res.country,name:base.ms -msgid "Montserrat" -msgstr "Montserrat" - -#. module: base -#: field:ir.module.module,reports_by_module:0 -msgid "Reports" -msgstr "Αναφορές" - -#. module: base -#: wizard_view:server.action.create,init:0 -#: wizard_field:server.action.create,init,type:0 -msgid "Select Action Type" -msgstr "Επιλογή Τύπου Κίνησης" - -#. module: base -#: field:workflow,on_create:0 -msgid "On Create" -msgstr "On Create" - -#. module: base -#: wizard_view:base.module.import,init:0 -msgid "Please give your module .ZIP file to import." -msgstr "Παρακαλώ επιλέξτε το αρχείο .ZIP για εισαγωγή του module" - -#. module: base -#: view:res.users:0 -msgid "Please note that you will have to logout and relog if you change your password." -msgstr "Για να αλλαχθεί το password σας θα πρέπει να αποσυνδεθείτε και να επανασυνδεθείτε στο σύστημα." - -#. module: base -#: model:res.country,name:base.gy -msgid "Guyana" -msgstr "Guyana" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3" -msgstr "GPL-3" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-2" -msgstr "GPL-2" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Resynchronise Terms" -msgstr "Ανασυγχρονισμός Όρων" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese (BR) / português (BR)" -msgstr "Portugese (BR) / português (BR)" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence_type -msgid "ir.sequence.type" -msgstr "ir.sequence.type" - -#. module: base -#: field:ir.actions.server,record_id:0 -msgid "Create Id" -msgstr "Create Id" - -#. module: base -#: model:res.country,name:base.hn -msgid "Honduras" -msgstr "Honduras" - -#. module: base -#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 -msgid "View Architecture" -msgstr "Προβολή Δομής" - -#. module: base -#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 -msgid "Covered Modules" -msgstr "Modules που καλύπτονται" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Average" -msgstr "Υπολογισμός Μέσου Όρου" - -#. module: base -#: field:res.users,context_tz:0 -msgid "Timezone" -msgstr "Ζώνη Ώρας" +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Second field should be figures" +msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμητικό" #. module: base #: model:ir.actions.act_window,name:base.action_model_grid_security #: model:ir.ui.menu,name:base.menu_ir_access_grid msgid "Access Controls Grid" -msgstr "Πλέγμα ελέγχων προσπέλασης" +msgstr "Διάγραμμα Ελέγχου Πρόσβασης" #. module: base -#: field:ir.module.module,demo:0 -msgid "Demo data" -msgstr "Demo data" +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_custom_action +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" +msgstr "Ενέργειες" #. module: base #: selection:res.request,priority:0 msgid "High" msgstr "Υψηλή" -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_instance_form -#: model:ir.ui.menu,name:base.menu_workflow_instance -msgid "Instances" -msgstr "Instances" - -#. module: base -#: model:res.country,name:base.aq -msgid "Antarctica" -msgstr "Antarctica" - #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" msgstr "Εξαγωγή" -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form_all -#: model:ir.ui.menu,name:base.menu_ir_property_form_all -msgid "All Properties" -msgstr "Όλες οι ιδιότητες" - -#. module: base -#: wizard_button:module.upgrade,end,config:0 -#: wizard_button:module.upgrade,start,config:0 -msgid "Start configuration" -msgstr "Εκκίνηση ρυθμίσεων" - -#. module: base -#: model:res.country,name:base.na -msgid "Namibia" -msgstr "Namibia" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DISCONNECT" -msgstr "STOCK_DISCONNECT" - -#. module: base -#: view:ir.model:0 -msgid "Fields Description" -msgstr "Περιγραφή Πεδίων" - -#. module: base -#: wizard_button:module.module.update,init,update:0 -msgid "Check new modules" -msgstr "Έλεγχος νέων modules" - -#. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comoros" - -#. module: base -#: model:ir.actions.act_window,name:base.action_server_action -#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action -msgid "Server Actions" -msgstr "Server Actions" - -#. module: base -#: model:res.country,name:base.tp -msgid "East Timor" -msgstr "East Timor" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Web" -msgstr "Web" - #. module: base #: help:res.bank,bic:0 msgid "Bank Identifier Code" -msgstr "Κώδικας προσδιοριστικών τράπεζας" - -#. module: base -#: model:ir.ui.menu,name:base.menu_workflow_root -msgid "Workflow Definitions" -msgstr "Ορισμοί Ροών Εργασίας" +msgstr "Τραπεζικός Κωδικός Αναγνώρισης" #. module: base #: model:res.country,name:base.tm @@ -3538,218 +6884,48 @@ msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CDROM" -msgstr "STOCK_CDROM" +#: code:addons/base/ir/ir_actions.py:0 code:addons/base/ir/ir_model.py:0 +#: code:addons/base/module/module.py:0 code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_user.py:0 code:report/custom.py:0 +#, python-format +msgid "Error" +msgstr "Σφάλμα" #. module: base -#: field:workflow.activity,action:0 -msgid "Python Action" -msgstr "Python Action" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "You can also import .po files." -msgstr "You can also import .po files." - -#. module: base -#: field:res.partner.event,planned_revenue:0 -msgid "Planned Revenue" -msgstr "Προγραμματισμένα Έσοδα" - -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Κανόνες αρχείων" - -#. module: base -#: wizard_view:module.lang.import,init:0 -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 "Πρέπει να εισάγετε ένα αρχείο .CSV με κωδικοποίηση UTF-8. Παρακαλώ ελέγξτε ότι η πρώτη γραμμή του αρχείου σας είναι:" - -#. module: base -#: help:res.country,name:0 -msgid "The full name of the country." -msgstr "Πλήρες όνομα χώρας." - -#. module: base -#: model:res.country,name:base.et -msgid "Ethiopia" -msgstr "Ethiopia" - -#. module: base -#: view:res.lang:0 -msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." -msgstr "%H - Η Ώρα (24ωρη μορφή) σε δεκαδική μορφή [00, 23]." - -#. module: base -#: view:res.lang:0 -msgid "%M - Minute as a decimal number [00,59]." -msgstr "%M - Τα λεπτά της ώρας σε δεκαδική μορφή [00, 59]." +#: model:res.country,name:base.pm +msgid "Saint Pierre and Miquelon" +msgstr "Saint Pierre and Miquelon" #. module: base #: help:ir.actions.report.xml,header:0 msgid "Add or not the coporate RML header" msgstr "Add or not the coporate RML header" -#. module: base -#: help:res.country.state,code:0 -msgid "The state code in three chars.\n" -msgstr "Ο κωδικός πολιτείας αποτελείται από 3 χαρακτήρες\n" - -#. module: base -#: field:res.currency,accuracy:0 -msgid "Computational Accuracy" -msgstr "Ακρίβεια Υπολογισμού" - -#. module: base -#: view:ir.rule:0 -msgid "Test" -msgstr "Test" - -#. module: base -#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 -#: selection:ir.translation,type:0 -#: field:wizard.ir.model.menu.create.line,view_id:0 -msgid "View" -msgstr "Προβολή" - #. module: base #: field:res.partner.event,document:0 msgid "Document" msgstr "Έγγραφο" -#. module: base -#: model:res.country,name:base.kg -msgid "Kyrgyz Republic (Kyrgyzstan)" -msgstr "Kyrgyz Republic (Kyrgyzstan)" - -#. module: base -#: view:ir.model:0 view:ir.model.fields:0 -msgid "Security on Groups" -msgstr "Ασφάλεια σε Ομάδες" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REFRESH" msgstr "STOCK_REFRESH" -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Hours" -msgstr "Ώρες" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_type -#: model:ir.ui.menu,name:base.menu_ir_sequence_type -msgid "Sequence Types" -msgstr "Τύποι Αρίθμησης" - #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_HOME" -msgstr "STOCK_HOME" - -#. module: base -#: field:res.bank,zip:0 field:res.partner.address,zip:0 -#: field:res.partner.bank,zip:0 -msgid "Zip" -msgstr "ΤΚ" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FILE" -msgstr "STOCK_FILE" - -#. module: base -#: model:res.country,name:base.uz -msgid "Uzbekistan" -msgstr "Uzbekistan" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "To be installed" -msgstr "To be installed" +msgid "STOCK_STOP" +msgstr "STOCK_STOP" #. module: base #: view:wizard.module.update_translations:0 msgid "Update" msgstr "Ανανέωση" -#. module: base -#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 -#: model:ir.ui.menu,name:base.menu_ir_cron_act -msgid "Scheduled Actions" -msgstr "Προγραμματισμένες ενέργειες" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_module -msgid "maintenance contract modules" -msgstr "modules συμβολαίου συντήρησης" - -#. module: base -#: model:ir.module.module,shortdesc:base.module_meta_information -msgid "Base" -msgstr "Βάση" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_wizard -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.wizard" -msgstr "ir.actions.wizard" - -#. module: base -#: field:ir.attachment,link:0 -msgid "Link" -msgstr "Σύνδεσμος" - -#. module: base -#: view:res.partner:0 view:res.request:0 field:res.request,history:0 -msgid "History" -msgstr "Ιστορικό" - -#. module: base -#: model:res.country,name:base.mk -msgid "FYROM" -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "To be removed" -msgstr "Προς διαγραφή" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_WARNING" -msgstr "STOCK_DIALOG_WARNING" - -#. module: base -#: model:res.country,name:base.lr -msgid "Liberia" -msgstr "Liberia" - #. module: base #: model:ir.actions.report.xml,name:base.ir_module_reference_print msgid "Technical guide" msgstr "Τεχνικός οδηγός" -#. module: base -#: field:ir.server.object.lines,col1:0 -msgid "Destination" -msgstr "Προορισμός" - -#. module: base -#: help:ir.values,res_id:0 -msgid "Keep 0 if the action must appear on all resources." -msgstr "0 αν η ενέργεια πρέπει να εμφανίζεται σε όλους τους πόρους." - -#. module: base -#: field:ir.cron,interval_type:0 -msgid "Interval Unit" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "cs_CS" @@ -3761,233 +6937,47 @@ msgid "STOCK_CONVERT" msgstr "STOCK_CONVERT" #. module: base -#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 -#: field:res.partner,comment:0 field:res.partner.function,ref:0 -msgid "Notes" -msgstr "Σημειώσεις" +#: model:res.country,name:base.tz +msgid "Tanzania" +msgstr "Tanzania" #. module: base -#: model:ir.model,name:base.model_ir_rule -msgid "ir.rule" -msgstr "ir.rule" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Days" -msgstr "Ημέρες" - -#. module: base -#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 field:ir.values,value:0 -#: field:ir.values,value_unpickle:0 -msgid "Value" -msgstr "Τιμή" - -#. module: base -#: field:ir.actions.server,write_id:0 -msgid "Write Id" -msgstr "Write Id" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update Translations" -msgstr "Ανανέωση Μεταφράσεων" - -#. module: base -#: selection:ir.translation,type:0 field:res.bank,code:0 -#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 -#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 -msgid "Code" -msgstr "Κωδικός" - -#. module: base -#: field:ir.report.custom.fields,width:0 -msgid "Fixed Width" -msgstr "Προεπιλεγμένο Πλάτος" +#: model:res.country,name:base.cx +msgid "Christmas Island" +msgstr "Christmas Island" #. module: base #: view:ir.actions.server:0 msgid "Other Actions Configuration" msgstr "Ρυθμίσεις Άλλων Ενεργειών" -#. module: base -#: model:res.country,name:base.mc -msgid "Monaco" -msgstr "Monaco" - -#. module: base -#: field:res.company,rml_footer1:0 -msgid "Report Footer 1" -msgstr "Report Footer 1" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_EXECUTE" msgstr "STOCK_EXECUTE" -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Minutes" -msgstr "Λεπτά" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "The modules have been upgraded / installed !" -msgstr "The modules have been upgraded / installed !" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "odt" -msgstr "odt" - -#. module: base -#: field:ir.actions.act_window,domain:0 -msgid "Domain Value" -msgstr "Τιμή Τομέα" - -#. module: base -#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 -msgid "Help" -msgstr "Βοήθεια" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request_link-act -#: model:ir.ui.menu,name:base.menu_res_request_link_act -msgid "Accepted Links in Requests" -msgstr "Accepted Links in Requests" - -#. module: base -#: field:ir.module.category,module_nr:0 -msgid "Number of Modules" -msgstr "Number of Modules" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_YES" -msgstr "STOCK_YES" - -#. module: base -#: view:ir.actions.server:0 -msgid "SMS Configuration" -msgstr "Ρύθμιση SMS" - -#. module: base -#: view:ir.cron:0 -msgid "Technical Data" -msgstr "Τεχνικά Δεδομένα" - #. module: base #: model:ir.actions.act_window,name:base.res_partner_canal-act #: model:ir.model,name:base.model_res_partner_canal #: model:ir.ui.menu,name:base.menu_res_partner_canal-act msgid "Channels" -msgstr "Κανάλια" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_access_act -#: model:ir.ui.menu,name:base.menu_ir_access_act -msgid "Access Controls List" -msgstr "Λίστα Προσβάσεων" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Write Object" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "draft" -msgstr "πρόχειρα" - -#. module: base -#: model:res.country,name:base.kn -msgid "Saint Kitts & Nevis Anguilla" -msgstr "Saint Kitts & Nevis Anguilla" - -#. module: base -#: help:ir.actions.server,condition:0 -msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" -msgstr "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" +msgstr "Δίαυλοι" #. module: base #: view:ir.module.module:0 msgid "Schedule for Installation" msgstr "Προγραμματισμός εγκατάστασης" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Χρονολογία χωρίς τον αιώνα: %(y)s" - #. module: base #: selection:ir.model.fields,select_level:0 msgid "Advanced Search" msgstr "Προχωρημένη Αναζήτηση" -#. module: base -#: view:res.lang:0 -msgid "7. %H:%M:%S ==> 18:25:20" -msgstr "7. %H:%M:%S ==> 18:25:20" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_form -#: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 -msgid "Partners" -msgstr "Συνεργάτες" - -#. module: base -#: help:ir.actions.server,message:0 -msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" -msgstr "Συγκεκριμενοποιήστε το μήνυμα. Μπορείτε να χρησιμοποιήσετε τα πεδία του αντικειμένου, π.χ. \"Αγαπητέ [[ object.partner_id.name ]]\"" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "STOCK_MEDIA_PAUSE" - -#. module: base -#: field:res.partner.bank,state:0 -#: field:res.partner.bank.type.field,bank_type_id:0 -msgid "Bank Type" -msgstr "Τύπος Τράπεζας" - -#. module: base -#: field:ir.actions.server,trigger_name:0 -msgid "Trigger Name" -msgstr "Trigger Name" - -#. module: base -#: wizard_button:server.action.create,step_1,create:0 -msgid "Create" -msgstr "Δημιουργήστε" - -#. module: base -#: field:ir.exports,export_fields:0 -msgid "Export ID" -msgstr "Export ID" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -msgstr "Παρακαλώ επαναφορτώστε το menu tab (Ctrl+t Ctrl+r)." - #. module: base #: view:res.request:0 msgid "Send" msgstr "Αποστολή" -#. module: base -#: model:res.country,name:base.fr -msgid "France" -msgstr "France" - -#. module: base -#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 -#: field:res.request,priority:0 field:res.request.link,priority:0 -msgid "Priority" -msgstr "Προτεραιότητα" - #. module: base #: field:ir.translation,src:0 msgid "Source" @@ -3996,279 +6986,75 @@ msgstr "Πηγή" #. module: base #: help:res.partner.address,partner_id:0 msgid "Keep empty for a private address, not related to partner." -msgstr "" +msgstr "Κενό για ιδιωτική διεύθυνση, άσχετη με το Συνεργάτη." #. module: base -#: field:workflow.activity,flow_start:0 -msgid "Flow Start" -msgstr "Εκκίνηση Ροής" - -#. module: base -#: view:ir.sequence:0 -msgid "Legend (for prefix, suffix)" -msgstr "Κανόνες (για πρόθεμα, επίθεμα)" - -#. module: base -#: field:workflow.activity,flow_stop:0 -msgid "Flow Stop" -msgstr "Στάση ροής" +#: model:res.country,name:base.vu +msgid "Vanuatu" +msgstr "Vanuatu" #. module: base #: view:res.company:0 msgid "Internal Header/Footer" -msgstr "Internal Header/Footer" +msgstr "Εσωτερική Κεφαλίδα/Υποσέλιδο" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_LEFT" -msgstr "STOCK_JUSTIFY_LEFT" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank Account Owner" -msgstr "Ιδιοκτήτης Τραπεζικού Λογαριασμού" - -#. module: base -#: model:ir.actions.act_window,name:base.act_values_form -#: model:ir.ui.menu,name:base.menu_values_form -msgid "Client Actions Connections" -msgstr "Client Actions Connections" - -#. module: base -#: field:ir.ui.view,name:0 -msgid "View Name" -msgstr "Όνομα Προβολής" - -#. module: base -#: field:ir.ui.view_sc,resource:0 -msgid "Resource Name" -msgstr "Περιγραφή Πόρου" - -#. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 -msgid "Multi Actions" -msgstr "Multi Actions" - -#. module: base -#: model:res.country,name:base.af -msgid "Afghanistan, Islamic State of" -msgstr "Afghanistan, Islamic State of" - -#. module: base -#: field:res.partner.address,type:0 -msgid "Address Type" -msgstr "Τύπος Διεύθυνσης" - -#. module: base -#: help:ir.actions.server,record_id:0 -msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." -msgstr "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." - -#. module: base -#: view:res.company:0 view:res.partner:0 -msgid "General Information" -msgstr "Γενικές Πληροφορίες" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Auto" -msgstr "Αυτόματο" - -#. module: base -#: selection:ir.module.module,state:0 -msgid "Not Installable" +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "" +"Save this document to a .tgz file. This archive containt UTF-8 %s files and " +"may be uploaded to launchpad." msgstr "" +"Αποθύκευση του εγγράφου σε μορφή .tgz. Τα αρχεία είναι UTF-8 %s και μπορούν " +"να επεξεργαστούν με κειμενογράφο." #. module: base -#: model:ir.actions.act_window,name:base.ir_action_window -#: model:ir.ui.menu,name:base.menu_ir_action_window -msgid "Window Actions" -msgstr "Ενέργειες Παραθύρου" - -#. module: base -#: model:ir.model,name:base.model_workflow_activity -msgid "workflow.activity" -msgstr "workflow.activity" - -#. module: base -#: field:ir.report.custom.fields,groupby:0 -msgid "Group By" -msgstr "Ομαδοποίηση Ανά" - -#. module: base -#: model:res.country,name:base.gp -msgid "Guadeloupe (French)" -msgstr "Guadeloupe (French)" - -#. module: base -#: field:ir.translation,value:0 -msgid "Translation Value" -msgstr "Μετάφραση" +#: wizard_button:module.upgrade,end,config:0 +#: wizard_button:module.upgrade,start,config:0 +msgid "Start configuration" +msgstr "Εκκίνηση ρυθμίσεων" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" msgstr "Catalan / Català" -#. module: base -#: view:res.request:0 -msgid "End of Request" -msgstr "Τέλος Αίτησης" - -#. module: base -#: field:ir.report.custom.fields,cumulate:0 -msgid "Accumulate" -msgstr "Συσσώρευση" - -#. module: base -#: view:res.request:0 -msgid "References" -msgstr "Παραπομπές" - #. module: base #: model:res.country,name:base.do msgid "Dominican Republic" msgstr "Dominican Republic" -#. module: base -#: view:res.lang:0 -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 -Ο αριθμός της εβδομάδας στο έτος (Κυριακή πρώτη ημέρα της εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του χρόνου πριν την 1η Κυριακή θεωρούνται η εβδομάδα 0." - -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Note that this operation may take a few minutes." -msgstr "Αυτή η διαδικασία μπορεί να πάρει λίγα λεπτά." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-product" -msgstr "terp-product" +#: model:res.country,name:base.sa +msgid "Saudi Arabia" +msgstr "Saudi Arabia" #. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "choose" -msgstr "" - -#. module: base -#: model:res.country,name:base.gh -msgid "Ghana" -msgstr "Ghana" - -#. module: base -#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 -msgid "Kind" -msgstr "Είδος" - -#. module: base -#: model:ir.model,name:base.model_ir_exports_line -msgid "ir.exports.line" -msgstr "ir.exports.line" - -#. module: base -#: field:ir.cron,numbercall:0 -msgid "Number of Calls" -msgstr "Αριθμός Κλήσεων" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Manual" -msgstr "Manual" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Could you check your contract information ?" -msgstr "Παρακαλώ ελέγξτε τα στοιχεία σας" - -#. module: base -#: model:res.country,name:base.hm -msgid "Heard and McDonald Islands" -msgstr "Heard and McDonald Islands" - -#. module: base -#: field:res.request,create_date:0 -msgid "Created Date" -msgstr "Ημερ/νία Δημιουργίας" - -#. module: base -#: wizard_button:base.module.import,init,end:0 -#: selection:ir.actions.todo,state:0 -#: wizard_button:module.lang.import,init,end:0 -#: wizard_button:module.lang.install,init,end:0 -#: wizard_button:module.module.update,init,end:0 -#: wizard_button:module.upgrade,next,end:0 -#: wizard_button:res.partner.sms_send,init,end:0 -#: wizard_button:res.partner.spam_send,init,end:0 -#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 -#: view:wizard.module.update_translations:0 -msgid "Cancel" -msgstr "Ακύρωση" - -#. module: base -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.users" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Directory" -msgstr "Φάκελλος" - -#. module: base -#: field:res.partner.event,som:0 field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Line Plot" -msgstr "Γραμμικό Διάγραμμα" - -#. module: base -#: field:wizard.ir.model.menu.create,name:0 -msgid "Menu Name" -msgstr "Όνομα Μενού" +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Bar charts need at least two fields" +msgstr "Τα ιστογράμματα (bar charts) χρειάζονται τουλάχιστον δύο πεδία" #. module: base #: help:res.partner,supplier:0 -msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." -msgstr "Κάντε κλικ εδώ αν πρόκειται για Προμηθευτή. Αν το πεδίο αυτό δεν είναι τσεκαρισμένο, το τμήμα Παραγγελιών δε θα μπορεί να δει αυτό το συνεργάτη όταν θα τοποθετούν παραγγελίες." +msgid "" +"Check this box if the partner is a supplier. If it's not checked, purchase " +"people will not see it when encoding a purchase order." +msgstr "" +"Κάντε κλικ εδώ αν πρόκειται για Προμηθευτή. Αν το πεδίο αυτό δεν είναι " +"τσεκαρισμένο, το τμήμα Παραγγελιών δε θα μπορεί να δει αυτό το συνεργάτη " +"όταν θα τοποθετούν παραγγελίες." #. module: base #: field:ir.model.fields,relation_field:0 msgid "Relation Field" msgstr "Πεδίο Σχέσης" -#. module: base -#: help:res.users,password:0 -msgid "Keep empty if you don't want the user to be able to connect on the system." -msgstr "Αφήστε το κενό αν δεν επιθυμείτε ο χρήστης να συνδέεται στο σύστημα." - -#. module: base -#: field:ir.report.custom,title:0 -msgid "Report Title" -msgstr "Τίτλος Αναφοράς" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish / Español" -msgstr "Spanish / Español" - -#. module: base -#: field:ir.report.custom.fields,fontcolor:0 -msgid "Font color" -msgstr "Χρώμα γραμματοσειράς" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (TW) / 正體字" -msgstr "Chinese (TW) / 正體字" - #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -4277,27 +7063,12 @@ msgstr "Destination Instance" #. module: base #: field:ir.actions.wizard,multi:0 msgid "Action on Multiple Doc." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_DESCENDING" -msgstr "STOCK_SORT_DESCENDING" +msgstr "Ενέργεια σε Πολλαπλά Έγγραφα" #. module: base #: view:wizard.module.lang.export:0 -msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." -msgstr "Η επίσημη μετάφραση του OpenERP/OpenObjects module γίνονται με κειμενογράφο. Για το συγχρονισμό όλων των προσπαθειών χρησιμοποιούμε το online interface." - -#. module: base -#: model:res.country,name:base.my -msgid "Malaysia" -msgstr "Malaysia" - -#. module: base -#: model:ir.model,name:base.model_ir_model_config -msgid "ir.model.config" -msgstr "ir.model.config" +msgid "https://translations.launchpad.net/openobject" +msgstr "https://translations.launchpad.net/openobject" #. module: base #: model:ir.actions.act_window,name:base.action_partner_title @@ -4305,274 +7076,66 @@ msgstr "ir.model.config" msgid "Titles" msgstr "Τίτλοι" -#. module: base -#: model:ir.model,name:base.model_res_request_history -msgid "res.request.history" -msgstr "res.request.history" - -#. module: base -#: view:ir.actions.server:0 -msgid "Client Action Configuration" -msgstr "" - -#. module: base -#: field:res.company,logo:0 -msgid "Logo" -msgstr "Λογότυπο" - #. module: base #: field:ir.actions.todo,start_date:0 msgid "Start Date" msgstr "Ημερ/νία Εκκίνησης" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_address_form -#: model:ir.model,name:base.model_res_partner_address -#: model:ir.ui.menu,name:base.menu_partner_address_form -#: view:res.partner.address:0 -msgid "Partner Addresses" -msgstr "Διευθύνσεις Συνεργάτη" - -#. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "USA" - -#. module: base -#: field:ir.default,company_id:0 field:ir.property,company_id:0 -#: field:ir.values,company_id:0 view:res.company:0 -#: field:res.users,company_id:0 -msgid "Company" -msgstr "Εταιρεία" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PROPERTIES" -msgstr "STOCK_PROPERTIES" - -#. module: base -#: model:res.country,name:base.so -msgid "Somalia" -msgstr "Somalia" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Κύριε" - -#. module: base -#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 -msgid "New Window" -msgstr "Νέο Παράθυρο" +#: field:ir.actions.report.xml,report_xml:0 +msgid "XML path" +msgstr "XML path" #. module: base #: model:res.country,name:base.gn msgid "Guinea" msgstr "Guinea" -#. module: base -#: model:res.country,name:base.pa -msgid "Panama" -msgstr "Panama" - #. module: base #: model:res.country,name:base.lu msgid "Luxembourg" msgstr "Luxembourg" -#. module: base -#: model:res.country,name:base.cv -msgid "Cape Verde" -msgstr "Cape Verde (Πράσινο Ακρωτήριο)" - -#. module: base -#: model:res.country,name:base.bs -msgid "Bahamas" -msgstr "Μπαχάμες" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Commercial Prospect" -msgstr "Εμπορική Προοπτική" - #. module: base #: model:ir.actions.todo,note:base.config_wizard_step_user msgid "" "Create your users.\n" -"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" +"You will be able to assign groups to users. Groups define the access rights " +"of each users on the different objects of the system.\n" " " msgstr "" "Δημιουργία Χρηστών.\n" -"Μπορείτε να χωρίσετε τους χρήστες σε ομάδες δικαιωμάτων.\n" -" " +"Μπορείτε να χωρίσετε τους χρήστες σε ομάδες δικαιωμάτων." #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NETWORK" -msgstr "STOCK_NETWORK" +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Χαμηλή" #. module: base -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Συνημμένο" - -#. module: base -#: model:res.country,name:base.ie -msgid "Ireland" -msgstr "Ireland" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form_new -#: model:ir.ui.menu,name:base.menu_partner_customer_form_new -msgid "New Partner" -msgstr "Νέος Συνεργάτης" - -#. module: base -#: wizard_field:module.module.update,update,update:0 -msgid "Number of modules updated" -msgstr "Αριθμός ενημερωμένων modules" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EDIT" -msgstr "STOCK_EDIT" - -#. module: base -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Προεπισκόπηση" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Skip Step" -msgstr "Παράλειψη Βήματος" - -#. module: base -#: model:ir.actions.act_window,name:base.act_res_partner_event -#: field:res.partner,events:0 field:res.partner.event,name:0 -msgid "Events" -msgstr "Συμβάντα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles -#: model:ir.ui.menu,name:base.menu_action_res_roles -msgid "Roles Structure" -msgstr "Διάρθρωση Ρόλων" - -#. module: base -#: model:res.country,name:base.pn -msgid "Pitcairn Island" -msgstr "Pitcairn Island" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 -msgid "ir.actions.url" -msgstr "ir.actions.url" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_STOP" -msgstr "STOCK_MEDIA_STOP" - -#. module: base -#: field:ir.actions.act_window,view_id:0 -msgid "View Ref." -msgstr "View Ref." - -#. module: base -#: selection:ir.report.custom,state:0 -msgid "Unsubscribed" -msgstr "Μη καταχωρημένο" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_event_type-act -#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act -msgid "Active Partner Events" -msgstr "Ενεργά Συμβάντα Συνεργάτη" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "tree_but_action, client_print_multi" #. module: base #: model:res.country,name:base.sv msgid "El Salvador" msgstr "El Salvador" -#. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Portrait" -msgstr "Πορτραίτο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-graph" -msgstr "terp-graph" - -#. module: base -#: model:ir.actions.act_window,name:base.action_rule -#: model:ir.ui.menu,name:base.menu_action_rule -msgid "Record Rules" -msgstr "Record Rules" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_addess_tree -#: view:res.partner:0 -msgid "Partner Contacts" -msgstr "Στοιχεία Συνεργάτη" - -#. module: base -#: wizard_field:module.module.update,update,add:0 -msgid "Number of modules added" -msgstr "Number of modules added" - #. module: base #: field:res.bank,phone:0 field:res.partner.address,phone:0 msgid "Phone" msgstr "Τηλέφωνο" -#. module: base -#: view:ir.sequence:0 -msgid "Day of the year: %(doy)s" -msgstr "Ημέρα του χρόνου: %(day)s" - -#. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Απαιτούμενος Ρόλος" - -#. module: base -#: field:ir.actions.act_window,groups_id:0 -#: model:ir.actions.act_window,name:base.action_res_groups -#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 -#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 -#: view:res.users:0 field:res.users,groups_id:0 -msgid "Groups" -msgstr "Ομάδες" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "French / Français" -msgstr "Γαλλικά / Français" - #. module: base #: field:res.groups,menu_access:0 msgid "Access Menu" msgstr "Μενού Πρόσβασης" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Δημιουργημένα Μενού" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch (Belgium) / Nederlands (Belgïe)" -msgstr "" - -#. module: base -#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 -#: model:ir.ui.menu,name:base.next_id_15 -msgid "Properties" -msgstr "Ιδιότητες" +#: model:res.country,name:base.th +msgid "Thailand" +msgstr "Thailand" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -4582,105 +7145,11 @@ msgstr "Ιδιότητες" msgid ">" msgstr ">" -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ADD" -msgstr "STOCK_ADD" - -#. module: base -#: field:workflow.triggers,workitem_id:0 -msgid "Workitem" -msgstr "" - -#. module: base -#: model:res.country,name:base.ge -msgid "Georgia" -msgstr "Georgia" - -#. module: base -#: field:res.lang,thousands_sep:0 -msgid "Thousands Separator" -msgstr "Διαχωριστής Χιλιάδων" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry -msgid "country_id" -msgstr "country_id" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "STOCK_DIALOG_AUTHENTICATION" - -#. module: base -#: model:res.country,name:base.pl -msgid "Poland" -msgstr "Poland" - #. module: base #: field:ir.model.access,perm_unlink:0 msgid "Delete Permission" msgstr "Διαγραφή Πρόσβασης" -#. module: base -#: field:workflow.activity,signal_send:0 -msgid "Signal (subflow.*)" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ABOUT" -msgstr "STOCK_ABOUT" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_OUT" -msgstr "STOCK_ZOOM_OUT" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Selection" -msgstr "Επιλογή" - -#. module: base -#: field:ir.values,meta:0 -msgid "Meta Datas" -msgstr "Μετα-Δεδομένα" - -#. module: base -#: field:ir.model,name:0 field:ir.model.fields,model:0 -#: field:ir.model.grid,name:0 field:ir.values,model:0 -msgid "Object Name" -msgstr "Όνομα Αντικειμένου" - -#. module: base -#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 selection:ir.values,key:0 -msgid "Action" -msgstr "Ενέργεια" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_wizard -#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard -msgid "Wizards" -msgstr "Οδηγοί" - -#. module: base -#: field:ir.rule,domain_force:0 -msgid "Force Domain" -msgstr "Force Domain" - -#. module: base -#: help:ir.actions.server,expression:0 -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 "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`." - -#. module: base -#: model:ir.model,name:base.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - #. module: base #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 @@ -4692,32 +7161,6 @@ msgstr "Και" msgid "Object Relation" msgstr "Σχέση Αντικειμένου" -#. module: base -#: model:ir.actions.act_window,name:base.action_attachment -#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment -msgid "Attachments" -msgstr "Συνημμένα" - -#. module: base -#: field:res.request,act_to:0 field:res.request.history,act_to:0 -msgid "To" -msgstr "Σε" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Validate" -msgstr "_Validate" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_wizard -msgid "maintenance.contract.wizard" -msgstr "maintenance.contract.wizard" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_COLOR" -msgstr "STOCK_SELECT_COLOR" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT" @@ -4726,42 +7169,18 @@ msgstr "STOCK_PRINT" #. module: base #: view:res.partner:0 msgid "General" -msgstr "Γενικό" +msgstr "Γενικά" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NO" -msgstr "STOCK_NO" +#: model:res.country,name:base.uz +msgid "Uzbekistan" +msgstr "Uzbekistan" #. module: base -#: field:res.company,rml_header1:0 -msgid "Report Header" -msgstr "Report Header" - -#. module: base -#: field:ir.actions.server,child_ids:0 -msgid "Other Actions" -msgstr "Άλλες Ενέργειες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-mrp" -msgstr "terp-mrp" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Done" -msgstr "Ολοκληρωμένο" - -#. module: base -#: field:workflow.activity,out_transitions:0 -msgid "Outgoing Transitions" -msgstr "Εκροές" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Invoice" -msgstr "Τιμολόγιο" +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" +msgstr "ir.actions.act_window" #. module: base #: model:res.country,name:base.vi @@ -4769,151 +7188,19 @@ msgid "Virgin Islands (USA)" msgstr "Virgin Islands (USA)" #. module: base -#: help:res.partner,vat:0 -msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." -msgstr "Αριθμός ΦΠΑ. Επιλέξτε αυτό αν ο συνεργάτης πληρώνει ΦΠΑ. Χρησιμοποιείται στην περιοδική δήλωση ΦΠΑ." +#: model:res.country,name:base.tw +msgid "Taiwan" +msgstr "Taiwan" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Μήνες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "STOCK_GOTO_FIRST" - -#. module: base -#: model:res.country,name:base.cy -msgid "Cyprus" -msgstr "Cyprus" - -#. module: base -#: field:ir.model.access,perm_write:0 -msgid "Write Access" -msgstr "Δικαίωμα Εγγραφής" - -#. module: base -#: model:res.country,name:base.bb -msgid "Barbados" -msgstr "Barbados" - -#. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Μέγεθος" - -#. module: base -#: field:res.bank,city:0 field:res.partner,city:0 -#: field:res.partner.address,city:0 field:res.partner.bank,city:0 -msgid "City" -msgstr "Πόλη" - -#. module: base -#: model:res.country,name:base.mg -msgid "Madagascar" -msgstr "Madagascar" - -#. module: base -#: model:res.country,name:base.it -msgid "Italy" -msgstr "Italy" - -#. module: base -#: selection:ir.model,state:0 selection:ir.model.grid,state:0 -msgid "Custom Object" -msgstr "Παραμετροποιημένο αντικείμενο" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<>" -msgstr "<>" - -#. module: base -#: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 -msgid "Menu" -msgstr "Menu" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<=" -msgstr "<=" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export Data" -msgstr "Εξαγωγή Δεδομένων" - -#. module: base -#: model:res.country,name:base.fm -msgid "Micronesia" -msgstr "Micronesia" - -#. module: base -#: model:ir.model,name:base.model_res_partner_som -msgid "res.partner.som" -msgstr "res.partner.som" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Estonian / Eesti keel" -msgstr "Estonian / Eesti keel" - -#. module: base -#: field:ir.module.module,menus_by_module:0 view:res.groups:0 -msgid "Menus" -msgstr "Μενού" - -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group or user" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_UP" -msgstr "STOCK_GO_UP" - -#. module: base -#: view:ir.values:0 -msgid "Action To Launch" -msgstr "Επιλογή Ενέργειας" - -#. module: base -#: model:res.country,name:base.um -msgid "USA Minor Outlying Islands" -msgstr "USA Minor Outlying Islands" - -#. module: base -#: field:ir.actions.url,target:0 -msgid "Action Target" -msgstr "Στόχος Ενέργειας" +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "Αν δεν επιβάλλετε τομέα θα χρησιμοποιηθεί η απλή εγκατάσταση τομέα" #. module: base #: field:ir.report.custom,field_parent:0 field:ir.ui.view,field_parent:0 msgid "Child Field" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - -#. module: base -#: model:res.country,name:base.ai -msgid "Anguilla" -msgstr "Anguilla" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese / português" -msgstr "Portugese / português" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3 or later version" -msgstr "GPL-3 or later version" +msgstr "Υπό-Πεδίο" #. module: base #: field:ir.actions.act_window,usage:0 @@ -4923,103 +7210,30 @@ msgstr "GPL-3 or later version" msgid "Action Usage" msgstr "Χρήση Ενέργειας" -#. module: base -#: model:ir.model,name:base.model_res_request -msgid "res.request" -msgstr "res.request" - -#. module: base -#: model:res.country,name:base.il -msgid "Israel" -msgstr "Israel" - -#. module: base -#: field:ir.model.config,password_check:0 -msgid "Confirmation" -msgstr "Επιβεβαίωση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REDO" -msgstr "STOCK_REDO" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_server_action_create -msgid "Create Action" -msgstr "Δημιουργία Ενέργειας" - #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" msgstr "workflow.workitem" #. module: base -#: field:ir.ui.view_sc,name:0 -msgid "Shortcut Name" -msgstr "Όνομα Συντόμευσης" +#: selection:ir.module.module,state:0 +msgid "Not Installable" +msgstr "Αδύνατο να εγκατασταθεί" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Πιστωτικό Όριο" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "Προβολή:" #. module: base -#: model:res.country,name:base.pg -msgid "Papua New Guinea" -msgstr "Παπούα Νέα Γουινέα" +#: field:ir.model.fields,view_load:0 +msgid "View Auto-Load" +msgstr "Αυτόματη Φόρτωση Προβολής" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Πιθανότητα (0,50)" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Uninstallable" - -#. module: base -#: field:ir.module.module,url:0 field:ir.module.repository,url:0 -msgid "URL" -msgstr "URL" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Turkish / Türkçe" -msgstr "Turkish / Türkçe" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_model -#: model:ir.model,name:base.model_ir_model -#: model:ir.ui.menu,name:base.ir_model_model_menu -msgid "Objects" -msgstr "Objects" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_export -msgid "Import / Export" -msgstr "Εισαγωγές / Εξαγωγές" - -#. module: base -#: field:res.users,address_id:0 -msgid "Address" -msgstr "Διεύθυνση" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Your system will be upgraded." -msgstr "Το σύστημα θα αναβαθμιστεί" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_user_form -#: view:res.users:0 -msgid "Configure User" -msgstr "Ρυθμίσεις Χρήστη" - -#. module: base -#: field:ir.report.custom,print_format:0 -msgid "Print format" -msgstr "Μορφή Εκτύπωσης" +#: field:ir.module.module,installed_version:0 +msgid "Latest version" +msgstr "Τελευταία έκδοση" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5031,304 +7245,32 @@ msgstr "STOCK_JUMP_TO" msgid "End Date" msgstr "Ημερ/νία Λήξης" -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-calendar" -msgstr "terp-calendar" - #. module: base #: field:ir.exports,resource:0 field:ir.property,res_id:0 msgid "Resource" -msgstr "" - -#. module: base -#: field:ir.actions.server,email:0 -msgid "Email Address" -msgstr "Email Address" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-tools" -msgstr "terp-tools" - -#. module: base -#: model:ir.actions.act_window,name:base.action_payterm_form -#: model:ir.model,name:base.model_res_payterm -msgid "Payment term" -msgstr "Όροι Πληρωμής" - -#. module: base -#: view:ir.actions.report.xml:0 -msgid "Report xml" -msgstr "Αναφορά xml" - -#. module: base -#: model:ir.actions.act_window,name:base.action_module_open_categ -#: model:ir.actions.act_window,name:base.open_module_tree -#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree -#: field:wizard.module.lang.export,modules:0 -msgid "Modules" -msgstr "Modules" - -#. module: base -#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 -#: field:workflow.workitem,subflow_id:0 -msgid "Subflow" -msgstr "" - -#. module: base -#: help:ir.values,action_id:0 -msgid "This field is not used, it only helps you to select the right action." -msgstr "Αυτό το πεδίο δεν χρησιμοποιείται, απλά σας βοηθά να επιλέξετε την σωστή ενέργεια." - -#. module: base -#: model:res.country,name:base.tt -msgid "Trinidad and Tobago" -msgstr "Trinidad and Tobago" +msgstr "Πηγή" #. module: base #: field:maintenance.contract,name:0 field:maintenance.contract.wizard,name:0 msgid "Contract ID" -msgstr "" +msgstr "Αριθμός Συμβολαίου" #. module: base -#: model:res.country,name:base.lv -msgid "Latvia" -msgstr "Latvia (Λεττονία)" - -#. module: base -#: view:ir.values:0 -msgid "Values" -msgstr "Τιμές" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_INFO" -msgstr "STOCK_DIALOG_INFO" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_upgrade -#: model:ir.ui.menu,name:base.menu_wizard_upgrade -msgid "Apply Scheduled Upgrades" -msgstr "Apply Scheduled Upgrades" - -#. module: base -#: view:workflow.activity:0 field:workflow.workitem,act_id:0 -msgid "Activity" -msgstr "Activity" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_bank_form -#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 -#: field:res.partner,bank_ids:0 -msgid "Banks" -msgstr "Τράπεζες" - -#. module: base -#: model:ir.model,name:base.model_res_config_view -msgid "res.config.view" -msgstr "res.config.view" - -#. module: base -#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 -msgid "Shortcut" -msgstr "Συντόμευση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-sale" -msgstr "terp-sale" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mappings" -msgstr "Field Mappings" - -#. module: base -#: view:res.lang:0 -msgid "%d - Day of the month as a decimal number [01,31]." -msgstr "%d - Η ημέρα του μήνα σε δεκαδική μορφή [01, 31]." - -#. module: base -#: view:res.lang:0 -msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." -msgstr "%I - Η Ώρα (12ωρο) σε δεκαδική μορφή [01, 12]." - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Romanian / limba română" -msgstr "Romanian / limba română" - -#. module: base -#: field:res.company,parent_id:0 -msgid "Parent Company" -msgstr "Μητρική Εταιρεία" - -#. module: base -#: field:ir.values,object:0 -msgid "Is Object" -msgstr "" - -#. module: base -#: field:ir.cron,doall:0 -msgid "Repeat Missed" -msgstr "" - -#. module: base -#: help:ir.actions.server,state:0 -msgid "Type of the Action that is to be executed" -msgstr "Τύπος Ενέργειας για εκτέλεση" - -#. module: base -#: field:ir.server.object.lines,server_id:0 -msgid "Object Mapping" -msgstr "" - -#. module: base -#: field:ir.module.module,published_version:0 -msgid "Published Version" -msgstr "Δημοσιοποιημένη Έκδοση" - -#. module: base -#: help:res.currency,rate:0 help:res.currency.rate,rate:0 -msgid "The rate of the currency to the currency of rate 1" -msgstr "Ισοτιμία νομίσματος" +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "κέντρο" #. module: base #: model:ir.actions.act_window,name:base.action_country_state #: model:ir.ui.menu,name:base.menu_country_state_partner #: field:maintenance.contract.wizard,state:0 msgid "States" -msgstr "Νομοί" +msgstr "Καταστάσεις" #. module: base -#: model:res.country,name:base.ug -msgid "Uganda" -msgstr "Uganda" - -#. module: base -#: field:res.currency.rate,rate:0 -msgid "Rate" -msgstr "Ποσοστό" - -#. module: base -#: model:res.country,name:base.cg -msgid "Congo" -msgstr "Congo" - -#. module: base -#: view:ir.actions.server:0 -msgid "Create / Write" -msgstr "Δημιουργία / Εγγραφή" - -#. module: base -#: view:res.lang:0 -msgid "Examples" -msgstr "Παραδείγματα" - -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Customization" -msgstr "Προσαρμογή" - -#. module: base -#: help:res.partner.category,active:0 -msgid "The active field allows you to hide the category without removing it." -msgstr "The active field allows you to hide the category without removing it." - -#. module: base -#: model:res.country,name:base.py -msgid "Paraguay" -msgstr "Paraguay" - -#. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Προεπιλεγμένη Τιμή" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Object:" -msgstr "Αντικείμενο:" - -#. module: base -#: model:res.country,name:base.st -msgid "Saint Tome (Sao Tome) and Principe" -msgstr "Saint Tome (Sao Tome) and Principe" - -#. module: base -#: model:ir.model,name:base.model_res_country_state -msgid "Country state" -msgstr "Νομός" - -#. module: base -#: model:res.country,name:base.bw -msgid "Botswana" -msgstr "Botswana" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "Calculate Count" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "left" -msgstr "αριστερά" - -#. module: base -#: field:ir.model.fields,readonly:0 -#: field:res.partner.bank.type.field,readonly:0 -msgid "Readonly" -msgstr "Readonly" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_sc -msgid "ir.ui.view_sc" -msgstr "ir.ui.view_sc" - -#. module: base -#: view:ir.model:0 view:res.request:0 -msgid "Status" -msgstr "Κατάσταση" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_xml -#: model:ir.ui.menu,name:base.menu_ir_action_report_xml -msgid "Report Xml" -msgstr "Αναφορά Xml" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_partner -#: model:ir.ui.menu,name:base.menu_partner_title_partner -#: view:res.partner.title:0 -msgid "Partner Titles" -msgstr "Τίτλοι Συνεργάτη" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Service" -msgstr "Υπηρεσία" - -#. module: base -#: field:ir.actions.report.xml,report_xml:0 -msgid "XML path" -msgstr "XML path" - -#. module: base -#: help:ir.actions.act_window,auto_refresh:0 -msgid "Add an auto-refresh on the view" -msgstr "Add an auto-refresh on the view" - -#. module: base -#: model:res.country,name:base.lt -msgid "Lithuania" -msgstr "Lithuania" - -#. module: base -#: selection:ir.model.fields,state:0 -msgid "Base Field" -msgstr "Base Field" +#: help:ir.rule.group,global:0 +msgid "Make the rule global, otherwise it needs to be put on a group or user" +msgstr "Θέστε τον κανόνα ως γενικό αλλιώς ορίστε τον σε μια ομάδα ή χρήστη" #. module: base #: field:ir.attachment,datas_fname:0 field:wizard.module.lang.export,name:0 @@ -5341,9 +7283,9 @@ msgid "Access" msgstr "Πρόσβαση" #. module: base -#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 -msgid "Partner Ref." -msgstr "Εταιρική Αναφ." +#: model:res.country,name:base.sk +msgid "Slovak Republic" +msgstr "Slovak Republic" #. module: base #: model:res.country,name:base.aw @@ -5351,122 +7293,29 @@ msgid "Aruba" msgstr "Aruba" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_DOWN" -msgstr "STOCK_GO_DOWN" - -#. module: base -#: model:res.country,name:base.tw -msgid "Taiwan" -msgstr "Taiwan" - -#. module: base -#: model:res.country,name:base.ar -msgid "Argentina" -msgstr "Argentina" - -#. module: base -#: help:res.partner,user_id:0 -msgid "The internal user that is in charge of communicating with this partner if any." -msgstr "Ο χρήστης, υπεύθυνος για την επικοινωνία με το συνεργάτη, αν υπάρχει." +#: selection:ir.cron,interval_type:0 +msgid "Weeks" +msgstr "Εβδομάδες" #. module: base #: field:res.groups,name:0 msgid "Group Name" msgstr "Όνομα Ομάδας" -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_download:0 -msgid "Modules to download" -msgstr "Modules to download" - -#. module: base -#: model:res.country,name:base.ch -msgid "Switzerland" -msgstr "Switzerland / Ελβετία" - #. module: base #: model:res.country,name:base.bh msgid "Bahrain" msgstr "Bahrain" #. module: base -#: field:res.bank,fax:0 field:res.partner.address,fax:0 -msgid "Fax" -msgstr "Fax" - -#. module: base -#: model:res.country,name:base.ye -msgid "Yemen" -msgstr "Yemen" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_workitem_form -#: model:ir.ui.menu,name:base.menu_workflow_workitem -msgid "Workitems" -msgstr "" +#: model:res.partner.category,name:base.res_partner_category_12 +msgid "Segmentation" +msgstr "Καταμερισμός" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT_PREVIEW" -msgstr "STOCK_PRINT_PREVIEW" - -#. module: base -#: field:wizard.module.lang.export,advice:0 -msgid "Advice" -msgstr "Συμβουλή" - -#. module: base -#: model:res.country,name:base.si -msgid "Slovenia" -msgstr "Slovenia" - -#. module: base -#: model:ir.model,name:base.model_ir_attachment -msgid "ir.attachment" -msgstr "ir.attachment" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom_fields -msgid "ir.report.custom.fields" -msgstr "ir.report.custom.fields" - -#. module: base -#: model:res.country,name:base.uk -msgid "United Kingdom" -msgstr "United Kingdom" - -#. module: base -#: model:res.country,name:base.de -msgid "Germany" -msgstr "Germany" - -#. module: base -#: help:ir.actions.server,srcmodel_id:0 -msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." -msgstr "Object in which you want to create / write the object. If it is empty then refer to the Object field." - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "Not Installed" -msgstr "Not Installed" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Lithuanian / Lietuvių kalba" -msgstr "Lithuanian / Lietuvių kalba" - -#. module: base -#: field:res.users,action_id:0 -msgid "Home Action" -msgstr "Home Action" - -#. module: base -#: field:ir.ui.menu,icon:0 -msgid "Icon" -msgstr "Εικονίδιο" +msgid "STOCK_FIND" +msgstr "STOCK_FIND" #. module: base #: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard @@ -5475,202 +7324,51 @@ msgstr "Εικονίδιο" msgid "Add Maintenance Contract" msgstr "Προσθήκη Συμβολαίου Συντήρησης" -#. module: base -#: wizard_button:module.lang.import,init,finish:0 -#: wizard_button:module.lang.install,start,end:0 -#: wizard_button:module.module.update,update,open_window:0 -msgid "Ok" -msgstr "ΟΚ" - -#. module: base -#: field:res.lang,grouping:0 -msgid "Separator Format" -msgstr "Μορφή Διαχωριστή" - -#. module: base -#: model:res.country,name:base.pk -msgid "Pakistan" -msgstr "Pakistan" - -#. module: base -#: field:ir.ui.view,inherit_id:0 -msgid "Inherited View" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_translation -msgid "ir.translation" -msgstr "ir.translation" - -#. module: base -#: model:res.country,name:base.mq -msgid "Martinique (French)" -msgstr "Martinique (French)" - -#. module: base -#: view:res.lang:0 -msgid "%p - Equivalent of either AM or PM." -msgstr "%p - Αντίστοιχο με το π.μ ή το μ.μ." - #. module: base #: field:ir.actions.act_window,limit:0 field:ir.report.custom,limitt:0 msgid "Limit" msgstr "Όριο" -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Actions" -msgstr "Επαναληπτικές ενέργειες" - #. module: base #: help:ir.actions.server,wkf_model_id:0 msgid "Workflow to be executed on this model." -msgstr "" - -#. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Διεύθυνση Συνεργάτη" - -#. module: base -#: model:res.country,name:base.sn -msgid "Senegal" -msgstr "Senegal" - -#. module: base -#: model:res.country,name:base.ws -msgid "Samoa" -msgstr "Samoa" - -#. module: base -#: model:res.country,name:base.nz -msgid "New Zealand" -msgstr "New Zealand" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND" -msgstr "STOCK_DND" - -#. module: base -#: selection:workflow.activity,split_mode:0 -msgid "Or" -msgstr "Or" +msgstr "Ροή εργασίας μοντέλου" #. module: base #: model:res.country,name:base.jm msgid "Jamaica" msgstr "Jamaica" -#. module: base -#: model:res.country,name:base.al -msgid "Albania" -msgstr "Albania" - -#. module: base -#: field:maintenance.contract,date_stop:0 -msgid "Ending Date" -msgstr "Ημερ/νία Λήξης" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_uninstall -#: model:ir.ui.menu,name:base.menu_module_tree_uninstall -msgid "Uninstalled modules" -msgstr "Uninstalled modules" - -#. module: base -#: model:res.country,name:base.nf -msgid "Norfolk Island" -msgstr "Norfolk Island" - -#. module: base -#: model:res.country,name:base.kz -msgid "Kazakhstan" -msgstr "Kazakhstan" - #. module: base #: model:res.country,name:base.az msgid "Azerbaijan" msgstr "Azerbaijan" #. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_install -#: model:ir.ui.menu,name:base.menu_module_tree_install -msgid "Installed modules" -msgstr "Installed modules" - -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_form -#: model:ir.ui.menu,name:base.menu_maintenance_contract -msgid "Your Maintenance Contracts" -msgstr "Συμβόλαια Συντήρησης" - -#. module: base -#: field:ir.ui.menu,child_id:0 -msgid "Child IDs" -msgstr "Child IDs" - -#. module: base -#: model:res.country,name:base.ae -msgid "United Arab Emirates" -msgstr "United Arab Emirates" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 view:ir.module.module:0 -#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 -msgid "Module" -msgstr "Module" +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Warning" +msgstr "Προσοχή" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Arabic / الْعَرَبيّة" msgstr "Arabic / الْعَرَبيّة" -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" - #. module: base #: model:res.country,name:base.gi msgid "Gibraltar" msgstr "Gibraltar" -#. module: base -#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 -msgid "Client Action" -msgstr "Ενέργεια Πελάτη" - #. module: base #: model:res.country,name:base.vg msgid "Virgin Islands (British)" msgstr "Virgin Islands (British)" #. module: base -#: model:res.country,name:base.bd -msgid "Bangladesh" -msgstr "Bangladesh" - -#. module: base -#: field:workflow.transition,signal:0 -msgid "Signal (button Name)" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Defined Reports" -msgstr "Καθορισμένες Αναφορές" - -#. module: base -#: constraint:res.company:0 -msgid "Error! You can not create recursive companies." -msgstr "Σφάλμα! Υπάρχει εταιρεία με την ίδια περιγραφή" - -#. module: base -#: model:res.country,name:base.fj -msgid "Fiji" -msgstr "Fiji" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "STOCK_MEDIA_PREVIOUS" #. module: base #: selection:module.lang.install,init,lang:0 @@ -5678,40 +7376,19 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Trigger Configuration" +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" #. module: base -#: model:ir.model,name:base.model_ir_ui_menu -msgid "ir.ui.menu" -msgstr "ir.ui.menu" +#: model:res.country,name:base.rw +msgid "Rwanda" +msgstr "Rwanda" #. module: base -#: field:ir.actions.server,loop_action:0 -msgid "Loop Action" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 -msgid "Version" -msgstr "Έκδοση" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract -#: view:maintenance.contract:0 -msgid "Maintenance Contract" -msgstr "Συμβόλαιο Συντήρησης" - -#. module: base -#: help:ir.actions.server,trigger_obj_id:0 -msgid "Select the object from the model on which the workflow will executed." -msgstr "" - -#. module: base -#: model:res.country,name:base.la -msgid "Laos" -msgstr "Laos" +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "Ο ΦΠΑ δε φαίνεται σωστός" #. module: base #: selection:ir.report.custom.fields,operation:0 @@ -5724,857 +7401,25 @@ msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Ημέρα Εβδομάδας(0:Δευτέρα): %(ημέρες)" #. module: base -#: selection:ir.actions.server,state:0 -msgid "Email" -msgstr "Email" - -#. module: base -#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 -msgid "Channel" -msgstr "Κανάλι" - -#. module: base -#: field:ir.model.access,perm_create:0 -msgid "Create Access" -msgstr "Δημιουργία Πρόσβασης" +#: model:res.country,name:base.ck +msgid "Cook Islands" +msgstr "Cook Islands" #. module: base #: help:ir.actions.server,mobile:0 -msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" -msgstr "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_other_form -#: model:ir.ui.menu,name:base.menu_partner_other_form -msgid "Others Partners" -msgstr "Άλλοι Συνεργάτες" +msgid "" +"Provides fields that be used to fetch the mobile number, e.g. you select the " +"invoice, then `object.invoice_address_id.mobile` is the field which gives " +"the correct mobile number" +msgstr "" +"Provides fields that be used to fetch the mobile number, e.g. you select the " +"invoice, then `object.invoice_address_id.mobile` is the field which gives " +"the correct mobile number" #. module: base #: field:ir.model.data,noupdate:0 msgid "Non Updatable" -msgstr "" - -#. module: base -#: model:res.country,name:base.cu -msgid "Cuba" -msgstr "Cuba" - -#. module: base -#: field:res.partner.address,state_id:0 -msgid "Fed. State" -msgstr "Νομός" - -#. module: base -#: view:res.lang:0 -msgid "%S - Second as a decimal number [00,61]." -msgstr "%S - Το δευτερόλεπτο σε δεκαδική μορφή [00, 60]." - -#. module: base -#: view:ir.values:0 -msgid "Action Source" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "get" -msgstr "πάρε" - -#. module: base -#: model:res.country,name:base.yt -msgid "Mayotte" -msgstr "Mayotte" - -#. module: base -#: model:res.country,name:base.ro -msgid "Romania" -msgstr "Romania" - -#. module: base -#: view:res.lang:0 -msgid "%w - Weekday as a decimal number [0(Sunday),6]." -msgstr "%w - Η ημέρα της εβδομάδας σε δεκαδική μορφή [0 Κυριακή, 1 Δευτέρα... 6 Σάββατο]." - -#. module: base -#: model:res.country,name:base.am -msgid "Armenia" -msgstr "Armenia" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 -#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields -#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 -#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 -#: model:ir.ui.menu,name:base.ir_model_model_fields -msgid "Fields" -msgstr "Πεδία" - -#. module: base -#: model:ir.ui.menu,name:base.menu_base_config -#: model:ir.ui.menu,name:base.menu_config view:res.company:0 -msgid "Configuration" -msgstr "Ρυθμίσεις" - -#. module: base -#: field:maintenance.contract,date_start:0 -msgid "Starting Date" -msgstr "Ημερ/νία Εκκίνησης" - -#. module: base -#: view:ir.model:0 field:ir.model.fields,ttype:0 -msgid "Field Type" -msgstr "Τύπος Πεδίου" - -#. module: base -#: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 -msgid "Complete Name" -msgstr "Πλήρες Όνομα" - -#. module: base -#: field:res.country.state,code:0 -msgid "State Code" -msgstr "Κωδικός Περιοχής" - -#. module: base -#: field:ir.model.fields,on_delete:0 -msgid "On delete" -msgstr "On delete" - -#. module: base -#: view:res.request:0 -msgid "Reply" -msgstr "Απάντηση" - -#. module: base -#: field:ir.cron,function:0 field:res.partner.address,function:0 -#: selection:workflow.activity,kind:0 -msgid "Function" -msgstr "Λειτουργία" - -#. module: base -#: view:ir.sequence:0 -msgid "Year with century: %(year)s" -msgstr "Έτος με τον αιώνα: %(year)s" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Cancel" -msgstr "_Cancel" - -#. module: base -#: view:ir.report.custom:0 -msgid "Subscribe Report" -msgstr "Καταχώρηση Αναφοράς" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 -msgid "in" -msgstr "σε" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-report" -msgstr "terp-report" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_form -#: model:ir.ui.menu,name:base.menu_workflow -msgid "Workflows" -msgstr "Ροές Εργασίας" - -#. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Original View" -msgstr "Αρχική Προβολή" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Left-to-Right" -msgstr "Left-to-Right" - -#. module: base -#: help:ir.actions.wizard,multi:0 -msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." -msgstr "" - -#. module: base -#: field:res.lang,translatable:0 -msgid "Translatable" -msgstr "Translatable" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Daily" -msgstr "Ημερήσια" - -#. module: base -#: view:res.lang:0 -msgid "3. %x ,%X ==> 12/05/08, 18:25:20" -msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Cascade" -msgstr "" - -#. module: base -#: model:res.country,name:base.se -msgid "Sweden" -msgstr "Sweden" - -#. module: base -#: model:res.country,name:base.au -msgid "Australia" -msgstr "Australia" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard View" -msgstr "Προβολή Wizard" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Gantt" -msgstr "Gantt" - -#. module: base -#: view:ir.property:0 -msgid "Property" -msgstr "Ιδιοκτησία" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type -#: view:res.partner.bank.type:0 -msgid "Bank Account Type" -msgstr "Τύπος Τραπεζικού Λογαριασμού" - -#. module: base -#: field:res.partner.category,complete_name:0 -msgid "Full Name" -msgstr "Πλήρες Όνομα" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Επόμενο Βήμα Ρυθμίσεων" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-project" -msgstr "" - -#. module: base -#: field:res.groups,comment:0 -msgid "Comment" -msgstr "Σχόλιο" - -#. module: base -#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 -#: field:res.partner.title,domain:0 -msgid "Domain" -msgstr "Τομέας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PREFERENCES" -msgstr "STOCK_PREFERENCES" - -#. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 -msgid "Subject" -msgstr "Υποκείμενο" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "sv_SV" - -#. module: base -#: view:res.lang:0 -msgid "%X - Appropriate time representation." -msgstr "%X - Ορθή μορφή ώρας." - -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Action Configuration" -msgstr "Ρυθμίσεις Επαναληπτικών ενεργειών" - -#. module: base -#: model:res.country,name:base.qa -msgid "Qatar" -msgstr "Qatar" - -#. module: base -#: view:res.company:0 -msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "Λογότυπο - Χρησιμοποιείστε μέγεθος 450x150 pixels." - -#. module: base -#: help:res.lang,grouping:0 -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 "" - -#. module: base -#: model:res.country,name:base.at -msgid "Austria" -msgstr "Austria" - -#. module: base -#: model:res.country,name:base.mz -msgid "Mozambique" -msgstr "Mozambique" - -#. module: base -#: model:res.country,name:base.tv -msgid "Tuvalu" -msgstr "Τουβαλού" - -#. module: base -#: field:workflow.activity,join_mode:0 -msgid "Join Mode" -msgstr "Πλήρες Mode" - -#. module: base -#: model:res.country,name:base.jp -msgid "Japan" -msgstr "Japan" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Calendar" -msgstr "Ημερολόγιο" - -#. module: base -#: field:ir.actions.act_window.view,multi:0 -msgid "On Multiple Doc." -msgstr "On Multiple Doc." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_LAST" -msgstr "STOCK_GOTO_LAST" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Button" -msgstr "" - -#. module: base -#: model:res.country,name:base.nl -msgid "Netherlands" -msgstr "Netherlands / Ολλανδία" - -#. module: base -#: field:res.partner,address:0 view:res.partner.address:0 -msgid "Contacts" -msgstr "Στοιχεία" - -#. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Graph" -msgstr "" - -#. module: base -#: field:ir.module.module,installed_version:0 -msgid "Latest version" -msgstr "Τελευταία έκδοση" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_server -msgid "ir.actions.server" -msgstr "ir.actions.server" - -#. module: base -#: model:ir.model,name:base.model_res_company -msgid "res.company" -msgstr "res.company" - -#. module: base -#: wizard_button:module.lang.install,init,start:0 -msgid "Start installation" -msgstr "Start installation" - -#. module: base -#: selection:res.request,state:0 -msgid "closed" -msgstr "κλειστά" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -msgid "Module dependency" -msgstr "Module dependency" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "right" -msgstr "δεξιά" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Draft" -msgstr "Πρόχειρα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND_MULTIPLE" -msgstr "STOCK_DND_MULTIPLE" - -#. module: base -#: model:ir.ui.menu,name:base.maintenance -msgid "Maintenance" -msgstr "Συντήρηση" - -#. module: base -#: model:res.country,name:base.sj -msgid "Svalbard and Jan Mayen Islands" -msgstr "Svalbard and Jan Mayen Islands" - -#. module: base -#: view:res.config.view:0 -msgid "Choose Your Mode" -msgstr "Επιλογή Mode" - -#. module: base -#: view:ir.actions.report.custom:0 -msgid "Report custom" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OPEN" -msgstr "STOCK_OPEN" - -#. module: base -#: view:ir.actions.server:0 field:workflow.activity,action_id:0 -msgid "Server Action" -msgstr "Server Action" - -#. module: base -#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 -msgid "Login" -msgstr "Είσοδος" - -#. module: base -#: model:res.country,name:base.mp -msgid "Northern Mariana Islands" -msgstr "Northern Mariana Islands" - -#. module: base -#: model:res.country,name:base.by -msgid "Belarus" -msgstr "Belarus / Λευκορωσία" - -#. module: base -#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 -#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 -#: field:ir.actions.url,name:0 -msgid "Action Name" -msgstr "Όνομα Ενέργειας" - -#. module: base -#: field:ir.actions.configuration.wizard,progress:0 -msgid "Configuration Progress" -msgstr "Πρόοδος Ρυθμίσεων" - -#. module: base -#: field:res.company,rml_footer2:0 -msgid "Report Footer 2" -msgstr "Report Footer 2" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_11 -msgid "Configuration Wizards" -msgstr "Wizards Ρυθμίσεων" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_view -msgid "ir.actions.act_window.view" -msgstr "ir.actions.act_window.view" - -#. module: base -#: field:res.bank,street2:0 field:res.partner.address,street2:0 -msgid "Street2" -msgstr "Οδός 2" - -#. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Χωρισμένο Mode" - -#. module: base -#: model:ir.ui.menu,name:base.menu_localisation -msgid "Localisation" -msgstr "" - -#. module: base -#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 -msgid "Dependencies" -msgstr "Εξαρτήσεις" - -#. module: base -#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 -#: view:res.users:0 -msgid "User" -msgstr "Χρήστης" - -#. module: base -#: view:ir.actions.server:0 -msgid "Action to Launch" -msgstr "Επιλογή Ενέργειας" - -#. module: base -#: model:res.country,name:base.pr -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REVERT_TO_SAVED" -msgstr "STOCK_REVERT_TO_SAVED" - -#. module: base -#: view:ir.module.module:0 -msgid "Uninstall (beta)" -msgstr "Απεγκατάσταση" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_RIGHT" -msgstr "STOCK_JUSTIFY_RIGHT" - -#. module: base -#: model:res.country,name:base.lc -msgid "Saint Lucia" -msgstr "Saint Lucia" - -#. module: base -#: field:ir.actions.server,condition:0 -#: field:ir.report.custom.fields,fc0_condition:0 -#: field:workflow.transition,condition:0 -msgid "Condition" -msgstr "Συνθήκη" - -#. module: base -#: help:ir.values,model_id:0 -msgid "This field is not used, it only helps you to select a good model." -msgstr "Το πεδίο αυτό δε χρησιομοποιείται, βοηθά στην επιλογή του καλύτερου μοντέλου." - -#. module: base -#: field:ir.report.custom.fields,bgcolor:0 -msgid "Background Color" -msgstr "Χρώμα Φόντου" - -#. module: base -#: view:ir.rule:0 -msgid "Simple domain setup" -msgstr "Απλή μορφή τομέα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation_untrans -#: model:ir.ui.menu,name:base.menu_action_translation_untrans -msgid "Untranslated terms" -msgstr "Μη μεταφρασμένοι όροι" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" - -#. module: base -#: view:ir.actions.server:0 -msgid "If you use a formula type, use a python expression using the variable 'object'." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Italian / Italiano" -msgstr "Italian / Italiano" - -#. module: base -#: wizard_button:base.module.import,init,import:0 -#: model:ir.actions.wizard,name:base.wizard_base_module_import -#: model:ir.ui.menu,name:base.menu_wizard_module_import -msgid "Import module" -msgstr "Import module" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 -#: field:ir.rule.group,users:0 -#: model:ir.ui.menu,name:base.menu_action_res_users -#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 -#: field:res.groups,users:0 field:res.roles,users:0 view:res.users:0 -msgid "Users" -msgstr "Χρήστες" - -#. module: base -#: view:workflow.transition:0 -msgid "Transition" -msgstr "Ροή" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_app -msgid "Application Terms" -msgstr "Ορολογία Εφαρμογής" - -#. module: base -#: field:res.partner.address,birthdate:0 -msgid "Birthdate" -msgstr "Ημερ/νία γέννησης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_contact -#: model:ir.ui.menu,name:base.menu_partner_title_contact -msgid "Contact Titles" -msgstr "Τίτλοι Επαφής" - -#. module: base -#: field:ir.module.repository,filter:0 -msgid "Filter" -msgstr "Φίλτρο" - -#. module: base -#: field:ir.actions.todo,active:0 field:ir.cron,active:0 -#: field:ir.module.repository,active:0 field:ir.sequence,active:0 -#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 -#: field:res.partner,active:0 field:res.partner.address,active:0 -#: field:res.partner.canal,active:0 field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 field:res.request,active:0 -#: field:res.users,active:0 -msgid "Active" -msgstr "Ενεργό" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Polish / Język polski" -msgstr "Polish / Język polski" - -#. module: base -#: model:res.country,name:base.hr -msgid "Croatia" -msgstr "Croatia" - -#. module: base -#: model:res.country,name:base.mn -msgid "Mongolia" -msgstr "Mongolia" - -#. module: base -#: field:ir.actions.server,mobile:0 -msgid "Mobile No" -msgstr "Κινητό" - -#. module: base -#: model:res.country,name:base.th -msgid "Thailand" -msgstr "Thailand" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_by_category -#: model:ir.actions.act_window,name:base.action_partner_category_form -#: model:ir.model,name:base.model_res_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_form -#: view:res.partner.category:0 -msgid "Partner Categories" -msgstr "Καατηγορίες Συνεργατών" - -#. module: base -#: model:res.country,name:base.gd -msgid "Grenada" -msgstr "Grenada" - -#. module: base -#: field:ir.sequence,code:0 field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Κωδικός Αρίθμισης" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a5" -msgstr "Α5" - -#. module: base -#: selection:server.action.create,init,type:0 -msgid "Open Report" -msgstr "Ανοικτή Αναφορά" - -#. module: base -#: field:res.currency,rounding:0 -msgid "Rounding factor" -msgstr "Παράγοντας στρογγυλοποίησης" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Field" -msgstr "Πεδίο Wizard" - -#. module: base -#: model:res.country,name:base.bz -msgid "Belize" -msgstr "Belize" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" -msgstr "terp-stock" - -#. module: base -#: field:ir.model.fields,select_level:0 -msgid "Searchable" -msgstr "" - -#. module: base -#: model:res.country,name:base.uy -msgid "Uruguay" -msgstr "" - -#. module: base -#: view:res.partner.event:0 -msgid "Document Link" -msgstr "" - -#. module: base -#: view:res.partner.som:0 -msgid "Partner State of Mind" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank view:res.partner.bank:0 -msgid "Bank Accounts" -msgstr "Τραπεζικοί Λογαριασμοί" - -#. module: base -#: selection:ir.ui.view,type:0 -msgid "mdx" -msgstr "" - -#. module: base -#: model:res.country,name:base.sl -msgid "Sierra Leone" -msgstr "Sierra Leone" - -#. module: base -#: model:res.country,name:base.eg -msgid "Egypt" -msgstr "Egypt" - -#. module: base -#: field:ir.sequence,prefix:0 -msgid "Prefix" -msgstr "Πρόθεμα" - -#. module: base -#: model:res.country,name:base.rw -msgid "Rwanda" -msgstr "Rwanda" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "German / Deutsch" -msgstr "Γερμανικά / Deutsch" - -#. module: base -#: help:ir.actions.server,trigger_name:0 -msgid "Select the Signal name that is to be used as the trigger." -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Fields Mapping" -msgstr "Αντιστοιχία πεδίων" - -#. module: base -#: model:res.country,name:base.bi -msgid "Burundi" -msgstr "Burundi" - -#. module: base -#: wizard_button:base.module.import,import,open_window:0 -#: wizard_button:module.upgrade,end,end:0 -#: wizard_button:module.upgrade,start,end:0 -#: wizard_button:server.action.create,init,end:0 -#: wizard_button:server.action.create,step_1,end:0 -#: view:wizard.module.lang.export:0 -msgid "Close" -msgstr "Κλείσιμο" - -#. module: base -#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 -msgid "Sequence Name" -msgstr "Όνομα Αρίθμησης" - -#. module: base -#: model:res.country,name:base.tc -msgid "Turks and Caicos Islands" -msgstr "Turks and Caicos Islands" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "System upgrade done" -msgstr "System upgrade done" - -#. module: base -#: model:res.country,name:base.sc -msgid "Seychelles" -msgstr "Seychelles" - -#. module: base -#: field:ir.actions.report.xml,report_sxw_content:0 -#: field:ir.actions.report.xml,report_sxw_content_data:0 -msgid "SXW content" -msgstr "SXW content" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_simple_view_form -msgid "Configure Simple View" -msgstr "Ρυθμίσεις Απλής Προβολής" - -#. module: base -#: wizard_button:module.upgrade,next,start:0 -msgid "Start Upgrade" -msgstr "Έναρξη Αναβάθμισης" - -#. module: base -#: model:res.country,name:base.bt -msgid "Bhutan" -msgstr "Bhutan" - -#. module: base -#: field:ir.default,ref_id:0 -msgid "ID Ref." -msgstr "ID Ref." - -#. module: base -#: field:res.partner.bank,owner_name:0 -msgid "Account Owner" -msgstr "Ιδιοκτήτης Λογαρισμού" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Set NULL" -msgstr "Set NULL" - -#. module: base -#: field:ir.report.custom.fields,fc1_condition:0 -#: field:ir.report.custom.fields,fc2_condition:0 -#: field:ir.report.custom.fields,fc3_condition:0 -msgid "condition" -msgstr "συνθήκη" +msgstr "Αδύνατο να ενημερωθεί" #. module: base #: model:res.country,name:base.sg @@ -6582,191 +7427,19 @@ msgid "Singapore" msgstr "Singapore" #. module: base -#: model:res.country,name:base.mt -msgid "Malta" -msgstr "Μάλτα" +#: selection:ir.actions.act_window,target:0 +msgid "Current Window" +msgstr "Παρόν Παράθυρο" #. module: base -#: model:ir.actions.act_window,name:base.action_report_custom -#: view:ir.report.custom:0 -msgid "Custom Report" -msgstr "Ειδική Αναφορά" - -#. module: base -#: field:ir.actions.server,fields_lines:0 -msgid "Field Mappings." -msgstr "" - -#. module: base -#: help:res.partner.address,active:0 -msgid "Uncheck the active field to hide the contact." -msgstr "Ξετικάρετε το ενεργό πεδίο για να κρύψετε την επαφή" - -#. module: base -#: field:ir.cron,args:0 -msgid "Arguments" -msgstr "Arguments" - -#. module: base -#: field:ir.attachment,res_model:0 field:workflow,osv:0 -#: field:workflow.instance,res_type:0 -msgid "Resource Object" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "sxw" -msgstr "sxw" - -#. module: base -#: field:ir.module.module,shortdesc:0 -msgid "Short Description" -msgstr "Σύντομη Περιγραφή" - -#. module: base -#: model:res.country,name:base.gf -msgid "French Guyana" -msgstr "Γαλλική Γουιάνα" - -#. module: base -#: selection:ir.actions.url,target:0 -msgid "This Window" -msgstr "Αυτό το παράθυρο" - -#. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Μορφή Αρχείου" - -#. module: base -#: field:ir.model,state:0 field:ir.model.fields,state:0 -#: field:ir.model.grid,state:0 -msgid "Manually Created" -msgstr "Δημιουργημένα από Χρήστη" - -#. module: base -#: view:ir.module.repository:0 -msgid "Repository" -msgstr "Αποθήκη" - -#. module: base -#: field:ir.attachment,description:0 field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 view:res.partner.event:0 -#: field:res.partner.event,description:0 view:res.request:0 -msgid "Description" -msgstr "Περιγραφή" +#: view:ir.values:0 +msgid "Action Source" +msgstr "Προέλευση Ενέργειας" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDENT" -msgstr "STOCK_INDENT" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "type,name,res_id,src,value" -msgstr "type,name,res_id,src,value" - -#. module: base -#: field:ir.actions.wizard,name:0 -msgid "Wizard Info" -msgstr "Wizard Info" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Παράδοση" - -#. module: base -#: field:res.bank,street:0 field:res.partner.address,street:0 -#: field:res.partner.bank,street:0 -msgid "Street" -msgstr "Οδός" - -#. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "Automatic XSL:RML" - -#. module: base -#: field:ir.attachment,preview:0 -msgid "Image Preview" -msgstr "Προεπισκόπηση Εικόνας" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_configuration_wizard -msgid "ir.actions.configuration.wizard" -msgstr "ir.actions.configuration.wizard" - -#. module: base -#: view:workflow.workitem:0 -msgid "Workflow Workitems" -msgstr "Λειτουργία επαφής" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COPY" -msgstr "STOCK_COPY" - -#. module: base -#: model:res.country,name:base.vc -msgid "Saint Vincent & Grenadines" -msgstr "Saint Vincent & Grenadines" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_pvt_ltd -msgid "Corp." -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Manual domain setup" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export language" -msgstr "Εξαγωγή Γλώσσας" - -#. module: base -#: field:res.partner,customer:0 selection:res.partner.event,partner_type:0 -msgid "Customer" -msgstr "Πελάτης" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Unvalidated" -msgstr "Μη Επικυρωμένα" - -#. module: base -#: model:res.country,name:base.gw -msgid "Guinea Bissau" -msgstr "Γουινέα Μπισάου" - -#. module: base -#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 -msgid "Report Name" -msgstr "Όνομα Αναφοράς" - -#. module: base -#: view:workflow.instance:0 -msgid "Workflow Instances" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_9 -msgid "Database Structure" -msgstr "Αρχιτεκτονική Βάσης Δεδομένων" - -#. module: base -#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard -#: wizard_view:res.partner.spam_send,init:0 -msgid "Mass Mailing" -msgstr "Ομαδική Αλληλογραφία" - -#. module: base -#: model:res.country,name:base.io -msgid "British Indian Ocean Territory" -msgstr "British Indian Ocean Territory" +msgid "STOCK_NETWORK" +msgstr "STOCK_NETWORK" #. module: base #: model:ir.model,name:base.model_res_country field:res.bank,country:0 @@ -6777,29 +7450,251 @@ msgid "Country" msgstr "Χώρα" #. module: base -#: wizard_view:base.module.import,import:0 -msgid "Module successfully imported !" -msgstr "Module successfully imported !" +#: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 +msgid "Complete Name" +msgstr "Πλήρες Όνομα" #. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "center" -msgstr "κέντρο" +#: view:ir.report.custom:0 +msgid "Subscribe Report" +msgstr "Καταχώρηση Αναφοράς" #. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_close -msgid "ir.actions.act_window_close" -msgstr "ir.actions.act_window_close" +#: field:ir.values,object:0 +msgid "Is Object" +msgstr "Is Object" #. module: base -#: field:res.partner.event,partner_type:0 -msgid "Partner Relation" -msgstr "Σχέση Πελάτη" +#: field:res.partner.category,name:0 +msgid "Category Name" +msgstr "Όνομα Κατηγορίας" #. module: base -#: field:ir.actions.act_window,context:0 -msgid "Context Value" +#: model:res.partner.category,name:base.res_partner_category_15 +msgid "IT sector" +msgstr "IT sector" + +#. module: base +#: view:res.lang:0 +msgid "%X - Appropriate time representation." +msgstr "%X - Ορθή μορφή ώρας." + +#. module: base +#: view:res.company:0 +msgid "Your Logo - Use a size of about 450x150 pixels." +msgstr "Λογότυπο - Χρησιμοποιείστε μέγεθος 450x150 pixels." + +#. module: base +#: help:res.lang,grouping:0 +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 "" +"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." + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" +msgstr "Πορτραίτο" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Button" +msgstr "Κουμπί Αυτόματου Οδηγού" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIRECTORY" +msgstr "STOCK_DIRECTORY" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +#: model:ir.ui.menu,name:base.menu_partner_customer_form_new +msgid "New Partner" +msgstr "Νέος Συνεργάτης" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_server +msgid "ir.actions.server" +msgstr "ir.actions.server" + +#. module: base +#: view:ir.actions.report.custom:0 +msgid "Report custom" +msgstr "Ειδική αναφορά" + +#. module: base +#: field:ir.actions.configuration.wizard,progress:0 +msgid "Configuration Progress" +msgstr "Πρόοδος Ρυθμίσεων" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_11 +msgid "Configuration Wizards" +msgstr "Οδηγοί Ρυθμίσεων" + +#. module: base +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Διαχωρισμένο Mode" + +#. module: base +#: model:ir.ui.menu,name:base.menu_localisation +msgid "Localisation" +msgstr "Τοπικές Ρυθμίσεις" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "Απλοποιημένη Εγκατάσταση" + +#. module: base +#: model:res.country,name:base.cl +msgid "Chile" +msgstr "Chile (Χιλή)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REVERT_TO_SAVED" +msgstr "STOCK_REVERT_TO_SAVED" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +msgid "Import a Translation File" +msgstr "Εισαγωγή Αρχείου Μετάφρασης" + +#. module: base +#: help:ir.values,model_id:0 +msgid "This field is not used, it only helps you to select a good model." +msgstr "" +"Το πεδίο αυτό δε χρησιομοποιείται, βοηθά στην επιλογή του καλύτερου μοντέλου." + +#. module: base +#: field:ir.ui.view,name:0 +msgid "View Name" +msgstr "Όνομα Προβολής" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Italian / Italiano" +msgstr "Italian / Italiano" + +#. module: base +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "Αποθήκευση ως Πρόθεμα Συνημμένου" + +#. module: base +#: model:res.country,name:base.hr +msgid "Croatia" +msgstr "Croatia" + +#. module: base +#: field:ir.actions.server,mobile:0 +msgid "Mobile No" +msgstr "Κινητό" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" +msgstr "Κατηγορίες Συνεργατών" + +#. module: base +#: field:ir.sequence,code:0 field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Κωδικός Ιεράρχησης" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a5" +msgstr "Α5" + +#. module: base +#: model:res.country,name:base.sc +msgid "Seychelles" +msgstr "Seychelles" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank view:res.partner.bank:0 +msgid "Bank Accounts" +msgstr "Τραπεζικοί Λογαριασμοί" + +#. module: base +#: model:res.country,name:base.sl +msgid "Sierra Leone" +msgstr "Sierra Leone" + +#. module: base +#: view:res.company:0 view:res.partner:0 +msgid "General Information" +msgstr "Γενικές Πληροφορίες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-product" +msgstr "terp-product" + +#. module: base +#: model:res.country,name:base.tc +msgid "Turks and Caicos Islands" +msgstr "Turks and Caicos Islands" + +#. module: base +#: field:res.partner.bank,owner_name:0 +msgid "Account Owner" +msgstr "Ιδιοκτήτης Λογαρισμού" + +#. module: base +#: field:workflow,osv:0 field:workflow.instance,res_type:0 +msgid "Resource Object" +msgstr "Αντικείμενο-Πόρος" + +#. module: base +#: field:ir.cron,function:0 field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +msgid "Function" +msgstr "Λειτουργία" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Παράδοση" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "Προεπισκόπηση Εικόνας" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_pvt_ltd +msgid "Corp." +msgstr "Α.Ε." + +#. module: base +#: model:res.country,name:base.gw +msgid "Guinea Bissau" +msgstr "Γουινέα Μπισάου" + +#. module: base +#: view:workflow.instance:0 +msgid "Workflow Instances" +msgstr "Workflow Instances" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Partners: " +msgstr "Συνεργάτες" #. module: base #: model:res.country,name:base.kp @@ -6809,478 +7704,96 @@ msgstr "Βόρεια Κορέα" #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Hour 00->24: %(h24)s" -msgstr "Ώρα 00->24: %(h24)s" - -#. module: base -#: model:res.country,name:base.zw -msgid "Zimbabwe" -msgstr "Zimbabwe" +msgstr "Διαγραφή Αναφοράς" #. module: base #: selection:ir.actions.server,state:0 msgid "Create Object" msgstr "Δημιουργία Αντικειμένου" -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a4" -msgstr "Α4" - #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" msgstr "Κωδικός BIC/Swift" #. module: base -#: field:res.request.history,name:0 -msgid "Summary" -msgstr "" - -#. module: base -#: field:res.request.history,date_sent:0 -msgid "Date sent" -msgstr "Ημερ/νία Αποστολής" - -#. module: base -#: model:ir.model,name:base.model_res_partner_function -msgid "Function of the contact" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_upgrade -#: model:ir.ui.menu,name:base.menu_module_tree_upgrade -msgid "Modules to be installed, upgraded or removed" -msgstr "Modules to be installed, upgraded or removed" - -#. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Μήνας: %(month)s" - -#. module: base -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "Πωλήσεις & Αγορές" - -#. module: base -#: model:res.country,name:base.mm -msgid "Myanmar" -msgstr "Myanmar" - -#. module: base -#: field:ir.actions.act_window.view,sequence:0 -#: field:ir.actions.server,sequence:0 field:ir.actions.todo,sequence:0 -#: field:ir.module.repository,sequence:0 -#: field:ir.report.custom.fields,sequence:0 view:ir.sequence:0 -#: field:ir.ui.menu,sequence:0 field:ir.ui.view_sc,sequence:0 -#: field:res.partner.bank,sequence:0 -#: field:wizard.ir.model.menu.create.line,sequence:0 -msgid "Sequence" -msgstr "Αρίθμηση" - -#. module: base -#: view:res.lang:0 -msgid "11. %U or %W ==> 48 (49th week)" -msgstr "11. %U or %W ==> 48 (49η εβδομάδα)" +#: model:res.partner.category,name:base.res_partner_category_1 +msgid "Prospect" +msgstr "Πιθανός Συνεργάτης" #. module: base #: selection:module.lang.install,init,lang:0 -msgid "Russian / русский язык" -msgstr "Ρώσσικα / русский язык" +msgid "Polish / Język polski" +msgstr "Polish / Język polski" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export Name" +msgstr "Όνομα Εξαγωγής" #. module: base #: help:res.partner.address,type:0 -msgid "Used to select automatically the right address according to the context in sales and purchases documents." -msgstr "" - -#. module: base -#: help:ir.cron,numbercall:0 msgid "" -"Number of time the function is called,\n" -"a negative number indicates that the function will always be called" +"Used to select automatically the right address according to the context in " +"sales and purchases documents." msgstr "" -"Number of time the function is called,\n" -"a negative number indicates that the function will always be called" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (CN) / 简体中文" -msgstr "Chinese (CN) / 简体中文" - -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "The rule is satisfied if all test are True (AND)" - -#. module: base -#: field:ir.report.custom,footer:0 -msgid "Report Footer" -msgstr "Report Footer" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_NEXT" -msgstr "STOCK_MEDIA_NEXT" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Right-to-Left" -msgstr "Right-to-Left" - -#. module: base -#: model:res.country,name:base.yu -msgid "Yugoslavia" -msgstr "Yugoslavia" +"Χρησιμοποιείται για την αυτόματη επιλογή της σωστής διεύθυνσης με βάση τις " +"ρυθμίσεις στα έγγραφα αγορών και πωλήσεων" #. module: base #: wizard_view:module.lang.install,init:0 msgid "Choose a language to install:" msgstr "Επιλέξτε γλώσσα για εγκατάσταση:" -#. module: base -#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 -#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 -#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 -msgid "Partner" -msgstr "Συνεργάτης" - #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" msgstr "Σρι Λάνκα / Κευλάνη" #. module: base -#: view:ir.module.module:0 -msgid "Cancel Install" -msgstr "Cancel Install" +#: selection:module.lang.install,init,lang:0 +msgid "Russian / русский язык" +msgstr "Ρώσσικα / русский язык" #. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import language" -msgstr "Εισαγωγή γλώσσας" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" #. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Note that this operation my take a few minutes." -msgstr "Η διαδικασία αυτή μπορεί να πάρει μερικά λεπτά." +#: selection:ir.actions.report.xml,report_type:0 +msgid "txt" +msgstr "" #. module: base -#: field:ir.model.data,name:0 -msgid "XML Identifier" -msgstr "XML Identifier" - -#~ msgid "You can not create this kind of document! (%s)" -#~ msgstr "Δεν μπορείτε να δημιουργήσετε τέτοιο έγγραφο! (%s)" - -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "Η μέθοδος αποσύνδεσης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "Το άθροισμα των δεδομένων στο 2ο πεδίο είναι μηδενικό.\n" -#~ "Αδύνατη η δημιουργία κυκλικού διαγράμματος !" - -#~ msgid "new" -#~ msgstr "νέο" - -#~ 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 "Αποθηκέυστε αυτό το έγγραφο σε %s αρχείο και επεξργαστείτε το με επεξεργαστή κειμένου ή άλλο πρόγραμμα. Η κωδικοποίηση του αρχείου είναι UTF-8." - -#~ msgid "Password mismatch !" -#~ msgstr "Το password δεν είναι το ίδιο!" - -#~ msgid "This url '%s' must provide an html file with links to zip modules" -#~ msgstr "This url '%s' must provide an html file with links to zip modules" - -#~ msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" -#~ msgstr "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" - -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Η μέθοδος ανάγνωσης δεν έχει αναπτυχθεί για αυτό το αντικείμενο!" - -#~ msgid "Custom fields must have a name that starts with 'x_' !" -#~ msgstr "Τα ειδικά πεδία πρέπει να έχουν όνομα που ξεκινάει από 'x_' !" - -#~ msgid "You can not remove the model '%s' !" -#~ msgstr "Δεν μπορείτε να διαγράψετε το μοντέλο '%s' !" - -#~ msgid "Basic Partner" -#~ msgstr "Βασικός Συνεργάτης" - -#~ msgid "You try to bypass an access rule (Document type: %s)." -#~ msgstr "Υπάρχουν κανόνες πρόσβασης για έγγραφα %s." - -#~ msgid "Pie charts need exactly two fields" -#~ msgstr "Το κυκλικό διάγραμμα χρειάζεται ακριβώς δύο πεδία" - -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - -#~ msgid "Attached ID" -#~ msgstr "Attached ID" - -#~ msgid "You can not read this document! (%s)" -#~ msgstr "Δεν μπορείτε να διαβάσετε αυτό το έγγραφο! (%s)" - -#~ msgid "" -#~ "Some installed modules depends on the module you plan to desinstall :\n" -#~ " %s" -#~ msgstr "" -#~ "Some installed modules depends on the module you plan to desinstall :\n" -#~ " %s" - -#~ msgid "Attached Model" -#~ msgstr "Συνδεδεμένο Μοντέλο" - -#~ msgid "Can not remove root user!" -#~ msgstr "Can not remove root user!" - -#~ msgid "Not implemented search_memory method !" -#~ msgstr "Not implemented search_memory method !" - -#~ msgid "Couldn't generate the next id because some partners have an alphabetic id !" -#~ msgstr "Αδύνατη η δημιουργία του επόμενου id διότι κάποιοι συνεργάτες έχουν αλφαβητικό id!" - -#~ msgid "Not implemented set_memory method !" -#~ msgstr "Not implemented set_memory method !" - -#~ msgid "Enter at least one field !" -#~ msgstr "Συμπληρώστε ένα πεδίο τουλάχιστον!" - -#~ msgid "You can not write in this document! (%s)" -#~ msgstr "Δεν μπορείτε να επέμβετε στο έγγραφο! (%s)" - -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "The perm_read method is not implemented on this object !" - -#~ msgid "Openstuff.net" -#~ msgstr "Openstuff.net" - -#~ msgid "You can not delete this document! (%s)" -#~ msgstr "Δεν μπορείτε να διαγράψετε αυτό το έγγραφο! (%s)" - -#~ msgid "Can not upgrade module '%s'. It is not installed." -#~ msgstr "Can not upgrade module '%s'. It is not installed." - -#~ msgid "HR sector" -#~ msgstr "Τμήμα Ανθρωπίνων Πόρων" - -#~ msgid "Please specify an action to launch !" -#~ msgstr "Παρακαλώ επιλέξτε ενέργειας προς εκτέλεση!" - -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Παρακαλώ ελέγξτε ότι όλες οι γραμμές σας έχουν %d στήλες." - -#~ msgid "Recursion error in modules dependencies !" -#~ msgstr "Recursion error in modules dependencies !" - -#~ msgid "Ukrainian / украї́нська мо́ва" -#~ msgstr "Ukrainian / украї́нська мо́ва" - -#~ msgid "Error ! You can not create recursive categories." -#~ msgstr "Σφάλμα! Υπάρχει κατηγορία με την ίδια περιγραφή." - -#~ msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." -#~ msgstr "Αποθηκεύστε αυτό το έγγραφο σε αρχείο .CSV και επεξεργαστείτε το με το υπολογιστικό πρόγραμμα της επιλογής σας. Η κωδικοποίηση του αρχείου είναι UTF-8. Πρέπει να μετεφράσετε την τελευταία στήλη πριν το επανεισάγετε." - -#~ msgid "Telecom sector" -#~ msgstr "Τηλεπικοινωνίες" - -#~ msgid "" -#~ "You try to upgrade a module that depends on the module: %s.\n" -#~ "But this module is not available in your system." -#~ msgstr "" -#~ "You try to upgrade a module that depends on the module: %s.\n" -#~ "But this module is not available in your system." - -#~ msgid "Invalid operation" -#~ msgstr "Invalid operation" - -#~ msgid "" -#~ "You try to install a module that depends on the module: %s.\n" -#~ "But this module is not available in your system." -#~ msgstr "" -#~ "You try to install a module that depends on the module: %s.\n" -#~ "But this module is not available in your system." - -#~ msgid "You can not remove the field '%s' !" -#~ msgstr "Δεν μπορείτε να διαγράψετε το πεδίο '%s' !" - -#~ msgid "You try to remove a module that is installed or will be installed" -#~ msgstr "You try to remove a module that is installed or will be installed" - -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "Σφάλμα κατά την επικύρωση των πεδίων %s: %s" - -#~ msgid "Using a relation field which uses an unknown object" -#~ msgstr "Using a relation field which uses an unknown object" - -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "Η μέθοδος εγγραφής δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - -#~ msgid "The name of the group can not start with \"-\"" -#~ msgstr "Το όνομα της ομάδας δεν μπορεί να ξεκινάει με \"-\"" - -#~ msgid "Tree can only be used in tabular reports" -#~ msgstr "Το δέντρο μπορεί να χρησιμοποιηθεί μόνο σε αναφορές με μορφή πίνακα" - -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "Wrong ID for the browse record, got %r, expected an integer." - -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "The create method is not implemented on this object !" - -#~ msgid "The name_get method is not implemented on this object !" -#~ msgstr "The name_get method is not implemented on this object !" - -#~ msgid "Not Implemented" -#~ msgstr "Μη ενεργοποιημένο" - -#~ msgid "Textile Suppliers" -#~ msgstr "Προμηθευτές Υφασμάτων" - -#~ msgid "Macedonia" -#~ msgstr "F.Y.R.O.M." - -#~ msgid "Addresses" -#~ msgstr "Διευθύνσεις" - -#~ msgid "Records were modified in the meanwhile" -#~ msgstr "Οι εγγραφές έχουν τροποποιηθεί στο μεταξύ" - -#~ msgid "The name_search method is not implemented on this object !" -#~ msgstr "The name_search method is not implemented on this object !" - -#~ msgid "Module %s: Invalid Quality Certificate" -#~ msgstr "Module %s: Invalid Quality Certificate" - -#~ msgid "" -#~ "Can not create the module file:\n" -#~ " %s" -#~ msgstr "" -#~ "Can not create the module file:\n" -#~ " %s" - -#~ msgid "UserError" -#~ msgstr "UserError" - -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "The copy method is not implemented on this object !" - -#~ msgid "AccessError" -#~ msgstr "AccessError" - -#~ msgid "You cannot perform this operation." -#~ msgstr "Δεν μπορείτε να εκτελέσετε αυτή τη λειτουργία." - -#~ msgid "Not implemented get_memory method !" -#~ msgstr "Not implemented get_memory method !" - -#~ msgid "Can not create the module file: %s !" -#~ msgstr "Can not create the module file: %s !" - -#~ msgid "Please specify server option --smtp-from !" -#~ msgstr "Please specify server option --smtp-from !" - -#~ msgid "Bad customers" -#~ msgstr "Κακοί πελάτες" - -#~ msgid "Bad file format" -#~ msgstr "Μορφή αρχείου εσφαλμένη" - -#~ msgid "Number too large '%d', can not translate it" -#~ msgstr "ΠΟλύ μεγάλος αριθμός '%d', δε μεταφράζεται" - -#~ msgid "Error !" -#~ msgstr "Σφάλμα!" - -#~ msgid "This method does not exist anymore" -#~ msgstr "This method does not exist anymore" - -#~ msgid "File Content" -#~ msgstr "Περιεχόμενα Φακέλου" - -#~ msgid "%A - Full weekday name." -#~ msgstr "%A - Πλήρες όνομα ημέρας εβδομάδας" - -#~ msgid "Unknown position in inherited view %s !" -#~ msgstr "Unknown position in inherited view %s !" - -#~ msgid "Problem in configuration `Record Id` in Server Action!" -#~ msgstr "Problem in configuration `Record Id` in Server Action!" - -#~ msgid "ValidateError" -#~ msgstr "ValidateError" - -#~ msgid "Field %d should be a figure" -#~ msgstr "Το πεδίο %d πρέπει να έιναι αριθμός" - -#~ msgid "Error ! You can not create recursive associated members." -#~ msgstr "Σφάλμα! Υπάρχει ήδη ίδια περιγραφή συνδεδεμένου μέλους." - -#~ msgid "OpenERP Partners" -#~ msgstr "Συνεργάτες OpenERP" - -#~ msgid "Important customers" -#~ msgstr "Σημαντικοί Πελάτες" - -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "Η τιμή \"%s\" για οτ πεδίο \"%s\" δεν είναι επιλεγμένη!" - -#~ msgid "Gold Partner" -#~ msgstr "Χρυσός Συνεργάτης" - -#~ msgid "Open Source Service Company" -#~ msgstr "Open Source Service Company" - -#~ msgid "undefined get method !" -#~ msgstr "undefined get method !" - -#~ msgid "Password empty !" -#~ msgstr "Κενό Password!" - -#~ msgid "Bad query." -#~ msgstr "Bad query." - -#~ msgid "Second field should be figures" -#~ msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμητικό" - -#~ msgid "Error" -#~ msgstr "Σφάλμα" - -#~ msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." -#~ msgstr "Αποθύκευση του εγγράφου σε μορφή .tgz. Τα αρχεία είναι UTF-8 %s και μπορούν να επεξεργαστούν με κειμενογράφο." - -#~ msgid "Bar charts need at least two fields" -#~ msgstr "Τα ιστογράμματα (bar charts) χρειάζονται τουλάχιστον δύο πεδία" - -#~ msgid "Segmentation" -#~ msgstr "Καταμερισμός" - -#~ msgid "Warning" -#~ msgstr "Warning" - -#~ msgid "IT sector" -#~ msgstr "IT sector" - -#~ msgid "Partners: " -#~ msgstr "Συνεργάτες " - -#~ msgid "Can not define a column %s. Reserved keyword !" -#~ msgstr "Δεν μπορείτε να καθορίσετε στήλη '%s' . Κρατημένη λέξη " - -#~ msgid "tlh_TLH" -#~ msgstr "tlh_TLH" - -#~ msgid "nl_BE" -#~ msgstr "nl_BE" +#: selection:module.lang.install,init,lang:0 +msgid "Greek / Ελληνικά" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "Html from html" +msgstr "" + +#. module: base +#: model:res.country,name:base.mk +msgid "FYROM" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch (Belgium) / Nederlands (Belgïe)" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "uk_UK" +msgstr "" + +#. module: base +#: selection:ir.ui.view,type:0 +msgid "mdx" +msgstr "" #~ msgid "State 2" #~ msgstr "Πολιτεία" @@ -7310,8 +7823,15 @@ msgstr "XML Identifier" #~ msgid "Wizard info" #~ msgstr "Αυτόματος Οδηγός πληροφορίες" -#~ msgid "If you put groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." -#~ msgstr "Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον χρήστη. " +#~ msgid "" +#~ "If you put groups, the visibility of this menu will be based on these " +#~ "groups. If this field is empty, Open ERP will compute visibility based on " +#~ "the related object's read access." +#~ msgstr "" +#~ "Εάν βάλετε τις ομάδες, η εμπάνιση αυτών των επιλογών θα βασιστεί σε αυτές " +#~ "τις ομάδες. Εάν αυτό το πεδίο είναι κενό, το Open ERP θα επεξεργαστεί τη " +#~ "διαφάνεια βασιζόμενο στα χαρακτηριστικά πρόσβασης του πεδίου από τον " +#~ "χρήστη. " #~ msgid "Web:" #~ msgstr "Ιστός:" @@ -7322,8 +7842,11 @@ msgstr "XML Identifier" #~ msgid "Action State" #~ msgstr "Κατάσταση δράσης" -#~ msgid "The active field allows you to hide the category, without removing it." -#~ msgstr "Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι απαραίτητη η αφαίρεση του." +#~ msgid "" +#~ "The active field allows you to hide the category, without removing it." +#~ msgstr "" +#~ "Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία, χωρίς να είναι " +#~ "απαραίτητη η αφαίρεση του." #, fuzzy #~ msgid "Custom" @@ -7377,7 +7900,9 @@ msgstr "XML Identifier" #~ msgstr "Αριστερά στο δεξιά" #, fuzzy -#~ msgid "Check this box if the partner if a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." +#~ msgid "" +#~ "Check this box if the partner if a supplier. If it's not checked, " +#~ "purchase people will not see it when encoding a purchase order." #~ msgstr "Έλεγχος a s όχι όχι κωδικοποίηση a." #, fuzzy @@ -7412,7 +7937,11 @@ msgstr "XML Identifier" #~ "- The first parenthesis must match the name of the module.\n" #~ "- The second parenthesis must match all the version number.\n" #~ "- The last parenthesis must match the extension of the module." -#~ msgstr "στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο Ταιριάζω όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n δευτερόλεπτο Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο." +#~ msgstr "" +#~ "στο άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο Ιστοσελίδα n πρώτο " +#~ "Ταιριάζω όνομα από άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο n " +#~ "δευτερόλεπτο Ταιριάζω όλα έκδοση n τελευταίο Ταιριάζω από άρθρωμα, " +#~ "μονάδα, υπομονάδα, Δομικό Στοιχείο." #~ msgid "Reload an Official Translation" #~ msgstr "Ξαναφορτώστε μια επίσημη μετάφραση" @@ -7421,8 +7950,12 @@ msgstr "XML Identifier" #~ msgstr "Ομαδοποίηση κατά" #, fuzzy -#~ msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" -#~ msgstr "s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" +#~ msgid "" +#~ "\"%s\" contains too many dots. XML ids should not contain dots ! These " +#~ "are used to refer to other modules data, as in module.reference_id" +#~ msgstr "" +#~ "s περιέχει XML όχι στο στο άλλο Επιλογές - δυνατότητες - λειτουργίες σε " +#~ "άρθρωμα, μονάδα, υπομονάδα, Δομικό Στοιχείο id" #~ msgid "Account number" #~ msgstr "Αριθμός λογαριασμού" @@ -7487,7 +8020,9 @@ msgstr "XML Identifier" #~ msgstr "Σφάλμα s s s" #, fuzzy -#~ msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." +#~ msgid "" +#~ "If set to true, the wizard will not be displayed on the right toolbar of " +#~ "a form views." #~ msgstr "στο αληθές όχι δεξιά από a." #~ msgid "Orignal View" @@ -7502,7 +8037,9 @@ msgstr "XML Identifier" #~ msgstr "Ενέργεια." #, fuzzy -#~ msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +#~ msgid "" +#~ "If set to true, the action will not be displayed on the right toolbar of " +#~ "a form views." #~ msgstr "στο αληθές όχι δεξιά από a." #~ msgid "Low Level" @@ -7546,8 +8083,13 @@ msgstr "XML Identifier" #~ msgstr "Τίτλος εκθέσεων" #, fuzzy -#~ msgid "Access all the fields related to the current object easily just by defining name of the attribute, i.e. [[partner_id.name]] for Invoice Object" -#~ msgstr "Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο Αντικείμενο" +#~ msgid "" +#~ "Access all the fields related to the current object easily just by " +#~ "defining name of the attribute, i.e. [[partner_id.name]] for Invoice " +#~ "Object" +#~ msgstr "" +#~ "Πρόσβαση όλα στο ~κατά όνομα από ιδιότητα i e id όνομα για Τιμολόγιο " +#~ "Αντικείμενο" #~ msgid "Created date" #~ msgstr "Ημερομηνία δημιουργείας " @@ -7578,7 +8120,9 @@ msgstr "XML Identifier" #~ msgstr "Μικρή περιγραφή" #, fuzzy -#~ msgid "This is the prefix of the file name the print will be saved as attachement. Keep empty to not save the printed reports" +#~ msgid "" +#~ "This is the prefix of the file name the print will be saved as " +#~ "attachement. Keep empty to not save the printed reports" #~ msgstr "είναι από αρχείο όνομα Διατήρηση κενό στο όχι" #, fuzzy @@ -7589,17 +8133,16 @@ msgstr "XML Identifier" #~ msgid "Default properties" #~ msgstr "Εξ ορισμού ιδιότητες" -#, fuzzy -#~ msgid "Please specify the Partner Email address !" -#~ msgstr "Συνεργάτης Email διεύθυνση!" - #, fuzzy #~ msgid "Partners Titles" #~ msgstr "Τίτλοι" #, fuzzy -#~ msgid "You have to import a .CSV file wich is encoded in UTF-8. Please check that the first line of your file is:" -#~ msgstr "Εσείς στο a CSV αρχείο είναι σε Έλεγχος πρώτο γραμμή από αρχείο είναι:" +#~ msgid "" +#~ "You have to import a .CSV file wich is encoded in UTF-8. Please check " +#~ "that the first line of your file is:" +#~ msgstr "" +#~ "Εσείς στο a CSV αρχείο είναι σε Έλεγχος πρώτο γραμμή από αρχείο είναι:" #, fuzzy #~ msgid "Current rate" From 7079bb0805487dd627b3bfcee80070d6304bc258 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 17 Jun 2009 18:29:45 +0300 Subject: [PATCH 156/251] Update message catalogs from server. bzr revid: p_christ@hol.gr-20090617152945-ak7ci533tv6231ll --- bin/addons/base/i18n/base.pot | 59 +++++++++++++++-------- bin/addons/base_setup/i18n/base_setup.pot | 4 +- 2 files changed, 42 insertions(+), 21 deletions(-) diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index efcb8dc101c..68830a9ab4c 100644 --- a/bin/addons/base/i18n/base.pot +++ b/bin/addons/base/i18n/base.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-06-08 21:23:39+0000\n" -"PO-Revision-Date: 2009-06-08 21:23:39+0000\n" +"POT-Creation-Date: 2009-06-17 14:57:53+0000\n" +"PO-Revision-Date: 2009-06-17 14:57:53+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -220,8 +220,8 @@ msgid "Categories of Modules" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Email Configuration" +#: help:ir.actions.server,expression:0 +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 "" #. module: base @@ -256,7 +256,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" +msgid "STOCK_MEDIA_PAUSE" msgstr "" #. module: base @@ -1027,6 +1027,11 @@ msgstr "" msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "" + #. module: base #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" @@ -1166,8 +1171,8 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" msgstr "" #. module: base @@ -2114,8 +2119,8 @@ msgid "Work Days" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_roles -msgid "res.roles" +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" msgstr "" #. module: base @@ -2892,7 +2897,6 @@ msgstr "" #. module: base #: view:ir.attachment:0 -#: field:ir.attachment,datas:0 msgid "Data" msgstr "" @@ -3166,7 +3170,6 @@ msgid "Source Activity" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:workflow.instance,res_id:0 @@ -3746,6 +3749,11 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "" + #. module: base #: model:res.country,name:base.uz msgid "Uzbekistan" @@ -4043,8 +4051,8 @@ msgid "Specify the message. You can use the fields from the object. e.g. `Dear [ msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" msgstr "" #. module: base @@ -4437,7 +4445,6 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_address_form #: model:ir.model,name:base.model_res_partner_address -#: model:ir.ui.menu,name:base.menu_partner_address_form #: view:res.partner.address:0 msgid "Partner Addresses" msgstr "" @@ -4466,6 +4473,11 @@ msgstr "" msgid "Somalia" msgstr "" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: model:res.partner.title,name:base.res_partner_title_sir msgid "Sir" @@ -4796,8 +4808,8 @@ msgid "Force Domain" msgstr "" #. module: base -#: help:ir.actions.server,expression:0 -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`." +#: view:ir.actions.server:0 +msgid "Email Configuration" msgstr "" #. module: base @@ -5744,6 +5756,11 @@ msgstr "" msgid "Azerbaijan" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_roles +msgid "res.roles" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -6282,8 +6299,8 @@ msgid "closed" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -msgid "Module dependency" +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." msgstr "" #. module: base @@ -6799,7 +6816,6 @@ msgid "Arguments" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow,osv:0 #: field:workflow.instance,res_type:0 msgid "Resource Object" @@ -7069,6 +7085,11 @@ msgstr "" msgid "Sales & Purchases" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_partner_address_form +msgid "Addresses" +msgstr "" + #. module: base #: model:res.country,name:base.mm msgid "Myanmar" diff --git a/bin/addons/base_setup/i18n/base_setup.pot b/bin/addons/base_setup/i18n/base_setup.pot index 14fdab5acc4..c99bfdeb195 100644 --- a/bin/addons/base_setup/i18n/base_setup.pot +++ b/bin/addons/base_setup/i18n/base_setup.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-06-08 21:23:39+0000\n" -"PO-Revision-Date: 2009-06-08 21:23:39+0000\n" +"POT-Creation-Date: 2009-06-17 14:57:52+0000\n" +"PO-Revision-Date: 2009-06-17 14:57:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" From 30d7f8c97eb0774300cb7a5ebb24772cf6af1a6f Mon Sep 17 00:00:00 2001 From: Panagiotis Kranidiotis Date: Wed, 17 Jun 2009 18:35:57 +0300 Subject: [PATCH 157/251] update pot files bzr revid: kranidiotis@vatica.org-20090617153557-nytr5fjdu41c2756 --- bin/addons/base/i18n/el_GR.po | 12177 ++++++++++++++++---------------- 1 file changed, 5951 insertions(+), 6226 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 45562e65efc..1c8a46ceb05 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:20:38+0000\n" +"POT-Creation-Date: 2009-06-08 21:23:39+0000\n" "PO-Revision-Date: 2009-06-15 02:42+0200\n" "Last-Translator: Panagiotis Kranidiotis \n" "Language-Team: nls@hellug.gr \n" @@ -16,6 +16,31 @@ msgstr "" "X-Poedit-Country: GREECE\n" "X-Poedit-SourceCharset: utf-8\n" +#. module: base +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "Canada" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STOP" +msgstr "STOCK_STOP" + +#. module: base +#: selection:ir.actions.act_window,target:0 +msgid "Current Window" +msgstr "Παρόν Παράθυρο" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" +msgstr "Υπόμνημα μορφών ώρας και ημερ/νίας" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Internal Name" +msgstr "Εσωτερικό όνομα" + #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" @@ -26,1324 +51,15 @@ msgstr "Saint Helena" msgid "SMS - Gateway: clickatell" msgstr "SMS - Gateway: clickatell" -#. module: base -#: view:res.lang:0 -msgid "%j - Day of the year as a decimal number [001,366]." -msgstr "%j - Ημέρα του χρόνου σε δεκαδική μορφή [001,366]." - -#. module: base -#: field:ir.values,meta_unpickle:0 -msgid "Metadata" -msgstr "Metadata" - -#. module: base -#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 -msgid "View Architecture" -msgstr "Προβολή Δομής" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Δεν μπορείτε να δημιουργήσετε τέτοιο έγγραφο! (%s)" - -#. module: base -#: wizard_field:module.lang.import,init,code:0 -msgid "Code (eg:en__US)" -msgstr "Κωδικός (πχ: en__US)" - -#. module: base -#: view:workflow:0 field:workflow.activity,wkf_id:0 -#: field:workflow.instance,wkf_id:0 -msgid "Workflow" -msgstr "Ροή έργασίας" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To browse official translations, you can visit this link: " -msgstr "Για επίσημες μεταφράσεις μπορείτε να επισκεφθείτε το σύνδεσμο: " - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Hungarian / Magyar" -msgstr "Hungarian / Magyar" - -#. module: base -#: field:ir.actions.server,wkf_model_id:0 -msgid "Workflow On" -msgstr "Ροή Εργασίας σε λειτουργία" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Views" -msgstr "Δημιουργημένες Προβολές" - -#. module: base -#: view:workflow.activity:0 -msgid "Outgoing transitions" -msgstr "Εκροές" - #. module: base #: selection:ir.report.custom,frequency:0 -msgid "Yearly" -msgstr "Ετησίως" +msgid "Monthly" +msgstr "Μηνιαία" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The unlink method is not implemented on this object !" -msgstr "Η μέθοδος αποσύνδεσης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - -#. module: base -#: field:ir.actions.act_window,target:0 -msgid "Target Window" -msgstr "Επιλεγμένο Παράθυρο" - -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_simple_view -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 "" -"Επιλέξτε ανάμεσα στην Απλοποιημένη Εγκατάσταση ή την Εκτεταμένη.\n" -"Αν δοκιμάζετε το πρόγραμμα ή το χρησιμοποιείτε για πρώτη φορά, σας " -"προτείνουμε\n" -"την απλοποιημένη μορφή, η οποία έχει λιγότερες επιλογές αλλά είναι " -"ευκολότερη στην\n" -"κατανόηση. Μπορείτε να μετατρέψετε την εγκατάσταση αργότερα." - -#. module: base -#: code:report/custom.py:0 -#, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can't draw a pie chart !" -msgstr "" -"Το άθροισμα των δεδομένων στο 2ο πεδίο είναι μηδενικό.\n" -"Αδύνατη η δημιουργία κυκλικού διαγράμματος !" - -#. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "South Korea" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Ροές" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_custom -msgid "ir.ui.view.custom" -msgstr "ir.ui.view.custom" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_custom -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.custom" -msgstr "ir.actions.report.custom" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CANCEL" -msgstr "STOCK_CANCEL" - -#. module: base -#: field:ir.report.custom,sortby:0 -msgid "Sorted By" -msgstr "Ταξινόμηση ανά" - -#. module: base -#: field:ir.sequence,number_increment:0 -msgid "Increment Number" -msgstr "Αριθμός Προασύξησης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_tree -#: model:ir.ui.menu,name:base.menu_action_res_company_tree -msgid "Company's Structure" -msgstr "Δομή Εταιρίας" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom_fields -msgid "ir.report.custom.fields" -msgstr "ir.report.custom.fields" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "new" -msgstr "νέο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_TOP" -msgstr "STOCK_GOTO_TOP" - -#. module: base -#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 -msgid "On multiple doc." -msgstr "Σε πολλαπλά έγγραφα." - -#. module: base -#: field:ir.module.category,module_nr:0 -msgid "Number of Modules" -msgstr "Αριθμός Αρθρωμάτων" - -#. module: base -#: field:res.partner.bank.type.field,size:0 -msgid "Max. Size" -msgstr "Μέγιστο Μέγεθος" - -#. module: base -#: field:res.partner.address,name:0 -msgid "Contact Name" -msgstr "Όνομα Επαφής" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -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 "" -"Αποθηκέυστε αυτό το έγγραφο σε %s αρχείο και επεξργαστείτε το με επεξεργαστή " -"κειμένου ή άλλο πρόγραμμα. Η κωδικοποίηση του αρχείου είναι UTF-8." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password mismatch !" -msgstr "Τα συνθηματικά δεν ταιριάζουν!" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" -"Αυτή η διεύθυνση '%s' πρέπει να οδηγεί σε ένα αρχείο html με links σε " -"συμπιεσμένα αρχεία τα οποία αποτελούν τα Αρθρώματα" - -#. module: base -#: selection:res.request,state:0 -msgid "active" -msgstr "ενεργό" - -#. module: base -#: field:ir.actions.wizard,wiz_name:0 -msgid "Wizard Name" -msgstr "Όνομα Αυτόματου Οδηγού" - -#. module: base -#: view:res.lang:0 -msgid "%y - Year without century as a decimal number [00,99]." -msgstr "%y - Χρονολογία χωρίς τον αιώνα, σε δεκαδική μορφή [00, 99]." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "STOCK_GOTO_FIRST" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Get Max" - -#. module: base -#: help:ir.actions.act_window,limit:0 -msgid "Default limit for the list view" -msgstr "Προεπιλεγμένο όριο για την προβολή λίστας" - -#. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Ανανέωση Ημερ/νίας" - -#. module: base -#: field:ir.actions.act_window,src_model:0 -msgid "Source Object" -msgstr "Αντικείμενο - Πηγή" - -#. module: base -#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form -#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form -msgid "Config Wizard Steps" -msgstr "Ρύθμιση Βημάτων Αυτόματου Οδηγού" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_sc -msgid "ir.ui.view_sc" -msgstr "ir.ui.view_sc" - -#. module: base -#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 -msgid "Group" -msgstr "Ομάδα" - -#. module: base -#: field:ir.exports.line,name:0 field:ir.translation,name:0 -#: field:res.partner.bank.type.field,name:0 -msgid "Field Name" -msgstr "Όνομα Πεδίου" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_uninstall -#: model:ir.ui.menu,name:base.menu_module_tree_uninstall -msgid "Uninstalled modules" -msgstr "Μη εγκατεστημένα Αρθρώματα" - -#. module: base -#: wizard_view:server.action.create,init:0 -#: wizard_field:server.action.create,init,type:0 -msgid "Select Action Type" -msgstr "Επιλογή Τύπου Ενέργειας" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Configure" -msgstr "Ρυθμίσεις" - -#. module: base -#: model:res.country,name:base.tv -msgid "Tuvalu" -msgstr "Tuvalu" - -#. module: base -#: selection:ir.model,state:0 selection:ir.model.grid,state:0 -msgid "Custom Object" -msgstr "Εδικό Αντικείμενο" - -#. module: base -#: field:res.lang,date_format:0 -msgid "Date Format" -msgstr "Μορφή Ημερ/νίας" - -#. module: base -#: field:res.bank,email:0 field:res.partner.address,email:0 -msgid "E-Mail" -msgstr "E-Mail" - -#. module: base -#: model:res.country,name:base.an -msgid "Netherlands Antilles" -msgstr "Netherlands Antilles (Ολλανδικές Αντίλλες)" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "" -"You can not remove the admin user as it is used internally for resources " -"created by OpenERP (updates, module installation, ...)" -msgstr "Ο χρήστης admin δεν μπορεί να διαγραφεί!" - -#. module: base -#: model:res.country,name:base.gf -msgid "French Guyana" -msgstr "French Guyana (Γαλλική Γουιάνα)" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bosnian / bosanski jezik" -msgstr "Bosnian / bosanski jezik" - -#. module: base -#: help:ir.actions.report.xml,attachment_use:0 -msgid "" -"If you check this, then the second time the user prints with same attachment " -"name, it returns the previous report." -msgstr "" -"Αν επιλέξετε αυτό, τη δεύτερη φορά που ο χρήστης θα εκτυπώσει το ίδιο όνομα " -"συνημμένου, θα εκτυπωθεί η προηγούμενη αναφορά." - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The read method is not implemented on this object !" -msgstr "Η μέθοδος ανάγνωσης δεν έχει αναπτυχθεί για αυτό το αντικείμενο!" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_REWIND" -msgstr "STOCK_MEDIA_REWIND" - -#. module: base -#: field:ir.actions.todo,note:0 -msgid "Text" -msgstr "Κείμενο" - -#. module: base -#: field:res.country,name:0 -msgid "Country Name" -msgstr "Όνομα Χώρας" - -#. module: base -#: model:res.country,name:base.co -msgid "Colombia" -msgstr "Colombia" - -#. module: base -#: view:ir.module.module:0 -msgid "Schedule Upgrade" -msgstr "Προγραμματισμός Αναβάθμισης" - -#. module: base -#: field:ir.actions.report.custom,report_id:0 -msgid "Report Ref." -msgstr "Report Ref." - -#. module: base -#: help:res.country,code:0 -msgid "" -"The ISO country code in two chars.\n" -"You can use this field for quick search." -msgstr "" -"Κωδικός Χώρας (Διψήφιος ISO).\n" -"Χρησιμοποιήστε το για γρήγορη αναζήτηση." - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "Xor" -msgstr "Xor" - -#. module: base -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "Πωλήσεις & Αγορές" - -#. module: base -#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 -msgid "Wizard" -msgstr "Αυτόματος Οδηγός" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CUT" -msgstr "STOCK_CUT" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_wizard -#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard -msgid "Wizards" -msgstr "Οδηγοί" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Extended Interface" -msgstr "Εκτεταμένη Εγκατάσταση" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "Τα ειδικά πεδία πρέπει να έχουν όνομα που ξεκινάει από 'x_' !" - -#. module: base -#: help:ir.actions.server,action_id:0 -msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "Επιλογή Παραθύρου Κίνησης, Αναφοράς, Αυτόματου Οδηγού προς εκτέλεση." - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export done" -msgstr "Η Εξαγωγή Επετεύχθει" - -#. module: base -#: view:ir.model:0 -msgid "Model Description" -msgstr "Περιγραφή Μοντέλου" - -#. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expression" -msgstr "Φράση Εναύσματος (trigger)." - -#. module: base -#: model:res.country,name:base.jo -msgid "Jordan" -msgstr "Jordan (Ιορδανία)" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the model '%s' !" -msgstr "Δεν μπορείτε να διαγράψετε το μοντέλο '%s' !" - -#. module: base -#: model:res.country,name:base.er -msgid "Eritrea" -msgstr "Eritrea" - -#. module: base -#: view:res.config.view:0 -msgid "Configure simple view" -msgstr "Ρυθμίσεις απλής προβολής" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bulgarian / български" -msgstr "Bulgarian / български" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_actions -msgid "ir.actions.actions" -msgstr "ir.actions.actions" - -#. module: base -#: model:ir.actions.act_window,name:base.action_report_custom -#: view:ir.report.custom:0 -msgid "Custom Report" -msgstr "Ειδική Αναφορά" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Bar Chart" -msgstr "Ιστόγραμμα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_ERROR" -msgstr "STOCK_DIALOG_ERROR" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDEX" -msgstr "STOCK_INDEX" - -#. module: base -#: model:res.country,name:base.rs -msgid "Serbia" -msgstr "Serbia" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard View" -msgstr "Προβολή Αυτόματου Οδηγού" - -#. module: base -#: model:res.country,name:base.kh -msgid "Cambodia, Kingdom of" -msgstr "Cambodia, Kingdom of (Καμπότζη)" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 -#: model:ir.ui.menu,name:base.menu_ir_sequence_form -#: model:ir.ui.menu,name:base.next_id_5 -msgid "Sequences" -msgstr "Ιεραρχήσεις" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_QUESTION" -msgstr "STOCK_DIALOG_QUESTION" - -#. module: base -#: model:res.country,name:base.pg -msgid "Papua New Guinea" -msgstr "Papua New Guinea (Παπούα Νέα Γουινέα)" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_4 -msgid "Basic Partner" -msgstr "Βασικός Συνεργάτης" - -#. module: base -#: rml:ir.module.reference:0 -msgid "," -msgstr "," - -#. module: base -#: model:res.country,name:base.es -msgid "Spain" -msgstr "Ισπανία" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "You may have to reinstall some language pack." -msgstr "Πιθανόν να χρειαστεί να επανεγκαταστήσετε κάποιο πακέτο γλώσσας." - -#. module: base -#: field:res.partner.address,mobile:0 -msgid "Mobile" -msgstr "Κινητό" - -#. module: base -#: model:res.country,name:base.om -msgid "Oman" -msgstr "Oman" - -#. module: base -#: model:ir.actions.act_window,name:base.action_payterm_form -#: model:ir.model,name:base.model_res_payterm -msgid "Payment term" -msgstr "Όροι Πληρωμής" - -#. module: base -#: model:res.country,name:base.nu -msgid "Niue" -msgstr "Niue" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Work Days" -msgstr "Ημέρες Εργασίας" - -#. module: base -#: help:ir.values,action_id:0 -msgid "This field is not used, it only helps you to select the right action." -msgstr "" -"Αυτό το πεδίο δεν χρησιμοποιείται, απλά σας βοηθά να επιλέξετε την σωστή " -"ενέργεια. " - -#. module: base -#: model:ir.actions.act_window,name:base.act_menu_create -#: view:wizard.ir.model.menu.create:0 -msgid "Create Menu" -msgstr "Δημιουργήστε μενού" - -#. module: base -#: model:res.country,name:base.in -msgid "India" -msgstr "India" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_module -msgid "maintenance contract modules" -msgstr "maintenance contract modules" - -#. module: base -#: view:ir.values:0 -msgid "client_action_multi, client_action_relate" -msgstr "client_action_multi, client_action_relate" - -#. module: base -#: model:res.country,name:base.ad -msgid "Andorra, Principality of" -msgstr "Andorra, Principality of" - -#. module: base -#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 -msgid "Child Categories" -msgstr "Υποκατηγορίες" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "TGZ Archive" -msgstr "Αρχείο TGZ" - -#. module: base -#: field:res.partner.som,factor:0 -msgid "Factor" -msgstr "Παράγοντας" - -#. module: base -#: view:res.lang:0 -msgid "%B - Full month name." -msgstr "%B - Πλήρες όνομα μήνα." - -#. module: base -#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 -#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 -#: field:ir.values,key:0 view:res.partner:0 -msgid "Type" -msgstr "Τύπος" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FILE" -msgstr "STOCK_FILE" - -#. module: base -#: model:res.country,name:base.gu -msgid "Guam (USA)" -msgstr "Guam (USA)" - -#. module: base -#: model:ir.model,name:base.model_ir_model_grid -msgid "Objects Security Grid" -msgstr "Διάγραμμα Ασφαλείας Αντικειμένων" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_DOWN" -msgstr "STOCK_GO_DOWN" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OK" -msgstr "STOCK_OK" - -#. module: base -#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 -msgid "Dummy" -msgstr "Εικονικό" - -#. module: base -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Άκυρο XML για Αρχιτεκτονική Όψης!" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You try to bypass an access rule (Document type: %s)." -msgstr "Υπάρχουν κανόνες πρόσβασης για έγγραφα %s." - -#. module: base -#: model:res.country,name:base.ky -msgid "Cayman Islands" -msgstr "Cayman Islands" - -#. module: base -#: field:ir.rule,operand:0 -msgid "Operand" -msgstr "Ικανοποιητικό" - -#. module: base -#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 -msgid "Sequence Name" -msgstr "Όνομα Ιεράρχησης" - -#. module: base -#: model:res.country,name:base.td -msgid "Chad" -msgstr "Chad" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish (AR) / Español (AR)" -msgstr "Spanish (AR) / Español (AR)" - -#. module: base -#: model:res.country,name:base.ug -msgid "Uganda" -msgstr "Uganda" - -#. module: base -#: model:res.country,name:base.ne -msgid "Niger" -msgstr "Niger (Νίγηρας)" - -#. module: base -#: model:res.country,name:base.ba -msgid "Bosnia-Herzegovina" -msgstr "Bosnia-Herzegovina" - -#. module: base -#: field:ir.report.custom.fields,alignment:0 -msgid "Alignment" -msgstr "Διάταξη" - -#. module: base -#: selection:ir.rule,operator:0 -msgid ">=" -msgstr ">=" - -#. module: base -#: view:res.lang:0 -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 - Ο αριθμός της εβδομάδας στο χρόνο (με Δευτέρα πρώτη ημέρα της " -"εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του νέου χρόνου πριν " -"την πρώτη Δευτέρα θεωρούνται εβδομάδα 0." - -#. module: base -#: field:res.partner.event,planned_cost:0 -msgid "Planned Cost" -msgstr "Προϋπολογισμένο Κόστος" - -#. module: base -#: model:ir.model,name:base.model_ir_model_config -msgid "ir.model.config" -msgstr "ir.model.config" - -#. module: base -#: field:ir.module.module,website:0 field:res.partner,website:0 -msgid "Website" -msgstr "Ιστοσελίδα" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Tests" - -#. module: base -#: view:ir.module.repository:0 -msgid "Repository" -msgstr "Αποθήκευση αρχείων" - -#. module: base -#: model:res.country,name:base.gs -msgid "S. Georgia & S. Sandwich Isls." -msgstr "S. Georgia & S. Sandwich Isls." - -#. module: base -#: field:ir.actions.url,url:0 -msgid "Action URL" -msgstr "URL Ενέργειας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_FILL" -msgstr "STOCK_JUSTIFY_FILL" - -#. module: base -#: model:res.country,name:base.mh -msgid "Marshall Islands" -msgstr "Marshall Islands" - -#. module: base -#: model:res.country,name:base.ht -msgid "Haiti" -msgstr "Haiti" - -#. module: base -#: selection:ir.translation,type:0 -msgid "RML" -msgstr "RML" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_main -msgid "Partners by Categories" -msgstr "Συνεργάτες ανά Κατηγορίες" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Pie charts need exactly two fields" -msgstr "Το κυκλικό διάγραμμα χρειάζεται ακριβώς δύο πεδία" - -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Για εξαγωγή νέας γλώσσας, μην επιλέξετε καμμία γλώσσα." - -#. module: base -#: model:res.country,name:base.md -msgid "Moldavia" -msgstr "Moldavia" - -#. module: base -#: view:ir.module.module:0 -msgid "Features" -msgstr "Χαρακτηριστικά" - -#. module: base -#: field:ir.report.custom,frequency:0 -msgid "Frequency" -msgstr "Συχνότητα" - -#. module: base -#: field:ir.report.custom.fields,fc0_op:0 -#: field:ir.report.custom.fields,fc1_op:0 -#: field:ir.report.custom.fields,fc2_op:0 -#: field:ir.report.custom.fields,fc3_op:0 -msgid "Relation" -msgstr "Σχέση" - -#. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Πρόσβαση Ανάγνωσης" - -#. module: base -#: model:ir.model,name:base.model_ir_exports -msgid "ir.exports" -msgstr "ir.exports" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MISSING_IMAGE" -msgstr "STOCK_MISSING_IMAGE" - -#. module: base -#: view:res.users:0 -msgid "Define New Users" -msgstr "Ορισμός Νέων Χρηστών" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REMOVE" -msgstr "STOCK_REMOVE" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "raw" -msgstr "ακατέργαστο" - -#. module: base -#: help:ir.actions.server,email:0 -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 "" -"Τα πεδία που ια χρησιμοποιηθούν για εισαγωγή διεύθυνσης email π.χ. όταν " -"επιλέγετε το τιμολόγιο`object.invoice_address_id.email` είναι το πεδίο που " -"δίδει τη σωστή διεύθυνση." - -#. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Όνομα Ρόλου" - -#. module: base -#: field:res.partner,user_id:0 -msgid "Dedicated Salesman" -msgstr "Αφοσιωμένος Πωλητής" - -#. module: base -#: rml:ir.module.reference:0 -msgid "-" -msgstr "-" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The search method is not implemented on this object !" -msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - -#. module: base -#: field:res.payterm,name:0 -msgid "Payment Term (short name)" -msgstr "Όρος Πληρωμής (σύντομα)" - -#. module: base -#: model:ir.model,name:base.model_res_bank view:res.bank:0 -#: field:res.partner.bank,bank:0 -msgid "Bank" -msgstr "Τράπεζα" - -#. module: base -#: view:res.lang:0 -msgid "Examples" -msgstr "Παραδείγματα" - -#. module: base -#: field:ir.module.module,reports_by_module:0 -msgid "Reports" -msgstr "Αναφορές" - -#. module: base -#: field:workflow,on_create:0 -msgid "On Create" -msgstr "Κατά τη Δημιουργία" - -#. module: base -#: wizard_view:base.module.import,init:0 -msgid "Please give your module .ZIP file to import." -msgstr "Παρακαλώ επιλέξτε το αρχείο .ZIP για εισαγωγή του Αρθρώματος" - -#. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Προεπιλεγμένη Τιμή" - -#. module: base -#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 -msgid "Login" -msgstr "Είσοδος" - -#. module: base -#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 -msgid "Covered Modules" -msgstr "Αρθρώματα που καλύπτονται" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COPY" -msgstr "STOCK_COPY" - -#. module: base -#: model:ir.model,name:base.model_res_request_link -msgid "res.request.link" -msgstr "res.request.link" - -#. module: base -#: wizard_button:module.module.update,init,update:0 -msgid "Check new modules" -msgstr "Έλγχος νέων Αρθρωμάτων" - -#. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "Comoros" - -#. module: base -#: model:ir.actions.act_window,name:base.action_server_action -#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action -msgid "Server Actions" -msgstr "Server Actions" - -#. module: base -#: model:res.country,name:base.tp -msgid "East Timor" -msgstr "East Timor" - -#. module: base -#: view:ir.rule:0 -msgid "Simple domain setup" -msgstr "Απλή μορφή τομέα" - -#. module: base -#: field:res.currency,accuracy:0 -msgid "Computational Accuracy" -msgstr "Ακρίβεια Υπολογισμού" - -#. module: base -#: model:res.country,name:base.kg -msgid "Kyrgyz Republic (Kyrgyzstan)" -msgstr "Kyrgyz Republic (Kyrgyzstan)" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line -msgid "wizard.ir.model.menu.create.line" -msgstr "wizard.ir.model.menu.create.line" - -#. module: base -#: field:ir.attachment,res_id:0 -msgid "Attached ID" -msgstr "Συνημμένη ID" - -#. module: base -#: view:ir.sequence:0 -msgid "Day: %(day)s" -msgstr "Ημέρα: %(day)s" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Δεν μπορείτε να διαβάσετε αυτό το έγγραφο! (%s)" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND_AND_REPLACE" -msgstr "STOCK_FIND_AND_REPLACE" - -#. module: base -#: model:res.country,name:base.mv -msgid "Maldives" -msgstr "Maldives" - -#. module: base -#: help:ir.values,res_id:0 -msgid "Keep 0 if the action must appear on all resources." -msgstr "0 αν η ενέργεια πρέπει να εμφανίζεται σε όλους τους πόρους." - -#. module: base -#: model:ir.model,name:base.model_ir_rule -msgid "ir.rule" -msgstr "ir.rule" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Days" -msgstr "Ημέρες" - -#. module: base -#: field:ir.report.custom.fields,width:0 -msgid "Fixed Width" -msgstr "Προεπιλεγμένο Πλάτος" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-calendar" -msgstr "terp-calendar" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Some installed modules depends on the module you plan to desinstall :\n" -" %s" -msgstr "" -"Κάποια εγκατεστημένα Αρθρώματα εξαρτώνται από αυτό που σχεδιάζετε να " -"απεγκαταστήσετε:\n" -" %s" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_YES" -msgstr "STOCK_YES" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_custom -#: model:ir.ui.menu,name:base.menu_ir_action_report_custom -msgid "Report Custom" -msgstr "Ειδική Αναφορά" - -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Χρονολογία χωρίς τον αιώνα: %(y)s" - -#. module: base -#: view:res.lang:0 -msgid "7. %H:%M:%S ==> 18:25:20" -msgstr "7. %H:%M:%S ==> 18:25:20" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_form -#: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 -msgid "Partners" -msgstr "Συνεργάτες" - -#. module: base -#: help:ir.actions.server,message:0 -msgid "" -"Specify the message. You can use the fields from the object. e.g. `Dear " -"[[ object.partner_id.name ]]`" -msgstr "" -"Συγκεκριμενοποιήστε το μήνυμα. Μπορείτε να χρησιμοποιήσετε τα πεδία του " -"αντικειμένου, π.χ. 'Αγαπητέ [[ object.partner_id.name ]]'" - -#. module: base -#: field:ir.attachment,res_model:0 -msgid "Attached Model" -msgstr "Συνδεδεμένο Μοντέλο" - -#. module: base -#: field:ir.actions.server,trigger_name:0 -msgid "Trigger Name" -msgstr "Όνομα Εναύσματος" - -#. module: base -#: model:ir.model,name:base.model_ir_model_access -msgid "ir.model.access" -msgstr "ir.model.access" - -#. module: base -#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 -#: field:res.request,priority:0 field:res.request.link,priority:0 -msgid "Priority" -msgstr "Προτεραιότητα" - -#. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Πηγή Δράσης" - -#. module: base -#: view:ir.sequence:0 -msgid "Legend (for prefix, suffix)" -msgstr "Υπόμνημα (για προθέματα, επιθήματα)" - -#. module: base -#: selection:ir.server.object.lines,type:0 -msgid "Formula" -msgstr "Τύπος" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Can not remove root user!" -msgstr "Can not remove root user!" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_LEFT" -msgstr "STOCK_JUSTIFY_LEFT" - -#. module: base -#: model:res.country,name:base.mw -msgid "Malawi" -msgstr "Malawi" - -#. module: base -#: field:res.partner.address,type:0 -msgid "Address Type" -msgstr "Τύπος Διεύθυνσης" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Auto" -msgstr "Αυτόματα" - -#. module: base -#: view:res.request:0 -msgid "End of Request" -msgstr "Τέλος Αίτησης" - -#. module: base -#: view:res.request:0 -msgid "References" -msgstr "Παραπομπές" - -#. module: base -#: view:res.lang:0 -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 -Ο αριθμός της εβδομάδας στο έτος (Κυριακή πρώτη ημέρα της εβδομάδας) σε " -"δεκαδική μορφή [00, 53]. Όλες οι ημέρες του χρόνου πριν την 1η Κυριακή " -"θεωρούνται η εβδομάδα 0." - -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Note that this operation may take a few minutes." -msgstr "Αυτή η διαδικασία μπορεί να πάρει λίγα λεπτά." - -#. module: base -#: selection:ir.actions.act_window,view_type:0 -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Tree" -msgstr "Δέντρο" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Could you check your contract information ?" -msgstr "Παρακαλώ ελέγξτε τα στοιχεία σας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLEAR" -msgstr "STOCK_CLEAR" - -#. module: base -#: help:res.users,password:0 -msgid "" -"Keep empty if you don't want the user to be able to connect on the system." -msgstr "Αφήστε το κενό αν δεν επιθυμείτε ο χρήστης να συνδέεται στο σύστημα." - -#. module: base -#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 -msgid "View Mode" -msgstr "Mode Προβολής" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented search_memory method !" -msgstr "Not implemented search_memory method !" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish / Español" -msgstr "Spanish / Español" - -#. module: base -#: field:res.company,logo:0 -msgid "Logo" -msgstr "Λογότυπο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PROPERTIES" -msgstr "STOCK_PROPERTIES" - -#. module: base -#: view:ir.module.module:0 -msgid "Uninstall (beta)" -msgstr "Uninstall (beta)" - -#. module: base -#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 -msgid "New Window" -msgstr "Νέο Παράθυρο" - -#. module: base -#: model:res.country,name:base.bs -msgid "Bahamas" -msgstr "Bahamas" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Commercial Prospect" -msgstr "Εμπορική Προοπτική" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "" -"Couldn't generate the next id because some partners have an alphabetic id !" -msgstr "" -"Αδύνατη η δημιουργία του επόμενου id διότι κάποιοι συνεργάτες έχουν " -"αλφαβητικό id!" - -#. module: base -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Συνημμένο" - -#. module: base -#: model:res.country,name:base.ie -msgid "Ireland" -msgstr "Ireland" - -#. module: base -#: wizard_field:module.module.update,update,update:0 -msgid "Number of modules updated" -msgstr "Αριθμός Αρθρωμάτων που ενημερώθηκαν" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented set_memory method !" -msgstr "Not implemented set_memory method !" - -#. module: base -#: field:ir.actions.act_window,groups_id:0 -#: model:ir.actions.act_window,name:base.action_res_groups -#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 -#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 -#: view:res.users:0 field:res.users,groups_id:0 -msgid "Groups" -msgstr "Ομάδες" - -#. module: base -#: model:res.country,name:base.bz -msgid "Belize" -msgstr "Belize" - -#. module: base -#: model:res.country,name:base.ge -msgid "Georgia" -msgstr "Georgia" - -#. module: base -#: model:res.country,name:base.pl -msgid "Poland" -msgstr "Poland" - -#. module: base -#: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 -msgid "To be removed" -msgstr "Προς διαγραφή" - -#. module: base -#: field:ir.values,meta:0 -msgid "Meta Datas" -msgstr "Meta Datas" +msgid "Unknown" +msgstr "Άγνωστο" #. module: base #: view:wizard.module.update_translations:0 @@ -1355,705 +71,49 @@ msgstr "" "ενημερώσετε." #. module: base -#: help:ir.actions.server,expression:0 -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 "" -"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`." - -#. module: base -#: field:ir.model,name:0 field:ir.model.fields,model:0 -#: field:ir.model.grid,name:0 field:ir.values,model:0 -msgid "Object Name" -msgstr "Όνομα Αντικειμένου" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Field" -msgstr "Πεδίο Αυτόματου Οδηγού" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_COLOR" -msgstr "STOCK_SELECT_COLOR" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NO" -msgstr "STOCK_NO" - -#. module: base -#: model:res.country,name:base.st -msgid "Saint Tome (Sao Tome) and Principe" -msgstr "Saint Tome (Sao Tome) and Principe" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Invoice" -msgstr "Τιμολόγιο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REDO" -msgstr "STOCK_REDO" - -#. module: base -#: model:res.country,name:base.bb -msgid "Barbados" -msgstr "Barbados" - -#. module: base -#: model:res.country,name:base.mg -msgid "Madagascar" -msgstr "Madagascar" - -#. module: base -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Το όνομα πρέπει να ξεκινάει με x_ και να μην περιέχει ειδικούς χαρακτήρες!" - -#. module: base -#: field:ir.actions.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Επόμενος Αυτόματος Οδηγός" - -#. module: base -#: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 -msgid "Menu" -msgstr "Μενού" - -#. module: base -#: field:res.currency,rate:0 -msgid "Current Rate" -msgstr "Τρέχουσα Ισοτιμία" - -#. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Original View" -msgstr "Αρχική Προβολή" - -#. module: base -#: view:ir.values:0 -msgid "Action To Launch" -msgstr "Επιλογή Ενέργειας" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 -msgid "in" -msgstr "σε" - -#. module: base -#: field:ir.actions.url,target:0 -msgid "Action Target" -msgstr "Στόχος Ενέργειας" - -#. module: base -#: model:res.country,name:base.ai -msgid "Anguilla" -msgstr "Anguilla" - -#. module: base -#: field:ir.model.config,password_check:0 -msgid "Confirmation" -msgstr "Επιβεβαίωση" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Enter at least one field !" -msgstr "Συμπληρώστε ένα πεδίο τουλάχιστον!" - -#. module: base -#: field:ir.ui.view_sc,name:0 -msgid "Shortcut Name" -msgstr "Όνομα Συντόμευσης" - -#. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Πιστωτικό Όριο" - -#. module: base -#: help:ir.actions.server,write_id:0 -msgid "" -"Provide the field name that the record id refers to for the write operation. " -"If it is empty it will refer to the active id of the object." -msgstr "" -"Provide the field name that the record id refers to for the write operation. " -"If it is empty it will refer to the active id of the object." - -#. module: base -#: model:res.country,name:base.zw -msgid "Zimbabwe" -msgstr "Zimbabwe" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_export -msgid "Import / Export" -msgstr "Εισαγωγές / Εξαγωγές" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_user_form -#: view:res.users:0 -msgid "Configure User" -msgstr "Ρυθμίσεις Χρήστη" - -#. module: base -#: field:ir.actions.server,email:0 -msgid "Email Address" -msgstr "Email Address" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Δεν μπορείτε να επέμβετε στο έγγραφο! (%s)" - -#. module: base -#: view:ir.actions.server:0 field:workflow.activity,action_id:0 -msgid "Server Action" -msgstr "Server Action" - -#. module: base -#: model:res.country,name:base.tt -msgid "Trinidad and Tobago" -msgstr "Trinidad and Tobago" - -#. module: base -#: model:res.country,name:base.lv -msgid "Latvia" -msgstr "Latvia (Λεττονία)" - -#. module: base -#: view:ir.values:0 -msgid "Values" -msgstr "Τιμές" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mappings" -msgstr "Field Mappings" - -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Customization" -msgstr "Προσαρμογή" - -#. module: base -#: model:res.country,name:base.py -msgid "Paraguay" -msgstr "Paraguay" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "left" -msgstr "αριστερά" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_close -msgid "ir.actions.act_window_close" -msgstr "ir.actions.act_window_close" - -#. module: base -#: field:ir.server.object.lines,col1:0 -msgid "Destination" -msgstr "Προορισμός" - -#. module: base -#: model:res.country,name:base.lt -msgid "Lithuania" -msgstr "Lithuania" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT_PREVIEW" -msgstr "STOCK_PRINT_PREVIEW" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "The perm_read method is not implemented on this object !" - -#. module: base -#: model:res.country,name:base.si -msgid "Slovenia" -msgstr "Slovenia" - -#. module: base -#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 -msgid "Channel" -msgstr "Κανάλι" +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" #. module: base #: view:res.lang:0 -msgid "%p - Equivalent of either AM or PM." -msgstr "%p - Αντίστοιχο με το π.μ ή το μ.μ." +msgid "%j - Day of the year as a decimal number [001,366]." +msgstr "%j - Ημέρα του χρόνου σε δεκαδική μορφή [001,366]." #. module: base -#: view:ir.actions.server:0 -msgid "Iteration Actions" -msgstr "Επαναληπτικές ενέργειες" - -#. module: base -#: field:maintenance.contract,date_stop:0 -msgid "Ending Date" -msgstr "Ημερ/νία Λήξης" - -#. module: base -#: model:res.country,name:base.nz -msgid "New Zealand" -msgstr "New Zealand" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_7 -msgid "Openstuff.net" -msgstr "Openstuff.net" - -#. module: base -#: model:res.country,name:base.nf -msgid "Norfolk Island" -msgstr "Norfolk Island" +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "You may have to reinstall some language pack." +msgstr "Πιθανόν να χρειαστεί να επανεγκαταστήσετε κάποιο πακέτο γλώσσας." #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PLAY" -msgstr "STOCK_MEDIA_PLAY" +msgid "STOCK_SAVE" +msgstr "STOCK_SAVE" #. module: base -#: field:ir.rule,operator:0 -msgid "Operator" -msgstr "Συνάρτηση" +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" +msgstr "Αλλαγή Προτιμήσεων" #. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Installation Done" -msgstr "Η εγκατάσταση ολοκληρώθηκε" +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Άνοιγμα Παραθύρου" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_OPEN" -msgstr "STOCK_OPEN" +msgid "STOCK_DIALOG_QUESTION" +msgstr "STOCK_DIALOG_QUESTION" #. module: base -#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 -msgid "Client Action" -msgstr "Client Action" +#: selection:ir.ui.menu,icon:0 +msgid "terp-account" +msgstr "terp-account" #. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "right" -msgstr "δεξιά" - -#. module: base -#: model:res.country,name:base.bd -msgid "Bangladesh" -msgstr "Bangladesh" - -#. module: base -#: constraint:res.company:0 -msgid "Error! You can not create recursive companies." -msgstr "Σφάλμα! Υπάρχει εταιρεία με την ίδια περιγραφή" - -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Valid" -msgstr "Έγκυρο" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Δεν μπορείτε να διαγράψετε αυτό το έγγραφο! (%s)" - -#. module: base -#: selection:ir.translation,type:0 -msgid "XSL" -msgstr "XSL" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_other_form -#: model:ir.ui.menu,name:base.menu_partner_other_form -msgid "Others Partners" -msgstr "Άλλοι Συνεργάτες" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Can not upgrade module '%s'. It is not installed." +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" -"Δεν είναι δυνατή η αναβάθμιση του Αρθρώματος %s' διότι δεν είναι " -"εγκατεστημένο." - -#. module: base -#: model:res.country,name:base.cu -msgid "Cuba" -msgstr "Cuba" - -#. module: base -#: view:res.lang:0 -msgid "%S - Second as a decimal number [00,61]." -msgstr "%S - Το δευτερόλεπτο σε δεκαδική μορφή [00, 60]." - -#. module: base -#: model:res.country,name:base.am -msgid "Armenia" -msgstr "Armenia" - -#. module: base -#: view:ir.sequence:0 -msgid "Year with century: %(year)s" -msgstr "Έτος με τον αιώνα: %(year)s" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Daily" -msgstr "Ημερήσια" - -#. module: base -#: model:res.country,name:base.se -msgid "Sweden" -msgstr "Sweden" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Gantt" -msgstr "Gantt" - -#. module: base -#: view:ir.property:0 -msgid "Property" -msgstr "Ιδιότητα" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type -#: view:res.partner.bank.type:0 -msgid "Bank Account Type" -msgstr "Τύπος Τραπεζικού Λογαριασμού" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-project" -msgstr "terp-project" - -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Action Configuration" -msgstr "Ρυθμίσεις Επαναληπτικών ενεργειών" - -#. module: base -#: model:res.country,name:base.at -msgid "Austria" -msgstr "Austria" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Calendar" -msgstr "Ημερολόγιο" - -#. module: base -#: field:workflow.activity,signal_send:0 -msgid "Signal (subflow.*)" -msgstr "Σινιάλο (υπο-ροή.*)" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_17 -msgid "HR sector" -msgstr "Τμήμα Ανθρωπίνων Πόρων" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -msgid "Module dependency" -msgstr "Εξάρτηση Αρθρωμάτων" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Draft" -msgstr "Πρόχειρα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_CENTER" -msgstr "STOCK_JUSTIFY_CENTER" - -#. module: base -#: view:res.config.view:0 -msgid "Choose Your Mode" -msgstr "Επιλογή Mode" - -#. module: base -#: field:res.company,rml_footer1:0 -msgid "Report Footer 1" -msgstr "Report Footer 1" - -#. module: base -#: field:res.company,rml_footer2:0 -msgid "Report Footer 2" -msgstr "Report Footer 2" - -#. module: base -#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access -#: view:res.groups:0 field:res.groups,model_access:0 -msgid "Access Controls" -msgstr "Ρυθμίσεις Πρόσβασης" - -#. module: base -#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 -msgid "Dependencies" -msgstr "Dependencies" - -#. module: base -#: field:res.partner,parent_id:0 -msgid "Main Company" -msgstr "Κύρια Εταρεία" - -#. module: base -#: field:ir.report.custom.fields,bgcolor:0 -msgid "Background Color" -msgstr "Χρώμα Φόντου" - -#. module: base -#: view:ir.actions.server:0 -msgid "" -"If you use a formula type, use a python expression using the variable " -"'object'." -msgstr "" -"If you use a formula type, use a python expression using the variable " -"'object'." - -#. module: base -#: field:res.partner.address,birthdate:0 -msgid "Birthdate" -msgstr "Ημερ/νία γέννησης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_contact -#: model:ir.ui.menu,name:base.menu_partner_title_contact -msgid "Contact Titles" -msgstr "Τίτλοι Επαφής" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tlh_TLH" -msgstr "tlh_TLH" - -#. module: base -#: model:ir.model,name:base.model_res_partner_som -msgid "res.partner.som" -msgstr "res.partner.som" - -#. module: base -#: model:ir.model,name:base.model_workflow_activity -msgid "workflow.activity" -msgstr "workflow.activity" - -#. module: base -#: field:ir.model.fields,select_level:0 -msgid "Searchable" -msgstr "Αναζητήσιμο" - -#. module: base -#: model:res.country,name:base.uy -msgid "Uruguay" -msgstr "Uruguay" - -#. module: base -#: view:res.partner.event:0 -msgid "Document Link" -msgstr "Document Link" - -#. module: base -#: model:ir.model,name:base.model_res_partner_title -msgid "res.partner.title" -msgstr "res.partner.title" - -#. module: base -#: field:ir.sequence,prefix:0 -msgid "Prefix" -msgstr "Prefix" - -#. module: base -#: field:ir.actions.server,loop_action:0 -msgid "Loop Action" -msgstr "Loop Action" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "German / Deutsch" -msgstr "German / Deutsch" - -#. module: base -#: help:ir.actions.server,trigger_name:0 -msgid "Select the Signal name that is to be used as the trigger." -msgstr "Επιλέξτε το όνομα του Σινιάλου για χρήση ως Έναυσμα (trigger)." - -#. module: base -#: view:ir.actions.server:0 -msgid "Fields Mapping" -msgstr "Fields Mapping" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Κύριε" - -#. module: base -#: wizard_button:module.upgrade,next,start:0 -msgid "Start Upgrade" -msgstr "Έναρξη Αναβάθμισης" - -#. module: base -#: field:ir.default,ref_id:0 -msgid "ID Ref." -msgstr "ID Ref." - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "French / Français" -msgstr "French / Français" - -#. module: base -#: model:res.country,name:base.mt -msgid "Malta" -msgstr "Malta" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "nl_BE" -msgstr "nl_BE" - -#. module: base -#: field:ir.actions.server,fields_lines:0 -msgid "Field Mappings." -msgstr "Field Mappings." - -#. module: base -#: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 view:ir.module.module:0 -#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 -msgid "Module" -msgstr "Άρθρωμα" - -#. module: base -#: field:ir.attachment,description:0 field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 view:res.partner.event:0 -#: field:res.partner.event,description:0 view:res.request:0 -msgid "Description" -msgstr "Περιγραφή" - -#. module: base -#: model:ir.model,name:base.model_ir_attachment -msgid "ir.attachment" -msgstr "ir.attachment" - -#. module: base -#: field:res.users,action_id:0 -msgid "Home Action" -msgstr "Home Action" - -#. module: base -#: field:res.lang,grouping:0 -msgid "Separator Format" -msgstr "Μορφή Διαχωριστή" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export language" -msgstr "Εξαγωγή Γλώσσας" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Unvalidated" -msgstr "Μη Επικυρωμένα" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_9 -msgid "Database Structure" -msgstr "Αρχιτεκτονική Βάσης Δεδομένων" - -#. module: base -#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard -#: wizard_view:res.partner.spam_send,init:0 -msgid "Mass Mailing" -msgstr "Ομαδική Αλληλογραφία" - -#. module: base -#: model:res.country,name:base.yt -msgid "Mayotte" -msgstr "Mayotte" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "You can also import .po files." -msgstr "Μπορείτε επίσης να εισαγάγετε αρχεία .po." - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify an action to launch !" -msgstr "Παρακαλώ επιλέξτε ενέργειας προς εκτέλεση!" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_RIGHT" -msgstr "STOCK_JUSTIFY_RIGHT" - -#. module: base -#: model:ir.model,name:base.model_res_partner_function -msgid "Function of the contact" -msgstr "Λειτουργία επαφής" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_upgrade -#: model:ir.ui.menu,name:base.menu_module_tree_upgrade -msgid "Modules to be installed, upgraded or removed" -msgstr "Αρθρώματα για εγκατάσταση, αναβάθμιση, απεγκατάσταση" - -#. module: base -#: view:res.payterm:0 -msgid "Payment Term" -msgstr "Όρος Πληρωμής" - -#. module: base -#: field:ir.report.custom,footer:0 -msgid "Report Footer" -msgstr "Report Footer" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Right-to-Left" -msgstr "Right-to-Left" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Please check that all your lines have %d columns." -msgstr "Παρακαλώ ελέγξτε ότι όλες οι γραμμές σας έχουν %d στήλες." - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import language" -msgstr "Εισαγωγή γλώσσας" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 -#: model:ir.ui.menu,name:base.menu_ir_cron_act -msgid "Scheduled Actions" -msgstr "Προγραμματισμένες ενέργειες" #. module: base #: field:res.partner,title:0 field:res.partner.address,title:0 @@ -2062,20 +122,49 @@ msgid "Title" msgstr "Τίτλος" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SAVE" -msgstr "STOCK_SAVE" +#: wizard_field:res.partner.sms_send,init,text:0 +msgid "SMS Message" +msgstr "Μήνυμα SMS " + +#. module: base +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" + +#. module: base +#: model:ir.model,name:base.model_ir_model_grid +msgid "Objects Security Grid" +msgstr "Διάγραμμα Ασφαλείας Αντικειμένων" + +#. module: base +#: model:res.country,name:base.cm +msgid "Cameroon" +msgstr "Cameroon" + +#. module: base +#: model:res.country,name:base.bf +msgid "Burkina Faso" +msgstr "Burkina Faso" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "terp-account" -msgstr "terp-account" +msgid "STOCK_SORT_ASCENDING" +msgstr "STOCK_SORT_ASCENDING" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Recursion error in modules dependencies !" -msgstr "Σφάλμα στις εξαρτήσεις Αρθρωμάτων!" +#: view:ir.model:0 view:res.groups:0 +msgid "Access Rules" +msgstr "Κανονισμοί Προσβάσεων" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONNECT" +msgstr "STOCK_CONNECT" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" +msgstr "STOCK_MEDIA_FORWARD" #. module: base #: view:ir.model:0 @@ -2083,13 +172,39 @@ msgid "Create a Menu" msgstr "Δημμιουργία Μενού" #. module: base -#: help:res.partner,vat:0 -msgid "" -"Value Added Tax number. Check the box if the partner is subjected to the " -"VAT. Used by the VAT legal statement." -msgstr "" -"Αριθμός ΦΠΑ. Επιλέξτε αυτό αν ο συνεργάτης πληρώνει ΦΠΑ. Χρησιμοποιείται " -"στην περιοδική δήλωση ΦΠΑ." +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "Κωδικός (πχ: en__US)" + +#. module: base +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "Ανήκει" + +#. module: base +#: model:res.country,name:base.tg +msgid "Togo" +msgstr "Togo" + +#. module: base +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 +#: field:ir.model,model:0 field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +msgid "Object" +msgstr "Αντικείμενο" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " +msgstr "Για επίσημες μεταφράσεις μπορείτε να επισκεφθείτε το σύνδεσμο: " #. module: base #: model:ir.actions.act_window,name:base.action_module_category_tree @@ -2097,26 +212,90 @@ msgstr "" msgid "Categories of Modules" msgstr "Κατηγορίες Αρθρωμάτων" +#. module: base +#: view:ir.actions.server:0 +msgid "Email Configuration" +msgstr "Ρυθμίσεις Email " + +#. module: base +#: model:res.country,name:base.cc +msgid "Cocos (Keeling) Islands" +msgstr "Cocos (Keeling) Islands" + #. module: base #: selection:module.lang.install,init,lang:0 -msgid "Ukrainian / украї́нська мо́ва" -msgstr "Ukrainian / украї́нська мо́ва" +msgid "Hungarian / Magyar" +msgstr "Hungarian / Magyar" + +#. module: base +#: model:ir.model,name:base.model_ir_default +msgid "ir.default" +msgstr "ir.default" #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "Not Started" +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e.[[ object.partner_id.name ]]" + +#. module: base +#: view:res.company:0 +msgid "Header/Footer" +msgstr "Header/Footer" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" +msgstr "STOCK_ZOOM_100" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" msgstr "Russian Federation" +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "Πεδία τύπου Τραπεζών" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_ERROR" +msgstr "STOCK_DIALOG_ERROR" + +#. module: base +#: field:ir.actions.server,wkf_model_id:0 +msgid "Workflow On" +msgstr "Ροή Εργασίας σε λειτουργία" + #. module: base #: model:res.country,name:base.dm msgid "Dominica" msgstr "Dominica" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch / Nederlands" +msgstr "Dutch / Nederlands" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "Εξαγωγή Αρχείου Ματάφρασης" + +#. module: base +#: field:ir.sequence,padding:0 +msgid "Number padding" +msgstr "Συμπλήρωση αριθμών" + #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form #: model:ir.ui.menu,name:base.menu_action_res_roles_form view:res.roles:0 @@ -2131,14 +310,100 @@ msgid "Countries" msgstr "Χώρες" #. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Καταχώρηση κανόνων" +#: field:ir.rule,operator:0 +msgid "Operator" +msgstr "Συνάρτηση" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "ΦΠΑ" +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Get Max" + +#. module: base +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "Δημιουργημένες Προβολές" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "Κανονικό" + +#. module: base +#: model:res.country,name:base.pm +msgid "Saint Pierre and Miquelon" +msgstr "Saint Pierre and Miquelon" + +#. module: base +#: model:res.country,name:base.to +msgid "Tonga" +msgstr "Tonga" + +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "User Ref." + +#. module: base +#: model:res.country,name:base.vu +msgid "Vanuatu" +msgstr "Vanuatu" + +#. module: base +#: wizard_view:server.action.create,step_1:0 +#: wizard_field:server.action.create,step_1,report:0 +msgid "Select Report" +msgstr "Επιλογή Αναφοράς" + +#. module: base +#: view:ir.actions.wizard:0 field:wizard.ir.model.menu.create.line,wizard_id:0 +msgid "Wizard" +msgstr "Αυτόματος Οδηγός" + +#. module: base +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "Εκροές" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "STOCK_MEDIA_REWIND" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "Ετησίως" + +#. module: base +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Sudan" + +#. module: base +#: rml:ir.module.reference:0 +msgid "1cm 28cm 20cm 28cm" +msgstr "1cm 28cm 20cm 28cm" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "Field Mapping" + +#. module: base +#: model:res.country,name:base.mo +msgid "Macau" +msgstr "Macau" + +#. module: base +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" +msgstr "Loop Expression" #. module: base #: view:res.lang:0 @@ -2146,9 +411,27 @@ msgid "12. %w ==> 5 ( Friday is the 6th day)" msgstr "12. %w ==> 5 (Η Παρασκευή είναι η 6η ημέρα)" #. module: base -#: constraint:res.partner.category:0 -msgid "Error ! You can not create recursive categories." -msgstr "Σφάλμα! Υπάρχει κατηγορία με την ίδια περιγραφή." +#: field:ir.rule.group,global:0 +msgid "Global" +msgstr "Παγκόσμια" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "Πωλητής Λιανικής" + +#. module: base +#: field:ir.model.config,password:0 field:maintenance.contract,password:0 +#: field:maintenance.contract.wizard,password:0 +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:res.users,password:0 +msgid "Password" +msgstr "Συνθηματικό" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" +msgstr "STOCK_CLEAR" #. module: base #: view:res.lang:0 @@ -2169,15 +452,75 @@ msgstr "" "- The last parenthesis must match the extension of the module." #. module: base -#: view:res.lang:0 -msgid "%M - Minute as a decimal number [00,59]." -msgstr "%M - Τα λεπτά της ώρας σε δεκαδική μορφή [00, 59]." +#: field:ir.default,field_name:0 +msgid "Object Field" +msgstr "Πεδίο Αντικειμένου" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_simple_view +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 "" +"Επιλέξτε ανάμεσα στην Απλοποιημένη Εγκατάσταση ή την Εκτεταμένη.\n" +"Αν δοκιμάζετε το πρόγραμμα ή το χρησιμοποιείτε για πρώτη φορά, σας " +"προτείνουμε\n" +"την απλοποιημένη μορφή, η οποία έχει λιγότερες επιλογές αλλά είναι " +"ευκολότερη στην\n" +"κατανόηση. Μπορείτε να μετατρέψετε την εγκατάσταση αργότερα." + +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "Start On" + +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" +msgstr "Ικανοποιητικό" + +#. module: base +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "Αν δεν επιβάλλετε τομέα θα χρησιμοποιηθεί η απλή εγκατάσταση τομέα" + +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "South Korea" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Ροές" #. module: base #: model:res.country,name:base.tj msgid "Tajikistan" msgstr "Tajikistan" +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "ir.ui.view.custom" + +#. module: base +#: model:res.country,name:base.tr +msgid "Turkey" +msgstr "Turkey" + +#. module: base +#: model:res.country,name:base.fk +msgid "Falkland Islands" +msgstr "Falkland Islands" + #. module: base #: model:ir.actions.act_window,name:base.act_values_form_action #: model:ir.ui.menu,name:base.menu_values_form_action @@ -2189,16 +532,95 @@ msgstr "Connect Actions To Client Events" msgid "GPL-2 or later version" msgstr "GPL-2 ή μεταγενέστερη έκδοση" +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "Όλα Stop" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NEW" +msgstr "STOCK_NEW" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_custom +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.custom" +msgstr "ir.actions.report.custom" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "Xor" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CANCEL" +msgstr "STOCK_CANCEL" + #. module: base #: selection:res.partner.event,type:0 msgid "Prospect Contact" msgstr "Επαφή Πιθανού Συνεργάτη" #. module: base -#: model:ir.model,name:base.model_ir_actions_wizard -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.wizard" -msgstr "ir.actions.wizard" +#: selection:ir.report.custom.fields,operation:0 +msgid "None" +msgstr "Κανένα" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "Ευκαιρία Πώλησης" + +#. module: base +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "Ταξινόμηση ανά" + +#. module: base +#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 +#: field:ir.report.custom,type:0 +msgid "Report Type" +msgstr "Τύπος Αναφοράς" + +#. module: base +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "Αριθμός Προασύξησης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_tree +#: model:ir.ui.menu,name:base.menu_action_res_company_tree +msgid "Company's Structure" +msgstr "Δομή Εταιρίας" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "Άλλα ιδιοκτησιακά" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "Swaziland" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "STOCK_MEDIA_PREVIOUS" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" +msgstr "Όλοι οι όροι" #. module: base #: model:res.country,name:base.nr @@ -2206,9 +628,20 @@ msgid "Nauru" msgstr "Nauru" #. module: base -#: model:ir.model,name:base.model_ir_property -msgid "ir.property" -msgstr "ir.property" +#: model:res.country,name:base.no +msgid "Norway" +msgstr "Norway" + +#. module: base +#: view:res.lang:0 +msgid "4. %b, %B ==> Dec, December" +msgstr "4. %b, %B ==> Δεκ, Δεκέμβριος" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Load an Official Translation" +msgstr "Φόρτωση Επίσημης Μετάφρασης" #. module: base #: selection:ir.actions.act_window,view_type:0 @@ -2219,31 +652,118 @@ msgid "Form" msgstr "Φόρμα" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Can not define a column %s. Reserved keyword !" -msgstr "Η στήλη %s δεν μπορεί να οριστει. Η λέξη κλειδί χρησιμοποιείται ήδη!" +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" +msgstr "Προορσιμός Δράσης" #. module: base #: model:res.country,name:base.me msgid "Montenegro" msgstr "Montenegro" +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" +msgstr "ir.actions.act_window" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: view:ir.cron:0 -msgid "Technical Data" -msgstr "Τεχνικά Δεδομένα" +#: help:ir.actions.server,loop_action:0 +msgid "" +"Select the action that will be executed. Loop action will not be avaliable " +"inside loop." +msgstr "" +"Select the action that will be executed. Loop action will not be avaliable " +"inside loop." + +#. module: base +#: selection:res.request,state:0 +msgid "waiting" +msgstr "σε αναμονή" + +#. module: base +#: model:res.country,name:base.va +msgid "Holy See (Vatican City State)" +msgstr "Holy See (Vatican City State)" + +#. module: base +#: view:ir.values:0 +msgid "Connect Events to Actions" +msgstr "Σύνδεση Συνβάντων με Ενέργειες" + +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "Τύπος Συμβάντος" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" +msgstr "Έγκυρο" + +#. module: base +#: field:ir.report.custom.fields,fc0_op:0 +#: field:ir.report.custom.fields,fc1_op:0 +#: field:ir.report.custom.fields,fc2_op:0 +#: field:ir.report.custom.fields,fc3_op:0 +msgid "Relation" +msgstr "Σχέση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_TOP" +msgstr "STOCK_GOTO_TOP" + +#. module: base +#: field:ir.values,meta_unpickle:0 +msgid "Metadata" +msgstr "Metadata" + +#. module: base +#: view:res.lang:0 +msgid "%m - Month as a decimal number [01,12]." +msgstr "%m - Ο μήνας σε δεκαδική μορφή [01,12]" + +#. module: base +#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 field:res.bank,state:0 +#: view:res.country.state:0 field:res.partner.bank,state_id:0 +#: field:res.request,state:0 field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +msgid "State" +msgstr "Κατάσταση" #. module: base #: view:res.partner:0 field:res.partner,category_id:0 msgid "Categories" msgstr "Κατηγορίες" +#. module: base +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "Report Ref" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "terp-hr" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "Μέγιστο Μέγεθος" + +#. module: base +#: model:res.country,name:base.id +msgid "Indonesia" +msgstr "Indonesia" + #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 @@ -2255,11 +775,26 @@ msgstr "Προς αναβάθμιση" msgid "Libya" msgstr "Libya (Λιβύη)" +#. module: base +#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "Ανήκει στην Κατηγορία" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-purchase" msgstr "terp-purchase" +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "Όνομα Επαφής" + +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" +msgstr "Finland" + #. module: base #: wizard_field:module.module.update,init,repositories:0 msgid "Repositories" @@ -2275,25 +810,111 @@ msgstr "Central African Republic" msgid "Liechtenstein" msgstr "Liechtenstein" +#. module: base +#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "Επαφή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND_AND_REPLACE" +msgstr "STOCK_FIND_AND_REPLACE" + #. module: base #: model:res.partner.title,name:base.res_partner_title_ltd msgid "Ltd" msgstr "ΕΠΕ" +#. module: base +#: selection:res.request,state:0 +msgid "active" +msgstr "ενεργό" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +msgid "Wizard Name" +msgstr "Όνομα Αυτόματου Οδηγού" + +#. module: base +#: view:res.lang:0 +msgid "%y - Year without century as a decimal number [00,99]." +msgstr "%y - Χρονολογία χωρίς τον αιώνα, σε δεκαδική μορφή [00, 99]." + +#. module: base +#: model:res.country,name:base.as +msgid "American Samoa" +msgstr "American Samoa" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Custom Field" +msgstr "Ειδικό Πεδίο" + +#. module: base +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" +msgstr "Μοντέλο" + #. module: base #: field:res.partner,ean13:0 msgid "EAN13" msgstr "EAN13" +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree +msgid "Repository list" +msgstr "Λίστα Τοποθεσιών Αρθρωμάτων" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +msgid "wizard.ir.model.menu.create.line" +msgstr "wizard.ir.model.menu.create.line" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" msgstr "Portugal" #. module: base -#: selection:maintenance.contract,state:0 -msgid "Unvalid" -msgstr "Άκυρο" +#: view:ir.module.module:0 +msgid "Cancel Uninstall" +msgstr "Ακύρωση Απεγκατάστασης" + +#. module: base +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "Ισοτιμία Νομίσματος" + +#. module: base +#: view:workflow:0 field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +msgid "Workflow" +msgstr "Ροή έργασίας" + +#. module: base +#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 +#: field:ir.actions.wizard,type:0 +msgid "Action Type" +msgstr "Τύπος Ενέργειας" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "Προεπιλεγμένο όριο για την προβολή λίστας" + +#. module: base +#: model:res.country,name:base.vn +msgid "Vietnam" +msgstr "Vietnam" + +#. module: base +#: model:res.country,name:base.sk +msgid "Slovak Republic" +msgstr "Slovak Republic" #. module: base #: field:ir.module.module,certificate:0 @@ -2305,11 +926,85 @@ msgstr "Πιστοποιητικό Ποιότητας" msgid "6. %d, %m ==> 05, 12" msgstr "6. %d, %m ==> 05, 12" +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "Αντικείμενο - Πηγή" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "ir.model.data" + +#. module: base +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "Αντικείμενο Εναύσματος" + +#. module: base +#: help:ir.actions.report.xml,report_rml:0 +msgid "" +"The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "" +"The .rml path of the file or NULL if the content is in report_rml_content" + +#. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: view:ir.actions.todo:0 model:ir.ui.menu,name:base.menu_ir_actions_todo_form +msgid "Config Wizard Steps" +msgstr "Ρύθμιση Βημάτων Αυτόματου Οδηγού" + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "Κατηγορία" + +#. module: base +#: field:ir.model.access,group_id:0 field:ir.rule,rule_group:0 +msgid "Group" +msgstr "Ομάδα" + +#. module: base +#: model:res.country,name:base.sm +msgid "San Marino" +msgstr "San Marino" + #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." msgstr "Κάντε κλικ εδώ αν ο Συνεργάτης είναι Πελάτης." +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "STOCK_FLOPPY" + +#. module: base +#: model:res.country,name:base.kw +msgid "Kuwait" +msgstr "Kuwait" + +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Υπογραφή" + +#. module: base +#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "SMS" + +#. module: base +#: model:res.country,name:base.cr +msgid "Costa Rica" +msgstr "Costa Rica" + +#. module: base +#: field:ir.exports.line,name:0 field:ir.translation,name:0 +#: field:res.partner.bank.type.field,name:0 +msgid "Field Name" +msgstr "Όνομα Πεδίου" + #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window #: model:ir.model,name:base.model_res_lang @@ -2318,9 +1013,42 @@ msgid "Languages" msgstr "Γλώσσες" #. module: base -#: model:res.country,name:base.pw -msgid "Palau" -msgstr "Palau" +#: field:workflow.workitem,inst_id:0 +msgid "Instance" +msgstr "Instance" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +msgid "" +"This is the filename of the attachment used to store the printing result. " +"Keep empty to not save the printed reports. You can use a python expression " +"with the object and time variables." +msgstr "" +"Το όνομα αρχείου που θα αποθηκευθεί το αποτέλεσμα της εκτύπωσης. Αφήστε το " +"κενό αν δεν επιθυμείτε να αποθηκεύετε τις εκτυπώσεις αναφορών. Μπορείτε να " +"χρησιμοποιήσετε μια έκφραση python με τις παραμέτρους object και time." + +#. module: base +#: constraint:ir.model:0 +msgid "" +"The Object name must start with x_ and not contain any special character !" +msgstr "" +"Το όνομα πρέπει να ξεκινάει με x_ και να μην περιέχει ειδικούς χαρακτήρες!" + +#. module: base +#: model:res.country,name:base.ng +msgid "Nigeria" +msgstr "Nigeria" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "txt" +msgstr "" + +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Table Ref." #. module: base #: model:res.country,name:base.ec @@ -2328,21 +1056,20 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "" -"Save this document to a .CSV file and open it with your favourite " -"spreadsheet software. The file encoding is UTF-8. You have to translate the " -"latest column before reimporting it." -msgstr "" -"Αποθηκεύστε αυτό το έγγραφο σε αρχείο .CSV και επεξεργαστείτε το με το " -"υπολογιστικό πρόγραμμα της επιλογής σας. Η κωδικοποίηση του αρχείου είναι " -"UTF-8. Πρέπει να μετεφράσετε την τελευταία στήλη πριν το επανεισάγετε." +#: view:ir.module.module:0 +msgid "Schedule Upgrade" +msgstr "Προγραμματισμός Αναβάθμισης" #. module: base -#: model:res.country,name:base.au -msgid "Australia" -msgstr "Australia" +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 +msgid "Currencies" +msgstr "Νομίσματα" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Configure" +msgstr "Ρυθμίσεις" #. module: base #: help:res.partner,lang:0 @@ -2354,15 +1081,70 @@ msgstr "" "αυτό τον Συνεργάτη θα εκτυπώνονται σε αυτή τη γλώσσα. Αν όχι, θα " "εκτυπώνονται στα αγγλικά." +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "STOCK_UNDERLINE" + #. module: base #: rml:ir.module.reference:0 msgid "Menu :" msgstr "Menu :" #. module: base -#: selection:ir.model.fields,state:0 -msgid "Base Field" -msgstr "Base Field" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "Επόμενος Αυτόματος Οδηγός" + +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "Τιμές για τον Τύπο Συμβάντος " + +#. module: base +#: model:res.country,name:base.zr +msgid "Zaire" +msgstr "Zaire" + +#. module: base +#: field:res.lang,date_format:0 +msgid "Date Format" +msgstr "Μορφή Ημερ/νίας" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "Πάντα Αναζητήσιμο" + +#. module: base +#: field:res.bank,email:0 field:res.partner.address,email:0 +msgid "E-Mail" +msgstr "E-Mail" + +#. module: base +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "Ημέρα: %(day)s" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export Name" +msgstr "Όνομα Εξαγωγής" + +#. module: base +#: model:res.country,name:base.an +msgid "Netherlands Antilles" +msgstr "Netherlands Antilles (Ολλανδικές Αντίλλες)" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "Λεπτά: %(min)s" + +#. module: base +#: model:res.country,name:base.hk +msgid "Hong Kong" +msgstr "Hong Kong" #. module: base #: wizard_view:module.module.update,update:0 @@ -2370,16 +1152,35 @@ msgid "New modules" msgstr "Νέα Αρθρώματα" #. module: base -#: field:ir.actions.report.xml,report_sxw_content:0 -#: field:ir.actions.report.xml,report_sxw_content_data:0 -msgid "SXW content" -msgstr "SXW content" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "Ώρα 00->12: %(h12)s" + +#. module: base +#: help:ir.actions.server,name:0 +msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" +msgstr "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" + +#. module: base +#: field:res.currency,rate:0 +msgid "Current Rate" +msgstr "Τρέχουσα Ισοτιμία" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" msgstr "Ενέργεια προς Εκκίνηση" +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "Χρονοδιάγραμμα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" +msgstr "STOCK_BOLD" + #. module: base #: field:ir.report.custom.fields,fc0_operande:0 #: field:ir.report.custom.fields,fc1_operande:0 @@ -2394,6 +1195,16 @@ msgstr "Constraint" msgid "Default" msgstr "Προεπιλογή" +#. module: base +#: model:res.country,name:base.dk +msgid "Denmark" +msgstr "Denmark" + +#. module: base +#: model:res.country,name:base.ph +msgid "Philippines" +msgstr "Philippines" + #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -2401,15 +1212,66 @@ msgid "Required" msgstr "Απαραίτητα" #. module: base -#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 -#: field:res.partner.title,domain:0 -msgid "Domain" -msgstr "Τομέας" +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" +msgstr "ir.sequence" #. module: base -#: field:res.request.history,name:0 -msgid "Summary" -msgstr "Περίληψη" +#: field:res.country,code:0 +msgid "Country Code" +msgstr "Κωδικός Χώρας" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Greek / Ελληνικά" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Tree" +msgstr "Δέντρο" + +#. module: base +#: model:res.country,name:base.ma +msgid "Morocco" +msgstr "Morocco" + +#. module: base +#: view:res.request.history:0 +msgid "Request History" +msgstr "Αίτηση Ιστορικού" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "workflow.instance" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bosnian / bosanski jezik" +msgstr "Bosnian / bosanski jezik" + +#. module: base +#: view:res.lang:0 +msgid "10. %S ==> 20" +msgstr "10. %S ==> 20" + +#. module: base +#: help:ir.actions.report.xml,attachment_use:0 +msgid "" +"If you check this, then the second time the user prints with same attachment " +"name, it returns the previous report." +msgstr "" +"Αν επιλέξετε αυτό, τη δεύτερη φορά που ο χρήστης θα εκτυπώσει το ίδιο όνομα " +"συνημμένου, θα εκτυπωθεί η προηγούμενη αναφορά." + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Partial" +msgstr "Μερικό" #. module: base #: help:ir.actions.server,subject:0 @@ -2421,9 +1283,55 @@ msgstr "" "[[ object.partner_id.name ]]`" #. module: base -#: view:res.company:0 -msgid "Header/Footer" -msgstr "Header/Footer" +#: view:res.lang:0 +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "2. %a ,%A ==> Παρ, Παρασκευή" + +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +msgid "Trigger On" +msgstr "Έναυσμα σε λειτουργία" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "Κυρία" + +#. module: base +#: model:ir.model,name:base.model_res_request_link +msgid "res.request.link" +msgstr "res.request.link" + +#. module: base +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" +msgstr "Προϋπολογισμένο Κόστος" + +#. module: base +#: model:res.country,name:base.ee +msgid "Estonia" +msgstr "Estonia" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 +msgid "Partner Events" +msgstr "Συμβάντα Συνεργάτη" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +msgstr "Type fields" + +#. module: base +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "Κείμενο" + +#. module: base +#: view:res.lang:0 +msgid "%a - Abbreviated weekday name." +msgstr "%a - Συντομο όνομα ημέρας" #. module: base #: model:res.country,name:base.lb @@ -2431,23 +1339,34 @@ msgid "Lebanon" msgstr "Lebanon" #. module: base -#: wizard_field:module.lang.import,init,name:0 -msgid "Language name" -msgstr "Όνομα Γλώσσας" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" +msgstr "STOCK_CUT" #. module: base -#: model:res.country,name:base.va -msgid "Holy See (Vatican City State)" -msgstr "Holy See (Vatican City State)" +#: rml:ir.module.reference:0 +msgid "Introspection report on objects" +msgstr "Introspection report on objects" #. module: base -#: help:ir.actions.server,condition:0 -msgid "" -"Condition that is to be tested before action is executed, e.g. object." -"list_price > object.cost_price" -msgstr "" -"Condition that is to be tested before action is executed, e.g. object." -"list_price > object.cost_price" +#: model:res.country,name:base.pf +msgid "Polynesia (French)" +msgstr "Polynesia (French)" + +#. module: base +#: field:res.country,name:0 +msgid "Country Name" +msgstr "Όνομα Χώρας" + +#. module: base +#: field:res.company,name:0 +msgid "Company Name" +msgstr "Όνομα Εταιρείας" + +#. module: base +#: model:res.country,name:base.co +msgid "Colombia" +msgstr "Colombia" #. module: base #: wizard_field:base.module.import,init,module_file:0 @@ -2455,20 +1374,60 @@ msgid "Module .ZIP file" msgstr "Αρχείο Αρθρώματος.ZIP" #. module: base -#: model:res.partner.category,name:base.res_partner_category_16 -msgid "Telecom sector" -msgstr "Τηλεπικοινωνίες" +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +#: wizard_button:res.partner.sms_send,init,send:0 +msgid "Send SMS" +msgstr "Αποστολή SMS" #. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Object" -msgstr "Αντικείμενο Εναύσματος" +#: field:ir.actions.report.custom,report_id:0 +msgid "Report Ref." +msgstr "Report Ref." + +#. module: base +#: field:res.roles,child_id:0 +msgid "Children" +msgstr "Υπό Κατηγορίες" + +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Report Fields" + +#. module: base +#: help:res.country,code:0 +msgid "" +"The ISO country code in two chars.\n" +"You can use this field for quick search." +msgstr "" +"Κωδικός Χώρας (Διψήφιος ISO).\n" +"Χρησιμοποιήστε το για γρήγορη αναζήτηση." + +#. module: base +#: model:res.country,name:base.pw +msgid "Palau" +msgstr "Palau" #. module: base #: selection:ir.report.custom,state:0 msgid "Subscribed" msgstr "Καταχωρημένο" +#. module: base +#: model:res.country,name:base.ke +msgid "Kenya" +msgstr "Kenya" + +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "Select the object on which the action will work (read, write, create)." +msgstr "Select the object on which the action will work (read, write, create)." + +#. module: base +#: model:res.country,name:base.np +msgid "Nepal" +msgstr "Nepal" + #. module: base #: wizard_view:module.lang.install,init:0 wizard_view:module.upgrade,next:0 msgid "System Upgrade" @@ -2479,42 +1438,198 @@ msgstr "Αναβάθμιση Συστήματος" msgid "Incoming Transitions" msgstr "Εισροές" +#. module: base +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" +msgstr "iCal id" + +#. module: base +#: wizard_field:module.lang.import,init,name:0 +msgid "Language name" +msgstr "Όνομα Γλώσσας" + +#. module: base +#: field:res.partner,parent_id:0 +msgid "Main Company" +msgstr "Κύρια Εταρεία" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Extended Interface" +msgstr "Εκτεταμένη Εγκατάσταση" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "Όνομα Κατάστασης" + #. module: base #: model:res.country,name:base.sr msgid "Suriname" msgstr "Suriname" #. module: base -#: field:ir.values,key2:0 view:res.partner.event.type:0 -#: field:res.partner.event.type,name:0 -msgid "Event Type" -msgstr "Τύπος Συμβάντος" +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level Objects" +msgstr "Low Level Objects" + +#. module: base +#: field:ir.actions.report.custom,multi:0 field:ir.actions.report.xml,multi:0 +msgid "On multiple doc." +msgstr "Σε πολλαπλά έγγραφα." + +#. module: base +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "res.groups" + +#. module: base +#: help:ir.actions.server,action_id:0 +msgid "Select the Action Window, Report, Wizard to be executed." +msgstr "Επιλογή Παραθύρου Κίνησης, Αναφοράς, Αυτόματου Οδηγού προς εκτέλεση." + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +msgid "View Type" +msgstr "Τύπος Προβολής" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "Απλοποιημένη Εγκατάσταση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "STOCK_ITALIC" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "Η Εξαγωγή Επετεύχθει" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field +msgid "acc_number" +msgstr "acc_number" + +#. module: base +#: view:ir.model:0 +msgid "Model Description" +msgstr "Περιγραφή Μοντέλου" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Unvalid" +msgstr "Άκυρο" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "Bulk SMS send" +msgstr "Bulk SMS send" #. module: base #: view:res.partner.bank:0 model:res.partner.bank.type,name:base.bank_normal msgid "Bank account" msgstr "Τραπεζικός λογαριασμός" +#. module: base +#: field:res.partner.canal,name:0 +msgid "Channel Name" +msgstr "Όνομα Διαύλου" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "ir.values" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Pie Chart" +msgstr "Κυκλικό Διάγραμμα " + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" + +#. module: base +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"Το είδος ενέργειας ή κουμπιού στον client το οποίο θα σημάνει την έναρξη της " +"ενέργειας." + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "Δευτερόλεπτο: %(sec)s" + +#. module: base +#: model:res.country,name:base.jo +msgid "Jordan" +msgstr "Jordan (Ιορδανία)" + +#. module: base +#: view:ir.rule.group:0 +msgid "Multiple rules on same objects are joined using operator OR" +msgstr "" +"Πολλαπλοί κανόνες στα ίδια αντικείμενα συνδέονται μέσω της λογικής " +"συνάρτησης 'Ή'" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" msgstr "Τύπος Ιεράρχησης" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"You try to upgrade a module that depends on the module: %s.\n" -"But this module is not available in your system." -msgstr "" -"Προσπαθείτε να αναβαθμίσετε ένα Άρθρωμα το οποίο εξαρτάται από το Άρθρωμα: %" -"s.\n" -"που όμως δεν είναι εγκατεστημένο." +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "wizard.ir.model.menu.create" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Διεύθυνση Συνεργάτη" +#: model:res.country,name:base.md +msgid "Moldavia" +msgstr "Moldavia" + +#. module: base +#: help:ir.model.fields,on_delete:0 +msgid "On delete property for many2one fields" +msgstr "On delete property for many2one fields" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +msgid "Update Modules List" +msgstr "Ενημέρωση Λίστας Αρθρωμάτων" + +#. module: base +#: model:res.country,name:base.er +msgid "Eritrea" +msgstr "Eritrea" + +#. module: base +#: model:res.country,name:base.cd +msgid "Congo, The Democratic Republic of the" +msgstr "Congo, The Democratic Republic of the" + +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "Ρυθμίσεις απλής προβολής" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bulgarian / български" +msgstr "Bulgarian / български" #. module: base #: field:ir.module.module,license:0 @@ -2522,10 +1637,9 @@ msgid "License" msgstr "Άδεια Χρήσης" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Invalid operation" -msgstr "Άκυρη λειτουργία" +#: model:res.country,name:base.re +msgid "Reunion (French)" +msgstr "Reunion (French)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2533,27 +1647,91 @@ msgid "STOCK_SAVE_AS" msgstr "STOCK_SAVE_AS" #. module: base -#: field:ir.actions.server,srcmodel_id:0 -msgid "Model" -msgstr "Μοντέλο" +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_custom_action +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" +msgstr "Ενέργειες" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"You try to install a module that depends on the module: %s.\n" -"But this module is not available in your system." -msgstr "" -"Προσπαθείτε να εγκαταστήσετε ένα Άρθρωμα το οποίο εξαρτάται από το Άρθρωμα: %" -"s.\n" -"που όμως δεν είναι εγκατεστημένο." +#: view:res.request:0 field:res.request,body:0 +#: field:res.request.history,req_id:0 +msgid "Request" +msgstr "Αίτηση" #. module: base -#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 -#: selection:ir.translation,type:0 -#: field:wizard.ir.model.menu.create.line,view_id:0 -msgid "View" -msgstr "Προβολή" +#: model:ir.model,name:base.model_ir_report_custom +msgid "ir.report.custom" +msgstr "ir.report.custom" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" +msgstr "Συνέχεια" + +#. module: base +#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 +msgid "Object ID" +msgstr "ID Αντικειμένου" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +msgid "Default Properties" +msgstr "Προεπιλεγμένες Ιδιότητες" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Slovenian / slovenščina" +msgstr "Slovenian / slovenščina" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "Ιστόγραμμα" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "pdf" + +#. module: base +#: field:ir.actions.server,message:0 +#: wizard_field:res.partner.spam_send,init,text:0 +msgid "Message" +msgstr "Μήνυμα" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +msgstr "Το αρχείο γλώσσας φορτώθηκε" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "Προσφορά Αγοράς" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_info:0 +msgid "Modules to update" +msgstr "Αρθρώματα για ενημέρωση" + +#. module: base +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Ανανέωση Ημερ/νίας" + +#. module: base +#: model:ir.actions.act_window,name:base.action2 +msgid "Company Architecture" +msgstr "Οργανόγραμμα Εταιρείας" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Δίδα" #. module: base #: view:ir.actions.act_window:0 @@ -2561,9 +1739,94 @@ msgid "Open a Window" msgstr "Νεο Παράθυρο" #. module: base -#: model:res.country,name:base.gq -msgid "Equatorial Guinea" -msgstr "Equatorial Guinea" +#: model:res.country,name:base.bv +msgid "Bouvet Island" +msgstr "Bouvet Island" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDEX" +msgstr "STOCK_INDEX" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Σε μορφή πίνακα" + +#. module: base +#: field:ir.report.custom,print_orientation:0 +msgid "Print orientation" +msgstr "Κατεύθυνση Εκτύπωσης" + +#. module: base +#: model:res.country,name:base.rs +msgid "Serbia" +msgstr "Serbia" + +#. module: base +#: view:res.payterm:0 +msgid "Payment Term" +msgstr "Όρος Πληρωμής" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "STOCK_GOTO_BOTTOM" + +#. module: base +#: help:ir.actions.server,sequence:0 +msgid "" +"Important when you deal with multiple actions, the execution order will be " +"decided based on this, low number is higher priority." +msgstr "" +"Σημαντικό όταν έχουμε πολλές ενέργειες. Η εκτέλεσή τους θα καθορίζεται από " +"αυτό, το μικρότερο νούμερο σημαίνει μεγαλύτερη προτεραιότητα." + +#. module: base +#: field:ir.actions.report.xml,header:0 +msgid "Add RML header" +msgstr "Add RML header" + +#. module: base +#: model:res.country,name:base.cx +msgid "Christmas Island" +msgstr "Christmas Island" + +#. module: base +#: model:res.country,name:base.kh +msgid "Cambodia, Kingdom of" +msgstr "Cambodia, Kingdom of (Καμπότζη)" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "Τοπίο" + +#. module: base +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "Αρχείο" + +#. module: base +#: model:res.country,name:base.gr +msgid "Greece" +msgstr "Greece / Ελλάδα" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "User Interface" +msgstr "Χρηστική Διεπιφάνεια" + +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "Προσθήκη Χρήστη" + +#. module: base +#: field:res.request,trigger_date:0 +msgid "Trigger Date" +msgstr "Ημερ/νία Εναύσματος" #. module: base #: wizard_view:base.module.import,init:0 @@ -2571,47 +1834,154 @@ msgid "Module Import" msgstr "Εισαγωγή Αρθρώματος" #. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the field '%s' !" -msgstr "Δεν μπορείτε να διαγράψετε το πεδίο '%s' !" +#: selection:module.lang.install,init,lang:0 +msgid "Croatian / hrvatski jezik" +msgstr "Croatian / hrvatski jezik" #. module: base -#: field:res.bank,zip:0 field:res.partner.address,zip:0 -#: field:res.partner.bank,zip:0 -msgid "Zip" -msgstr "ΤΚ" +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "Ημερ/νία Δημιουργίας" + +#. module: base +#: model:res.country,name:base.mv +msgid "Maldives" +msgstr "Maldives" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form view:ir.sequence:0 +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +msgid "Sequences" +msgstr "Ιεραρχήσεις" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "STOCK_GO_FORWARD" + +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" +"Οι ρόλοι χρησιμοποιούνται σε καθορισμένες ενέργειες που προκύπτουν από τις " +"ροές εργασίας." #. module: base #: field:ir.module.module,author:0 msgid "Author" msgstr "Δημιουργός" +#. module: base +#: help:ir.actions.server,code:0 +msgid "Python code to be executed" +msgstr "Python code to be executed" + +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +msgid "XSL path" +msgstr "XSL path" + +#. module: base +#: view:res.lang:0 +msgid "%b - Abbreviated month name." +msgstr "%b - Σύντομο όνομα μήνα." + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDELETE" msgstr "STOCK_UNDELETE" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "" +"To improve some terms of the official translations of OpenERP, you should " +"modify the terms directly on the launchpad interface. If you made lots of " +"translations for your own module, you can also publish all your translation " +"at once." +msgstr "" +"Για να βελτιώσετε κάποιους όρους της επίσημης μετάφρασης του OpenERP, θα " +"πρέπει να τους τροποποιείτε απ' ευθείας στο launchpad interface. Αν κάνατε " +"πολλές μεταφράσεις στο άρθρωμά σας μπορείτε να τις δημοσιεύσετε μονομιάς." + #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Ορθή εμφάνιση ημερ/νίας και ώρας" +#. module: base +#: field:ir.actions.report.xml,attachment_use:0 +msgid "Reload from Attachment" +msgstr "Επαναφόρτωση από συνημμένο" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner Category" +msgstr "Κατηγορία Συνεργάτη" + +#. module: base +#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +msgid "Trigger" +msgstr "Έναυσμα" + +#. module: base +#: help:ir.actions.server,write_id:0 +msgid "" +"Provide the field name that the record id refers to for the write operation. " +"If it is empty it will refer to the active id of the object." +msgstr "" +"Provide the field name that the record id refers to for the write operation. " +"If it is empty it will refer to the active id of the object." + +#. module: base +#: field:res.partner,supplier:0 +msgid "Supplier" +msgstr "Προμηθευτής" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" msgstr "Bolivia" #. module: base -#: model:res.country,name:base.gh -msgid "Ghana" -msgstr "Ghana" +#: view:ir.actions.server:0 +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e. [[ object.partner_id.name ]]" +msgstr "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e. [[ object.partner_id.name ]]" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Close" +msgstr "_Close" + +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "Κυρίως θέμα" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "Φράση Εναύσματος (trigger)." #. module: base #: field:res.lang,direction:0 msgid "Direction" msgstr "Κατεύθυνση" +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Full" +msgstr "Πλήρες" + #. module: base #: model:ir.model,name:base.model_wizard_module_update_translations msgid "wizard.module.update_translations" @@ -2634,20 +2004,19 @@ msgid "Rules" msgstr "Κανόνες" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "You try to remove a module that is installed or will be installed" -msgstr "" -"Προσπαθείτε να απεγκαταστήσετε ένα εγκατεστημένο άρθρωμα ή ένα που πρόκειται " -"να εγκατασταθεί" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" +msgstr "STOCK_SELECT_FONT" #. module: base -#: help:ir.values,key2:0 -msgid "" -"The kind of action or button in the client side that will trigger the action." -msgstr "" -"Το είδος ενέργειας ή κουμπιού στον client το οποίο θα σημάνει την έναρξη της " -"ενέργειας." +#: rml:ir.module.reference:0 +msgid "," +msgstr "," + +#. module: base +#: field:res.users,menu_id:0 +msgid "Menu Action" +msgstr "Λειτουργία Μενού" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2660,10 +2029,37 @@ msgid "Guatemala" msgstr "Guatemala" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_form -#: model:ir.ui.menu,name:base.menu_workflow -msgid "Workflows" -msgstr "Ροές Εργασίας" +#: field:ir.model.fields,view_load:0 +msgid "View Auto-Load" +msgstr "Αυτόματη Φόρτωση Προβολής" + +#. module: base +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "ΦΠΑ" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIRECTORY" +msgstr "STOCK_DIRECTORY" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "Αποστολή Email" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "<" + +#. module: base +#: model:res.country,name:base.es +msgid "Spain" +msgstr "Ισπανία" #. module: base #: model:ir.actions.act_window,name:base.action_config_wizard_form @@ -2671,6 +2067,86 @@ msgstr "Ροές Εργασίας" msgid "Configuration Wizard" msgstr "Αυτόματος Οδηγός Ρυθμίσεων" +#. module: base +#: view:res.request.link:0 +msgid "Request Link" +msgstr "Σύνδεσμος Αίτησης" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "ir.actions.todo" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "STOCK_ZOOM_FIT" + +#. module: base +#: field:res.partner.address,mobile:0 +msgid "Mobile" +msgstr "Κινητό" + +#. module: base +#: model:res.country,name:base.om +msgid "Oman" +msgstr "Oman" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "Html from html" +msgstr "" + +#. module: base +#: field:res.lang,time_format:0 +msgid "Time Format" +msgstr "Μορφή Ώρας" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Iteration" +msgstr "Επανάληψη" + +#. module: base +#: model:ir.ui.menu,name:base.menu_low_workflow +msgid "Workflow Items" +msgstr "Workflow Items" + +#. module: base +#: field:res.request,ref_doc2:0 +msgid "Document Ref 2" +msgstr "Document Ref 2" + +#. module: base +#: wizard_view:module.lang.install,start:0 +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 "" +"Η επιλεγμένη γλώσσα εγκαταστάθηκε επιτυχώς. Πρέπει να αλλάξετε τις " +"Προτιμήσεις του χρήστη και να ανοίξετε ένα νέο μενού για να δείτε τις " +"αλλαγές." + +#. module: base +#: field:res.request,ref_doc1:0 +msgid "Document Ref 1" +msgstr "Document Ref 1" + +#. module: base +#: model:res.country,name:base.ga +msgid "Gabon" +msgstr "Gabon" + +#. module: base +#: model:res.country,name:base.nu +msgid "Niue" +msgstr "Niue" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Work Days" +msgstr "Ημέρες Εργασίας" + #. module: base #: model:ir.model,name:base.model_res_roles msgid "res.roles" @@ -2685,3769 +2161,11 @@ msgstr "" "0=Πολύ Επείγον\n" "10=Μη επείγον" -#. module: base -#: view:res.users:0 -msgid "Skip" -msgstr "Skip" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request_link-act -#: model:ir.ui.menu,name:base.menu_res_request_link_act -msgid "Accepted Links in Requests" -msgstr "Αποδεκτοί Σύνδεσμοι στις Αιτήσεις" - -#. module: base -#: model:res.country,name:base.ls -msgid "Lesotho" -msgstr "Lesotho" - -#. module: base -#: model:ir.actions.act_window,name:base.grant_menu_access -#: model:ir.ui.menu,name:base.menu_grant_menu_access -msgid "Grant Access To Menus" -msgstr "Πρόσβαση στα Menu" - -#. module: base -#: model:res.country,name:base.ke -msgid "Kenya" -msgstr "Kenya" - -#. module: base -#: view:res.config.view:0 -msgid "" -"Choose the simplified interface if you are testing OpenERP for the first " -"time. Less used options or fields are automatically hidden. You will be able " -"to change this, later, through the Administration menu." -msgstr "" -"Επιλέξτε την απλοποιημένη εγκατάσταση αν δοκιμάζετε το OpenERP για πρώτη " -"φορά. Οι λιγότερο συνηθισμένες επιλογές και πεδία δεν θα προβάλονται. " -"Μπορείτε να το αλλάξετε αυτό αργότερα από το μενού της Διαχείρισης. " - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occurred while validating the field(s) %s: %s" -msgstr "Σφάλμα κατά την επικύρωση των πεδίων %s: %s" - -#. module: base -#: model:res.country,name:base.sm -msgid "San Marino" -msgstr "San Marino" - -#. module: base -#: model:res.country,name:base.bm -msgid "Bermuda" -msgstr "Bermuda" - -#. module: base -#: model:res.country,name:base.pe -msgid "Peru" -msgstr "Peru" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Set NULL" -msgstr "Set NULL" - -#. module: base -#: field:res.partner.event,som:0 field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Προδιάθεση" - -#. module: base -#: model:res.country,name:base.bj -msgid "Benin" -msgstr "Benin" - -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό (AND)" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONNECT" -msgstr "STOCK_CONNECT" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Not Searchable" -msgstr "Μη Αναζητήσιμο" - -#. module: base -#: field:res.partner.event.type,key:0 -msgid "Key" -msgstr "Κλειδί" - -#. module: base -#: field:ir.cron,nextcall:0 -msgid "Next Call Date" -msgstr "Επόμενη Ημερ/νία Κλήσης" - -#. module: base -#: field:res.company,rml_header:0 -msgid "RML Header" -msgstr "RML Κεφαλίδα" - -#. module: base -#: wizard_field:res.partner.sms_send,init,app_id:0 -msgid "API ID" -msgstr "API ID" - -#. module: base -#: model:res.country,name:base.mu -msgid "Mauritius" -msgstr "Mauritius" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "Scan for new modules" -msgstr "Αναζήτηση νέων Αρθρωμάτων" - -#. module: base -#: model:ir.model,name:base.model_ir_module_repository -msgid "Module Repository" -msgstr "Τοποθεσία Αρθρωμάτων" - -#. module: base -#: model:ir.ui.menu,name:base.menu_security -msgid "Security" -msgstr "Ασφάλεια" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Using a relation field which uses an unknown object" -msgstr "Using a relation field which uses an unknown object" - -#. module: base -#: model:res.country,name:base.za -msgid "South Africa" -msgstr "South Africa" - -#. module: base -#: model:ir.model,name:base.model_wizard_module_lang_export -msgid "wizard.module.lang.export" -msgstr "wizard.module.lang.export" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "Installed" -msgstr "Εγκατεστημένο" - -#. module: base -#: model:res.country,name:base.sn -msgid "Senegal" -msgstr "Senegal" - -#. module: base -#: model:res.country,name:base.hu -msgid "Hungary" -msgstr "Hungary" - -#. module: base -#: model:ir.model,name:base.model_res_groups -msgid "res.groups" -msgstr "res.groups" - -#. module: base -#: model:res.country,name:base.br -msgid "Brazil" -msgstr "Brazil" - -#. module: base -#: field:ir.sequence,number_next:0 -msgid "Next Number" -msgstr "Επόμενος Αριθμός" - -#. module: base -#: view:res.currency:0 field:res.currency,rate_ids:0 -msgid "Rates" -msgstr "Ισοτιμίες" - -#. module: base -#: model:res.country,name:base.sy -msgid "Syria" -msgstr "Syria" - -#. module: base -#: view:res.lang:0 -msgid "======================================================" -msgstr "======================================================" - -#. module: base -#: field:ir.report.custom.fields,field_child2:0 -msgid "Field child2" -msgstr "Field child2" - -#. module: base -#: field:ir.report.custom.fields,field_child3:0 -msgid "Field child3" -msgstr "Field child3" - -#. module: base -#: field:ir.report.custom.fields,field_child0:0 -msgid "Field child0" -msgstr "Field child0" - -#. module: base -#: field:ir.report.custom.fields,field_child1:0 -msgid "Field child1" -msgstr "Field child1" - -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "Field Selection" - -#. module: base -#: selection:res.request,state:0 -msgid "draft" -msgstr "πρόχειρα" - -#. module: base -#: field:res.currency.rate,name:0 field:res.partner,date:0 -#: field:res.partner.event,date:0 field:res.request,date_sent:0 -msgid "Date" -msgstr "Ημερ/νία" - -#. module: base -#: field:ir.actions.report.xml,report_sxw:0 -msgid "SXW path" -msgstr "SXW path" - -#. module: base -#: view:ir.attachment:0 -msgid "Data" -msgstr "Δεδομένα" - -#. module: base -#: view:res.users:0 -msgid "Groups are used to defined access rights on each screen and menu." -msgstr "" -"Οι Ομάδες χρησιμοποιούνται για τον ορισμό δικαιωμάτων πρόσβασης στις οθόνες " -"και τα μενού." - -#. module: base -#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 -msgid "Parent Menu" -msgstr "Επάνω Μενού" - -#. module: base -#: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form view." -msgstr "" -"Αν ρυθμιστεί 'true', η ενέργεια δε θα εμφανίζεται στη δεξιά γραμμή εργαλείων " -"της φόρμας." - -#. module: base -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Συνημμένο με" - -#. module: base -#: field:res.lang,decimal_point:0 -msgid "Decimal Separator" -msgstr "Υποδιαστολή" - -#. module: base -#: view:res.partner:0 view:res.request:0 field:res.request,history:0 -msgid "History" -msgstr "Ιστορικό" - -#. module: base -#: field:ir.attachment,create_uid:0 -msgid "Creator" -msgstr "Δημιουργός" - -#. module: base -#: model:res.country,name:base.mx -msgid "Mexico" -msgstr "Mexico" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Swedish / svenska" -msgstr "Swedish / svenska" - -#. module: base -#: field:res.company,child_ids:0 -msgid "Child Companies" -msgstr "Θυγατρικές Εταιρείες" - -#. module: base -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.users" - -#. module: base -#: model:res.country,name:base.ni -msgid "Nicaragua" -msgstr "Nicaragua" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The write method is not implemented on this object !" -msgstr "Η μέθοδος εγγραφής δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - -#. module: base -#: view:res.partner.event:0 -msgid "General Description" -msgstr "Γενική Περιγραφή" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Sale Opportunity" -msgstr "Ευκαιρία Πώλησης" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Maintenance contract added !" -msgstr "Το Συβόλαιο Συντήρησης προστέθηκε!" - -#. module: base -#: field:ir.rule,field_id:0 selection:ir.translation,type:0 -msgid "Field" -msgstr "Πεδίο" - -#. module: base -#: model:res.country,name:base.ve -msgid "Venezuela" -msgstr "Venezuela" - -#. module: base -#: view:res.lang:0 -msgid "9. %j ==> 340" -msgstr "9. %j ==> 340" - -#. module: base -#: model:res.country,name:base.zm -msgid "Zambia" -msgstr "Zambia" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_xml -#: model:ir.ui.menu,name:base.menu_ir_action_report_xml -msgid "Report Xml" -msgstr "Αναφορά Xml" - -#. module: base -#: help:res.partner,user_id:0 -msgid "" -"The internal user that is in charge of communicating with this partner if " -"any." -msgstr "Ο χρήστης, υπεύθυνος για την επικοινωνία με το συνεργάτη, αν υπάρχει." - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Upgrade" -msgstr "Ακύρωση Αναβάθμισης" - -#. module: base -#: model:res.country,name:base.ci -msgid "Ivory Coast (Cote D'Ivoire)" -msgstr "Ivory Coast (Cote D'Ivoire)" - -#. module: base -#: model:res.country,name:base.kz -msgid "Kazakhstan" -msgstr "Kazakhstan" - -#. module: base -#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 -#: field:ir.cron,name:0 field:ir.model.access,name:0 -#: field:ir.model.fields,name:0 field:ir.module.category,name:0 -#: field:ir.module.module,name:0 field:ir.module.module.dependency,name:0 -#: rml:ir.module.reference:0 field:ir.module.repository,name:0 -#: field:ir.property,name:0 field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 field:ir.values,name:0 -#: field:maintenance.contract.module,name:0 field:res.bank,name:0 -#: field:res.config.view,name:0 field:res.lang,name:0 field:res.partner,name:0 -#: field:res.partner.bank.type,name:0 field:res.request.link,name:0 -#: field:res.users,name:0 field:workflow,name:0 field:workflow.activity,name:0 -msgid "Name" -msgstr "Όνομα" - -#. module: base -#: model:res.country,name:base.ms -msgid "Montserrat" -msgstr "Montserrat" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_app -msgid "Application Terms" -msgstr "Ορολογία Εφαρμογής" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Average" -msgstr "Υπολογισμός Μέσου Όρου" - -#. module: base -#: field:ir.module.module,demo:0 -msgid "Demo data" -msgstr "Demo δεδομένα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_instance_form -#: model:ir.ui.menu,name:base.menu_workflow_instance -msgid "Instances" -msgstr "Instances" - -#. module: base -#: model:res.country,name:base.aq -msgid "Antarctica" -msgstr "Antarctica" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" -msgstr "Νέος Συνεργάτης" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_view -msgid "ir.actions.act_window.view" -msgstr "ir.actions.act_window.view" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Web" -msgstr "Web" - -#. module: base -#: field:res.partner.event,planned_revenue:0 -msgid "Planned Revenue" -msgstr "Προγραμματισμένα Έσοδα" - -#. module: base -#: wizard_view:module.lang.import,init:0 -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 "" -"Πρέπει να εισάγετε ένα αρχείο .CSV με κωδικοποίηση UTF-8. Παρακαλώ ελέγξτε " -"ότι η πρώτη γραμμή του αρχείου σας είναι:" - -#. module: base -#: model:res.country,name:base.et -msgid "Ethiopia" -msgstr "Ethiopia" - -#. module: base -#: view:res.lang:0 -msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." -msgstr "%H - Η Ώρα (24ωρη μορφή) σε δεκαδική μορφή [00, 23]." - -#. module: base -#: view:res.roles:0 -msgid "Role" -msgstr "Ρόλος" - -#. module: base -#: help:res.country.state,code:0 -msgid "The state code in three chars.\n" -msgstr "Ο κωδικός κατάστασης με 3 χαρακτήρες\n" - -#. module: base -#: model:res.country,name:base.sj -msgid "Svalbard and Jan Mayen Islands" -msgstr "Svalbard and Jan Mayen Islands" - -#. module: base -#: view:ir.rule:0 -msgid "Test" -msgstr "Test" - -#. module: base -#: field:ir.report.custom.fields,groupby:0 -msgid "Group By" -msgstr "Ομαδοποίηση Ανά" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_WARNING" -msgstr "STOCK_DIALOG_WARNING" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_IN" -msgstr "STOCK_ZOOM_IN" - -#. module: base -#: selection:res.request,state:0 -msgid "closed" -msgstr "κλειστά" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "get" -msgstr "πάρε" - -#. module: base -#: help:ir.model.fields,on_delete:0 -msgid "On delete property for many2one fields" -msgstr "On delete property for many2one fields" - -#. module: base -#: field:ir.actions.server,write_id:0 -msgid "Write Id" -msgstr "Write Id" - -#. module: base -#: field:ir.actions.act_window,domain:0 -msgid "Domain Value" -msgstr "Τιμή Τομέα" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ITALIC" -msgstr "STOCK_ITALIC" - -#. module: base -#: view:ir.actions.server:0 -msgid "SMS Configuration" -msgstr "Ρύθμιση SMS " - -#. module: base -#: model:ir.actions.act_window,name:base.ir_access_act -#: model:ir.ui.menu,name:base.menu_ir_access_act -msgid "Access Controls List" -msgstr "Λίστα Προσβάσεων" - -#. module: base -#: model:res.country,name:base.um -msgid "USA Minor Outlying Islands" -msgstr "USA Minor Outlying Islands" - -#. module: base -#: field:res.partner.bank,state:0 -#: field:res.partner.bank.type.field,bank_type_id:0 -msgid "Bank Type" -msgstr "Τύπος Τράπεζας" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "The name of the group can not start with \"-\"" -msgstr "Το όνομα της ομάδας δεν μπορεί να ξεκινάει με \"-\"" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -msgstr "Παρακαλώ επαναφορτώστε τη σελίδα του μενού (Ctrl+t Ctrl+r)." - -#. module: base -#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 -msgid "Shortcut" -msgstr "Συντόμευση" - -#. module: base -#: field:ir.model.data,date_init:0 -msgid "Init Date" -msgstr "Αρχική Ημερ/νία" - -#. module: base -#: field:workflow.activity,flow_start:0 -msgid "Flow Start" -msgstr "Εκκίνηση Ροής" - -#. module: base -#: view:ir.model:0 view:ir.model.fields:0 -msgid "Security on Groups" -msgstr "Ασφάλεια σε Ομάδες" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank Account Owner" -msgstr "Ιδιοκτήτης Τραπεζικού Λογαριασμού" - -#. module: base -#: model:ir.actions.act_window,name:base.act_values_form -#: model:ir.ui.menu,name:base.menu_values_form -msgid "Client Actions Connections" -msgstr "Client Actions Connections" - -#. module: base -#: field:ir.ui.view_sc,resource:0 -msgid "Resource Name" -msgstr "Περιγραφή Πόρου" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Hours" -msgstr "Ώρες" - -#. module: base -#: model:res.country,name:base.gp -msgid "Guadeloupe (French)" -msgstr "Guadeloupe (French)" - -#. module: base -#: field:ir.report.custom.fields,cumulate:0 -msgid "Accumulate" -msgstr "Συσσώρευση" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Tree can only be used in tabular reports" -msgstr "Το δέντρο μπορεί να χρησιμοποιηθεί μόνο σε αναφορές με μορφή πίνακα" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Directory" -msgstr "Φάκελλος" - -#. module: base -#: field:wizard.ir.model.menu.create,name:0 -msgid "Menu Name" -msgstr "Όνομα Μενού" - -#. module: base -#: field:ir.report.custom,title:0 -msgid "Report Title" -msgstr "Τίτλος Αναφοράς" - -#. module: base -#: field:ir.report.custom.fields,fontcolor:0 -msgid "Font color" -msgstr "Χρώμα γραμματοσειράς" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_DESCENDING" -msgstr "STOCK_SORT_DESCENDING" - -#. module: base -#: model:res.country,name:base.my -msgid "Malaysia" -msgstr "Malaysia" - -#. module: base -#: model:ir.model,name:base.model_res_request_history -msgid "res.request.history" -msgstr "res.request.history" - -#. module: base -#: view:ir.actions.server:0 -msgid "Client Action Configuration" -msgstr "Client Action Configuration" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_address_form -#: model:ir.model,name:base.model_res_partner_address -#: view:res.partner.address:0 -msgid "Partner Addresses" -msgstr "Διευθύνσεις Συνεργάτη" - -#. module: base -#: model:res.country,name:base.cv -msgid "Cape Verde" -msgstr "Cape Verde (Πράσινο Ακρωτήριο)" - -#. module: base -#: model:ir.actions.act_window,name:base.act_res_partner_event -#: field:res.partner,events:0 field:res.partner.event,name:0 -msgid "Events" -msgstr "Συμβάντα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles -#: model:ir.ui.menu,name:base.menu_action_res_roles -msgid "Roles Structure" -msgstr "Διάρθρωση Ρόλων" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 -msgid "ir.actions.url" -msgstr "ir.actions.url" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_STOP" -msgstr "STOCK_MEDIA_STOP" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %r, expected an integer." -msgstr "Wrong ID for the browse record, got %r, expected an integer." - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND_MULTIPLE" -msgstr "STOCK_DND_MULTIPLE" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_addess_tree -#: view:res.partner:0 -msgid "Partner Contacts" -msgstr "Επαφές Συνεργάτη" - -#. module: base -#: wizard_field:module.module.update,update,add:0 -msgid "Number of modules added" -msgstr "Αριθμός Αρθρωμάτων που προστέθηκαν" - -#. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Απαιτούμενος Ρόλος" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The create method is not implemented on this object !" -msgstr "The create method is not implemented on this object !" - -#. module: base -#: field:workflow.triggers,workitem_id:0 -msgid "Workitem" -msgstr "Workitem" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "STOCK_DIALOG_AUTHENTICATION" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_OUT" -msgstr "STOCK_ZOOM_OUT" - -#. module: base -#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 selection:ir.values,key:0 -msgid "Action" -msgstr "Ενέργεια" - -#. module: base -#: view:ir.actions.server:0 -msgid "Email Configuration" -msgstr "Ρυθμίσεις Email " - -#. module: base -#: model:ir.model,name:base.model_ir_cron -msgid "ir.cron" -msgstr "ir.cron" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-mrp" -msgstr "terp-mrp" - -#. module: base -#: field:ir.actions.server,trigger_obj_id:0 -msgid "Trigger On" -msgstr "Έναυσμα σε λειτουργία" - -#. module: base -#: model:res.country,name:base.fj -msgid "Fiji" -msgstr "Fiji" - -#. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Μέγεθος" - -#. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "Sudan" - -#. module: base -#: view:res.lang:0 -msgid "%m - Month as a decimal number [01,12]." -msgstr "%m - Ο μήνας σε δεκαδική μορφή [01,12]" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export Data" -msgstr "Εξαγωγή Δεδομένων" - -#. module: base -#: model:res.country,name:base.fm -msgid "Micronesia" -msgstr "Micronesia" - -#. module: base -#: view:res.request.history:0 -msgid "Request History" -msgstr "Αίτηση Ιστορικού" - -#. module: base -#: field:ir.module.module,menus_by_module:0 view:res.groups:0 -msgid "Menus" -msgstr "Μενού" - -#. module: base -#: model:res.country,name:base.il -msgid "Israel" -msgstr "Israel" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_server_action_create -msgid "Create Action" -msgstr "Δημιουργία Ενέργειας" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "html" -msgstr "html" - -#. module: base -#: field:res.lang,time_format:0 -msgid "Time Format" -msgstr "Μορφή Ώρας" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Your system will be upgraded." -msgstr "Το σύστημα θα αναβαθμιστεί" - -#. module: base -#: view:ir.module.module:0 -msgid "Defined Reports" -msgstr "Καθορισμένες Αναφορές" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-tools" -msgstr "terp-tools" - -#. module: base -#: view:ir.actions.report.xml:0 -msgid "Report xml" -msgstr "Αναφορά xml" - -#. module: base -#: model:ir.actions.act_window,name:base.action_module_open_categ -#: model:ir.actions.act_window,name:base.open_module_tree -#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree -#: field:wizard.module.lang.export,modules:0 -msgid "Modules" -msgstr "Αρθρώματα" - -#. module: base -#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 -#: field:workflow.workitem,subflow_id:0 -msgid "Subflow" -msgstr "Υπο-ροή" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDO" -msgstr "STOCK_UNDO" - -#. module: base -#: field:workflow.transition,signal:0 -msgid "Signal (button Name)" -msgstr "Σινιάλο (όνομα πλήκτρου)" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_bank_form -#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 -#: field:res.partner,bank_ids:0 -msgid "Banks" -msgstr "Τράπεζες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-sale" -msgstr "terp-sale" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You cannot perform this operation." -msgstr "Δεν μπορείτε να εκτελέσετε αυτή τη λειτουργία." - -#. module: base -#: view:res.lang:0 -msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." -msgstr "%I - Η Ώρα (12ωρο) σε δεκαδική μορφή [01, 12]." - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Romanian / limba română" -msgstr "Romanian / limba română" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ADD" -msgstr "STOCK_ADD" - -#. module: base -#: field:ir.cron,doall:0 -msgid "Repeat Missed" -msgstr "Επανάληψη Παραλειπομένων" - -#. module: base -#: help:ir.actions.server,state:0 -msgid "Type of the Action that is to be executed" -msgstr "Τύπος Ενέργειας για εκτέλεση" - -#. module: base -#: field:ir.server.object.lines,server_id:0 -msgid "Object Mapping" -msgstr "Χάρτης Αντικειμένων" - -#. module: base -#: help:res.currency,rate:0 help:res.currency.rate,rate:0 -msgid "The rate of the currency to the currency of rate 1" -msgstr "Ισοτιμία νομίσματος" - -#. module: base -#: model:res.country,name:base.uk -msgid "United Kingdom" -msgstr "United Kingdom" - -#. module: base -#: view:ir.actions.server:0 -msgid "Create / Write" -msgstr "Δημιουργία / Εγγραφή" - -#. module: base -#: help:res.partner.category,active:0 -msgid "The active field allows you to hide the category without removing it." -msgstr "" -"Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία χωρίς να την " -"διαγράψετε." - -#. module: base -#: rml:ir.module.reference:0 -msgid "Object:" -msgstr "Αντικείμενο:" - -#. module: base -#: model:res.country,name:base.bw -msgid "Botswana" -msgstr "Botswana" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_partner -#: model:ir.ui.menu,name:base.menu_partner_title_partner -#: view:res.partner.title:0 -msgid "Partner Titles" -msgstr "Τίτλοι Συνεργάτη" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Service" -msgstr "Υπηρεσία" - -#. module: base -#: help:ir.actions.act_window,auto_refresh:0 -msgid "Add an auto-refresh on the view" -msgstr "Add an auto-refresh on the view" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_download:0 -msgid "Modules to download" -msgstr "Αρθρώματα για λήψη" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_workitem_form -#: model:ir.ui.menu,name:base.menu_workflow_workitem -msgid "Workitems" -msgstr "Workitems" - -#. module: base -#: field:wizard.module.lang.export,advice:0 -msgid "Advice" -msgstr "Συμβουλή" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Lithuanian / Lietuvių kalba" -msgstr "Lithuanian / Lietuvių kalba" - -#. module: base -#: help:ir.actions.server,record_id:0 -msgid "" -"Provide the field name where the record id is stored after the create " -"operations. If it is empty, you can not track the new record." -msgstr "" -"Provide the field name where the record id is stored after the create " -"operations. If it is empty, you can not track the new record." - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Couldn't find tag '%s' in parent view !" -msgstr "Αδύνατη η εύρεση της ετικέτας '%s' στη μητρική προβολή!" - -#. module: base -#: field:ir.ui.view,inherit_id:0 -msgid "Inherited View" -msgstr "Παράγωγος Προβολή" - -#. module: base -#: model:ir.model,name:base.model_ir_translation -msgid "ir.translation" -msgstr "ir.translation" - -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_install -#: model:ir.ui.menu,name:base.menu_module_tree_install -msgid "Installed modules" -msgstr "Εγκατεστημένα Αρθρώματα" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_get method is not implemented on this object !" -msgstr "The name_get method is not implemented on this object !" - -#. module: base -#: model:res.country,name:base.lc -msgid "Saint Lucia" -msgstr "Saint Lucia" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract -#: view:maintenance.contract:0 -msgid "Maintenance Contract" -msgstr "Συμβόλαιο Συντήρησης" - -#. module: base -#: help:ir.actions.server,trigger_obj_id:0 -msgid "Select the object from the model on which the workflow will executed." -msgstr "" -"Επιλέξτε το αντικείμενο από το μοντέλο στο οποίο η ροή εργασίας θα " -"εκτελεστεί." - -#. module: base -#: field:ir.model,state:0 field:ir.model.fields,state:0 -#: field:ir.model.grid,state:0 -msgid "Manually Created" -msgstr "Δημιουργημένα από Χρήστη" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "Calculate Count" - -#. module: base -#: field:ir.model.access,perm_create:0 -msgid "Create Access" -msgstr "Δημιουργία Πρόσβασης" - -#. module: base -#: field:res.partner.address,state_id:0 -msgid "Fed. State" -msgstr "Πολιτεία" - -#. module: base -#: model:res.country,name:base.io -msgid "British Indian Ocean Territory" -msgstr "British Indian Ocean Territory" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mapping" -msgstr "Field Mapping" - -#. module: base -#: field:maintenance.contract,date_start:0 -msgid "Starting Date" -msgstr "Ημερ/νία Εκκίνησης" - -#. module: base -#: view:ir.model:0 field:ir.model.fields,ttype:0 -msgid "Field Type" -msgstr "Τύπος Πεδίου" - -#. module: base -#: field:res.country.state,code:0 -msgid "State Code" -msgstr "Κωδικός Κατάστασης" - -#. module: base -#: field:ir.model.fields,on_delete:0 -msgid "On delete" -msgstr "On delete" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Left-to-Right" -msgstr "Left-to-Right" - -#. module: base -#: field:res.lang,translatable:0 -msgid "Translatable" -msgstr "Translatable" - -#. module: base -#: model:res.country,name:base.vn -msgid "Vietnam" -msgstr "Vietnam" - -#. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Υπογραφή" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not Implemented" -msgstr "Μη ενεργοποιημένο" - -#. module: base -#: field:res.partner.category,complete_name:0 -msgid "Full Name" -msgstr "Πλήρες Όνομα" - -#. module: base -#: model:res.country,name:base.mz -msgid "Mozambique" -msgstr "Mozambique" - -#. module: base -#: field:ir.actions.server,message:0 -#: wizard_field:res.partner.spam_send,init,text:0 -msgid "Message" -msgstr "Μήνυμα" - -#. module: base -#: field:ir.actions.act_window.view,multi:0 -msgid "On Multiple Doc." -msgstr "On Multiple Doc." - -#. module: base -#: field:res.partner,address:0 view:res.partner.address:0 -msgid "Contacts" -msgstr "Στοιχεία" - -#. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_upgrade -#: model:ir.ui.menu,name:base.menu_wizard_upgrade -msgid "Apply Scheduled Upgrades" -msgstr "Εφαρμογή Προγραμματισμένων Ενημερώσεων" - -#. module: base -#: model:ir.ui.menu,name:base.maintenance -msgid "Maintenance" -msgstr "Συντήρηση" - -#. module: base -#: model:res.country,name:base.mp -msgid "Northern Mariana Islands" -msgstr "Northern Mariana Islands" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "module,type,name,res_id,src,value" -msgstr "module,type,name,res_id,src,value" - -#. module: base -#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 -msgid "Version" -msgstr "Έκδοση" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" -msgstr "wizard.ir.model.menu.create" - -#. module: base -#: view:workflow.transition:0 -msgid "Transition" -msgstr "Ροή" - -#. module: base -#: field:ir.actions.todo,active:0 field:ir.cron,active:0 -#: field:ir.module.repository,active:0 field:ir.sequence,active:0 -#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 -#: field:res.partner,active:0 field:res.partner.address,active:0 -#: field:res.partner.canal,active:0 field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 field:res.request,active:0 -#: field:res.users,active:0 -msgid "Active" -msgstr "Ενεργό" - -#. module: base -#: model:res.country,name:base.na -msgid "Namibia" -msgstr "Namibia" - -#. module: base -#: model:res.country,name:base.mn -msgid "Mongolia" -msgstr "Mongolia" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Δημιουργημένα Μενού" - -#. module: base -#: view:res.partner.som:0 -msgid "Partner State of Mind" -msgstr "Προδιάθεση Συνεργάτη" - -#. module: base -#: model:res.country,name:base.bi -msgid "Burundi" -msgstr "Burundi" - -#. module: base -#: wizard_button:base.module.import,import,open_window:0 -#: wizard_button:module.upgrade,end,end:0 -#: wizard_button:module.upgrade,start,end:0 -#: wizard_button:server.action.create,init,end:0 -#: wizard_button:server.action.create,step_1,end:0 -#: view:wizard.module.lang.export:0 -msgid "Close" -msgstr "Κλείσιμο" - -#. module: base -#: model:res.country,name:base.bt -msgid "Bhutan" -msgstr "Bhutan" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_11 -msgid "Textile Suppliers" -msgstr "Προμηθευτές Υφασμάτων" - -#. module: base -#: selection:ir.actions.url,target:0 -msgid "This Window" -msgstr "Αυτό το παράθυρο" - -#. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Μορφή Αρχείου" - -#. module: base -#: model:ir.model,name:base.model_res_config_view -msgid "res.config.view" -msgstr "res.config.view" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDENT" -msgstr "STOCK_INDENT" - -#. module: base -#: view:workflow.workitem:0 -msgid "Workflow Workitems" -msgstr "Λειτουργία επαφής" - -#. module: base -#: model:res.country,name:base.vc -msgid "Saint Vincent & Grenadines" -msgstr "Saint Vincent & Grenadines" - -#. module: base -#: field:ir.model.config,password:0 field:maintenance.contract,password:0 -#: field:maintenance.contract.wizard,password:0 -#: wizard_field:res.partner.sms_send,init,password:0 -#: field:res.users,password:0 -msgid "Password" -msgstr "Συνθηματικό" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 -#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields -#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 -#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 -#: model:ir.ui.menu,name:base.ir_model_model_fields -msgid "Fields" -msgstr "Πεδία" - -#. module: base -#: wizard_view:base.module.import,import:0 -msgid "Module successfully imported !" -msgstr "Εισαγωγή επιτυχής !" - -#. module: base -#: model:res.country,name:base.mk -msgid "Macedonia" -msgstr "F.Y.R.O.M." - -#. module: base -#: field:res.company,rml_header2:0 -msgid "RML Internal Header" -msgstr "RML Εσωτερική Κεφαλίδα" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a4" -msgstr "Α4" - -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Πολλαπλοί κανόνες στα ίδια αντικείμενα συνδέονται μέσω της λογικής " -"συνάρτησης 'Ή'" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field -msgid "acc_number" -msgstr "acc_number" - -#. module: base -#: model:ir.ui.menu,name:base.menu_partner_address_form -msgid "Addresses" -msgstr "Διευθύνσεις" - -#. module: base -#: model:res.country,name:base.mm -msgid "Myanmar" -msgstr "Myanmar" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (CN) / 简体中文" -msgstr "Chinese (CN) / 简体中文" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_NEXT" -msgstr "STOCK_MEDIA_NEXT" - -#. module: base -#: field:res.bank,street:0 field:res.partner.address,street:0 -#: field:res.partner.bank,street:0 -msgid "Street" -msgstr "Οδός" - -#. module: base -#: model:res.country,name:base.yu -msgid "Yugoslavia" -msgstr "Yugoslavia" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Note that this operation my take a few minutes." -msgstr "Η διαδικασία αυτή μπορεί να πάρει μερικά λεπτά." - -#. module: base -#: field:ir.model.data,name:0 -msgid "XML Identifier" -msgstr "XML Identifier" - -#. module: base -#: model:res.country,name:base.ca -msgid "Canada" -msgstr "Canada" - -#. module: base -#: field:ir.actions.report.xml,report_name:0 -msgid "Internal Name" -msgstr "Εσωτερικό όνομα" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Unknown" -msgstr "Άγνωστο" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users_my -msgid "Change My Preferences" -msgstr "Αλλαγή Προτιμήσεων" - -#. module: base -#: model:res.country,name:base.sz -msgid "Swaziland" -msgstr "Swaziland" - -#. module: base -#: wizard_field:res.partner.sms_send,init,text:0 -msgid "SMS Message" -msgstr "Μήνυμα SMS " - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EDIT" -msgstr "STOCK_EDIT" - -#. module: base -#: model:res.country,name:base.cm -msgid "Cameroon" -msgstr "Cameroon" - -#. module: base -#: model:res.country,name:base.bf -msgid "Burkina Faso" -msgstr "Burkina Faso" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_FORWARD" -msgstr "STOCK_MEDIA_FORWARD" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Skipped" -msgstr "Skipped" - -#. module: base -#: selection:ir.model.fields,state:0 -msgid "Custom Field" -msgstr "Ειδικό Πεδίο" - -#. module: base -#: model:res.country,name:base.cc -msgid "Cocos (Keeling) Islands" -msgstr "Cocos (Keeling) Islands" - -#. module: base -#: field:workflow.instance,uid:0 -msgid "User ID" -msgstr "User ID" - -#. module: base -#: view:ir.actions.server:0 -msgid "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e.[[ object.partner_id.name ]]" -msgstr "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e.[[ object.partner_id.name ]]" - -#. module: base -#: view:res.lang:0 -msgid "11. %U or %W ==> 48 (49th week)" -msgstr "11. %U or %W ==> 48 (49η εβδομάδα)" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type_field -msgid "Bank type fields" -msgstr "Πεδία τύπου Τραπεζών" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "type,name,res_id,src,value" -msgstr "type,name,res_id,src,value" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch / Nederlands" -msgstr "Dutch / Nederlands" - -#. module: base -#: wizard_view:server.action.create,step_1:0 -#: wizard_field:server.action.create,step_1,report:0 -msgid "Select Report" -msgstr "Επιλογή Αναφοράς" - -#. module: base -#: field:ir.report.custom.fields,fc1_condition:0 -#: field:ir.report.custom.fields,fc2_condition:0 -#: field:ir.report.custom.fields,fc3_condition:0 -msgid "condition" -msgstr "συνθήκη" - -#. module: base -#: rml:ir.module.reference:0 -msgid "1cm 28cm 20cm 28cm" -msgstr "1cm 28cm 20cm 28cm" - #. module: base #: field:ir.sequence,suffix:0 msgid "Suffix" msgstr "Επίθημα" -#. module: base -#: model:res.country,name:base.mo -msgid "Macau" -msgstr "Macau" - -#. module: base -#: model:ir.actions.report.xml,name:base.res_partner_address_report -msgid "Labels" -msgstr "Ετικέτες" - -#. module: base -#: wizard_field:res.partner.spam_send,init,from:0 -msgid "Sender's email" -msgstr "Εmail αποστολέα" - -#. module: base -#: field:ir.default,field_name:0 -msgid "Object Field" -msgstr "Πεδίο Αντικειμένου" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Records were modified in the meanwhile" -msgstr "Οι εγγραφές έχουν τροποποιηθεί στο μεταξύ" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NEW" -msgstr "STOCK_NEW" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "None" -msgstr "Κανένα" - -#. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Report Fields" - -#. module: base -#: field:workflow.transition,act_to:0 -msgid "Destination Activity" -msgstr "Προορσιμός Δράσης" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_search method is not implemented on this object !" -msgstr "The name_search method is not implemented on this object !" - -#. module: base -#: view:ir.values:0 -msgid "Connect Events to Actions" -msgstr "Σύνδεση Συνβάντων με Ενέργειες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ABOUT" -msgstr "STOCK_ABOUT" - -#. module: base -#: field:ir.module.category,parent_id:0 field:res.partner.category,parent_id:0 -msgid "Parent Category" -msgstr "Ανήκει στην Κατηγορία" - -#. module: base -#: model:res.country,name:base.fi -msgid "Finland" -msgstr "Finland" - -#. module: base -#: selection:res.partner.address,type:0 selection:res.partner.title,domain:0 -msgid "Contact" -msgstr "Επαφή" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_menu -msgid "ir.ui.menu" -msgstr "ir.ui.menu" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Uninstall" -msgstr "Ακύρωση Απεγκατάστασης" - -#. module: base -#: model:ir.model,name:base.model_res_currency_rate -msgid "Currency Rate" -msgstr "Ισοτιμία Νομίσματος" - -#. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "ir.server.object.lines" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Module %s: Invalid Quality Certificate" -msgstr "Άρθρωμα %s: Άκυρο Πιστοποιητικό Ποιότητας" - -#. module: base -#: model:res.country,name:base.kw -msgid "Kuwait" -msgstr "Kuwait" - -#. module: base -#: field:workflow.workitem,inst_id:0 -msgid "Instance" -msgstr "Instance" - -#. module: base -#: help:ir.actions.report.xml,attachment:0 -msgid "" -"This is the filename of the attachment used to store the printing result. " -"Keep empty to not save the printed reports. You can use a python expression " -"with the object and time variables." -msgstr "" -"Το όνομα αρχείου που θα αποθηκευθεί το αποτέλεσμα της εκτύπωσης. Αφήστε το " -"κενό αν δεν επιθυμείτε να αποθηκεύετε τις εκτυπώσεις αναφορών. Μπορείτε να " -"χρησιμοποιήσετε μια έκφραση python με τις παραμέτρους object και time." - -#. module: base -#: model:res.country,name:base.ng -msgid "Nigeria" -msgstr "Nigeria" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "res.partner.event" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDERLINE" -msgstr "STOCK_UNDERLINE" - -#. module: base -#: view:ir.values:0 -msgid "Values for Event Type" -msgstr "Τιμές για τον Τύπο Συμβάντος " - -#. module: base -#: model:res.country,name:base.zr -msgid "Zaire" -msgstr "Zaire" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Always Searchable" -msgstr "Πάντα Αναζητήσιμο" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" - -#. module: base -#: model:res.country,name:base.hk -msgid "Hong Kong" -msgstr "Hong Kong" - -#. module: base -#: help:ir.actions.server,name:0 -msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" -msgstr "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" -msgstr "STOCK_ZOOM_100" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_BOLD" -msgstr "STOCK_BOLD" - -#. module: base -#: model:res.country,name:base.ph -msgid "Philippines" -msgstr "Philippines" - -#. module: base -#: model:res.country,name:base.ma -msgid "Morocco" -msgstr "Morocco" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-graph" -msgstr "terp-graph" - -#. module: base -#: view:res.lang:0 -msgid "2. %a ,%A ==> Fri, Friday" -msgstr "2. %a ,%A ==> Παρ, Παρασκευή" - -#. module: base -#: wizard_view:module.lang.install,start:0 -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 "" -"Η επιλεγμένη γλώσσα εγκαταστάθηκε επιτυχώς. Πρέπει να αλλάξετε τις " -"Προτιμήσεις του χρήστη και να ανοίξετε ένα νέο μενού για να δείτε τις " -"αλλαγές." - -#. module: base -#: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 -msgid "Partner Events" -msgstr "Συμβάντα Συνεργάτη" - -#. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" - -#. module: base -#: view:res.lang:0 -msgid "%a - Abbreviated weekday name." -msgstr "%a - Συντομο όνομα ημέρας" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Introspection report on objects" -msgstr "Introspection report on objects" - -#. module: base -#: model:res.country,name:base.pf -msgid "Polynesia (French)" -msgstr "Polynesia (French)" - -#. module: base -#: field:res.company,name:0 -msgid "Company Name" -msgstr "Όνομα Εταιρείας" - -#. module: base -#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard -#: wizard_button:res.partner.sms_send,init,send:0 -msgid "Send SMS" -msgstr "Αποστολή SMS" - -#. module: base -#: model:res.country,name:base.np -msgid "Nepal" -msgstr "Nepal" - -#. module: base -#: field:res.partner.event,event_ical_id:0 -msgid "iCal id" -msgstr "iCal id" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_function_form -#: model:ir.ui.menu,name:base.menu_partner_function_form -#: view:res.partner.function:0 -msgid "Partner Functions" -msgstr "Λειτουργίες Συνεργατών" - -#. module: base -#: wizard_view:res.partner.sms_send,init:0 -msgid "Bulk SMS send" -msgstr "Bulk SMS send" - -#. module: base -#: view:res.lang:0 -msgid "%Y - Year with century as a decimal number." -msgstr "%Y - Το έτος (πλήρως)." - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Pie Chart" -msgstr "Κυκλικό Διάγραμμα " - -#. module: base -#: view:ir.sequence:0 -msgid "Seconde: %(sec)s" -msgstr "Δευτερόλεπτο: %(sec)s" - -#. module: base -#: selection:ir.translation,type:0 field:res.bank,code:0 -#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 -#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 -msgid "Code" -msgstr "Κωδικός" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" -msgstr "" -"Αδύνατη η δημιουργία του αρχείου Αρθρώματος:\n" -" %s" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_update -#: model:ir.ui.menu,name:base.menu_module_update -msgid "Update Modules List" -msgstr "Ενημέρωση Λίστας Αρθρωμάτων" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Continue" -msgstr "Συνέχεια" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form -#: model:ir.ui.menu,name:base.menu_ir_property_form -msgid "Default Properties" -msgstr "Προεπιλεγμένες Ιδιότητες" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Slovenian / slovenščina" -msgstr "Slovenian / slovenščina" - -#. module: base -#: field:ir.actions.report.xml,attachment_use:0 -msgid "Reload from Attachment" -msgstr "Επαναφόρτωση από συνημμένο" - -#. module: base -#: model:res.country,name:base.bv -msgid "Bouvet Island" -msgstr "Bouvet Island" - -#. module: base -#: field:ir.report.custom,print_orientation:0 -msgid "Print orientation" -msgstr "Κατεύθυνση Εκτύπωσης" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export a Translation File" -msgstr "Εξαγωγή Αρχείου Μετάφρασης" - -#. module: base -#: field:ir.attachment,name:0 -msgid "Attachment Name" -msgstr "Όνομα Συνημμένου" - -#. module: base -#: wizard_field:module.lang.import,init,data:0 -#: field:wizard.module.lang.export,data:0 -msgid "File" -msgstr "Αρχείο" - -#. module: base -#: view:res.users:0 -msgid "Add User" -msgstr "Προσθήκη Χρήστη" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_configuration_wizard -msgid "ir.actions.configuration.wizard" -msgstr "ir.actions.configuration.wizard" - -#. module: base -#: view:res.lang:0 -msgid "%b - Abbreviated month name." -msgstr "%b - Σύντομο όνομα μήνα." - -#. module: base -#: field:res.partner,supplier:0 -#: model:res.partner.category,name:base.res_partner_category_8 -msgid "Supplier" -msgstr "Προμηθευτής" - -#. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 -msgid "Multi Actions" -msgstr "Multi Actions" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Close" -msgstr "_Close" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Full" -msgstr "Πλήρες" - -#. module: base -#: model:res.country,name:base.as -msgid "American Samoa" -msgstr "American Samoa" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_model -#: model:ir.model,name:base.model_ir_model -#: model:ir.ui.menu,name:base.ir_model_model_menu -msgid "Objects" -msgstr "Objects" - -#. module: base -#: view:res.request.link:0 -msgid "Request Link" -msgstr "Σύνδεσμος Αίτησης" - -#. module: base -#: field:ir.module.module,url:0 field:ir.module.repository,url:0 -msgid "URL" -msgstr "URL" - -#. module: base -#: help:res.country,name:0 -msgid "The full name of the country." -msgstr "Πλήρες όνομα χώρας." - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Iteration" -msgstr "Επανάληψη" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" -msgstr "terp-stock" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify the Partner Email address !" -msgstr "Παρακαλώ καταχωρείστε το Email του Συνεργάτη!" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "UserError" -msgstr "UserError" - -#. module: base -#: model:res.country,name:base.ae -msgid "United Arab Emirates" -msgstr "United Arab Emirates" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_RECORD" -msgstr "STOCK_MEDIA_RECORD" - -#. module: base -#: model:res.country,name:base.re -msgid "Reunion (French)" -msgstr "Reunion (French)" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "sv_SV" - -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Παγκόσμια" - -#. module: base -#: model:res.country,name:base.cz -msgid "Czech Republic" -msgstr "Czech Republic" - -#. module: base -#: model:res.country,name:base.sb -msgid "Solomon Islands" -msgstr "Solomon Islands" - -#. module: base -#: view:res.lang:0 -msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -msgstr "8. %I:%M:%S %p ==> 06:25:20 μ.μ." - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "The copy method is not implemented on this object !" - -#. module: base -#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation -msgid "Translations" -msgstr "Μεταφράσεις" - -#. module: base -#: field:ir.sequence,padding:0 -msgid "Number padding" -msgstr "Συμπλήρωση αριθμών" - -#. module: base -#: model:res.country,name:base.ua -msgid "Ukraine" -msgstr "Ukraine" - -#. module: base -#: model:res.country,name:base.to -msgid "Tonga" -msgstr "Tonga" - -#. module: base -#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 -msgid "Module Category" -msgstr "Κατηγορίες Αρθρωμάτων" - -#. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "USA" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reference Guide" -msgstr "Οδηγός Παραπομπών" - -#. module: base -#: model:res.country,name:base.ml -msgid "Mali" -msgstr "Mali" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNINDENT" -msgstr "STOCK_UNINDENT" - -#. module: base -#: field:ir.cron,interval_number:0 -msgid "Interval Number" -msgstr "Interval Number" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Partial" -msgstr "Μερικό" - -#. module: base -#: model:res.country,name:base.tk -msgid "Tokelau" -msgstr "Tokelau" - -#. module: base -#: field:ir.actions.report.xml,report_xsl:0 -msgid "XSL path" -msgstr "XSL path" - -#. module: base -#: model:res.country,name:base.bn -msgid "Brunei Darussalam" -msgstr "Brunei Darussalam" - -#. module: base -#: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 field:ir.ui.view,type:0 -#: field:wizard.ir.model.menu.create.line,view_type:0 -msgid "View Type" -msgstr "Τύπος Προβολής" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_2 -msgid "User Interface" -msgstr "Χρηστική Διεπιφάνεια" - -#. module: base -#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 -msgid "Partner Ref." -msgstr "Παρ. Συνεργάτη" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_INFO" -msgstr "STOCK_DIALOG_INFO" - -#. module: base -#: field:ir.attachment,create_date:0 -msgid "Date Created" -msgstr "Ημερ/νία Δημιουργίας" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_todo -msgid "ir.actions.todo" -msgstr "ir.actions.todo" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Get file" -msgstr "Get file" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "" -"This function will check for new modules in the 'addons' path and on module " -"repositories:" -msgstr "" -"Η λειτουργία αυτή θα αναζητήσει νέα Αρθρώματα του προγράμματος στον κατάλογο " -"'addons' και στις τοποθεσίες Αρθρωμάτων:" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_BACK" -msgstr "STOCK_GO_BACK" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 code:osv/orm.py:0 -#, python-format -msgid "AccessError" -msgstr "AccessError" - -#. module: base -#: model:res.country,name:base.dz -msgid "Algeria" -msgstr "Algeria" - -#. module: base -#: model:res.country,name:base.be -msgid "Belgium" -msgstr "Belgium" - -#. module: base -#: view:res.lang:0 -msgid "%d - Day of the month as a decimal number [01,31]." -msgstr "%d - Η ημέρα του μήνα σε δεκαδική μορφή [01, 31]." - -#. module: base -#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 -#: field:res.partner,lang:0 field:res.users,context_lang:0 -#: field:wizard.module.lang.export,lang:0 -#: field:wizard.module.update_translations,lang:0 -msgid "Language" -msgstr "Γλώσσα" - -#. module: base -#: model:res.country,name:base.gm -msgid "Gambia" -msgstr "Gambia" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 -msgid "Companies" -msgstr "Εταιρείες" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented get_memory method !" -msgstr "Not implemented get_memory method !" - -#. module: base -#: view:ir.actions.server:0 field:ir.actions.server,code:0 -#: selection:ir.actions.server,state:0 -msgid "Python Code" -msgstr "Python Code" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Can not create the module file: %s !" -msgstr "Αδύνατη η δημιουργία του αρχείου Αρθρώματος: %s!" - -#. module: base -#: model:ir.module.module,description:base.module_meta_information -msgid "The kernel of OpenERP, needed for all installation." -msgstr "Ο πυρήνας του OpenERP, αναγκαίος για κάθε εγκατάσταση." - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form -#: model:ir.ui.menu,name:base.menu_partner_customer_form -msgid "Customers Partners" -msgstr "Πελάτες" - -#. module: base -#: wizard_button:base.module.import,init,end:0 -#: selection:ir.actions.todo,state:0 -#: wizard_button:module.lang.import,init,end:0 -#: wizard_button:module.lang.install,init,end:0 -#: wizard_button:module.module.update,init,end:0 -#: wizard_button:module.upgrade,next,end:0 -#: wizard_button:res.partner.sms_send,init,end:0 -#: wizard_button:res.partner.spam_send,init,end:0 -#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 -#: view:wizard.module.update_translations:0 -msgid "Cancel" -msgstr "Ακύρωση" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify server option --smtp-from !" -msgstr "Παρακαλώ καθορίστε την επιλογή διακομιστή --smtp-from !" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "PO File" -msgstr "Αρχείο PO" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_9 -msgid "Components Supplier" -msgstr "Προμηθευτής Μερών" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 -#: field:ir.rule.group,users:0 -#: model:ir.ui.menu,name:base.menu_action_res_users -#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 -#: field:res.groups,users:0 field:res.roles,users:0 view:res.users:0 -msgid "Users" -msgstr "Χρήστες" - -#. module: base -#: field:ir.module.module,published_version:0 -msgid "Published Version" -msgstr "Δημοσιοποιημένη Έκδοση" - -#. module: base -#: model:res.country,name:base.is -msgid "Iceland" -msgstr "Iceland" - -#. module: base -#: view:res.users:0 -msgid "Roles are used to defined available actions, provided by workflows." -msgstr "" -"Οι ρόλοι χρησιμοποιούνται σε καθορισμένες ενέργειες που προκύπτουν από τις " -"ροές εργασίας." - -#. module: base -#: model:res.country,name:base.de -msgid "Germany" -msgstr "Germany" - -#. module: base -#: view:ir.sequence:0 -msgid "Week of the year: %(woy)s" -msgstr "Εβδομάδα του χρόνου: %(woy)s" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_14 -msgid "Bad customers" -msgstr "Κακοί πελάτες" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HARDDISK" -msgstr "STOCK_HARDDISK" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reports :" -msgstr "Αναφορές:" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_APPLY" -msgstr "STOCK_APPLY" - -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_form -#: model:ir.ui.menu,name:base.menu_maintenance_contract -msgid "Your Maintenance Contracts" -msgstr "Συμβόλαια Συντήρησης" - -#. module: base -#: view:res.users:0 -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." -msgstr "" -"Για να αλλαχθεί το συνθηματικό σας θα πρέπει να αποσυνδεθείτε και να " -"επανασυνδεθείτε στο σύστημα." - -#. module: base -#: model:res.country,name:base.gy -msgid "Guyana" -msgstr "Guyana" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3" -msgstr "GPL-3" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-2" -msgstr "GPL-2" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese (BR) / português (BR)" -msgstr "Portugese (BR) / português (BR)" - -#. module: base -#: field:ir.actions.server,record_id:0 -msgid "Create Id" -msgstr "Create Id" - -#. module: base -#: model:res.country,name:base.hn -msgid "Honduras" -msgstr "Honduras" - -#. module: base -#: model:res.country,name:base.eg -msgid "Egypt" -msgstr "Egypt" - -#. module: base -#: help:ir.actions.server,model_id:0 -msgid "Select the object on which the action will work (read, write, create)." -msgstr "Select the object on which the action will work (read, write, create)." - -#. module: base -#: view:ir.model:0 -msgid "Fields Description" -msgstr "Περιγραφή Πεδίων" - -#. module: base -#: code:tools/translate.py:0 -#, python-format -msgid "Bad file format" -msgstr "Μορφή αρχείου εσφαλμένη" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CDROM" -msgstr "STOCK_CDROM" - -#. module: base -#: field:ir.model.fields,readonly:0 -#: field:res.partner.bank.type.field,readonly:0 -msgid "Readonly" -msgstr "Readonly" - -#. module: base -#: field:res.partner.event,type:0 -msgid "Type of Event" -msgstr "Τύπος Συμβάντος" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_type -#: model:ir.ui.menu,name:base.menu_ir_sequence_type -msgid "Sequence Types" -msgstr "Τύποι Ιεράρχησης" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "To be installed" -msgstr "Προς εγκατάσταση" - -#. module: base -#: model:ir.module.module,shortdesc:base.module_meta_information -msgid "Base" -msgstr "Βάση" - -#. module: base -#: model:res.country,name:base.lr -msgid "Liberia" -msgstr "Liberia" - -#. module: base -#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 -#: field:res.partner,comment:0 field:res.partner.function,ref:0 -msgid "Notes" -msgstr "Σημειώσεις" - -#. module: base -#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 field:ir.values,value:0 -#: field:ir.values,value_unpickle:0 -msgid "Value" -msgstr "Τιμή" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update Translations" -msgstr "Ανανέωση Μεταφράσεων" - -#. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Set" - -#. module: base -#: model:res.country,name:base.mc -msgid "Monaco" -msgstr "Monaco" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Minutes" -msgstr "Λεπτά" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "The modules have been upgraded / installed !" -msgstr "Επιτυχής εγκατάσταση / αναβάθμιση!" - -#. module: base -#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 -msgid "Help" -msgstr "Βοήθεια" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" - -#. module: base -#: code:tools/amount_to_text_en.py:0 -#, python-format -msgid "Number too large '%d', can not translate it" -msgstr "ΠΟλύ μεγάλος αριθμός '%d', δε μεταφράζεται" - -#. module: base -#: wizard_button:server.action.create,step_1,create:0 -msgid "Create" -msgstr "Δημιουργία" - -#. module: base -#: field:ir.exports,export_fields:0 -msgid "Export ID" -msgstr "Export ID" - -#. module: base -#: model:res.country,name:base.fr -msgid "France" -msgstr "France" - -#. module: base -#: field:workflow.activity,flow_stop:0 -msgid "Flow Stop" -msgstr "Δαικοπή Ροής" - -#. module: base -#: model:res.country,name:base.ar -msgid "Argentina" -msgstr "Argentina" - -#. module: base -#: model:res.country,name:base.af -msgid "Afghanistan, Islamic State of" -msgstr "Afghanistan, Islamic State of" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Error !" -msgstr "Σφάλμα!" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry -msgid "country_id" -msgstr "country_id" - -#. module: base -#: field:ir.cron,interval_type:0 -msgid "Interval Unit" -msgstr "Μονάδα Διαστήματος" - -#. module: base -#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 -msgid "Kind" -msgstr "Είδος" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Αυτή η μέθοδος δε χρησιμοποιείται πια" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Manual" -msgstr "Manual" - -#. module: base -#: field:res.bank,fax:0 field:res.partner.address,fax:0 -msgid "Fax" -msgstr "Fax" - -#. module: base -#: field:res.lang,thousands_sep:0 -msgid "Thousands Separator" -msgstr "Διαχωριστής Χιλιάδων" - -#. module: base -#: field:res.request,create_date:0 -msgid "Created Date" -msgstr "Ημερ/νία Δημιουργίας" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Line Plot" -msgstr "Γραμμικό Διάγραμμα" - -#. module: base -#: help:ir.actions.server,loop_action:0 -msgid "" -"Select the action that will be executed. Loop action will not be avaliable " -"inside loop." -msgstr "" -"Select the action that will be executed. Loop action will not be avaliable " -"inside loop." - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (TW) / 正體字" -msgstr "Chinese (TW) / 正體字" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_UP" -msgstr "STOCK_GO_UP" - -#. module: base -#: model:ir.model,name:base.model_res_request -msgid "res.request" -msgstr "res.request" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" -msgstr "pdf" - -#. module: base -#: field:ir.default,company_id:0 field:ir.property,company_id:0 -#: field:ir.values,company_id:0 view:res.company:0 -#: field:res.users,company_id:0 -msgid "Company" -msgstr "Εταιρεία" - -#. module: base -#: field:ir.attachment,datas:0 -msgid "File Content" -msgstr "Περιεχόμενα Φακέλου" - -#. module: base -#: model:res.country,name:base.pa -msgid "Panama" -msgstr "Panama" - -#. module: base -#: selection:ir.report.custom,state:0 -msgid "Unsubscribed" -msgstr "Μη καταχωρημένο" - -#. module: base -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Προεπισκόπηση" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Skip Step" -msgstr "Παράλειψη Βήματος" - -#. module: base -#: model:res.country,name:base.pn -msgid "Pitcairn Island" -msgstr "Pitcairn Island" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_event_type-act -#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act -msgid "Active Partner Events" -msgstr "Ενεργά Συμβάντα Συνεργάτη" - -#. module: base -#: model:ir.actions.act_window,name:base.action_rule -#: model:ir.ui.menu,name:base.menu_action_rule -msgid "Record Rules" -msgstr "Record Rules" - -#. module: base -#: view:ir.sequence:0 -msgid "Day of the year: %(doy)s" -msgstr "Ημέρα του χρόνου: %(day)s" - -#. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "Ουδέτερη Ζώνη" - -#. module: base -#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 -#: model:ir.ui.menu,name:base.next_id_15 -msgid "Properties" -msgstr "Ιδιότητες" - -#. module: base -#: view:res.lang:0 -msgid "%A - Full weekday name." -msgstr "%A - Πλήρες όνομα ημέρας εβδομάδας" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Μήνες" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Selection" -msgstr "Επιλογή" - -#. module: base -#: field:ir.rule,domain_force:0 -msgid "Force Domain" -msgstr "Επιβολή Τομέα" - -#. module: base -#: model:ir.actions.act_window,name:base.action_attachment -#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment -msgid "Attachments" -msgstr "Συνημμένα" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Validate" -msgstr "_Validate" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_wizard -msgid "maintenance.contract.wizard" -msgstr "maintenance.contract.wizard" - -#. module: base -#: field:ir.actions.server,child_ids:0 -msgid "Other Actions" -msgstr "Άλλες Ενέργειες" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Done" -msgstr "Ολοκληρωμένο" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Validated" -msgstr "Επικυρωμένο" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Δίδα" - -#. module: base -#: field:ir.model.access,perm_write:0 -msgid "Write Access" -msgstr "Δικαίωμα Εγγραφής" - -#. module: base -#: field:res.bank,city:0 field:res.partner,city:0 -#: field:res.partner.address,city:0 field:res.partner.bank,city:0 -msgid "City" -msgstr "Πόλη" - -#. module: base -#: model:res.country,name:base.qa -msgid "Qatar" -msgstr "Qatar" - -#. module: base -#: model:res.country,name:base.it -msgid "Italy" -msgstr "Italy" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<>" -msgstr "<>" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<=" -msgstr "<=" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Estonian / Eesti keel" -msgstr "Estonian / Eesti keel" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese / português" -msgstr "Portugese / português" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3 or later version" -msgstr "GPL-3 ή μεταγενέστερη έκδοση" - -#. module: base -#: field:workflow.activity,action:0 -msgid "Python Action" -msgstr "Python Action" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Unknown position in inherited view %s !" -msgstr "Unknown position in inherited view %s !" - -#. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Πιθανότητα (0,50)" - -#. module: base -#: field:ir.report.custom,repeat_header:0 -msgid "Repeat Header" -msgstr "Repeat Header" - -#. module: base -#: field:res.users,address_id:0 -msgid "Address" -msgstr "Διεύθυνση" - -#. module: base -#: field:ir.module.module,latest_version:0 -msgid "Installed version" -msgstr "Εγκατεστημένη Έκδοση" - -#. module: base -#: model:ir.ui.menu,name:base.menu_workflow_root -msgid "Workflow Definitions" -msgstr "Ορισμοί Ροών Εργασίας" - -#. module: base -#: model:res.country,name:base.mr -msgid "Mauritania" -msgstr "Μαυριτανία" - -#. module: base -#: view:workflow.activity:0 field:workflow.workitem,act_id:0 -msgid "Activity" -msgstr "Activity" - -#. module: base -#: field:res.company,parent_id:0 -msgid "Parent Company" -msgstr "Μητρική Εταιρεία" - -#. module: base -#: field:res.currency.rate,rate:0 -msgid "Rate" -msgstr "Ισοτιμία" - -#. module: base -#: model:res.country,name:base.cg -msgid "Congo" -msgstr "Congo" - -#. module: base -#: model:ir.model,name:base.model_ir_exports_line -msgid "ir.exports.line" -msgstr "ir.exports.line" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "STOCK_MEDIA_PAUSE" - -#. module: base -#: model:ir.model,name:base.model_res_country_state -msgid "Country state" -msgstr "Νομός" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form_all -#: model:ir.ui.menu,name:base.menu_ir_property_form_all -msgid "All Properties" -msgstr "Όλες οι ιδιότητες" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_window -#: model:ir.ui.menu,name:base.menu_ir_action_window -msgid "Window Actions" -msgstr "Ενέργειες Παραθύρου" - -#. module: base -#: model:res.country,name:base.kn -msgid "Saint Kitts & Nevis Anguilla" -msgstr "Saint Kitts & Nevis Anguilla" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HOME" -msgstr "STOCK_HOME" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence -msgid "ir.sequence" -msgstr "ir.sequence" - -#. module: base -#: help:ir.actions.server,srcmodel_id:0 -msgid "" -"Object in which you want to create / write the object. If it is empty then " -"refer to the Object field." -msgstr "" -"Object in which you want to create / write the object. If it is empty then " -"refer to the Object field." - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "Not Installed" -msgstr "Μη Εγκατεστημένο" - -#. module: base -#: field:workflow.activity,out_transitions:0 -msgid "Outgoing Transitions" -msgstr "Εκροές" - -#. module: base -#: field:ir.ui.menu,icon:0 -msgid "Icon" -msgstr "Εικονίδιο" - -#. module: base -#: wizard_button:module.lang.import,init,finish:0 -#: wizard_button:module.lang.install,start,end:0 -#: wizard_button:module.module.update,update,open_window:0 -msgid "Ok" -msgstr "ΟΚ" - -#. module: base -#: model:res.country,name:base.mq -msgid "Martinique (French)" -msgstr "Martinique (French)" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request-act -#: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 -msgid "Requests" -msgstr "Αιτήσεις" - -#. module: base -#: model:res.country,name:base.ye -msgid "Yemen" -msgstr "Yemen" - -#. module: base -#: selection:workflow.activity,split_mode:0 -msgid "Or" -msgstr "Or" - -#. module: base -#: model:res.country,name:base.pk -msgid "Pakistan" -msgstr "Pakistan" - -#. module: base -#: model:res.country,name:base.al -msgid "Albania" -msgstr "Albania" - -#. module: base -#: model:res.country,name:base.ws -msgid "Samoa" -msgstr "Samoa" - -#. module: base -#: field:ir.ui.menu,child_id:0 -msgid "Child IDs" -msgstr "Child IDs" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Problem in configuration `Record Id` in Server Action!" -msgstr "Problem in configuration `Record Id` in Server Action!" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ValidateError" -msgstr "ValidateError" - -#. module: base -#: wizard_button:base.module.import,init,import:0 -#: model:ir.actions.wizard,name:base.wizard_base_module_import -#: model:ir.ui.menu,name:base.menu_wizard_module_import -msgid "Import module" -msgstr "Εισαγωγή Αρθρώματος" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DISCONNECT" -msgstr "STOCK_DISCONNECT" - -#. module: base -#: model:res.country,name:base.la -msgid "Laos" -msgstr "Laos" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Email" -msgstr "Email" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Resynchronise Terms" -msgstr "Ανασυγχρονισμός Όρων" - -#. module: base -#: model:res.country,name:base.tg -msgid "Togo" -msgstr "Togo" - -#. module: base -#: selection:workflow.activity,kind:0 -msgid "Stop All" -msgstr "Όλα Stop" - -#. module: base -#: view:res.lang:0 -msgid "3. %x ,%X ==> 12/05/08, 18:25:20" -msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Cascade" -msgstr "Ανάλυση" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Field %d should be a figure" -msgstr "Το πεδίο %d πρέπει να έιναι αριθμός" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Επόμενο Βήμα Ρυθμίσεων" - -#. module: base -#: field:res.groups,comment:0 -msgid "Comment" -msgstr "Σχόλιο" - -#. module: base -#: model:res.country,name:base.ro -msgid "Romania" -msgstr "Romania" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PREFERENCES" -msgstr "STOCK_PREFERENCES" - -#. module: base -#: field:res.country.state,name:0 -msgid "State Name" -msgstr "Όνομα Κατάστασης" - -#. module: base -#: field:workflow.activity,join_mode:0 -msgid "Join Mode" -msgstr "Πλήρες Mode" - -#. module: base -#: field:res.users,context_tz:0 -msgid "Timezone" -msgstr "Ζώνη Ώρας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_LAST" -msgstr "STOCK_GOTO_LAST" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_xml -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.xml" -msgstr "ir.actions.report.xml" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "" -"To improve some terms of the official translations of OpenERP, you should " -"modify the terms directly on the launchpad interface. If you made lots of " -"translations for your own module, you can also publish all your translation " -"at once." -msgstr "" -"Για να βελτιώσετε κάποιους όρους της επίσημης μετάφρασης του OpenERP, θα " -"πρέπει να τους τροποποιείτε απ' ευθείας στο launchpad interface. Αν κάνατε " -"πολλές μεταφράσεις στο άρθρωμά σας μπορείτε να τις δημοσιεύσετε μονομιάς." - -#. module: base -#: wizard_button:module.lang.install,init,start:0 -msgid "Start installation" -msgstr "Εκκίνηση Εγκατάστασης" - -#. module: base -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." -msgstr "Σφάλμα! Υπάρχει ήδη ίδια περιγραφή συνδεδεμένου μέλους." - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_2 -msgid "OpenERP Partners" -msgstr "Συνεργάτες OpenERP " - -#. module: base -#: model:res.country,name:base.by -msgid "Belarus" -msgstr "Belarus / Λευκορωσία" - -#. module: base -#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 -#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 -#: field:ir.actions.url,name:0 -msgid "Action Name" -msgstr "Όνομα Ενέργειας" - -#. module: base -#: selection:res.request,priority:0 -msgid "Normal" -msgstr "Κανονικό" - -#. module: base -#: field:res.bank,street2:0 field:res.partner.address,street2:0 -msgid "Street2" -msgstr "Οδός 2" - -#. module: base -#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 -#: view:res.users:0 -msgid "User" -msgstr "Χρήστης" - -#. module: base -#: model:res.country,name:base.pr -msgid "Puerto Rico" -msgstr "Puerto Rico" - -#. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Άνοιγμα Παραθύρου" - -#. module: base -#: field:ir.module.repository,filter:0 -msgid "Filter" -msgstr "Φίλτρο" - -#. module: base -#: model:res.country,name:base.ch -msgid "Switzerland" -msgstr "Switzerland / Ελβετία" - -#. module: base -#: model:res.country,name:base.gd -msgid "Grenada" -msgstr "Grenada" - -#. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "Ρυθμίσεις Εναύσματος (Trigger)." - -#. module: base -#: selection:server.action.create,init,type:0 -msgid "Open Report" -msgstr "Ανοικτή Αναφορά" - -#. module: base -#: field:res.currency,rounding:0 -msgid "Rounding factor" -msgstr "Παράγοντας στρογγυλοποίησης" - -#. module: base -#: model:ir.model,name:base.model_res_company -msgid "res.company" -msgstr "res.company" - -#. module: base -#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 -msgid "System upgrade done" -msgstr "Αναβάθμιση Συστήματος ολοκληρώθηκε" - -#. module: base -#: model:res.country,name:base.so -msgid "Somalia" -msgstr "Somalia" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_simple_view_form -msgid "Configure Simple View" -msgstr "Ρυθμίσεις Απλής Προβολής" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_13 -msgid "Important customers" -msgstr "Σημαντικοί Πελάτες" - -#. module: base -#: field:res.request,act_to:0 field:res.request.history,act_to:0 -msgid "To" -msgstr "Σε" - -#. module: base -#: field:ir.cron,args:0 -msgid "Arguments" -msgstr "Arguments" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "sxw" -msgstr "sxw" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The value \"%s\" for the field \"%s\" is not in the selection" -msgstr "Η τιμή \"%s\" για οτ πεδίο \"%s\" δεν είναι επιλεγμένη!" - -#. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "Automatic XSL:RML" - -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Μη αυτόματη εγκατάσταση τομέα" - -#. module: base -#: field:res.partner,customer:0 -#: model:res.partner.category,name:base.res_partner_category_0 -#: selection:res.partner.event,partner_type:0 -msgid "Customer" -msgstr "Πελάτης" - -#. module: base -#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 -msgid "Report Name" -msgstr "Όνομα Αναφοράς" - -#. module: base -#: field:ir.module.module,shortdesc:0 -msgid "Short Description" -msgstr "Σύντομη Περιγραφή" - -#. module: base -#: field:res.partner.event,partner_type:0 -msgid "Partner Relation" -msgstr "Σχέση Πελάτη" - -#. module: base -#: field:ir.actions.act_window,context:0 -msgid "Context Value" -msgstr "Context Value" - -#. module: base -#: view:ir.sequence:0 -msgid "Hour 00->24: %(h24)s" -msgstr "Ώρα 00->24: %(h24)s" - -#. module: base -#: field:res.request.history,date_sent:0 -msgid "Date sent" -msgstr "Ημερ/νία Αποστολής" - -#. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Μήνας: %(month)s" - -#. module: base -#: field:ir.actions.act_window.view,sequence:0 -#: field:ir.actions.server,sequence:0 field:ir.actions.todo,sequence:0 -#: field:ir.module.repository,sequence:0 -#: field:ir.report.custom.fields,sequence:0 view:ir.sequence:0 -#: field:ir.ui.menu,sequence:0 field:ir.ui.view_sc,sequence:0 -#: field:res.partner.bank,sequence:0 -#: field:wizard.ir.model.menu.create.line,sequence:0 -msgid "Sequence" -msgstr "Ιεράρχηση" - -#. module: base -#: model:res.country,name:base.tn -msgid "Tunisia" -msgstr "Tunisia" - -#. module: base -#: field:ir.actions.wizard,name:0 -msgid "Wizard Info" -msgstr "Πληροφορίες Αυτόματου Οδηγού" - -#. module: base -#: help:ir.cron,numbercall:0 -msgid "" -"Number of time the function is called,\n" -"a negative number indicates that the function will always be called" -msgstr "" -"Number of time the function is called,\n" -"a negative number indicates that the function will always be called" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Install" -msgstr "Ακύρωση Εγκατάστασης" - -#. module: base -#: view:res.lang:0 -msgid "Legends for Date and Time Formats" -msgstr "Υπόμνημα μορφών ώρας και ημερ/νίας" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Monthly" -msgstr "Μηνιαία" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_som-act -#: model:ir.ui.menu,name:base.menu_res_partner_som-act -msgid "States of mind" -msgstr "Προδιαθέσεις" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_ASCENDING" -msgstr "STOCK_SORT_ASCENDING" - -#. module: base -#: view:ir.model:0 view:res.groups:0 -msgid "Access Rules" -msgstr "Κανονισμοί Προσβάσεων" - -#. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Table Ref." - -#. module: base -#: field:res.roles,parent_id:0 -msgid "Parent" -msgstr "Ανήκει" - -#. module: base -#: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 field:ir.actions.wizard,model:0 -#: field:ir.cron,model:0 field:ir.default,field_tbl:0 view:ir.model:0 -#: field:ir.model,model:0 field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 field:ir.model.grid,model:0 -#: field:ir.report.custom,model_id:0 field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 field:ir.ui.view,model:0 -#: field:ir.values,model_id:0 field:res.request.link,object:0 -#: field:wizard.ir.model.menu.create,model_id:0 -#: field:workflow.triggers,model:0 -msgid "Object" -msgstr "Αντικείμενο" - -#. module: base -#: model:ir.model,name:base.model_ir_default -msgid "ir.default" -msgstr "ir.default" - -#. module: base -#: view:ir.sequence:0 -msgid "Minute: %(min)s" -msgstr "Λεπτά: %(min)s" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" -msgstr "Χρονοδιάγραμμα" - -#. module: base -#: view:res.lang:0 -msgid "%w - Weekday as a decimal number [0(Sunday),6]." -msgstr "" -"%w - Η ημέρα της εβδομάδας σε δεκαδική μορφή [0 Κυριακή, 1 Δευτέρα... 6 " -"Σάββατο]." - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export translation file" -msgstr "Εξαγωγή Αρχείου Ματάφρασης" - -#. module: base -#: field:ir.ui.view_sc,user_id:0 -msgid "User Ref." -msgstr "User Ref." - -#. module: base -#: model:ir.ui.menu,name:base.menu_base_config -#: model:ir.ui.menu,name:base.menu_config view:res.company:0 -msgid "Configuration" -msgstr "Ρυθμίσεις" - -#. module: base -#: field:ir.actions.server,expression:0 -msgid "Loop Expression" -msgstr "Loop Expression" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" -msgstr "Πωλητής Λιανικής" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Σε μορφή πίνακα" - -#. module: base -#: field:ir.actions.todo,start_on:0 -msgid "Start On" -msgstr "Start On" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_5 -msgid "Gold Partner" -msgstr "Χρυσός Συνεργάτης" - -#. module: base -#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 -#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 -#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 -msgid "Partner" -msgstr "Συνεργάτης" - -#. module: base -#: model:res.country,name:base.tr -msgid "Turkey" -msgstr "Turkey" - -#. module: base -#: model:res.country,name:base.fk -msgid "Falkland Islands" -msgstr "Falkland Islands" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "odt" -msgstr "odt" - -#. module: base -#: field:ir.actions.report.custom,type:0 field:ir.actions.report.xml,type:0 -#: field:ir.report.custom,type:0 -msgid "Report Type" -msgstr "Τύπος Αναφοράς" - -#. module: base -#: field:ir.actions.todo,state:0 field:ir.module.module,state:0 -#: field:ir.module.module.dependency,state:0 field:ir.report.custom,state:0 -#: field:maintenance.contract,state:0 field:res.bank,state:0 -#: view:res.country.state:0 field:res.partner.bank,state_id:0 -#: field:res.request,state:0 field:workflow.instance,state:0 -#: field:workflow.workitem,state:0 -msgid "State" -msgstr "Κατάσταση" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "Other proprietary" -msgstr "Άλλα ιδιοκτησιακά" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administration" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation -#: model:ir.ui.menu,name:base.menu_action_translation -msgid "All terms" -msgstr "Όλοι οι όροι" - -#. module: base -#: model:res.country,name:base.no -msgid "Norway" -msgstr "Norway" - -#. module: base -#: view:res.lang:0 -msgid "4. %b, %B ==> Dec, December" -msgstr "4. %b, %B ==> Δεκ, Δεκέμβριος" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Load an Official Translation" -msgstr "Φόρτωση Επίσημης Μετάφρασης" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_10 -msgid "Open Source Service Company" -msgstr "Εταιρεία Συντήρησης Ανοικτού Λογισμικού" - -#. module: base -#: selection:res.request,state:0 -msgid "waiting" -msgstr "σε αναμονή" - -#. module: base -#: field:ir.attachment,link:0 -msgid "Link" -msgstr "Σύνδεσμος" - -#. module: base -#: model:ir.model,name:base.model_workflow_triggers -msgid "workflow.triggers" -msgstr "workflow.triggers" - -#. module: base -#: field:ir.report.custom.fields,report_id:0 -msgid "Report Ref" -msgstr "Report Ref" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-hr" -msgstr "terp-hr" - -#. module: base -#: help:ir.actions.wizard,multi:0 -msgid "" -"If set to true, the wizard will not be displayed on the right toolbar of a " -"form view." -msgstr "" -"Αν ρυθμιστεί 'true', ο Αυτόματος οδηγός δε θα εμφανίζεται στη δεξιά γραμμή " -"εργαλείων της φόρμας. " - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND" -msgstr "STOCK_DND" - -#. module: base -#: model:res.country,name:base.hm -msgid "Heard and McDonald Islands" -msgstr "Heard and McDonald Islands" - -#. module: base -#: field:ir.actions.act_window,view_id:0 -msgid "View Ref." -msgstr "View Ref." - -#. module: base -#: model:ir.actions.act_window,name:base.open_repository_tree -#: view:ir.module.repository:0 -#: model:ir.ui.menu,name:base.menu_module_repository_tree -msgid "Repository list" -msgstr "Λίστα Τοποθεσιών Αρθρωμάτων" - -#. module: base -#: field:res.company,rml_header1:0 -msgid "Report Header" -msgstr "Κεφαλίδα Αναφοράς" - -#. module: base -#: field:res.roles,child_id:0 -msgid "Children" -msgstr "Υπό Κατηγορίες" - -#. module: base -#: field:ir.actions.act_window,type:0 field:ir.actions.act_window_close,type:0 -#: field:ir.actions.actions,type:0 field:ir.actions.server,state:0 -#: field:ir.actions.server,type:0 field:ir.actions.url,type:0 -#: field:ir.actions.wizard,type:0 -msgid "Action Type" -msgstr "Τύπος Ενέργειας" - -#. module: base -#: field:res.partner.bank.type,field_ids:0 -msgid "Type fields" -msgstr "Type fields" - -#. module: base -#: field:ir.module.module,category_id:0 -msgid "Category" -msgstr "Κατηγορία" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FLOPPY" -msgstr "STOCK_FLOPPY" - -#. module: base -#: field:ir.actions.server,sms:0 selection:ir.actions.server,state:0 -msgid "SMS" -msgstr "SMS" - -#. module: base -#: model:res.country,name:base.cr -msgid "Costa Rica" -msgstr "Costa Rica" - -#. module: base -#: view:ir.model:0 view:res.request:0 -msgid "Status" -msgstr "Κατάσταση" - -#. module: base -#: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form view:res.currency:0 -msgid "Currencies" -msgstr "Νομίσματα" - -#. module: base -#: view:ir.sequence:0 -msgid "Hour 00->12: %(h12)s" -msgstr "Ώρα 00->12: %(h12)s" - -#. module: base -#: help:res.partner.address,active:0 -msgid "Uncheck the active field to hide the contact." -msgstr "Ξετικάρετε το ενεργό πεδίο για να κρύψετε την επαφή" - -#. module: base -#: model:res.country,name:base.dk -msgid "Denmark" -msgstr "Denmark" - -#. module: base -#: field:res.country,code:0 -msgid "Country Code" -msgstr "Κωδικός Χώρας" - -#. module: base -#: model:ir.model,name:base.model_workflow_instance -msgid "workflow.instance" -msgstr "workflow.instance" - -#. module: base -#: view:res.lang:0 -msgid "10. %S ==> 20" -msgstr "10. %S ==> 20" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "undefined get method !" -msgstr "undefined get method !" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_madam -msgid "Madam" -msgstr "Κυρία" - -#. module: base -#: model:res.country,name:base.ee -msgid "Estonia" -msgstr "Estonia" - -#. module: base -#: model:res.country,name:base.nl -msgid "Netherlands" -msgstr "Netherlands / Ολλανδία" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_4 -msgid "Low Level Objects" -msgstr "Low Level Objects" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom -msgid "ir.report.custom" -msgstr "ir.report.custom" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Purchase Offer" -msgstr "Προσφορά Αγοράς" - -#. module: base -#: model:ir.model,name:base.model_ir_values -msgid "ir.values" -msgstr "ir.values" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_FIT" -msgstr "STOCK_ZOOM_FIT" - -#. module: base -#: model:res.country,name:base.cd -msgid "Congo, The Democratic Republic of the" -msgstr "Congo, The Democratic Republic of the" - -#. module: base -#: view:res.request:0 field:res.request,body:0 -#: field:res.request.history,req_id:0 -msgid "Request" -msgstr "Αίτηση" - -#. module: base -#: model:res.country,name:base.jp -msgid "Japan" -msgstr "Japan" - -#. module: base -#: field:ir.cron,numbercall:0 -msgid "Number of Calls" -msgstr "Αριθμός Κλήσεων" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Language file loaded." -msgstr "Το αρχείο γλώσσας φορτώθηκε" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_info:0 -msgid "Modules to update" -msgstr "Αρθρώματα για ενημέρωση" - -#. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Οργανόγραμμα Εταιρείας" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_BOTTOM" -msgstr "STOCK_GOTO_BOTTOM" - -#. module: base -#: help:ir.actions.server,sequence:0 -msgid "" -"Important when you deal with multiple actions, the execution order will be " -"decided based on this, low number is higher priority." -msgstr "" -"Σημαντικό όταν έχουμε πολλές ενέργειες. Η εκτέλεσή τους θα καθορίζεται από " -"αυτό, το μικρότερο νούμερο σημαίνει μεγαλύτερη προτεραιότητα." - -#. module: base -#: field:ir.actions.report.xml,header:0 -msgid "Add RML header" -msgstr "Add RML header" - -#. module: base -#: model:res.country,name:base.gr -msgid "Greece" -msgstr "Greece / Ελλάδα" - -#. module: base -#: field:res.request,trigger_date:0 -msgid "Trigger Date" -msgstr "Ημερ/νία Εναύσματος" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Croatian / hrvatski jezik" -msgstr "Croatian / hrvatski jezik" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_FORWARD" -msgstr "STOCK_GO_FORWARD" - -#. module: base -#: help:ir.actions.server,code:0 -msgid "Python code to be executed" -msgstr "Python code to be executed" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "Uninstallable" - -#. module: base -#: view:res.partner.category:0 -msgid "Partner Category" -msgstr "Κατηγορία Συνεργάτη" - -#. module: base -#: view:ir.actions.server:0 selection:ir.actions.server,state:0 -msgid "Trigger" -msgstr "Έναυσμα" - -#. module: base -#: field:ir.model.fields,translate:0 -msgid "Translate" -msgstr "Μετάφραση" - -#. module: base -#: view:ir.actions.server:0 -msgid "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e. [[ object.partner_id.name ]]" -msgstr "" -"Access all the fields related to the current object using expression in " -"double brackets, i.e. [[ object.partner_id.name ]]" - -#. module: base -#: field:res.request.history,body:0 -msgid "Body" -msgstr "Κυρίως θέμα" - -#. module: base -#: wizard_button:res.partner.spam_send,init,send:0 -msgid "Send Email" -msgstr "Αποστολή Email" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_FONT" -msgstr "STOCK_SELECT_FONT" - -#. module: base -#: field:res.users,menu_id:0 -msgid "Menu Action" -msgstr "Λειτουργία Μενού" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "choose" -msgstr "επιλέξτε" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Graph" -msgstr "Γράφημα" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "<" -msgstr "<" - -#. module: base -#: field:ir.report.custom,print_format:0 -msgid "Print format" -msgstr "Μορφή Εκτύπωσης" - -#. module: base -#: model:ir.ui.menu,name:base.menu_low_workflow -msgid "Workflow Items" -msgstr "Workflow Items" - -#. module: base -#: field:res.request,ref_doc2:0 -msgid "Document Ref 2" -msgstr "Document Ref 2" - -#. module: base -#: field:res.request,ref_doc1:0 -msgid "Document Ref 1" -msgstr "Document Ref 1" - -#. module: base -#: model:res.country,name:base.ga -msgid "Gabon" -msgstr "Gabon" - -#. module: base -#: model:ir.model,name:base.model_ir_model_data -msgid "ir.model.data" -msgstr "ir.model.data" - #. module: base #: view:ir.model:0 view:res.groups:0 msgid "Access Rights" @@ -6459,17 +2177,36 @@ msgid "Greenland" msgstr "Greenland (Γροιλανδία)" #. module: base -#: help:ir.actions.report.xml,report_rml:0 -msgid "" -"The .rml path of the file or NULL if the content is in report_rml_content" -msgstr "" -"The .rml path of the file or NULL if the content is in report_rml_content" +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Χαμηλή" #. module: base #: field:res.partner.bank,acc_number:0 msgid "Account Number" msgstr "Αριθμός Λογαριασμού" +#. module: base +#: view:res.users:0 +msgid "Skip" +msgstr "Skip" + +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" +msgstr "Δημιουργήστε μενού" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "STOCK_MEDIA_RECORD" + +#. module: base +#: model:res.country,name:base.in +msgid "India" +msgstr "India" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -6491,41 +2228,199 @@ msgstr "" msgid "New Caledonia (French)" msgstr "New Caledonia (French)" +#. module: base +#: model:res.country,name:base.ls +msgid "Lesotho" +msgstr "Lesotho" + +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "Μετάφραση" + #. module: base #: field:res.partner.function,name:0 msgid "Function Name" msgstr "Όνομα Λειτουργίας" #. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Cancel" -msgstr "_Cancel" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "Προβολή:" #. module: base -#: model:res.country,name:base.cy -msgid "Cyprus" -msgstr "Cyprus" +#: model:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Grant Access To Menus" +msgstr "Πρόσβαση στα Menu" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 -msgid "Subject" -msgstr "Υποκείμενο" +#: field:res.partner.category,name:0 +msgid "Category Name" +msgstr "Όνομα Κατηγορίας" + +#. module: base +#: view:res.config.view:0 +msgid "" +"Choose the simplified interface if you are testing OpenERP for the first " +"time. Less used options or fields are automatically hidden. You will be able " +"to change this, later, through the Administration menu." +msgstr "" +"Επιλέξτε την απλοποιημένη εγκατάσταση αν δοκιμάζετε το OpenERP για πρώτη " +"φορά. Οι λιγότερο συνηθισμένες επιλογές και πεδία δεν θα προβάλονται. " +"Μπορείτε να το αλλάξετε αυτό αργότερα από το μενού της Διαχείρισης. " + +#. module: base +#: model:res.country,name:base.tz +msgid "Tanzania" +msgstr "Tanzania" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "STOCK_JUSTIFY_CENTER" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "User ID" + +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "Ετικέτες" #. module: base #: field:res.request,act_from:0 field:res.request.history,act_from:0 msgid "From" msgstr "Από" +#. module: base +#: model:res.country,name:base.cz +msgid "Czech Republic" +msgstr "Czech Republic" + +#. module: base +#: model:res.country,name:base.mr +msgid "Mauritania" +msgstr "Μαυριτανία" + +#. module: base +#: model:res.country,name:base.sb +msgid "Solomon Islands" +msgstr "Solomon Islands" + +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "Επιλεγμένο Παράθυρο" + +#. module: base +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "Ο ΦΠΑ δε φαίνεται σωστός" + +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "client_action_multi, client_action_relate" + +#. module: base +#: model:res.country,name:base.ad +msgid "Andorra, Principality of" +msgstr "Andorra, Principality of" + +#. module: base +#: field:ir.module.category,child_ids:0 field:res.partner.category,child_ids:0 +msgid "Child Categories" +msgstr "Υποκατηγορίες" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" msgstr "Επόμενο" +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "TGZ Archive" +msgstr "Αρχείο TGZ" + +#. module: base +#: model:res.country,name:base.bm +msgid "Bermuda" +msgstr "Bermuda" + +#. module: base +#: model:res.country,name:base.pe +msgid "Peru" +msgstr "Peru" + +#. module: base +#: field:res.partner.som,factor:0 +msgid "Factor" +msgstr "Παράγοντας" + +#. module: base +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "%B - Πλήρες όνομα μήνα." + +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "Εmail αποστολέα" + +#. module: base +#: field:ir.actions.report.xml,report_type:0 field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 field:ir.translation,type:0 +#: field:ir.values,key:0 view:res.partner:0 +msgid "Type" +msgstr "Τύπος" + +#. module: base +#: model:res.country,name:base.bj +msgid "Benin" +msgstr "Benin" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Skipped" +msgstr "Skipped" + #. module: base #: selection:ir.ui.menu,icon:0 -msgid "terp-report" -msgstr "terp-report" +msgid "STOCK_ZOOM_IN" +msgstr "STOCK_ZOOM_IN" + +#. module: base +#: view:res.lang:0 +msgid "8. %I:%M:%S %p ==> 06:25:20 PM" +msgstr "8. %I:%M:%S %p ==> 06:25:20 μ.μ." + +#. module: base +#: model:res.country,name:base.mx +msgid "Mexico" +msgstr "Mexico" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "res.partner.title" + +#. module: base +#: model:res.country,name:base.gu +msgid "Guam (USA)" +msgstr "Guam (USA)" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "ir.actions.actions" + +#. module: base +#: view:ir.translation:0 model:ir.ui.menu,name:base.menu_translation +msgid "Translations" +msgstr "Μεταφράσεις" #. module: base #: field:ir.actions.report.xml,report_rml_content:0 @@ -6533,21 +2428,75 @@ msgstr "terp-report" msgid "RML content" msgstr "RML content" +#. module: base +#: field:ir.report.custom.fields,field_child3:0 +msgid "Field child3" +msgstr "Field child3" + #. module: base #: view:workflow.activity:0 msgid "Incoming transitions" msgstr "Εισροές" +#. module: base +#: model:res.country,name:base.tn +msgid "Tunisia" +msgstr "Tunisia" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Not Searchable" +msgstr "Μη Αναζητήσιμο" + #. module: base #: model:res.country,name:base.cn msgid "China" msgstr "China" #. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password empty !" -msgstr "Κενό Συνθηματικό!" +#: field:res.partner.event.type,key:0 +msgid "Key" +msgstr "Κλειδί" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OK" +msgstr "STOCK_OK" + +#. module: base +#: field:ir.cron,nextcall:0 +msgid "Next Call Date" +msgstr "Επόμενη Ημερ/νία Κλήσης" + +#. module: base +#: field:res.company,rml_header:0 +msgid "RML Header" +msgstr "RML Κεφαλίδα" + +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Set" + +#. module: base +#: model:res.country,name:base.ua +msgid "Ukraine" +msgstr "Ukraine" + +#. module: base +#: selection:ir.actions.server,state:0 selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "Εικονικό" + +#. module: base +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Άκυρο XML για Αρχιτεκτονική Όψης!" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" +msgstr "ir.exports" #. module: base #: model:res.country,name:base.eh @@ -6560,9 +2509,54 @@ msgid "workflow" msgstr "ροή εργασίας" #. module: base -#: model:res.country,name:base.id -msgid "Indonesia" -msgstr "Indonesia" +#: wizard_field:res.partner.sms_send,init,app_id:0 +msgid "API ID" +msgstr "API ID" + +#. module: base +#: model:res.country,name:base.ky +msgid "Cayman Islands" +msgstr "Cayman Islands" + +#. module: base +#: field:ir.rule.group,rules:0 +msgid "Tests" +msgstr "Tests" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category view:ir.module.category:0 +msgid "Module Category" +msgstr "Κατηγορίες Αρθρωμάτων" + +#. module: base +#: model:res.country,name:base.mu +msgid "Mauritius" +msgstr "Mauritius" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "Οδηγός Παραπομπών" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "Scan for new modules" +msgstr "Αναζήτηση νέων Αρθρωμάτων" + +#. module: base +#: model:ir.model,name:base.model_ir_module_repository +msgid "Module Repository" +msgstr "Τοποθεσία Αρθρωμάτων" + +#. module: base +#: model:res.country,name:base.ml +msgid "Mali" +msgstr "Mali" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" +msgstr "STOCK_UNINDENT" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -6570,15 +2564,31 @@ msgid "At Once" msgstr "Αμέσως" #. module: base -#: selection:ir.actions.server,state:0 -msgid "Write Object" -msgstr "Αντικέιμενο Εγγραφής" +#: model:ir.ui.menu,name:base.menu_security +msgid "Security" +msgstr "Ασφάλεια" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +msgid "Report Custom" +msgstr "Ειδική Αναφορά" #. module: base #: model:res.country,name:base.bg msgid "Bulgaria" msgstr "Bulgaria" +#. module: base +#: field:ir.cron,interval_number:0 +msgid "Interval Number" +msgstr "Interval Number" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND" +msgstr "STOCK_FIND" + #. module: base #: model:res.country,name:base.ao msgid "Angola" @@ -6589,6 +2599,21 @@ msgstr "Angola" msgid "French Southern Territories" msgstr "French Southern Territories" +#. module: base +#: model:res.country,name:base.td +msgid "Chad" +msgstr "Chad" + +#. module: base +#: model:res.country,name:base.za +msgid "South Africa" +msgstr "South Africa" + +#. module: base +#: model:res.country,name:base.tk +msgid "Tokelau" +msgstr "Tokelau" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -6603,6 +2628,35 @@ msgstr "" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. module: base +#: view:ir.model.access:0 model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 field:res.groups,model_access:0 +msgid "Access Controls" +msgstr "Ρυθμίσεις Πρόσβασης" + +#. module: base +#: model:res.country,name:base.bn +msgid "Brunei Darussalam" +msgstr "Brunei Darussalam" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_lang_export +msgid "wizard.module.lang.export" +msgstr "wizard.module.lang.export" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Installed" +msgstr "Εγκατεστημένο" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +msgid "Partner Functions" +msgstr "Λειτουργίες Συνεργατών" + #. module: base #: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 #: view:res.currency:0 field:res.currency,name:0 @@ -6611,9 +2665,19 @@ msgid "Currency" msgstr "Νόμισμα" #. module: base -#: field:res.partner.canal,name:0 -msgid "Channel Name" -msgstr "Όνομα Διαύλου" +#: view:res.lang:0 +msgid "%Y - Year with century as a decimal number." +msgstr "%Y - Το έτος (πλήρως)." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish (AR) / Español (AR)" +msgstr "Spanish (AR) / Español (AR)" + +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "workflow.triggers" #. module: base #: view:res.lang:0 @@ -6621,55 +2685,307 @@ msgid "5. %y, %Y ==> 08, 2008" msgstr "5. %y, %Y ==> 08, 2008" #. module: base -#: field:ir.model.fields,model_id:0 field:ir.values,res_id:0 -msgid "Object ID" -msgstr "ID Αντικειμένου" +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "module,type,name,res_id,src,value" #. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Landscape" -msgstr "Τοπίο" +#: model:res.country,name:base.sa +msgid "Saudi Arabia" +msgstr "Saudi Arabia" + +#. module: base +#: model:res.country,name:base.hu +msgid "Hungary" +msgstr "Hungary" + +#. module: base +#: model:res.country,name:base.ne +msgid "Niger" +msgstr "Niger (Νίγηρας)" + +#. module: base +#: model:res.country,name:base.ba +msgid "Bosnia-Herzegovina" +msgstr "Bosnia-Herzegovina" + +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "Διάταξη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" +msgstr "STOCK_UNDO" + +#. module: base +#: model:res.country,name:base.br +msgid "Brazil" +msgstr "Brazil" + +#. module: base +#: help:ir.rule.group,rules:0 +msgid "The rule is satisfied if at least one test is True" +msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Weeks" +msgstr "Εβδομάδες" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr ">=" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" +msgstr "ir.actions.report.xml" #. module: base #: model:ir.ui.menu,name:base.menu_administration msgid "Administration" msgstr "Διαχείριση" +#. module: base +#: field:ir.sequence,number_next:0 +msgid "Next Number" +msgstr "Επόμενος Αριθμός" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "Get file" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "" +"This function will check for new modules in the 'addons' path and on module " +"repositories:" +msgstr "" +"Η λειτουργία αυτή θα αναζητήσει νέα Αρθρώματα του προγράμματος στον κατάλογο " +"'addons' και στις τοποθεσίες Αρθρωμάτων:" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" +msgstr "ακατέργαστο" + #. module: base #: selection:ir.rule,operator:0 msgid "child_of" msgstr "child_of" +#. module: base +#: view:res.currency:0 field:res.currency,rate_ids:0 +msgid "Rates" +msgstr "Ισοτιμίες" + +#. module: base +#: view:res.lang:0 +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 - Ο αριθμός της εβδομάδας στο χρόνο (με Δευτέρα πρώτη ημέρα της " +"εβδομάδας) σε δεκαδική μορφή [00, 53]. Όλες οι ημέρες του νέου χρόνου πριν " +"την πρώτη Δευτέρα θεωρούνται εβδομάδα 0." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_BACK" +msgstr "STOCK_GO_BACK" + +#. module: base +#: model:res.country,name:base.sy +msgid "Syria" +msgstr "Syria" + +#. module: base +#: view:res.lang:0 +msgid "======================================================" +msgstr "======================================================" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" +msgstr "Επικυρωμένο" + +#. module: base +#: field:ir.report.custom.fields,field_child2:0 +msgid "Field child2" +msgstr "Field child2" + +#. module: base +#: field:ir.values,key2:0 view:res.partner.event.type:0 +#: field:res.partner.event.type,name:0 +msgid "Event Type" +msgstr "Τύπος Συμβάντος" + +#. module: base +#: field:ir.report.custom.fields,field_child0:0 +msgid "Field child0" +msgstr "Field child0" + +#. module: base +#: field:ir.report.custom.fields,field_child1:0 +msgid "Field child1" +msgstr "Field child1" + +#. module: base +#: field:ir.module.module,website:0 field:res.partner,website:0 +msgid "Website" +msgstr "Ιστοσελίδα" + +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Field Selection" +msgstr "Field Selection" + +#. module: base +#: view:res.roles:0 +msgid "Role" +msgstr "Ρόλος" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "https://translations.launchpad.net/openobject" +msgstr "https://translations.launchpad.net/openobject" + #. module: base #: model:res.country,name:base.ir msgid "Iran" msgstr "Iran" +#. module: base +#: model:res.country,name:base.dz +msgid "Algeria" +msgstr "Algeria" + #. module: base #: field:ir.report.custom.fields,operation:0 field:ir.ui.menu,icon_pict:0 #: field:wizard.module.lang.export,state:0 msgid "unknown" msgstr "άγνωστο" +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_som-act +#: model:ir.ui.menu,name:base.menu_res_partner_som-act +msgid "States of mind" +msgstr "Προδιαθέσεις" + +#. module: base +#: model:res.country,name:base.gs +msgid "S. Georgia & S. Sandwich Isls." +msgstr "S. Georgia & S. Sandwich Isls." + +#. module: base +#: field:ir.actions.url,url:0 +msgid "Action URL" +msgstr "URL Ενέργειας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "STOCK_REMOVE" + #. module: base #: field:ir.ui.view_sc,res_id:0 msgid "Resource Ref." msgstr "Παρ. Πόρου" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "STOCK_JUSTIFY_FILL" + +#. module: base +#: model:res.country,name:base.mh +msgid "Marshall Islands" +msgstr "Marshall Islands" + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" +msgstr "ir.model.access" + +#. module: base +#: field:res.currency.rate,name:0 field:res.partner,date:0 +#: field:res.partner.event,date:0 field:res.request,date_sent:0 +msgid "Date" +msgstr "Ημερ/νία" + #. module: base #: model:res.country,name:base.ki msgid "Kiribati" msgstr "Kiribati" +#. module: base +#: model:res.country,name:base.ht +msgid "Haiti" +msgstr "Haiti" + #. module: base #: model:res.country,name:base.iq msgid "Iraq" msgstr "Iraq" #. module: base -#: view:ir.actions.server:0 -msgid "Action to Launch" -msgstr "Επιλογή Ενέργειας" +#: view:ir.attachment:0 field:ir.attachment,datas:0 +msgid "Data" +msgstr "Δεδομένα" + +#. module: base +#: selection:ir.translation,type:0 +msgid "RML" +msgstr "RML" + +#. module: base +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." +msgstr "" +"Οι Ομάδες χρησιμοποιούνται για τον ορισμό δικαιωμάτων πρόσβασης στις οθόνες " +"και τα μενού." + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +msgid "Partners by Categories" +msgstr "Συνεργάτες ανά Κατηγορίες" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +#: model:ir.ui.menu,name:base.next_id_12 view:res.request:0 +msgid "Requests" +msgstr "Αιτήσεις" + +#. module: base +#: model:res.country,name:base.cl +msgid "Chile" +msgstr "Chile (Χιλή)" + +#. module: base +#: field:ir.translation,lang:0 wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "Γλώσσα" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "XSL" + +#. module: base +#: model:res.country,name:base.gm +msgid "Gambia" +msgstr "Gambia" #. module: base #: wizard_view:base.module.import,import:0 @@ -6677,6 +2993,27 @@ msgstr "Επιλογή Ενέργειας" msgid "Module import" msgstr "Εισαγωγή Αρθρωμάτων" +#. module: base +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "tree_but_action, client_print_multi" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form view:res.company:0 +msgid "Companies" +msgstr "Εταιρείες" + +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.custom,multi:0 help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Αν ρυθμιστεί 'true', η ενέργεια δε θα εμφανίζεται στη δεξιά γραμμή εργαλείων " +"της φόρμας." + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -6684,15 +3021,50 @@ msgid "Suppliers Partners" msgstr "Προμηθευτές" #. module: base -#: model:ir.model,name:base.model_ir_sequence_type -msgid "ir.sequence.type" -msgstr "ir.sequence.type" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Για εξαγωγή νέας γλώσσας, μην επιλέξετε καμμία γλώσσα." + +#. module: base +#: model:res.country,name:base.be +msgid "Belgium" +msgstr "Belgium" #. module: base #: selection:wizard.module.lang.export,format:0 msgid "CSV File" msgstr "Αρχείο CSV" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Συνημμένο με" + +#. module: base +#: field:res.lang,decimal_point:0 +msgid "Decimal Separator" +msgstr "Υποδιαστολή" + +#. module: base +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" +msgstr "SXW path" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" +msgstr "STOCK_MEDIA_PLAY" + +#. module: base +#: field:ir.model.data,date_init:0 +msgid "Init Date" +msgstr "Αρχική Ημερ/νία" + +#. module: base +#: field:res.company,rml_header2:0 +msgid "RML Internal Header" +msgstr "RML Εσωτερική Κεφαλίδα" + #. module: base #: selection:ir.model,state:0 selection:ir.model.grid,state:0 msgid "Base Object" @@ -6721,31 +3093,61 @@ msgstr "(year)=" msgid "Dependencies :" msgstr "Dependencies :" +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "Χαρακτηριστικά" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-partner" msgstr "terp-partner" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Bad query." -msgstr "Bad query." +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "Δημιουργός" + +#. module: base +#: view:ir.actions.server:0 field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +msgid "Python Code" +msgstr "Python Code" + +#. module: base +#: model:res.country,name:base.gq +msgid "Equatorial Guinea" +msgstr "Equatorial Guinea" #. module: base #: field:ir.model.fields,field_description:0 msgid "Field Label" msgstr "Όνομα Πεδίου" +#. module: base +#: model:ir.module.module,description:base.module_meta_information +msgid "The kernel of OpenERP, needed for all installation." +msgstr "Ο πυρήνας του OpenERP, αναγκαίος για κάθε εγκατάσταση." + +#. module: base +#: field:ir.actions.act_window,view_mode:0 field:res.config.view,view:0 +msgid "View Mode" +msgstr "Mode Προβολής" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Swedish / svenska" +msgstr "Swedish / svenska" + #. module: base #: model:res.country,name:base.dj msgid "Djibouti" msgstr "Djibouti" #. module: base -#: field:ir.translation,value:0 -msgid "Translation Value" -msgstr "Μετάφραση" +#: field:ir.report.custom,frequency:0 +msgid "Frequency" +msgstr "Συχνότητα" #. module: base #: model:res.country,name:base.ag @@ -6753,11 +3155,26 @@ msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" #. module: base -#: field:ir.actions.server,condition:0 -#: field:ir.report.custom.fields,fc0_condition:0 -#: field:workflow.transition,condition:0 -msgid "Condition" -msgstr "Συνθήκη" +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +msgid "Import a Translation File" +msgstr "Εισαγωγή Αρχείου Μετάφρασης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.ui.menu,name:base.menu_partner_customer_form +msgid "Customers Partners" +msgstr "Πελάτες" + +#. module: base +#: field:res.company,child_ids:0 +msgid "Child Companies" +msgstr "Θυγατρικές Εταιρείες" + +#. module: base +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Πρόσβαση Ανάγνωσης" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -6765,8 +3182,34 @@ msgid "Modules Management" msgstr "Διαχείριση Αρθρωμάτων" #. module: base -#: field:ir.model.data,res_id:0 field:ir.translation,res_id:0 -#: field:workflow.instance,res_id:0 field:workflow.triggers,res_id:0 +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" +msgstr "Repeat Header" + +#. module: base +#: model:res.country,name:base.ni +msgid "Nicaragua" +msgstr "Nicaragua" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "html" + +#. module: base +#: model:res.country,name:base.ck +msgid "Cook Islands" +msgstr "Cook Islands" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Πηγή Δράσης" + +#. module: base +#: field:ir.attachment,res_id:0 field:ir.model.data,res_id:0 +#: field:ir.translation,res_id:0 field:workflow.instance,res_id:0 +#: field:workflow.triggers,res_id:0 msgid "Resource ID" msgstr "Αριθμός Πόρου" @@ -6777,15 +3220,29 @@ msgid "Information" msgstr "Πληροφορίες" #. module: base -#: view:wizard.module.lang.export:0 -msgid "" -"The official translations pack of all OpenERP/OpenObjects module are managed " -"through launchpad. We use their online interface to synchronize all " -"translations efforts." -msgstr "" -"Η επίσημη μετάφραση των Αρθρωμάτων του OpenERP/OpenObjects γίνονται με " -"κειμενογράφο. Για το συγχρονισμό όλων των προσπαθειών χρησιμοποιούμε το " -"online interface." +#: selection:wizard.module.lang.export,format:0 +msgid "PO File" +msgstr "Αρχείο PO" + +#. module: base +#: view:res.partner.event:0 +msgid "General Description" +msgstr "Γενική Περιγραφή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MISSING_IMAGE" +msgstr "STOCK_MISSING_IMAGE" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "Ορισμός Νέων Χρηστών" + +#. module: base +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Ουδέτερη Ζώνη" #. module: base #: field:ir.actions.report.xml,report_rml:0 @@ -6797,32 +3254,72 @@ msgstr "RML path" msgid "Next Configuration Wizard" msgstr "Επόμενος Αυτόματος Οδηγός Ρυθμίσεων" +#. module: base +#: model:ir.model,name:base.model_ir_rule_group +msgid "ir.rule.group" +msgstr "ir.rule.group" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation Done" +msgstr "Η εγκατάσταση ολοκληρώθηκε" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Maintenance contract added !" +msgstr "Το Συβόλαιο Συντήρησης προστέθηκε!" + +#. module: base +#: field:ir.rule,field_id:0 selection:ir.translation,type:0 +msgid "Field" +msgstr "Πεδίο" + #. module: base #: selection:ir.actions.todo,type:0 selection:res.partner.address,type:0 msgid "Other" msgstr "Άλλο" #. module: base -#: view:res.request:0 -msgid "Reply" -msgstr "Απάντηση" +#: help:ir.actions.server,email:0 +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 "" +"Τα πεδία που ια χρησιμοποιηθούν για εισαγωγή διεύθυνσης email π.χ. όταν " +"επιλέγετε το τιμολόγιο`object.invoice_address_id.email` είναι το πεδίο που " +"δίδει τη σωστή διεύθυνση." #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Turkish / Türkçe" -msgstr "Turkish / Türkçe" +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "Τύπος" #. module: base -#: model:ir.actions.act_window,name:base.action_translation_untrans -#: model:ir.ui.menu,name:base.menu_action_translation_untrans -msgid "Untranslated terms" -msgstr "Μη μεταφρασμένοι όροι" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Όνομα Ρόλου" #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" msgstr "Ειασγωγή νέας Γλώσσας" +#. module: base +#: model:res.country,name:base.ve +msgid "Venezuela" +msgstr "Venezuela" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Installed version" +msgstr "Εγκατεστημένη Έκδοση" + +#. module: base +#: view:res.lang:0 +msgid "9. %j ==> 340" +msgstr "9. %j ==> 340" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form #: model:ir.ui.menu,name:base.menu_workflow_activity view:workflow:0 @@ -6830,11 +3327,72 @@ msgstr "Ειασγωγή νέας Γλώσσας" msgid "Activities" msgstr "Δράσεις" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Αφοσιωμένος Πωλητής" + +#. module: base +#: field:ir.ui.menu,parent_id:0 field:wizard.ir.model.menu.create,menu_id:0 +msgid "Parent Menu" +msgstr "Επάνω Μενού" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "Εξαγωγή Αρχείου Μετάφρασης" + +#. module: base +#: model:res.country,name:base.is +msgid "Iceland" +msgstr "Iceland" + +#. module: base +#: model:res.country,name:base.zm +msgid "Zambia" +msgstr "Zambia" + #. module: base #: field:ir.actions.act_window,auto_refresh:0 msgid "Auto-Refresh" msgstr "Auto-Refresh" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "-" + +#. module: base +#: model:res.country,name:base.mw +msgid "Malawi" +msgstr "Malawi" + +#. module: base +#: field:ir.attachment,name:0 +msgid "Attachment Name" +msgstr "Όνομα Συνημμένου" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Upgrade" +msgstr "Ακύρωση Αναβάθμισης" + +#. module: base +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "Αποθήκευση ως Πρόθεμα Συνημμένου" + +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "Εβδομάδα του χρόνου: %(woy)s" + +#. module: base +#: model:res.country,name:base.ci +msgid "Ivory Coast (Cote D'Ivoire)" +msgstr "Ivory Coast (Cote D'Ivoire)" + #. module: base #: selection:ir.report.custom.fields,fc0_op:0 #: selection:ir.report.custom.fields,fc1_op:0 @@ -6844,10 +3402,146 @@ msgid "=" msgstr "=" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Second field should be figures" -msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμητικό" +#: field:res.payterm,name:0 +msgid "Payment Term (short name)" +msgstr "Όρος Πληρωμής (σύντομα)" + +#. module: base +#: model:ir.model,name:base.model_res_bank view:res.bank:0 +#: field:res.partner.bank,bank:0 +msgid "Bank" +msgstr "Τράπεζα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "STOCK_HARDDISK" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "Αναφορές:" + +#. module: base +#: field:ir.actions.report.xml,name:0 field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 field:ir.module.category,name:0 +#: field:ir.module.module,name:0 field:ir.module.module.dependency,name:0 +#: rml:ir.module.reference:0 field:ir.module.repository,name:0 +#: field:ir.property,name:0 field:ir.report.custom.fields,name:0 +#: field:ir.rule.group,name:0 field:ir.values,name:0 +#: field:maintenance.contract.module,name:0 field:res.bank,name:0 +#: field:res.config.view,name:0 field:res.lang,name:0 field:res.partner,name:0 +#: field:res.partner.bank.type,name:0 field:res.request.link,name:0 +#: field:res.users,name:0 field:workflow,name:0 field:workflow.activity,name:0 +msgid "Name" +msgstr "Όνομα" + +#. module: base +#: model:ir.model,name:base.model_ir_property +msgid "ir.property" +msgstr "ir.property" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "STOCK_APPLY" + +#. module: base +#: model:res.country,name:base.ms +msgid "Montserrat" +msgstr "Montserrat" + +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "Αναφορές" + +#. module: base +#: wizard_view:server.action.create,init:0 +#: wizard_field:server.action.create,init,type:0 +msgid "Select Action Type" +msgstr "Επιλογή Τύπου Ενέργειας" + +#. module: base +#: field:workflow,on_create:0 +msgid "On Create" +msgstr "Κατά τη Δημιουργία" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Παρακαλώ επιλέξτε το αρχείο .ZIP για εισαγωγή του Αρθρώματος" + +#. module: base +#: view:res.users:0 +msgid "" +"Please note that you will have to logout and relog if you change your " +"password." +msgstr "" +"Για να αλλαχθεί το συνθηματικό σας θα πρέπει να αποσυνδεθείτε και να " +"επανασυνδεθείτε στο σύστημα." + +#. module: base +#: model:res.country,name:base.gy +msgid "Guyana" +msgstr "Guyana" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "GPL-3" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2" +msgstr "GPL-2" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Resynchronise Terms" +msgstr "Ανασυγχρονισμός Όρων" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese (BR) / português (BR)" +msgstr "Portugese (BR) / português (BR)" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +msgid "ir.sequence.type" +msgstr "ir.sequence.type" + +#. module: base +#: field:ir.actions.server,record_id:0 +msgid "Create Id" +msgstr "Create Id" + +#. module: base +#: model:res.country,name:base.hn +msgid "Honduras" +msgstr "Honduras" + +#. module: base +#: field:ir.ui.view,arch:0 field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "Προβολή Δομής" + +#. module: base +#: view:maintenance.contract:0 field:maintenance.contract,module_ids:0 +msgid "Covered Modules" +msgstr "Αρθρώματα που καλύπτονται" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Average" +msgstr "Υπολογισμός Μέσου Όρου" + +#. module: base +#: field:res.users,context_tz:0 +msgid "Timezone" +msgstr "Ζώνη Ώρας" #. module: base #: model:ir.actions.act_window,name:base.action_model_grid_security @@ -6856,76 +3550,316 @@ msgid "Access Controls Grid" msgstr "Διάγραμμα Ελέγχου Πρόσβασης" #. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_actions -#: model:ir.ui.menu,name:base.menu_custom_action -#: model:ir.ui.menu,name:base.menu_ir_sequence_actions -#: model:ir.ui.menu,name:base.next_id_6 -msgid "Actions" -msgstr "Ενέργειες" +#: field:ir.module.module,demo:0 +msgid "Demo data" +msgstr "Demo δεδομένα" #. module: base #: selection:res.request,priority:0 msgid "High" msgstr "Υψηλή" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_instance_form +#: model:ir.ui.menu,name:base.menu_workflow_instance +msgid "Instances" +msgstr "Instances" + +#. module: base +#: model:res.country,name:base.aq +msgid "Antarctica" +msgstr "Antarctica" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" msgstr "Εξαγωγή" +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "Όλες οι ιδιότητες" + +#. module: base +#: wizard_button:module.upgrade,end,config:0 +#: wizard_button:module.upgrade,start,config:0 +msgid "Start configuration" +msgstr "Εκκίνηση ρυθμίσεων" + +#. module: base +#: model:res.country,name:base.na +msgid "Namibia" +msgstr "Namibia" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "STOCK_DISCONNECT" + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "Περιγραφή Πεδίων" + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "Έλγχος νέων Αρθρωμάτων" + +#. module: base +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comoros" + +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: view:ir.actions.server:0 model:ir.ui.menu,name:base.menu_server_action +msgid "Server Actions" +msgstr "Server Actions" + +#. module: base +#: model:res.country,name:base.tp +msgid "East Timor" +msgstr "East Timor" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Web" +msgstr "Web" + #. module: base #: help:res.bank,bic:0 msgid "Bank Identifier Code" msgstr "Τραπεζικός Κωδικός Αναγνώρισης" +#. module: base +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflow Definitions" +msgstr "Ορισμοί Ροών Εργασίας" + #. module: base #: model:res.country,name:base.tm msgid "Turkmenistan" msgstr "Turkmenistan" #. module: base -#: code:addons/base/ir/ir_actions.py:0 code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 code:report/custom.py:0 -#, python-format -msgid "Error" -msgstr "Σφάλμα" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" +msgstr "STOCK_CDROM" #. module: base -#: model:res.country,name:base.pm -msgid "Saint Pierre and Miquelon" -msgstr "Saint Pierre and Miquelon" +#: field:workflow.activity,action:0 +msgid "Python Action" +msgstr "Python Action" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "Μπορείτε επίσης να εισαγάγετε αρχεία .po." + +#. module: base +#: field:res.partner.event,planned_revenue:0 +msgid "Planned Revenue" +msgstr "Προγραμματισμένα Έσοδα" + +#. module: base +#: view:ir.rule.group:0 +msgid "Record rules" +msgstr "Καταχώρηση κανόνων" + +#. module: base +#: wizard_view:module.lang.import,init:0 +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 "" +"Πρέπει να εισάγετε ένα αρχείο .CSV με κωδικοποίηση UTF-8. Παρακαλώ ελέγξτε " +"ότι η πρώτη γραμμή του αρχείου σας είναι:" + +#. module: base +#: help:res.country,name:0 +msgid "The full name of the country." +msgstr "Πλήρες όνομα χώρας." + +#. module: base +#: model:res.country,name:base.et +msgid "Ethiopia" +msgstr "Ethiopia" + +#. module: base +#: view:res.lang:0 +msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." +msgstr "%H - Η Ώρα (24ωρη μορφή) σε δεκαδική μορφή [00, 23]." + +#. module: base +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." +msgstr "%M - Τα λεπτά της ώρας σε δεκαδική μορφή [00, 59]." #. module: base #: help:ir.actions.report.xml,header:0 msgid "Add or not the coporate RML header" msgstr "Add or not the coporate RML header" +#. module: base +#: help:res.country.state,code:0 +msgid "The state code in three chars.\n" +msgstr "Ο κωδικός κατάστασης με 3 χαρακτήρες\n" + +#. module: base +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" +msgstr "Ακρίβεια Υπολογισμού" + +#. module: base +#: view:ir.rule:0 +msgid "Test" +msgstr "Test" + +#. module: base +#: field:ir.actions.act_window.view,view_id:0 field:ir.default,page:0 +#: selection:ir.translation,type:0 +#: field:wizard.ir.model.menu.create.line,view_id:0 +msgid "View" +msgstr "Προβολή" + #. module: base #: field:res.partner.event,document:0 msgid "Document" msgstr "Έγγραφο" +#. module: base +#: model:res.country,name:base.kg +msgid "Kyrgyz Republic (Kyrgyzstan)" +msgstr "Kyrgyz Republic (Kyrgyzstan)" + +#. module: base +#: view:ir.model:0 view:ir.model.fields:0 +msgid "Security on Groups" +msgstr "Ασφάλεια σε Ομάδες" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REFRESH" msgstr "STOCK_REFRESH" +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Hours" +msgstr "Ώρες" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "Τύποι Ιεράρχησης" + #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_STOP" -msgstr "STOCK_STOP" +msgid "STOCK_HOME" +msgstr "STOCK_HOME" + +#. module: base +#: field:res.bank,zip:0 field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "ΤΚ" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FILE" +msgstr "STOCK_FILE" + +#. module: base +#: model:res.country,name:base.uz +msgid "Uzbekistan" +msgstr "Uzbekistan" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be installed" +msgstr "Προς εγκατάσταση" #. module: base #: view:wizard.module.update_translations:0 msgid "Update" msgstr "Ανανέωση" +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act view:ir.cron:0 +#: model:ir.ui.menu,name:base.menu_ir_cron_act +msgid "Scheduled Actions" +msgstr "Προγραμματισμένες ενέργειες" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_module +msgid "maintenance contract modules" +msgstr "maintenance contract modules" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_meta_information +msgid "Base" +msgstr "Βάση" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "ir.actions.wizard" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "Σύνδεσμος" + +#. module: base +#: view:res.partner:0 view:res.request:0 field:res.request,history:0 +msgid "History" +msgstr "Ιστορικό" + +#. module: base +#: model:res.country,name:base.mk +msgid "FYROM" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be removed" +msgstr "Προς διαγραφή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_WARNING" +msgstr "STOCK_DIALOG_WARNING" + +#. module: base +#: model:res.country,name:base.lr +msgid "Liberia" +msgstr "Liberia" + #. module: base #: model:ir.actions.report.xml,name:base.ir_module_reference_print msgid "Technical guide" msgstr "Τεχνικός οδηγός" +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "Προορισμός" + +#. module: base +#: help:ir.values,res_id:0 +msgid "Keep 0 if the action must appear on all resources." +msgstr "0 αν η ενέργεια πρέπει να εμφανίζεται σε όλους τους πόρους." + +#. module: base +#: field:ir.cron,interval_type:0 +msgid "Interval Unit" +msgstr "Μονάδα Διαστήματος" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "cs_CS" @@ -6937,25 +3871,121 @@ msgid "STOCK_CONVERT" msgstr "STOCK_CONVERT" #. module: base -#: model:res.country,name:base.tz -msgid "Tanzania" -msgstr "Tanzania" +#: view:ir.attachment:0 view:ir.model:0 view:res.groups:0 view:res.partner:0 +#: field:res.partner,comment:0 field:res.partner.function,ref:0 +msgid "Notes" +msgstr "Σημειώσεις" #. module: base -#: model:res.country,name:base.cx -msgid "Christmas Island" -msgstr "Christmas Island" +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "ir.rule" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "Ημέρες" + +#. module: base +#: field:ir.property,value:0 selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "Τιμή" + +#. module: base +#: field:ir.actions.server,write_id:0 +msgid "Write Id" +msgstr "Write Id" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "Ανανέωση Μεταφράσεων" + +#. module: base +#: selection:ir.translation,type:0 field:res.bank,code:0 +#: field:res.currency,code:0 field:res.lang,code:0 field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 field:res.partner.function,code:0 +msgid "Code" +msgstr "Κωδικός" + +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" +msgstr "Προεπιλεγμένο Πλάτος" #. module: base #: view:ir.actions.server:0 msgid "Other Actions Configuration" msgstr "Ρυθμίσεις Άλλων Ενεργειών" +#. module: base +#: model:res.country,name:base.mc +msgid "Monaco" +msgstr "Monaco" + +#. module: base +#: field:res.company,rml_footer1:0 +msgid "Report Footer 1" +msgstr "Report Footer 1" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_EXECUTE" msgstr "STOCK_EXECUTE" +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "Λεπτά" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "The modules have been upgraded / installed !" +msgstr "Επιτυχής εγκατάσταση / αναβάθμιση!" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "odt" + +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "Τιμή Τομέα" + +#. module: base +#: selection:ir.translation,type:0 view:wizard.module.lang.export:0 +msgid "Help" +msgstr "Βοήθεια" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "Αποδεκτοί Σύνδεσμοι στις Αιτήσεις" + +#. module: base +#: field:ir.module.category,module_nr:0 +msgid "Number of Modules" +msgstr "Αριθμός Αρθρωμάτων" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "STOCK_YES" + +#. module: base +#: view:ir.actions.server:0 +msgid "SMS Configuration" +msgstr "Ρύθμιση SMS " + +#. module: base +#: view:ir.cron:0 +msgid "Technical Data" +msgstr "Τεχνικά Δεδομένα" + #. module: base #: model:ir.actions.act_window,name:base.res_partner_canal-act #: model:ir.model,name:base.model_res_partner_canal @@ -6963,21 +3993,119 @@ msgstr "STOCK_EXECUTE" msgid "Channels" msgstr "Δίαυλοι" +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "Λίστα Προσβάσεων" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "Αντικέιμενο Εγγραφής" + +#. module: base +#: selection:res.request,state:0 +msgid "draft" +msgstr "πρόχειρα" + +#. module: base +#: model:res.country,name:base.kn +msgid "Saint Kitts & Nevis Anguilla" +msgstr "Saint Kitts & Nevis Anguilla" + +#. module: base +#: help:ir.actions.server,condition:0 +msgid "" +"Condition that is to be tested before action is executed, e.g. object." +"list_price > object.cost_price" +msgstr "" +"Condition that is to be tested before action is executed, e.g. object." +"list_price > object.cost_price" + #. module: base #: view:ir.module.module:0 msgid "Schedule for Installation" msgstr "Προγραμματισμός εγκατάστασης" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Χρονολογία χωρίς τον αιώνα: %(y)s" + #. module: base #: selection:ir.model.fields,select_level:0 msgid "Advanced Search" msgstr "Προχωρημένη Αναζήτηση" +#. module: base +#: view:res.lang:0 +msgid "7. %H:%M:%S ==> 18:25:20" +msgstr "7. %H:%M:%S ==> 18:25:20" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form view:res.partner:0 +msgid "Partners" +msgstr "Συνεργάτες" + +#. module: base +#: help:ir.actions.server,message:0 +msgid "" +"Specify the message. You can use the fields from the object. e.g. `Dear " +"[[ object.partner_id.name ]]`" +msgstr "" +"Συγκεκριμενοποιήστε το μήνυμα. Μπορείτε να χρησιμοποιήσετε τα πεδία του " +"αντικειμένου, π.χ. 'Αγαπητέ [[ object.partner_id.name ]]'" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "STOCK_MEDIA_PAUSE" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +msgid "Bank Type" +msgstr "Τύπος Τράπεζας" + +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "Όνομα Εναύσματος" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "Δημιουργία" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export ID" +msgstr "Export ID" + +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "Παρακαλώ επαναφορτώστε τη σελίδα του μενού (Ctrl+t Ctrl+r)." + #. module: base #: view:res.request:0 msgid "Send" msgstr "Αποστολή" +#. module: base +#: model:res.country,name:base.fr +msgid "France" +msgstr "France" + +#. module: base +#: field:ir.cron,priority:0 field:ir.ui.view,priority:0 +#: field:res.request,priority:0 field:res.request.link,priority:0 +msgid "Priority" +msgstr "Προτεραιότητα" + #. module: base #: field:ir.translation,src:0 msgid "Source" @@ -6989,9 +4117,19 @@ msgid "Keep empty for a private address, not related to partner." msgstr "Κενό για ιδιωτική διεύθυνση, άσχετη με το Συνεργάτη." #. module: base -#: model:res.country,name:base.vu -msgid "Vanuatu" -msgstr "Vanuatu" +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "Εκκίνηση Ροής" + +#. module: base +#: view:ir.sequence:0 +msgid "Legend (for prefix, suffix)" +msgstr "Υπόμνημα (για προθέματα, επιθήματα)" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" +msgstr "Δαικοπή Ροής" #. module: base #: view:res.company:0 @@ -6999,46 +4137,230 @@ msgid "Internal Header/Footer" msgstr "Εσωτερική Κεφαλίδα/Υποσέλιδο" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "" -"Save this document to a .tgz file. This archive containt UTF-8 %s files and " -"may be uploaded to launchpad." -msgstr "" -"Αποθύκευση του εγγράφου σε μορφή .tgz. Τα αρχεία είναι UTF-8 %s και μπορούν " -"να επεξεργαστούν με κειμενογράφο." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" +msgstr "STOCK_JUSTIFY_LEFT" #. module: base -#: wizard_button:module.upgrade,end,config:0 -#: wizard_button:module.upgrade,start,config:0 -msgid "Start configuration" -msgstr "Εκκίνηση ρυθμίσεων" +#: view:res.partner.bank:0 +msgid "Bank Account Owner" +msgstr "Ιδιοκτήτης Τραπεζικού Λογαριασμού" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form +#: model:ir.ui.menu,name:base.menu_values_form +msgid "Client Actions Connections" +msgstr "Client Actions Connections" + +#. module: base +#: field:ir.ui.view,name:0 +msgid "View Name" +msgstr "Όνομα Προβολής" + +#. module: base +#: field:ir.ui.view_sc,resource:0 +msgid "Resource Name" +msgstr "Περιγραφή Πόρου" + +#. module: base +#: view:ir.actions.server:0 selection:ir.actions.server,state:0 +msgid "Multi Actions" +msgstr "Multi Actions" + +#. module: base +#: model:res.country,name:base.af +msgid "Afghanistan, Islamic State of" +msgstr "Afghanistan, Islamic State of" + +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "Τύπος Διεύθυνσης" + +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "" +"Provide the field name where the record id is stored after the create " +"operations. If it is empty, you can not track the new record." +msgstr "" +"Provide the field name where the record id is stored after the create " +"operations. If it is empty, you can not track the new record." + +#. module: base +#: view:res.company:0 view:res.partner:0 +msgid "General Information" +msgstr "Γενικές Πληροφορίες" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "Αυτόματα" + +#. module: base +#: selection:ir.module.module,state:0 +msgid "Not Installable" +msgstr "Αδύνατο να εγκατασταθεί" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_window +#: model:ir.ui.menu,name:base.menu_ir_action_window +msgid "Window Actions" +msgstr "Ενέργειες Παραθύρου" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "workflow.activity" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group By" +msgstr "Ομαδοποίηση Ανά" + +#. module: base +#: model:res.country,name:base.gp +msgid "Guadeloupe (French)" +msgstr "Guadeloupe (French)" + +#. module: base +#: field:ir.translation,value:0 +msgid "Translation Value" +msgstr "Μετάφραση" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" msgstr "Catalan / Català" +#. module: base +#: view:res.request:0 +msgid "End of Request" +msgstr "Τέλος Αίτησης" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Accumulate" +msgstr "Συσσώρευση" + +#. module: base +#: view:res.request:0 +msgid "References" +msgstr "Παραπομπές" + #. module: base #: model:res.country,name:base.do msgid "Dominican Republic" msgstr "Dominican Republic" +#. module: base +#: view:res.lang:0 +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 -Ο αριθμός της εβδομάδας στο έτος (Κυριακή πρώτη ημέρα της εβδομάδας) σε " +"δεκαδική μορφή [00, 53]. Όλες οι ημέρες του χρόνου πριν την 1η Κυριακή " +"θεωρούνται η εβδομάδα 0." + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "Αυτή η διαδικασία μπορεί να πάρει λίγα λεπτά." + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" #. module: base -#: model:res.country,name:base.sa -msgid "Saudi Arabia" -msgstr "Saudi Arabia" +#: selection:ir.ui.menu,icon:0 +msgid "terp-product" +msgstr "terp-product" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Τα ιστογράμματα (bar charts) χρειάζονται τουλάχιστον δύο πεδία" +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "επιλέξτε" + +#. module: base +#: model:res.country,name:base.gh +msgid "Ghana" +msgstr "Ghana" + +#. module: base +#: field:maintenance.contract,kind:0 field:workflow.activity,kind:0 +msgid "Kind" +msgstr "Είδος" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" +msgstr "ir.exports.line" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of Calls" +msgstr "Αριθμός Κλήσεων" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "Manual" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Could you check your contract information ?" +msgstr "Παρακαλώ ελέγξτε τα στοιχεία σας" + +#. module: base +#: model:res.country,name:base.hm +msgid "Heard and McDonald Islands" +msgstr "Heard and McDonald Islands" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created Date" +msgstr "Ημερ/νία Δημιουργίας" + +#. module: base +#: wizard_button:base.module.import,init,end:0 +#: selection:ir.actions.todo,state:0 +#: wizard_button:module.lang.import,init,end:0 +#: wizard_button:module.lang.install,init,end:0 +#: wizard_button:module.module.update,init,end:0 +#: wizard_button:module.upgrade,next,end:0 +#: wizard_button:res.partner.sms_send,init,end:0 +#: wizard_button:res.partner.spam_send,init,end:0 +#: view:wizard.ir.model.menu.create:0 view:wizard.module.lang.export:0 +#: view:wizard.module.update_translations:0 +msgid "Cancel" +msgstr "Ακύρωση" + +#. module: base +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory" +msgstr "Φάκελλος" + +#. module: base +#: field:res.partner.event,som:0 field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Προδιάθεση" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Line Plot" +msgstr "Γραμμικό Διάγραμμα" + +#. module: base +#: field:wizard.ir.model.menu.create,name:0 +msgid "Menu Name" +msgstr "Όνομα Μενού" #. module: base #: help:res.partner,supplier:0 @@ -7055,6 +4377,32 @@ msgstr "" msgid "Relation Field" msgstr "Πεδίο Σχέσης" +#. module: base +#: help:res.users,password:0 +msgid "" +"Keep empty if you don't want the user to be able to connect on the system." +msgstr "Αφήστε το κενό αν δεν επιθυμείτε ο χρήστης να συνδέεται στο σύστημα." + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report Title" +msgstr "Τίτλος Αναφοράς" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish / Español" +msgstr "Spanish / Español" + +#. module: base +#: field:ir.report.custom.fields,fontcolor:0 +msgid "Font color" +msgstr "Χρώμα γραμματοσειράς" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (TW) / 正體字" +msgstr "Chinese (TW) / 正體字" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -7065,10 +4413,31 @@ msgstr "Destination Instance" msgid "Action on Multiple Doc." msgstr "Ενέργεια σε Πολλαπλά Έγγραφα" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_DESCENDING" +msgstr "STOCK_SORT_DESCENDING" + #. module: base #: view:wizard.module.lang.export:0 -msgid "https://translations.launchpad.net/openobject" -msgstr "https://translations.launchpad.net/openobject" +msgid "" +"The official translations pack of all OpenERP/OpenObjects module are managed " +"through launchpad. We use their online interface to synchronize all " +"translations efforts." +msgstr "" +"Η επίσημη μετάφραση των Αρθρωμάτων του OpenERP/OpenObjects γίνονται με " +"κειμενογράφο. Για το συγχρονισμό όλων των προσπαθειών χρησιμοποιούμε το " +"online interface." + +#. module: base +#: model:res.country,name:base.my +msgid "Malaysia" +msgstr "Malaysia" + +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" +msgstr "ir.model.config" #. module: base #: model:ir.actions.act_window,name:base.action_partner_title @@ -7076,26 +4445,96 @@ msgstr "https://translations.launchpad.net/openobject" msgid "Titles" msgstr "Τίτλοι" +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" +msgstr "res.request.history" + +#. module: base +#: view:ir.actions.server:0 +msgid "Client Action Configuration" +msgstr "Client Action Configuration" + +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "Λογότυπο" + #. module: base #: field:ir.actions.todo,start_date:0 msgid "Start Date" msgstr "Ημερ/νία Εκκίνησης" #. module: base -#: field:ir.actions.report.xml,report_xml:0 -msgid "XML path" -msgstr "XML path" +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.model,name:base.model_res_partner_address +#: model:ir.ui.menu,name:base.menu_partner_address_form +#: view:res.partner.address:0 +msgid "Partner Addresses" +msgstr "Διευθύνσεις Συνεργάτη" + +#. module: base +#: model:res.country,name:base.us +msgid "United States" +msgstr "USA" + +#. module: base +#: field:ir.default,company_id:0 field:ir.property,company_id:0 +#: field:ir.values,company_id:0 view:res.company:0 +#: field:res.users,company_id:0 +msgid "Company" +msgstr "Εταιρεία" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "STOCK_PROPERTIES" + +#. module: base +#: model:res.country,name:base.so +msgid "Somalia" +msgstr "Somalia" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Κύριε" + +#. module: base +#: selection:ir.actions.act_window,target:0 selection:ir.actions.url,target:0 +msgid "New Window" +msgstr "Νέο Παράθυρο" #. module: base #: model:res.country,name:base.gn msgid "Guinea" msgstr "Guinea" +#. module: base +#: model:res.country,name:base.pa +msgid "Panama" +msgstr "Panama" + #. module: base #: model:res.country,name:base.lu msgid "Luxembourg" msgstr "Luxembourg" +#. module: base +#: model:res.country,name:base.cv +msgid "Cape Verde" +msgstr "Cape Verde (Πράσινο Ακρωτήριο)" + +#. module: base +#: model:res.country,name:base.bs +msgid "Bahamas" +msgstr "Bahamas" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "Εμπορική Προοπτική" + #. module: base #: model:ir.actions.todo,note:base.config_wizard_step_user msgid "" @@ -7108,34 +4547,172 @@ msgstr "" "Μπορείτε να χωρίσετε τους χρήστες σε ομάδες δικαιωμάτων." #. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "Χαμηλή" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NETWORK" +msgstr "STOCK_NETWORK" #. module: base -#: view:ir.values:0 -msgid "tree_but_action, client_print_multi" -msgstr "tree_but_action, client_print_multi" +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Συνημμένο" + +#. module: base +#: model:res.country,name:base.ie +msgid "Ireland" +msgstr "Ireland" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +#: model:ir.ui.menu,name:base.menu_partner_customer_form_new +msgid "New Partner" +msgstr "Νέος Συνεργάτης" + +#. module: base +#: wizard_field:module.module.update,update,update:0 +msgid "Number of modules updated" +msgstr "Αριθμός Αρθρωμάτων που ενημερώθηκαν" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +msgstr "STOCK_EDIT" + +#. module: base +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Προεπισκόπηση" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Skip Step" +msgstr "Παράλειψη Βήματος" + +#. module: base +#: model:ir.actions.act_window,name:base.act_res_partner_event +#: field:res.partner,events:0 field:res.partner.event,name:0 +msgid "Events" +msgstr "Συμβάντα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles +#: model:ir.ui.menu,name:base.menu_action_res_roles +msgid "Roles Structure" +msgstr "Διάρθρωση Ρόλων" + +#. module: base +#: model:res.country,name:base.pn +msgid "Pitcairn Island" +msgstr "Pitcairn Island" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_url selection:ir.ui.menu,action:0 +msgid "ir.actions.url" +msgstr "ir.actions.url" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_STOP" +msgstr "STOCK_MEDIA_STOP" + +#. module: base +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "View Ref." + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "Μη καταχωρημένο" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +msgid "Active Partner Events" +msgstr "Ενεργά Συμβάντα Συνεργάτη" #. module: base #: model:res.country,name:base.sv msgid "El Salvador" msgstr "El Salvador" +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" +msgstr "Πορτραίτο" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-graph" +msgstr "terp-graph" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" +msgstr "Record Rules" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Επαφές Συνεργάτη" + +#. module: base +#: wizard_field:module.module.update,update,add:0 +msgid "Number of modules added" +msgstr "Αριθμός Αρθρωμάτων που προστέθηκαν" + #. module: base #: field:res.bank,phone:0 field:res.partner.address,phone:0 msgid "Phone" msgstr "Τηλέφωνο" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +msgstr "Ημέρα του χρόνου: %(day)s" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Απαιτούμενος Ρόλος" + +#. module: base +#: field:ir.actions.act_window,groups_id:0 +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.report.xml,groups_id:0 field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups view:res.groups:0 +#: view:res.users:0 field:res.users,groups_id:0 +msgid "Groups" +msgstr "Ομάδες" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French / Français" +msgstr "French / Français" + #. module: base #: field:res.groups,menu_access:0 msgid "Access Menu" msgstr "Μενού Πρόσβασης" #. module: base -#: model:res.country,name:base.th -msgid "Thailand" -msgstr "Thailand" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Δημιουργημένα Μενού" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch (Belgium) / Nederlands (Belgïe)" +msgstr "" + +#. module: base +#: view:ir.model:0 view:ir.model.fields:0 view:ir.property:0 +#: model:ir.ui.menu,name:base.next_id_15 +msgid "Properties" +msgstr "Ιδιότητες" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -7145,11 +4722,111 @@ msgstr "Thailand" msgid ">" msgstr ">" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" +msgstr "STOCK_ADD" + +#. module: base +#: field:workflow.triggers,workitem_id:0 +msgid "Workitem" +msgstr "Workitem" + +#. module: base +#: model:res.country,name:base.ge +msgid "Georgia" +msgstr "Georgia" + +#. module: base +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "Διαχωριστής Χιλιάδων" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry +msgid "country_id" +msgstr "country_id" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "STOCK_DIALOG_AUTHENTICATION" + +#. module: base +#: model:res.country,name:base.pl +msgid "Poland" +msgstr "Poland" + #. module: base #: field:ir.model.access,perm_unlink:0 msgid "Delete Permission" msgstr "Διαγραφή Πρόσβασης" +#. module: base +#: field:workflow.activity,signal_send:0 +msgid "Signal (subflow.*)" +msgstr "Σινιάλο (υπο-ροή.*)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_OUT" +msgstr "STOCK_ZOOM_OUT" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "Επιλογή" + +#. module: base +#: field:ir.values,meta:0 +msgid "Meta Datas" +msgstr "Meta Datas" + +#. module: base +#: field:ir.model,name:0 field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 field:ir.values,model:0 +msgid "Object Name" +msgstr "Όνομα Αντικειμένου" + +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 selection:ir.values,key:0 +msgid "Action" +msgstr "Ενέργεια" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: view:ir.actions.wizard:0 model:ir.ui.menu,name:base.menu_ir_action_wizard +msgid "Wizards" +msgstr "Οδηγοί" + +#. module: base +#: field:ir.rule,domain_force:0 +msgid "Force Domain" +msgstr "Επιβολή Τομέα" + +#. module: base +#: help:ir.actions.server,expression:0 +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 "" +"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`." + +#. module: base +#: model:ir.model,name:base.model_ir_cron +msgid "ir.cron" +msgstr "ir.cron" + #. module: base #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 @@ -7161,6 +4838,32 @@ msgstr "Και" msgid "Object Relation" msgstr "Σχέση Αντικειμένου" +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: view:ir.attachment:0 model:ir.ui.menu,name:base.menu_action_attachment +msgid "Attachments" +msgstr "Συνημμένα" + +#. module: base +#: field:res.request,act_to:0 field:res.request.history,act_to:0 +msgid "To" +msgstr "Σε" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Validate" +msgstr "_Validate" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_wizard +msgid "maintenance.contract.wizard" +msgstr "maintenance.contract.wizard" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "STOCK_SELECT_COLOR" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT" @@ -7172,15 +4875,39 @@ msgid "General" msgstr "Γενικά" #. module: base -#: model:res.country,name:base.uz -msgid "Uzbekistan" -msgstr "Uzbekistan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" +msgstr "STOCK_NO" #. module: base -#: model:ir.model,name:base.model_ir_actions_act_window -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_window" -msgstr "ir.actions.act_window" +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "Κεφαλίδα Αναφοράς" + +#. module: base +#: field:ir.actions.server,child_ids:0 +msgid "Other Actions" +msgstr "Άλλες Ενέργειες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "terp-mrp" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "Ολοκληρωμένο" + +#. module: base +#: field:workflow.activity,out_transitions:0 +msgid "Outgoing Transitions" +msgstr "Εκροές" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" +msgstr "Τιμολόγιο" #. module: base #: model:res.country,name:base.vi @@ -7188,20 +4915,156 @@ msgid "Virgin Islands (USA)" msgstr "Virgin Islands (USA)" #. module: base -#: model:res.country,name:base.tw -msgid "Taiwan" -msgstr "Taiwan" +#: help:res.partner,vat:0 +msgid "" +"Value Added Tax number. Check the box if the partner is subjected to the " +"VAT. Used by the VAT legal statement." +msgstr "" +"Αριθμός ΦΠΑ. Επιλέξτε αυτό αν ο συνεργάτης πληρώνει ΦΠΑ. Χρησιμοποιείται " +"στην περιοδική δήλωση ΦΠΑ." #. module: base -#: view:ir.rule:0 -msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "Αν δεν επιβάλλετε τομέα θα χρησιμοποιηθεί η απλή εγκατάσταση τομέα" +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Μήνες" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" + +#. module: base +#: model:res.country,name:base.cy +msgid "Cyprus" +msgstr "Cyprus" + +#. module: base +#: field:ir.model.access,perm_write:0 +msgid "Write Access" +msgstr "Δικαίωμα Εγγραφής" + +#. module: base +#: model:res.country,name:base.bb +msgid "Barbados" +msgstr "Barbados" + +#. module: base +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Μέγεθος" + +#. module: base +#: field:res.bank,city:0 field:res.partner,city:0 +#: field:res.partner.address,city:0 field:res.partner.bank,city:0 +msgid "City" +msgstr "Πόλη" + +#. module: base +#: model:res.country,name:base.mg +msgid "Madagascar" +msgstr "Madagascar" + +#. module: base +#: model:res.country,name:base.it +msgid "Italy" +msgstr "Italy" + +#. module: base +#: selection:ir.model,state:0 selection:ir.model.grid,state:0 +msgid "Custom Object" +msgstr "Εδικό Αντικείμενο" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "<>" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 view:ir.ui.menu:0 field:ir.ui.menu,name:0 +msgid "Menu" +msgstr "Μενού" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" +msgstr "<=" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "Εξαγωγή Δεδομένων" + +#. module: base +#: model:res.country,name:base.fm +msgid "Micronesia" +msgstr "Micronesia" + +#. module: base +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "res.partner.som" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Estonian / Eesti keel" +msgstr "Estonian / Eesti keel" + +#. module: base +#: field:ir.module.module,menus_by_module:0 view:res.groups:0 +msgid "Menus" +msgstr "Μενού" + +#. module: base +#: help:ir.rule.group,global:0 +msgid "Make the rule global, otherwise it needs to be put on a group or user" +msgstr "Θέστε τον κανόνα ως γενικό αλλιώς ορίστε τον σε μια ομάδα ή χρήστη" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_UP" +msgstr "STOCK_GO_UP" + +#. module: base +#: view:ir.values:0 +msgid "Action To Launch" +msgstr "Επιλογή Ενέργειας" + +#. module: base +#: model:res.country,name:base.um +msgid "USA Minor Outlying Islands" +msgstr "USA Minor Outlying Islands" + +#. module: base +#: field:ir.actions.url,target:0 +msgid "Action Target" +msgstr "Στόχος Ενέργειας" #. module: base #: field:ir.report.custom,field_parent:0 field:ir.ui.view,field_parent:0 msgid "Child Field" msgstr "Υπό-Πεδίο" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "uk_UK" +msgstr "" + +#. module: base +#: model:res.country,name:base.ai +msgid "Anguilla" +msgstr "Anguilla" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese / português" +msgstr "Portugese / português" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "GPL-3 ή μεταγενέστερη έκδοση" + #. module: base #: field:ir.actions.act_window,usage:0 #: field:ir.actions.act_window_close,usage:0 field:ir.actions.actions,usage:0 @@ -7210,30 +5073,103 @@ msgstr "Υπό-Πεδίο" msgid "Action Usage" msgstr "Χρήση Ενέργειας" +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" +msgstr "res.request" + +#. module: base +#: model:res.country,name:base.il +msgid "Israel" +msgstr "Israel" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "Confirmation" +msgstr "Επιβεβαίωση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_server_action_create +msgid "Create Action" +msgstr "Δημιουργία Ενέργειας" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" msgstr "workflow.workitem" #. module: base -#: selection:ir.module.module,state:0 -msgid "Not Installable" -msgstr "Αδύνατο να εγκατασταθεί" +#: field:ir.ui.view_sc,name:0 +msgid "Shortcut Name" +msgstr "Όνομα Συντόμευσης" #. module: base -#: rml:ir.module.reference:0 -msgid "View :" -msgstr "Προβολή:" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Πιστωτικό Όριο" #. module: base -#: field:ir.model.fields,view_load:0 -msgid "View Auto-Load" -msgstr "Αυτόματη Φόρτωση Προβολής" +#: model:res.country,name:base.pg +msgid "Papua New Guinea" +msgstr "Papua New Guinea (Παπούα Νέα Γουινέα)" #. module: base -#: field:ir.module.module,installed_version:0 -msgid "Latest version" -msgstr "Τελευταία έκδοση" +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Πιθανότητα (0,50)" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Uninstallable" + +#. module: base +#: field:ir.module.module,url:0 field:ir.module.repository,url:0 +msgid "URL" +msgstr "URL" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "Turkish / Türkçe" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" +msgstr "Objects" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" +msgstr "Εισαγωγές / Εξαγωγές" + +#. module: base +#: field:res.users,address_id:0 +msgid "Address" +msgstr "Διεύθυνση" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Your system will be upgraded." +msgstr "Το σύστημα θα αναβαθμιστεί" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +msgid "Configure User" +msgstr "Ρυθμίσεις Χρήστη" + +#. module: base +#: field:ir.report.custom,print_format:0 +msgid "Print format" +msgstr "Μορφή Εκτύπωσης" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7245,20 +5181,170 @@ msgstr "STOCK_JUMP_TO" msgid "End Date" msgstr "Ημερ/νία Λήξης" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-calendar" +msgstr "terp-calendar" + #. module: base #: field:ir.exports,resource:0 field:ir.property,res_id:0 msgid "Resource" msgstr "Πηγή" +#. module: base +#: field:ir.actions.server,email:0 +msgid "Email Address" +msgstr "Email Address" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-tools" +msgstr "terp-tools" + +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +msgid "Payment term" +msgstr "Όροι Πληρωμής" + +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Report xml" +msgstr "Αναφορά xml" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_open_categ +#: model:ir.actions.act_window,name:base.open_module_tree +#: view:ir.module.module:0 model:ir.ui.menu,name:base.menu_module_tree +#: field:wizard.module.lang.export,modules:0 +msgid "Modules" +msgstr "Αρθρώματα" + +#. module: base +#: selection:workflow.activity,kind:0 field:workflow.activity,subflow_id:0 +#: field:workflow.workitem,subflow_id:0 +msgid "Subflow" +msgstr "Υπο-ροή" + +#. module: base +#: help:ir.values,action_id:0 +msgid "This field is not used, it only helps you to select the right action." +msgstr "" +"Αυτό το πεδίο δεν χρησιμοποιείται, απλά σας βοηθά να επιλέξετε την σωστή " +"ενέργεια. " + +#. module: base +#: model:res.country,name:base.tt +msgid "Trinidad and Tobago" +msgstr "Trinidad and Tobago" + #. module: base #: field:maintenance.contract,name:0 field:maintenance.contract.wizard,name:0 msgid "Contract ID" msgstr "Αριθμός Συμβολαίου" #. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "center" -msgstr "κέντρο" +#: model:res.country,name:base.lv +msgid "Latvia" +msgstr "Latvia (Λεττονία)" + +#. module: base +#: view:ir.values:0 +msgid "Values" +msgstr "Τιμές" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_INFO" +msgstr "STOCK_DIALOG_INFO" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_upgrade +#: model:ir.ui.menu,name:base.menu_wizard_upgrade +msgid "Apply Scheduled Upgrades" +msgstr "Εφαρμογή Προγραμματισμένων Ενημερώσεων" + +#. module: base +#: view:workflow.activity:0 field:workflow.workitem,act_id:0 +msgid "Activity" +msgstr "Activity" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: model:ir.ui.menu,name:base.menu_action_res_bank_form view:res.bank:0 +#: field:res.partner,bank_ids:0 +msgid "Banks" +msgstr "Τράπεζες" + +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "res.config.view" + +#. module: base +#: view:ir.ui.view_sc:0 field:res.partner.title,shortcut:0 +msgid "Shortcut" +msgstr "Συντόμευση" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-sale" +msgstr "terp-sale" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mappings" +msgstr "Field Mappings" + +#. module: base +#: view:res.lang:0 +msgid "%d - Day of the month as a decimal number [01,31]." +msgstr "%d - Η ημέρα του μήνα σε δεκαδική μορφή [01, 31]." + +#. module: base +#: view:res.lang:0 +msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." +msgstr "%I - Η Ώρα (12ωρο) σε δεκαδική μορφή [01, 12]." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Romanian / limba română" +msgstr "Romanian / limba română" + +#. module: base +#: field:res.company,parent_id:0 +msgid "Parent Company" +msgstr "Μητρική Εταιρεία" + +#. module: base +#: field:ir.values,object:0 +msgid "Is Object" +msgstr "Is Object" + +#. module: base +#: field:ir.cron,doall:0 +msgid "Repeat Missed" +msgstr "Επανάληψη Παραλειπομένων" + +#. module: base +#: help:ir.actions.server,state:0 +msgid "Type of the Action that is to be executed" +msgstr "Τύπος Ενέργειας για εκτέλεση" + +#. module: base +#: field:ir.server.object.lines,server_id:0 +msgid "Object Mapping" +msgstr "Χάρτης Αντικειμένων" + +#. module: base +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "Δημοσιοποιημένη Έκδοση" + +#. module: base +#: help:res.currency,rate:0 help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "Ισοτιμία νομίσματος" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -7268,9 +5354,135 @@ msgid "States" msgstr "Καταστάσεις" #. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group or user" -msgstr "Θέστε τον κανόνα ως γενικό αλλιώς ορίστε τον σε μια ομάδα ή χρήστη" +#: model:res.country,name:base.ug +msgid "Uganda" +msgstr "Uganda" + +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "Ισοτιμία" + +#. module: base +#: model:res.country,name:base.cg +msgid "Congo" +msgstr "Congo" + +#. module: base +#: view:ir.actions.server:0 +msgid "Create / Write" +msgstr "Δημιουργία / Εγγραφή" + +#. module: base +#: view:res.lang:0 +msgid "Examples" +msgstr "Παραδείγματα" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +msgid "Customization" +msgstr "Προσαρμογή" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category without removing it." +msgstr "" +"Το ενεργό πεδίο σας επιτρέπει να κρύψετε την κατηγορία χωρίς να την " +"διαγράψετε." + +#. module: base +#: model:res.country,name:base.py +msgid "Paraguay" +msgstr "Paraguay" + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Προεπιλεγμένη Τιμή" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Object:" +msgstr "Αντικείμενο:" + +#. module: base +#: model:res.country,name:base.st +msgid "Saint Tome (Sao Tome) and Principe" +msgstr "Saint Tome (Sao Tome) and Principe" + +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "Νομός" + +#. module: base +#: model:res.country,name:base.bw +msgid "Botswana" +msgstr "Botswana" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Calculate Count" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "αριστερά" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "Readonly" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "ir.ui.view_sc" + +#. module: base +#: view:ir.model:0 view:res.request:0 +msgid "Status" +msgstr "Κατάσταση" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +msgid "Report Xml" +msgstr "Αναφορά Xml" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +msgid "Partner Titles" +msgstr "Τίτλοι Συνεργάτη" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "Υπηρεσία" + +#. module: base +#: field:ir.actions.report.xml,report_xml:0 +msgid "XML path" +msgstr "XML path" + +#. module: base +#: help:ir.actions.act_window,auto_refresh:0 +msgid "Add an auto-refresh on the view" +msgstr "Add an auto-refresh on the view" + +#. module: base +#: model:res.country,name:base.lt +msgid "Lithuania" +msgstr "Lithuania" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Base Field" +msgstr "Base Field" #. module: base #: field:ir.attachment,datas_fname:0 field:wizard.module.lang.export,name:0 @@ -7283,9 +5495,9 @@ msgid "Access" msgstr "Πρόσβαση" #. module: base -#: model:res.country,name:base.sk -msgid "Slovak Republic" -msgstr "Slovak Republic" +#: field:res.partner,child_ids:0 field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "Παρ. Συνεργάτη" #. module: base #: model:res.country,name:base.aw @@ -7293,29 +5505,128 @@ msgid "Aruba" msgstr "Aruba" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Weeks" -msgstr "Εβδομάδες" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_DOWN" +msgstr "STOCK_GO_DOWN" + +#. module: base +#: model:res.country,name:base.tw +msgid "Taiwan" +msgstr "Taiwan" + +#. module: base +#: model:res.country,name:base.ar +msgid "Argentina" +msgstr "Argentina" + +#. module: base +#: help:res.partner,user_id:0 +msgid "" +"The internal user that is in charge of communicating with this partner if " +"any." +msgstr "Ο χρήστης, υπεύθυνος για την επικοινωνία με το συνεργάτη, αν υπάρχει." #. module: base #: field:res.groups,name:0 msgid "Group Name" msgstr "Όνομα Ομάδας" +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_download:0 +msgid "Modules to download" +msgstr "Αρθρώματα για λήψη" + +#. module: base +#: model:res.country,name:base.ch +msgid "Switzerland" +msgstr "Switzerland / Ελβετία" + #. module: base #: model:res.country,name:base.bh msgid "Bahrain" msgstr "Bahrain" #. module: base -#: model:res.partner.category,name:base.res_partner_category_12 -msgid "Segmentation" -msgstr "Καταμερισμός" +#: field:res.bank,fax:0 field:res.partner.address,fax:0 +msgid "Fax" +msgstr "Fax" + +#. module: base +#: model:res.country,name:base.ye +msgid "Yemen" +msgstr "Yemen" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_workitem_form +#: model:ir.ui.menu,name:base.menu_workflow_workitem +msgid "Workitems" +msgstr "Workitems" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND" -msgstr "STOCK_FIND" +msgid "STOCK_PRINT_PREVIEW" +msgstr "STOCK_PRINT_PREVIEW" + +#. module: base +#: field:wizard.module.lang.export,advice:0 +msgid "Advice" +msgstr "Συμβουλή" + +#. module: base +#: model:res.country,name:base.si +msgid "Slovenia" +msgstr "Slovenia" + +#. module: base +#: model:ir.model,name:base.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom_fields +msgid "ir.report.custom.fields" +msgstr "ir.report.custom.fields" + +#. module: base +#: model:res.country,name:base.uk +msgid "United Kingdom" +msgstr "United Kingdom" + +#. module: base +#: model:res.country,name:base.de +msgid "Germany" +msgstr "Germany" + +#. module: base +#: help:ir.actions.server,srcmodel_id:0 +msgid "" +"Object in which you want to create / write the object. If it is empty then " +"refer to the Object field." +msgstr "" +"Object in which you want to create / write the object. If it is empty then " +"refer to the Object field." + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Not Installed" +msgstr "Μη Εγκατεστημένο" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Lithuanian / Lietuvių kalba" +msgstr "Lithuanian / Lietuvių kalba" + +#. module: base +#: field:res.users,action_id:0 +msgid "Home Action" +msgstr "Home Action" + +#. module: base +#: field:ir.ui.menu,icon:0 +msgid "Icon" +msgstr "Εικονίδιο" #. module: base #: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard @@ -7324,51 +5635,202 @@ msgstr "STOCK_FIND" msgid "Add Maintenance Contract" msgstr "Προσθήκη Συμβολαίου Συντήρησης" +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +msgid "Ok" +msgstr "ΟΚ" + +#. module: base +#: field:res.lang,grouping:0 +msgid "Separator Format" +msgstr "Μορφή Διαχωριστή" + +#. module: base +#: model:res.country,name:base.pk +msgid "Pakistan" +msgstr "Pakistan" + +#. module: base +#: field:ir.ui.view,inherit_id:0 +msgid "Inherited View" +msgstr "Παράγωγος Προβολή" + +#. module: base +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base +#: model:res.country,name:base.mq +msgid "Martinique (French)" +msgstr "Martinique (French)" + +#. module: base +#: view:res.lang:0 +msgid "%p - Equivalent of either AM or PM." +msgstr "%p - Αντίστοιχο με το π.μ ή το μ.μ." + #. module: base #: field:ir.actions.act_window,limit:0 field:ir.report.custom,limitt:0 msgid "Limit" msgstr "Όριο" +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Actions" +msgstr "Επαναληπτικές ενέργειες" + #. module: base #: help:ir.actions.server,wkf_model_id:0 msgid "Workflow to be executed on this model." msgstr "Ροή εργασίας μοντέλου" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Διεύθυνση Συνεργάτη" + +#. module: base +#: model:res.country,name:base.sn +msgid "Senegal" +msgstr "Senegal" + +#. module: base +#: model:res.country,name:base.ws +msgid "Samoa" +msgstr "Samoa" + +#. module: base +#: model:res.country,name:base.nz +msgid "New Zealand" +msgstr "New Zealand" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "STOCK_DND" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "Or" + #. module: base #: model:res.country,name:base.jm msgid "Jamaica" msgstr "Jamaica" +#. module: base +#: model:res.country,name:base.al +msgid "Albania" +msgstr "Albania" + +#. module: base +#: field:maintenance.contract,date_stop:0 +msgid "Ending Date" +msgstr "Ημερ/νία Λήξης" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "Μη εγκατεστημένα Αρθρώματα" + +#. module: base +#: model:res.country,name:base.nf +msgid "Norfolk Island" +msgstr "Norfolk Island" + +#. module: base +#: model:res.country,name:base.kz +msgid "Kazakhstan" +msgstr "Kazakhstan" + #. module: base #: model:res.country,name:base.az msgid "Azerbaijan" msgstr "Azerbaijan" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Warning" -msgstr "Προσοχή" +#: model:ir.actions.act_window,name:base.open_module_tree_install +#: model:ir.ui.menu,name:base.menu_module_tree_install +msgid "Installed modules" +msgstr "Εγκατεστημένα Αρθρώματα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Your Maintenance Contracts" +msgstr "Συμβόλαια Συντήρησης" + +#. module: base +#: field:ir.ui.menu,child_id:0 +msgid "Child IDs" +msgstr "Child IDs" + +#. module: base +#: model:res.country,name:base.ae +msgid "United Arab Emirates" +msgstr "United Arab Emirates" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 rml:ir.module.reference:0 +msgid "Module" +msgstr "Άρθρωμα" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Arabic / الْعَرَبيّة" msgstr "Arabic / الْعَرَبيّة" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + #. module: base #: model:res.country,name:base.gi msgid "Gibraltar" msgstr "Gibraltar" +#. module: base +#: field:ir.actions.server,action_id:0 selection:ir.actions.server,state:0 +msgid "Client Action" +msgstr "Client Action" + #. module: base #: model:res.country,name:base.vg msgid "Virgin Islands (British)" msgstr "Virgin Islands (British)" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PREVIOUS" -msgstr "STOCK_MEDIA_PREVIOUS" +#: model:res.country,name:base.bd +msgid "Bangladesh" +msgstr "Bangladesh" + +#. module: base +#: field:workflow.transition,signal:0 +msgid "Signal (button Name)" +msgstr "Σινιάλο (όνομα πλήκτρου)" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "Καθορισμένες Αναφορές" + +#. module: base +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "Σφάλμα! Υπάρχει εταιρεία με την ίδια περιγραφή" + +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" +msgstr "Fiji" #. module: base #: selection:module.lang.install,init,lang:0 @@ -7376,19 +5838,42 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Ρυθμίσεις Εναύσματος (Trigger)." #. module: base -#: model:res.country,name:base.rw -msgid "Rwanda" -msgstr "Rwanda" +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" #. module: base -#: constraint:res.partner:0 -msgid "The VAT doesn't seem to be correct." -msgstr "Ο ΦΠΑ δε φαίνεται σωστός" +#: field:ir.actions.server,loop_action:0 +msgid "Loop Action" +msgstr "Loop Action" + +#. module: base +#: rml:ir.module.reference:0 field:maintenance.contract.module,version:0 +msgid "Version" +msgstr "Έκδοση" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +#: view:maintenance.contract:0 +msgid "Maintenance Contract" +msgstr "Συμβόλαιο Συντήρησης" + +#. module: base +#: help:ir.actions.server,trigger_obj_id:0 +msgid "Select the object from the model on which the workflow will executed." +msgstr "" +"Επιλέξτε το αντικείμενο από το μοντέλο στο οποίο η ροή εργασίας θα " +"εκτελεστεί." + +#. module: base +#: model:res.country,name:base.la +msgid "Laos" +msgstr "Laos" #. module: base #: selection:ir.report.custom.fields,operation:0 @@ -7401,9 +5886,19 @@ msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Ημέρα Εβδομάδας(0:Δευτέρα): %(ημέρες)" #. module: base -#: model:res.country,name:base.ck -msgid "Cook Islands" -msgstr "Cook Islands" +#: selection:ir.actions.server,state:0 +msgid "Email" +msgstr "Email" + +#. module: base +#: view:res.partner.canal:0 field:res.partner.event,canal_id:0 +msgid "Channel" +msgstr "Κανάλι" + +#. module: base +#: field:ir.model.access,perm_create:0 +msgid "Create Access" +msgstr "Δημιουργία Πρόσβασης" #. module: base #: help:ir.actions.server,mobile:0 @@ -7416,20 +5911,31 @@ msgstr "" "invoice, then `object.invoice_address_id.mobile` is the field which gives " "the correct mobile number" +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +#: model:ir.ui.menu,name:base.menu_partner_other_form +msgid "Others Partners" +msgstr "Άλλοι Συνεργάτες" + #. module: base #: field:ir.model.data,noupdate:0 msgid "Non Updatable" msgstr "Αδύνατο να ενημερωθεί" #. module: base -#: model:res.country,name:base.sg -msgid "Singapore" -msgstr "Singapore" +#: model:res.country,name:base.cu +msgid "Cuba" +msgstr "Cuba" #. module: base -#: selection:ir.actions.act_window,target:0 -msgid "Current Window" -msgstr "Παρόν Παράθυρο" +#: field:res.partner.address,state_id:0 +msgid "Fed. State" +msgstr "Πολιτεία" + +#. module: base +#: view:res.lang:0 +msgid "%S - Second as a decimal number [00,61]." +msgstr "%S - Το δευτερόλεπτο σε δεκαδική μορφή [00, 60]." #. module: base #: view:ir.values:0 @@ -7437,48 +5943,246 @@ msgid "Action Source" msgstr "Προέλευση Ενέργειας" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NETWORK" -msgstr "STOCK_NETWORK" +#: selection:wizard.module.lang.export,state:0 +msgid "get" +msgstr "πάρε" #. module: base -#: model:ir.model,name:base.model_res_country field:res.bank,country:0 -#: view:res.country:0 field:res.country.state,country_id:0 -#: field:res.partner,country:0 field:res.partner.address,country_id:0 -#: field:res.partner.bank,country_id:0 -msgid "Country" -msgstr "Χώρα" +#: model:res.country,name:base.yt +msgid "Mayotte" +msgstr "Mayotte" + +#. module: base +#: model:res.country,name:base.ro +msgid "Romania" +msgstr "Romania" + +#. module: base +#: view:res.lang:0 +msgid "%w - Weekday as a decimal number [0(Sunday),6]." +msgstr "" +"%w - Η ημέρα της εβδομάδας σε δεκαδική μορφή [0 Κυριακή, 1 Δευτέρα... 6 " +"Σάββατο]." + +#. module: base +#: model:res.country,name:base.am +msgid "Armenia" +msgstr "Armenia" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields view:ir.model:0 +#: field:ir.model,field_id:0 model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +msgid "Fields" +msgstr "Πεδία" + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: model:ir.ui.menu,name:base.menu_config view:res.company:0 +msgid "Configuration" +msgstr "Ρυθμίσεις" + +#. module: base +#: field:maintenance.contract,date_start:0 +msgid "Starting Date" +msgstr "Ημερ/νία Εκκίνησης" + +#. module: base +#: view:ir.model:0 field:ir.model.fields,ttype:0 +msgid "Field Type" +msgstr "Τύπος Πεδίου" #. module: base #: field:ir.model.fields,complete_name:0 field:ir.ui.menu,complete_name:0 msgid "Complete Name" msgstr "Πλήρες Όνομα" +#. module: base +#: field:res.country.state,code:0 +msgid "State Code" +msgstr "Κωδικός Κατάστασης" + +#. module: base +#: field:ir.model.fields,on_delete:0 +msgid "On delete" +msgstr "On delete" + +#. module: base +#: view:res.request:0 +msgid "Reply" +msgstr "Απάντηση" + +#. module: base +#: field:ir.cron,function:0 field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +msgid "Function" +msgstr "Λειτουργία" + +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "Έτος με τον αιώνα: %(year)s" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Cancel" +msgstr "_Cancel" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" msgstr "Καταχώρηση Αναφοράς" #. module: base -#: field:ir.values,object:0 -msgid "Is Object" -msgstr "Is Object" +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 selection:ir.rule,operator:0 +msgid "in" +msgstr "σε" #. module: base -#: field:res.partner.category,name:0 -msgid "Category Name" -msgstr "Όνομα Κατηγορίας" +#: selection:ir.ui.menu,icon:0 +msgid "terp-report" +msgstr "terp-report" #. module: base -#: model:res.partner.category,name:base.res_partner_category_15 -msgid "IT sector" -msgstr "IT sector" +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +msgid "Workflows" +msgstr "Ροές Εργασίας" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" +msgstr "Αρχική Προβολή" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Left-to-Right" +msgstr "Left-to-Right" + +#. module: base +#: help:ir.actions.wizard,multi:0 +msgid "" +"If set to true, the wizard will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"Αν ρυθμιστεί 'true', ο Αυτόματος οδηγός δε θα εμφανίζεται στη δεξιά γραμμή " +"εργαλείων της φόρμας. " + +#. module: base +#: field:res.lang,translatable:0 +msgid "Translatable" +msgstr "Translatable" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Daily" +msgstr "Ημερήσια" + +#. module: base +#: view:res.lang:0 +msgid "3. %x ,%X ==> 12/05/08, 18:25:20" +msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Cascade" +msgstr "Ανάλυση" + +#. module: base +#: model:res.country,name:base.se +msgid "Sweden" +msgstr "Sweden" + +#. module: base +#: model:res.country,name:base.au +msgid "Australia" +msgstr "Australia" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard View" +msgstr "Προβολή Αυτόματου Οδηγού" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Gantt" +msgstr "Gantt" + +#. module: base +#: view:ir.property:0 +msgid "Property" +msgstr "Ιδιότητα" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type +#: view:res.partner.bank.type:0 +msgid "Bank Account Type" +msgstr "Τύπος Τραπεζικού Λογαριασμού" + +#. module: base +#: field:res.partner.category,complete_name:0 +msgid "Full Name" +msgstr "Πλήρες Όνομα" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "Επόμενο Βήμα Ρυθμίσεων" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-project" +msgstr "terp-project" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "Σχόλιο" + +#. module: base +#: field:ir.model.fields,domain:0 field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "Τομέας" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "STOCK_PREFERENCES" + +#. module: base +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 +msgid "Subject" +msgstr "Υποκείμενο" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "sv_SV" +msgstr "sv_SV" #. module: base #: view:res.lang:0 msgid "%X - Appropriate time representation." msgstr "%X - Ορθή μορφή ώρας." +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Action Configuration" +msgstr "Ρυθμίσεις Επαναληπτικών ενεργειών" + +#. module: base +#: model:res.country,name:base.qa +msgid "Qatar" +msgstr "Qatar" + #. module: base #: view:res.company:0 msgid "Your Logo - Use a size of about 450x150 pixels." @@ -7498,9 +6202,46 @@ msgstr "" "106,500. Provided ',' as the thousand separator in each case." #. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Portrait" -msgstr "Πορτραίτο" +#: model:res.country,name:base.at +msgid "Austria" +msgstr "Austria" + +#. module: base +#: model:res.country,name:base.mz +msgid "Mozambique" +msgstr "Mozambique" + +#. module: base +#: model:res.country,name:base.tv +msgid "Tuvalu" +msgstr "Tuvalu" + +#. module: base +#: field:workflow.activity,join_mode:0 +msgid "Join Mode" +msgstr "Πλήρες Mode" + +#. module: base +#: model:res.country,name:base.jp +msgid "Japan" +msgstr "Japan" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" +msgstr "Ημερολόγιο" + +#. module: base +#: field:ir.actions.act_window.view,multi:0 +msgid "On Multiple Doc." +msgstr "On Multiple Doc." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" +msgstr "STOCK_GOTO_LAST" #. module: base #: selection:ir.translation,type:0 @@ -7508,36 +6249,149 @@ msgid "Wizard Button" msgstr "Κουμπί Αυτόματου Οδηγού" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIRECTORY" -msgstr "STOCK_DIRECTORY" +#: model:res.country,name:base.nl +msgid "Netherlands" +msgstr "Netherlands / Ολλανδία" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form_new -#: model:ir.ui.menu,name:base.menu_partner_customer_form_new -msgid "New Partner" -msgstr "Νέος Συνεργάτης" +#: field:res.partner,address:0 view:res.partner.address:0 +msgid "Contacts" +msgstr "Στοιχεία" + +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Graph" +msgstr "Γράφημα" + +#. module: base +#: field:ir.module.module,installed_version:0 +msgid "Latest version" +msgstr "Τελευταία έκδοση" #. module: base #: model:ir.model,name:base.model_ir_actions_server msgid "ir.actions.server" msgstr "ir.actions.server" +#. module: base +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "res.company" + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "Εκκίνηση Εγκατάστασης" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "κλειστά" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "Εξάρτηση Αρθρωμάτων" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "right" +msgstr "δεξιά" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Draft" +msgstr "Πρόχειρα" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" +msgstr "STOCK_DND_MULTIPLE" + +#. module: base +#: model:ir.ui.menu,name:base.maintenance +msgid "Maintenance" +msgstr "Συντήρηση" + +#. module: base +#: model:res.country,name:base.sj +msgid "Svalbard and Jan Mayen Islands" +msgstr "Svalbard and Jan Mayen Islands" + +#. module: base +#: view:res.config.view:0 +msgid "Choose Your Mode" +msgstr "Επιλογή Mode" + #. module: base #: view:ir.actions.report.custom:0 msgid "Report custom" msgstr "Ειδική αναφορά" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "STOCK_OPEN" + +#. module: base +#: view:ir.actions.server:0 field:workflow.activity,action_id:0 +msgid "Server Action" +msgstr "Server Action" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 field:res.users,login:0 +msgid "Login" +msgstr "Είσοδος" + +#. module: base +#: model:res.country,name:base.mp +msgid "Northern Mariana Islands" +msgstr "Northern Mariana Islands" + +#. module: base +#: model:res.country,name:base.by +msgid "Belarus" +msgstr "Belarus / Λευκορωσία" + +#. module: base +#: field:ir.actions.act_window,name:0 field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 field:ir.actions.server,name:0 +#: field:ir.actions.url,name:0 +msgid "Action Name" +msgstr "Όνομα Ενέργειας" + #. module: base #: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "Πρόοδος Ρυθμίσεων" +#. module: base +#: field:res.company,rml_footer2:0 +msgid "Report Footer 2" +msgstr "Report Footer 2" + #. module: base #: model:ir.ui.menu,name:base.next_id_11 msgid "Configuration Wizards" msgstr "Οδηγοί Ρυθμίσεων" +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "ir.actions.act_window.view" + +#. module: base +#: field:res.bank,street2:0 field:res.partner.address,street2:0 +msgid "Street2" +msgstr "Οδός 2" + #. module: base #: field:workflow.activity,split_mode:0 msgid "Split Mode" @@ -7549,14 +6403,26 @@ msgid "Localisation" msgstr "Τοπικές Ρυθμίσεις" #. module: base -#: selection:res.config.view,view:0 -msgid "Simplified Interface" -msgstr "Απλοποιημένη Εγκατάσταση" +#: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 +msgid "Dependencies" +msgstr "Dependencies" #. module: base -#: model:res.country,name:base.cl -msgid "Chile" -msgstr "Chile (Χιλή)" +#: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "Χρήστης" + +#. module: base +#: view:ir.actions.server:0 +msgid "Action to Launch" +msgstr "Επιλογή Ενέργειας" + +#. module: base +#: model:res.country,name:base.pr +msgid "Puerto Rico" +msgstr "Puerto Rico" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7564,10 +6430,26 @@ msgid "STOCK_REVERT_TO_SAVED" msgstr "STOCK_REVERT_TO_SAVED" #. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_import -#: model:ir.ui.menu,name:base.menu_wizard_lang_import -msgid "Import a Translation File" -msgstr "Εισαγωγή Αρχείου Μετάφρασης" +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "Uninstall (beta)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "STOCK_JUSTIFY_RIGHT" + +#. module: base +#: model:res.country,name:base.lc +msgid "Saint Lucia" +msgstr "Saint Lucia" + +#. module: base +#: field:ir.actions.server,condition:0 +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:workflow.transition,condition:0 +msgid "Condition" +msgstr "Συνθήκη" #. module: base #: help:ir.values,model_id:0 @@ -7576,9 +6458,34 @@ msgstr "" "Το πεδίο αυτό δε χρησιομοποιείται, βοηθά στην επιλογή του καλύτερου μοντέλου." #. module: base -#: field:ir.ui.view,name:0 -msgid "View Name" -msgstr "Όνομα Προβολής" +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "Χρώμα Φόντου" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" +msgstr "Απλή μορφή τομέα" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation_untrans +#: model:ir.ui.menu,name:base.menu_action_translation_untrans +msgid "Untranslated terms" +msgstr "Μη μεταφρασμένοι όροι" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"If you use a formula type, use a python expression using the variable " +"'object'." +msgstr "" +"If you use a formula type, use a python expression using the variable " +"'object'." #. module: base #: selection:module.lang.install,init,lang:0 @@ -7586,20 +6493,84 @@ msgid "Italian / Italiano" msgstr "Italian / Italiano" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" -msgstr "Αποθήκευση ως Πρόθεμα Συνημμένου" +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +msgid "Import module" +msgstr "Εισαγωγή Αρθρώματος" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users +#: field:ir.actions.todo,users_id:0 field:ir.default,uid:0 +#: field:ir.rule.group,users:0 +#: model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users view:res.groups:0 +#: field:res.groups,users:0 field:res.roles,users:0 view:res.users:0 +msgid "Users" +msgstr "Χρήστες" + +#. module: base +#: view:workflow.transition:0 +msgid "Transition" +msgstr "Ροή" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "Ορολογία Εφαρμογής" + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "Ημερ/νία γέννησης" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contact Titles" +msgstr "Τίτλοι Επαφής" + +#. module: base +#: field:ir.module.repository,filter:0 +msgid "Filter" +msgstr "Φίλτρο" + +#. module: base +#: field:ir.actions.todo,active:0 field:ir.cron,active:0 +#: field:ir.module.repository,active:0 field:ir.sequence,active:0 +#: field:res.bank,active:0 field:res.currency,active:0 field:res.lang,active:0 +#: field:res.partner,active:0 field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 field:res.request,active:0 +#: field:res.users,active:0 +msgid "Active" +msgstr "Ενεργό" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "Polish / Język polski" #. module: base #: model:res.country,name:base.hr msgid "Croatia" msgstr "Croatia" +#. module: base +#: model:res.country,name:base.mn +msgid "Mongolia" +msgstr "Mongolia" + #. module: base #: field:ir.actions.server,mobile:0 msgid "Mobile No" msgstr "Κινητό" +#. module: base +#: model:res.country,name:base.th +msgid "Thailand" +msgstr "Thailand" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_by_category #: model:ir.actions.act_window,name:base.action_partner_category_form @@ -7609,6 +6580,11 @@ msgstr "Κινητό" msgid "Partner Categories" msgstr "Κατηγορίες Συνεργατών" +#. module: base +#: model:res.country,name:base.gd +msgid "Grenada" +msgstr "Grenada" + #. module: base #: field:ir.sequence,code:0 field:ir.sequence.type,code:0 msgid "Sequence Code" @@ -7620,81 +6596,397 @@ msgid "a5" msgstr "Α5" #. module: base -#: model:res.country,name:base.sc -msgid "Seychelles" -msgstr "Seychelles" +#: selection:server.action.create,init,type:0 +msgid "Open Report" +msgstr "Ανοικτή Αναφορά" + +#. module: base +#: field:res.currency,rounding:0 +msgid "Rounding factor" +msgstr "Παράγοντας στρογγυλοποίησης" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Field" +msgstr "Πεδίο Αυτόματου Οδηγού" + +#. module: base +#: model:res.country,name:base.bz +msgid "Belize" +msgstr "Belize" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" +msgstr "terp-stock" + +#. module: base +#: field:ir.model.fields,select_level:0 +msgid "Searchable" +msgstr "Αναζητήσιμο" + +#. module: base +#: model:res.country,name:base.uy +msgid "Uruguay" +msgstr "Uruguay" + +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "Document Link" + +#. module: base +#: view:res.partner.som:0 +msgid "Partner State of Mind" +msgstr "Προδιάθεση Συνεργάτη" #. module: base #: model:ir.model,name:base.model_res_partner_bank view:res.partner.bank:0 msgid "Bank Accounts" msgstr "Τραπεζικοί Λογαριασμοί" +#. module: base +#: selection:ir.ui.view,type:0 +msgid "mdx" +msgstr "" + #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" msgstr "Sierra Leone" #. module: base -#: view:res.company:0 view:res.partner:0 -msgid "General Information" -msgstr "Γενικές Πληροφορίες" +#: model:res.country,name:base.eg +msgid "Egypt" +msgstr "Egypt" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-product" -msgstr "terp-product" +#: field:ir.sequence,prefix:0 +msgid "Prefix" +msgstr "Prefix" + +#. module: base +#: model:res.country,name:base.rw +msgid "Rwanda" +msgstr "Rwanda" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "German / Deutsch" +msgstr "German / Deutsch" + +#. module: base +#: help:ir.actions.server,trigger_name:0 +msgid "Select the Signal name that is to be used as the trigger." +msgstr "Επιλέξτε το όνομα του Σινιάλου για χρήση ως Έναυσμα (trigger)." + +#. module: base +#: view:ir.actions.server:0 +msgid "Fields Mapping" +msgstr "Fields Mapping" + +#. module: base +#: model:res.country,name:base.bi +msgid "Burundi" +msgstr "Burundi" + +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:module.upgrade,end,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:server.action.create,step_1,end:0 +#: view:wizard.module.lang.export:0 +msgid "Close" +msgstr "Κλείσιμο" + +#. module: base +#: field:ir.sequence,name:0 field:ir.sequence.type,name:0 +msgid "Sequence Name" +msgstr "Όνομα Ιεράρχησης" #. module: base #: model:res.country,name:base.tc msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" +#. module: base +#: wizard_view:module.upgrade,end:0 wizard_view:module.upgrade,start:0 +msgid "System upgrade done" +msgstr "Αναβάθμιση Συστήματος ολοκληρώθηκε" + +#. module: base +#: model:res.country,name:base.sc +msgid "Seychelles" +msgstr "Seychelles" + +#. module: base +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" +msgstr "SXW content" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_simple_view_form +msgid "Configure Simple View" +msgstr "Ρυθμίσεις Απλής Προβολής" + +#. module: base +#: wizard_button:module.upgrade,next,start:0 +msgid "Start Upgrade" +msgstr "Έναρξη Αναβάθμισης" + +#. module: base +#: model:res.country,name:base.bt +msgid "Bhutan" +msgstr "Bhutan" + +#. module: base +#: field:ir.default,ref_id:0 +msgid "ID Ref." +msgstr "ID Ref." + #. module: base #: field:res.partner.bank,owner_name:0 msgid "Account Owner" msgstr "Ιδιοκτήτης Λογαρισμού" #. module: base -#: field:workflow,osv:0 field:workflow.instance,res_type:0 +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "Set NULL" + +#. module: base +#: field:ir.report.custom.fields,fc1_condition:0 +#: field:ir.report.custom.fields,fc2_condition:0 +#: field:ir.report.custom.fields,fc3_condition:0 +msgid "condition" +msgstr "συνθήκη" + +#. module: base +#: model:res.country,name:base.sg +msgid "Singapore" +msgstr "Singapore" + +#. module: base +#: model:res.country,name:base.mt +msgid "Malta" +msgstr "Malta" + +#. module: base +#: model:ir.actions.act_window,name:base.action_report_custom +#: view:ir.report.custom:0 +msgid "Custom Report" +msgstr "Ειδική Αναφορά" + +#. module: base +#: field:ir.actions.server,fields_lines:0 +msgid "Field Mappings." +msgstr "Field Mappings." + +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "Ξετικάρετε το ενεργό πεδίο για να κρύψετε την επαφή" + +#. module: base +#: field:ir.cron,args:0 +msgid "Arguments" +msgstr "Arguments" + +#. module: base +#: field:ir.attachment,res_model:0 field:workflow,osv:0 +#: field:workflow.instance,res_type:0 msgid "Resource Object" msgstr "Αντικείμενο-Πόρος" #. module: base -#: field:ir.cron,function:0 field:res.partner.address,function:0 -#: selection:workflow.activity,kind:0 -msgid "Function" -msgstr "Λειτουργία" +#: selection:ir.actions.report.xml,report_type:0 +msgid "sxw" +msgstr "sxw" + +#. module: base +#: field:ir.module.module,shortdesc:0 +msgid "Short Description" +msgstr "Σύντομη Περιγραφή" + +#. module: base +#: model:res.country,name:base.gf +msgid "French Guyana" +msgstr "French Guyana (Γαλλική Γουιάνα)" + +#. module: base +#: selection:ir.actions.url,target:0 +msgid "This Window" +msgstr "Αυτό το παράθυρο" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Μορφή Αρχείου" + +#. module: base +#: field:ir.model,state:0 field:ir.model.fields,state:0 +#: field:ir.model.grid,state:0 +msgid "Manually Created" +msgstr "Δημιουργημένα από Χρήστη" + +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "Αποθήκευση αρχείων" + +#. module: base +#: field:ir.attachment,description:0 field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 view:res.partner.event:0 +#: field:res.partner.event,description:0 view:res.request:0 +msgid "Description" +msgstr "Περιγραφή" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "STOCK_INDENT" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "type,name,res_id,src,value" + +#. module: base +#: field:ir.actions.wizard,name:0 +msgid "Wizard Info" +msgstr "Πληροφορίες Αυτόματου Οδηγού" #. module: base #: selection:res.partner.address,type:0 msgid "Delivery" msgstr "Παράδοση" +#. module: base +#: field:res.bank,street:0 field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" +msgstr "Οδός" + +#. module: base +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "Automatic XSL:RML" + #. module: base #: field:ir.attachment,preview:0 msgid "Image Preview" msgstr "Προεπισκόπηση Εικόνας" +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "ir.actions.configuration.wizard" + +#. module: base +#: view:workflow.workitem:0 +msgid "Workflow Workitems" +msgstr "Λειτουργία επαφής" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "STOCK_COPY" + +#. module: base +#: model:res.country,name:base.vc +msgid "Saint Vincent & Grenadines" +msgstr "Saint Vincent & Grenadines" + #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "Α.Ε." +#. module: base +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Μη αυτόματη εγκατάσταση τομέα" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "Εξαγωγή Γλώσσας" + +#. module: base +#: field:res.partner,customer:0 selection:res.partner.event,partner_type:0 +msgid "Customer" +msgstr "Πελάτης" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Unvalidated" +msgstr "Μη Επικυρωμένα" + #. module: base #: model:res.country,name:base.gw msgid "Guinea Bissau" msgstr "Γουινέα Μπισάου" +#. module: base +#: field:ir.actions.report.custom,name:0 field:ir.report.custom,name:0 +msgid "Report Name" +msgstr "Όνομα Αναφοράς" + #. module: base #: view:workflow.instance:0 msgid "Workflow Instances" msgstr "Workflow Instances" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Partners: " -msgstr "Συνεργάτες" +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "Αρχιτεκτονική Βάσης Δεδομένων" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +#: wizard_view:res.partner.spam_send,init:0 +msgid "Mass Mailing" +msgstr "Ομαδική Αλληλογραφία" + +#. module: base +#: model:res.country,name:base.io +msgid "British Indian Ocean Territory" +msgstr "British Indian Ocean Territory" + +#. module: base +#: model:ir.model,name:base.model_res_country field:res.bank,country:0 +#: view:res.country:0 field:res.country.state,country_id:0 +#: field:res.partner,country:0 field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 +msgid "Country" +msgstr "Χώρα" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Εισαγωγή επιτυχής !" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "κέντρο" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" +msgstr "ir.actions.act_window_close" + +#. module: base +#: field:res.partner.event,partner_type:0 +msgid "Partner Relation" +msgstr "Σχέση Πελάτη" + +#. module: base +#: field:ir.actions.act_window,context:0 +msgid "Context Value" +msgstr "Context Value" #. module: base #: model:res.country,name:base.kp @@ -7706,30 +6998,87 @@ msgstr "Βόρεια Κορέα" msgid "Unsubscribe Report" msgstr "Διαγραφή Αναφοράς" +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "Ώρα 00->24: %(h24)s" + +#. module: base +#: model:res.country,name:base.zw +msgid "Zimbabwe" +msgstr "Zimbabwe" + #. module: base #: selection:ir.actions.server,state:0 msgid "Create Object" msgstr "Δημιουργία Αντικειμένου" +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "Α4" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" msgstr "Κωδικός BIC/Swift" #. module: base -#: model:res.partner.category,name:base.res_partner_category_1 -msgid "Prospect" -msgstr "Πιθανός Συνεργάτης" +#: field:res.request.history,name:0 +msgid "Summary" +msgstr "Περίληψη" + +#. module: base +#: field:res.request.history,date_sent:0 +msgid "Date sent" +msgstr "Ημερ/νία Αποστολής" + +#. module: base +#: model:ir.model,name:base.model_res_partner_function +msgid "Function of the contact" +msgstr "Λειτουργία επαφής" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_upgrade +#: model:ir.ui.menu,name:base.menu_module_tree_upgrade +msgid "Modules to be installed, upgraded or removed" +msgstr "Αρθρώματα για εγκατάσταση, αναβάθμιση, απεγκατάσταση" + +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Μήνας: %(month)s" + +#. module: base +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "Πωλήσεις & Αγορές" + +#. module: base +#: model:res.country,name:base.mm +msgid "Myanmar" +msgstr "Myanmar" + +#. module: base +#: field:ir.actions.act_window.view,sequence:0 +#: field:ir.actions.server,sequence:0 field:ir.actions.todo,sequence:0 +#: field:ir.module.repository,sequence:0 +#: field:ir.report.custom.fields,sequence:0 view:ir.sequence:0 +#: field:ir.ui.menu,sequence:0 field:ir.ui.view_sc,sequence:0 +#: field:res.partner.bank,sequence:0 +#: field:wizard.ir.model.menu.create.line,sequence:0 +msgid "Sequence" +msgstr "Ιεράρχηση" + +#. module: base +#: view:res.lang:0 +msgid "11. %U or %W ==> 48 (49th week)" +msgstr "11. %U or %W ==> 48 (49η εβδομάδα)" #. module: base #: selection:module.lang.install,init,lang:0 -msgid "Polish / Język polski" -msgstr "Polish / Język polski" - -#. module: base -#: field:ir.exports,name:0 -msgid "Export Name" -msgstr "Όνομα Εξαγωγής" +msgid "Russian / русский язык" +msgstr "Ρώσσικα / русский язык" #. module: base #: help:res.partner.address,type:0 @@ -7740,60 +7089,436 @@ msgstr "" "Χρησιμοποιείται για την αυτόματη επιλογή της σωστής διεύθυνσης με βάση τις " "ρυθμίσεις στα έγγραφα αγορών και πωλήσεων" +#. module: base +#: help:ir.cron,numbercall:0 +msgid "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" +msgstr "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (CN) / 简体中文" +msgstr "Chinese (CN) / 简体中文" + +#. module: base +#: view:ir.rule.group:0 +msgid "The rule is satisfied if all test are True (AND)" +msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό (AND)" + +#. module: base +#: field:ir.report.custom,footer:0 +msgid "Report Footer" +msgstr "Report Footer" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_NEXT" +msgstr "STOCK_MEDIA_NEXT" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Right-to-Left" +msgstr "Right-to-Left" + +#. module: base +#: model:res.country,name:base.yu +msgid "Yugoslavia" +msgstr "Yugoslavia" + #. module: base #: wizard_view:module.lang.install,init:0 msgid "Choose a language to install:" msgstr "Επιλέξτε γλώσσα για εγκατάσταση:" +#. module: base +#: model:ir.model,name:base.model_res_partner field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 selection:res.partner.title,domain:0 +msgid "Partner" +msgstr "Συνεργάτης" + #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" msgstr "Σρι Λάνκα / Κευλάνη" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Russian / русский язык" -msgstr "Ρώσσικα / русский язык" +#: view:ir.module.module:0 +msgid "Cancel Install" +msgstr "Ακύρωση Εγκατάστασης" #. module: base -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "Εισαγωγή γλώσσας" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "txt" -msgstr "" +#: wizard_view:module.upgrade,next:0 +msgid "Note that this operation my take a few minutes." +msgstr "Η διαδικασία αυτή μπορεί να πάρει μερικά λεπτά." #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Greek / Ελληνικά" -msgstr "" +#: field:ir.model.data,name:0 +msgid "XML Identifier" +msgstr "XML Identifier" -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "Html from html" -msgstr "" +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Δεν μπορείτε να δημιουργήσετε τέτοιο έγγραφο! (%s)" -#. module: base -#: model:res.country,name:base.mk -msgid "FYROM" -msgstr "" +#~ msgid "The unlink method is not implemented on this object !" +#~ msgstr "Η μέθοδος αποσύνδεσης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch (Belgium) / Nederlands (Belgïe)" -msgstr "" +#~ msgid "" +#~ "The sum of the data (2nd field) is null.\n" +#~ "We can't draw a pie chart !" +#~ msgstr "" +#~ "Το άθροισμα των δεδομένων στο 2ο πεδίο είναι μηδενικό.\n" +#~ "Αδύνατη η δημιουργία κυκλικού διαγράμματος !" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" +#~ msgid "new" +#~ msgstr "νέο" -#. module: base -#: selection:ir.ui.view,type:0 -msgid "mdx" -msgstr "" +#~ 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 "" +#~ "Αποθηκέυστε αυτό το έγγραφο σε %s αρχείο και επεξργαστείτε το με " +#~ "επεξεργαστή κειμένου ή άλλο πρόγραμμα. Η κωδικοποίηση του αρχείου είναι " +#~ "UTF-8." + +#~ msgid "Password mismatch !" +#~ msgstr "Τα συνθηματικά δεν ταιριάζουν!" + +#~ msgid "This url '%s' must provide an html file with links to zip modules" +#~ msgstr "" +#~ "Αυτή η διεύθυνση '%s' πρέπει να οδηγεί σε ένα αρχείο html με links σε " +#~ "συμπιεσμένα αρχεία τα οποία αποτελούν τα Αρθρώματα" + +#~ msgid "" +#~ "You can not remove the admin user as it is used internally for resources " +#~ "created by OpenERP (updates, module installation, ...)" +#~ msgstr "Ο χρήστης admin δεν μπορεί να διαγραφεί!" + +#~ msgid "The read method is not implemented on this object !" +#~ msgstr "Η μέθοδος ανάγνωσης δεν έχει αναπτυχθεί για αυτό το αντικείμενο!" + +#~ msgid "Custom fields must have a name that starts with 'x_' !" +#~ msgstr "Τα ειδικά πεδία πρέπει να έχουν όνομα που ξεκινάει από 'x_' !" + +#~ msgid "You can not remove the model '%s' !" +#~ msgstr "Δεν μπορείτε να διαγράψετε το μοντέλο '%s' !" + +#~ msgid "Basic Partner" +#~ msgstr "Βασικός Συνεργάτης" + +#~ msgid "You try to bypass an access rule (Document type: %s)." +#~ msgstr "Υπάρχουν κανόνες πρόσβασης για έγγραφα %s." + +#~ msgid "Pie charts need exactly two fields" +#~ msgstr "Το κυκλικό διάγραμμα χρειάζεται ακριβώς δύο πεδία" + +#~ msgid "The search method is not implemented on this object !" +#~ msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + +#~ msgid "Attached ID" +#~ msgstr "Συνημμένη ID" + +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Δεν μπορείτε να διαβάσετε αυτό το έγγραφο! (%s)" + +#~ msgid "" +#~ "Some installed modules depends on the module you plan to desinstall :\n" +#~ " %s" +#~ msgstr "" +#~ "Κάποια εγκατεστημένα Αρθρώματα εξαρτώνται από αυτό που σχεδιάζετε να " +#~ "απεγκαταστήσετε:\n" +#~ " %s" + +#~ msgid "Attached Model" +#~ msgstr "Συνδεδεμένο Μοντέλο" + +#~ msgid "Can not remove root user!" +#~ msgstr "Can not remove root user!" + +#~ msgid "Not implemented search_memory method !" +#~ msgstr "Not implemented search_memory method !" + +#~ msgid "" +#~ "Couldn't generate the next id because some partners have an alphabetic " +#~ "id !" +#~ msgstr "" +#~ "Αδύνατη η δημιουργία του επόμενου id διότι κάποιοι συνεργάτες έχουν " +#~ "αλφαβητικό id!" + +#~ msgid "Not implemented set_memory method !" +#~ msgstr "Not implemented set_memory method !" + +#~ msgid "Enter at least one field !" +#~ msgstr "Συμπληρώστε ένα πεδίο τουλάχιστον!" + +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Δεν μπορείτε να επέμβετε στο έγγραφο! (%s)" + +#~ msgid "The perm_read method is not implemented on this object !" +#~ msgstr "The perm_read method is not implemented on this object !" + +#~ msgid "Openstuff.net" +#~ msgstr "Openstuff.net" + +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Δεν μπορείτε να διαγράψετε αυτό το έγγραφο! (%s)" + +#~ msgid "Can not upgrade module '%s'. It is not installed." +#~ msgstr "" +#~ "Δεν είναι δυνατή η αναβάθμιση του Αρθρώματος %s' διότι δεν είναι " +#~ "εγκατεστημένο." + +#~ msgid "HR sector" +#~ msgstr "Τμήμα Ανθρωπίνων Πόρων" + +#~ msgid "tlh_TLH" +#~ msgstr "tlh_TLH" + +#~ msgid "nl_BE" +#~ msgstr "nl_BE" + +#~ msgid "Please specify an action to launch !" +#~ msgstr "Παρακαλώ επιλέξτε ενέργειας προς εκτέλεση!" + +#~ msgid "Please check that all your lines have %d columns." +#~ msgstr "Παρακαλώ ελέγξτε ότι όλες οι γραμμές σας έχουν %d στήλες." + +#~ msgid "Recursion error in modules dependencies !" +#~ msgstr "Σφάλμα στις εξαρτήσεις Αρθρωμάτων!" + +#~ msgid "Ukrainian / украї́нська мо́ва" +#~ msgstr "Ukrainian / украї́нська мо́ва" + +#~ msgid "Error ! You can not create recursive categories." +#~ msgstr "Σφάλμα! Υπάρχει κατηγορία με την ίδια περιγραφή." + +#~ msgid "Can not define a column %s. Reserved keyword !" +#~ msgstr "" +#~ "Η στήλη %s δεν μπορεί να οριστει. Η λέξη κλειδί χρησιμοποιείται ήδη!" + +#~ msgid "" +#~ "Save this document to a .CSV file and open it with your favourite " +#~ "spreadsheet software. The file encoding is UTF-8. You have to translate " +#~ "the latest column before reimporting it." +#~ msgstr "" +#~ "Αποθηκεύστε αυτό το έγγραφο σε αρχείο .CSV και επεξεργαστείτε το με το " +#~ "υπολογιστικό πρόγραμμα της επιλογής σας. Η κωδικοποίηση του αρχείου " +#~ "είναι UTF-8. Πρέπει να μετεφράσετε την τελευταία στήλη πριν το " +#~ "επανεισάγετε." + +#~ msgid "Telecom sector" +#~ msgstr "Τηλεπικοινωνίες" + +#~ msgid "" +#~ "You try to upgrade a module that depends on the module: %s.\n" +#~ "But this module is not available in your system." +#~ msgstr "" +#~ "Προσπαθείτε να αναβαθμίσετε ένα Άρθρωμα το οποίο εξαρτάται από το " +#~ "Άρθρωμα: %s.\n" +#~ "που όμως δεν είναι εγκατεστημένο." + +#~ msgid "Invalid operation" +#~ msgstr "Άκυρη λειτουργία" + +#~ msgid "" +#~ "You try to install a module that depends on the module: %s.\n" +#~ "But this module is not available in your system." +#~ msgstr "" +#~ "Προσπαθείτε να εγκαταστήσετε ένα Άρθρωμα το οποίο εξαρτάται από το " +#~ "Άρθρωμα: %s.\n" +#~ "που όμως δεν είναι εγκατεστημένο." + +#~ msgid "You can not remove the field '%s' !" +#~ msgstr "Δεν μπορείτε να διαγράψετε το πεδίο '%s' !" + +#~ msgid "You try to remove a module that is installed or will be installed" +#~ msgstr "" +#~ "Προσπαθείτε να απεγκαταστήσετε ένα εγκατεστημένο άρθρωμα ή ένα που " +#~ "πρόκειται να εγκατασταθεί" + +#~ msgid "Error occurred while validating the field(s) %s: %s" +#~ msgstr "Σφάλμα κατά την επικύρωση των πεδίων %s: %s" + +#~ msgid "Using a relation field which uses an unknown object" +#~ msgstr "Using a relation field which uses an unknown object" + +#~ msgid "The write method is not implemented on this object !" +#~ msgstr "Η μέθοδος εγγραφής δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + +#~ msgid "Starter Partner" +#~ msgstr "Νέος Συνεργάτης" + +#~ msgid "The name of the group can not start with \"-\"" +#~ msgstr "Το όνομα της ομάδας δεν μπορεί να ξεκινάει με \"-\"" + +#~ msgid "Tree can only be used in tabular reports" +#~ msgstr "Το δέντρο μπορεί να χρησιμοποιηθεί μόνο σε αναφορές με μορφή πίνακα" + +#~ msgid "Wrong ID for the browse record, got %r, expected an integer." +#~ msgstr "Wrong ID for the browse record, got %r, expected an integer." + +#~ msgid "The create method is not implemented on this object !" +#~ msgstr "The create method is not implemented on this object !" + +#~ msgid "You cannot perform this operation." +#~ msgstr "Δεν μπορείτε να εκτελέσετε αυτή τη λειτουργία." + +#~ msgid "Couldn't find tag '%s' in parent view !" +#~ msgstr "Αδύνατη η εύρεση της ετικέτας '%s' στη μητρική προβολή!" + +#~ msgid "The name_get method is not implemented on this object !" +#~ msgstr "The name_get method is not implemented on this object !" + +#~ msgid "Not Implemented" +#~ msgstr "Μη ενεργοποιημένο" + +#~ msgid "Textile Suppliers" +#~ msgstr "Προμηθευτές Υφασμάτων" + +#~ msgid "Macedonia" +#~ msgstr "F.Y.R.O.M." + +#~ msgid "Addresses" +#~ msgstr "Διευθύνσεις" + +#~ msgid "Records were modified in the meanwhile" +#~ msgstr "Οι εγγραφές έχουν τροποποιηθεί στο μεταξύ" + +#~ msgid "The name_search method is not implemented on this object !" +#~ msgstr "The name_search method is not implemented on this object !" + +#~ msgid "Module %s: Invalid Quality Certificate" +#~ msgstr "Άρθρωμα %s: Άκυρο Πιστοποιητικό Ποιότητας" + +#~ msgid "" +#~ "Can not create the module file:\n" +#~ " %s" +#~ msgstr "" +#~ "Αδύνατη η δημιουργία του αρχείου Αρθρώματος:\n" +#~ " %s" + +#~ msgid "Please specify the Partner Email address !" +#~ msgstr "Παρακαλώ καταχωρείστε το Email του Συνεργάτη!" + +#~ msgid "UserError" +#~ msgstr "UserError" + +#~ msgid "The copy method is not implemented on this object !" +#~ msgstr "The copy method is not implemented on this object !" + +#~ msgid "AccessError" +#~ msgstr "AccessError" + +#~ msgid "Not implemented get_memory method !" +#~ msgstr "Not implemented get_memory method !" + +#~ msgid "Can not create the module file: %s !" +#~ msgstr "Αδύνατη η δημιουργία του αρχείου Αρθρώματος: %s!" + +#~ msgid "Please specify server option --smtp-from !" +#~ msgstr "Παρακαλώ καθορίστε την επιλογή διακομιστή --smtp-from !" + +#~ msgid "Components Supplier" +#~ msgstr "Προμηθευτής Μερών" + +#~ msgid "Bad customers" +#~ msgstr "Κακοί πελάτες" + +#~ msgid "Bad file format" +#~ msgstr "Μορφή αρχείου εσφαλμένη" + +#~ msgid "Number too large '%d', can not translate it" +#~ msgstr "ΠΟλύ μεγάλος αριθμός '%d', δε μεταφράζεται" + +#~ msgid "Error !" +#~ msgstr "Σφάλμα!" + +#~ msgid "This method does not exist anymore" +#~ msgstr "Αυτή η μέθοδος δε χρησιμοποιείται πια" + +#~ msgid "File Content" +#~ msgstr "Περιεχόμενα Φακέλου" + +#~ msgid "%A - Full weekday name." +#~ msgstr "%A - Πλήρες όνομα ημέρας εβδομάδας" + +#~ msgid "Unknown position in inherited view %s !" +#~ msgstr "Unknown position in inherited view %s !" + +#~ msgid "Problem in configuration `Record Id` in Server Action!" +#~ msgstr "Problem in configuration `Record Id` in Server Action!" + +#~ msgid "ValidateError" +#~ msgstr "ValidateError" + +#~ msgid "Field %d should be a figure" +#~ msgstr "Το πεδίο %d πρέπει να έιναι αριθμός" + +#~ msgid "Error ! You can not create recursive associated members." +#~ msgstr "Σφάλμα! Υπάρχει ήδη ίδια περιγραφή συνδεδεμένου μέλους." + +#~ msgid "OpenERP Partners" +#~ msgstr "Συνεργάτες OpenERP " + +#~ msgid "Important customers" +#~ msgstr "Σημαντικοί Πελάτες" + +#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" +#~ msgstr "Η τιμή \"%s\" για οτ πεδίο \"%s\" δεν είναι επιλεγμένη!" + +#~ msgid "Gold Partner" +#~ msgstr "Χρυσός Συνεργάτης" + +#~ msgid "Open Source Service Company" +#~ msgstr "Εταιρεία Συντήρησης Ανοικτού Λογισμικού" + +#~ msgid "undefined get method !" +#~ msgstr "undefined get method !" + +#~ msgid "Password empty !" +#~ msgstr "Κενό Συνθηματικό!" + +#~ msgid "Bad query." +#~ msgstr "Bad query." + +#~ msgid "Second field should be figures" +#~ msgstr "Το δεύτερο πεδίο πρέπει να είναι αριθμητικό" + +#~ msgid "Error" +#~ msgstr "Σφάλμα" + +#~ msgid "" +#~ "Save this document to a .tgz file. This archive containt UTF-8 %s files " +#~ "and may be uploaded to launchpad." +#~ msgstr "" +#~ "Αποθύκευση του εγγράφου σε μορφή .tgz. Τα αρχεία είναι UTF-8 %s και " +#~ "μπορούν να επεξεργαστούν με κειμενογράφο." + +#~ msgid "Bar charts need at least two fields" +#~ msgstr "Τα ιστογράμματα (bar charts) χρειάζονται τουλάχιστον δύο πεδία" + +#~ msgid "Segmentation" +#~ msgstr "Καταμερισμός" + +#~ msgid "Warning" +#~ msgstr "Προσοχή" + +#~ msgid "IT sector" +#~ msgstr "IT sector" + +#~ msgid "Partners: " +#~ msgstr "Συνεργάτες" + +#~ msgid "Prospect" +#~ msgstr "Πιθανός Συνεργάτης" #~ msgid "State 2" #~ msgstr "Πολιτεία" From af0e1d32907b2c6a19d8ba3c4e00c045bef9e4f6 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 17 Jun 2009 20:44:00 +0300 Subject: [PATCH 158/251] Change the string of "States" to "Fed. states" for translation. bzr revid: p_christ@hol.gr-20090617174400-h830xtt4979m8o5q --- bin/addons/base/res/country_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/addons/base/res/country_view.xml b/bin/addons/base/res/country_view.xml index a1852bffd62..81459ff8860 100644 --- a/bin/addons/base/res/country_view.xml +++ b/bin/addons/base/res/country_view.xml @@ -71,7 +71,7 @@ - States + Fed. States ir.actions.act_window res.country.state form From ec24351f83078d564cb4fd60e2800b6dba60a0f5 Mon Sep 17 00:00:00 2001 From: Yannis Bourtzinakos Date: Wed, 17 Jun 2009 23:16:42 +0300 Subject: [PATCH 159/251] More Greek translations bzr revid: p_christ@hol.gr-20090617201642-bw3vch2e7vl3rqdo --- bin/addons/base/i18n/el_GR.po | 55 ++++++++++++++++++----------------- 1 file changed, 29 insertions(+), 26 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 1c8a46ceb05..890e1b99585 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -1,20 +1,23 @@ # This file contains the translation of the following modules: # * base # +# P. Christeas , 2009. msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-06-08 21:23:39+0000\n" -"PO-Revision-Date: 2009-06-15 02:42+0200\n" -"Last-Translator: Panagiotis Kranidiotis \n" -"Language-Team: nls@hellug.gr \n" +"PO-Revision-Date: 2009-06-17 21:44+0300\n" +"Last-Translator: P. Christeas \n" +"Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Greek\n" "X-Poedit-Country: GREECE\n" "X-Poedit-SourceCharset: utf-8\n" +"X-Generator: Lokalize 0.3\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base #: model:res.country,name:base.ca @@ -525,7 +528,7 @@ msgstr "Falkland Islands" #: model:ir.actions.act_window,name:base.act_values_form_action #: model:ir.ui.menu,name:base.menu_values_form_action msgid "Connect Actions To Client Events" -msgstr "Connect Actions To Client Events" +msgstr "" #. module: base #: selection:ir.module.module,license:0 @@ -1316,7 +1319,7 @@ msgstr "Estonia" #: model:ir.model,name:base.model_res_partner_event_type #: model:ir.ui.menu,name:base.next_id_14 view:res.partner.event:0 msgid "Partner Events" -msgstr "Συμβάντα Συνεργάτη" +msgstr "Συμβάντα Συνεργατών" #. module: base #: field:res.partner.bank.type,field_ids:0 @@ -1461,7 +1464,7 @@ msgstr "Εκτεταμένη Εγκατάσταση" #. module: base #: field:res.country.state,name:0 msgid "State Name" -msgstr "Όνομα Κατάστασης" +msgstr "Όνομα Νομού" #. module: base #: model:res.country,name:base.sr @@ -1583,7 +1586,7 @@ msgstr "" #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "Τύπος Ιεράρχησης" +msgstr "Τύπος Ακολουθίας" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -1853,7 +1856,7 @@ msgstr "Maldives" #: model:ir.ui.menu,name:base.menu_ir_sequence_form #: model:ir.ui.menu,name:base.next_id_5 msgid "Sequences" -msgstr "Ιεραρχήσεις" +msgstr "Ακολουθίες" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2241,7 +2244,7 @@ msgstr "Μετάφραση" #. module: base #: field:res.partner.function,name:0 msgid "Function Name" -msgstr "Όνομα Λειτουργίας" +msgstr "Καθήκοντα" #. module: base #: rml:ir.module.reference:0 @@ -2655,7 +2658,7 @@ msgstr "Εγκατεστημένο" #: model:ir.ui.menu,name:base.menu_partner_function_form #: view:res.partner.function:0 msgid "Partner Functions" -msgstr "Λειτουργίες Συνεργατών" +msgstr "Καθήκοντα Συνεργατών" #. module: base #: model:ir.model,name:base.model_res_currency field:res.company,currency_id:0 @@ -2955,7 +2958,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_partner_category #: model:ir.ui.menu,name:base.menu_partner_category_main msgid "Partners by Categories" -msgstr "Συνεργάτες ανά Κατηγορίες" +msgstr "Συνεργάτες ανά Κατηγορία" #. module: base #: model:ir.actions.act_window,name:base.res_request-act @@ -3705,7 +3708,7 @@ msgstr "Add or not the coporate RML header" #. module: base #: help:res.country.state,code:0 msgid "The state code in three chars.\n" -msgstr "Ο κωδικός κατάστασης με 3 χαρακτήρες\n" +msgstr "Ο κωδικός Νομού με 3 χαρακτήρες\n" #. module: base #: field:res.currency,accuracy:0 @@ -3753,7 +3756,7 @@ msgstr "Ώρες" #: model:ir.actions.act_window,name:base.ir_sequence_type #: model:ir.ui.menu,name:base.menu_ir_sequence_type msgid "Sequence Types" -msgstr "Τύποι Ιεράρχησης" +msgstr "Τύποι Ακολουθίας" #. module: base #: selection:ir.ui.menu,icon:0 @@ -3991,7 +3994,7 @@ msgstr "Τεχνικά Δεδομένα" #: model:ir.model,name:base.model_res_partner_canal #: model:ir.ui.menu,name:base.menu_res_partner_canal-act msgid "Channels" -msgstr "Δίαυλοι" +msgstr "Δίαυλοι Επικοινωνίας" #. module: base #: model:ir.actions.act_window,name:base.ir_access_act @@ -4628,7 +4631,7 @@ msgstr "Μη καταχωρημένο" #: model:ir.actions.act_window,name:base.res_partner_event_type-act #: model:ir.ui.menu,name:base.menu_res_partner_event_type-act msgid "Active Partner Events" -msgstr "Ενεργά Συμβάντα Συνεργάτη" +msgstr "Ενεργά Συμβάντα Συνεργατών" #. module: base #: model:res.country,name:base.sv @@ -5930,7 +5933,7 @@ msgstr "Cuba" #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" -msgstr "Πολιτεία" +msgstr "Νομός" #. module: base #: view:res.lang:0 @@ -6002,7 +6005,7 @@ msgstr "Πλήρες Όνομα" #. module: base #: field:res.country.state,code:0 msgid "State Code" -msgstr "Κωδικός Κατάστασης" +msgstr "Κωδικός Νομού" #. module: base #: field:ir.model.fields,on_delete:0 @@ -6018,7 +6021,7 @@ msgstr "Απάντηση" #: field:ir.cron,function:0 field:res.partner.address,function:0 #: selection:workflow.activity,kind:0 msgid "Function" -msgstr "Λειτουργία" +msgstr "Καθήκοντα" #. module: base #: view:ir.sequence:0 @@ -6256,7 +6259,7 @@ msgstr "Netherlands / Ολλανδία" #. module: base #: field:res.partner,address:0 view:res.partner.address:0 msgid "Contacts" -msgstr "Στοιχεία" +msgstr "Επαφές" #. module: base #: model:res.country,name:base.fo @@ -6400,7 +6403,7 @@ msgstr "Διαχωρισμένο Mode" #. module: base #: model:ir.ui.menu,name:base.menu_localisation msgid "Localisation" -msgstr "Τοπικές Ρυθμίσεις" +msgstr "Ρυθμίσεις Εντοπιότητας" #. module: base #: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 @@ -6588,7 +6591,7 @@ msgstr "Grenada" #. module: base #: field:ir.sequence,code:0 field:ir.sequence.type,code:0 msgid "Sequence Code" -msgstr "Κωδικός Ιεράρχησης" +msgstr "Κωδικός Ακολουθίας" #. module: base #: selection:ir.report.custom,print_format:0 @@ -6703,7 +6706,7 @@ msgstr "Κλείσιμο" #. module: base #: field:ir.sequence,name:0 field:ir.sequence.type,name:0 msgid "Sequence Name" -msgstr "Όνομα Ιεράρχησης" +msgstr "Όνομα Ακολουθίας" #. module: base #: model:res.country,name:base.tc @@ -7036,7 +7039,7 @@ msgstr "Ημερ/νία Αποστολής" #. module: base #: model:ir.model,name:base.model_res_partner_function msgid "Function of the contact" -msgstr "Λειτουργία επαφής" +msgstr "Καθήκοντα επαφής" #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_upgrade @@ -7068,7 +7071,7 @@ msgstr "Myanmar" #: field:res.partner.bank,sequence:0 #: field:wizard.ir.model.menu.create.line,sequence:0 msgid "Sequence" -msgstr "Ιεράρχηση" +msgstr "Ακολουθία" #. module: base #: view:res.lang:0 @@ -7095,8 +7098,8 @@ msgid "" "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" -"Number of time the function is called,\n" -"a negative number indicates that the function will always be called" +"Πόσες φορές θα κληθεί η λειτουργία,\n" +"αρνητικός αριθμός σημαίνει πως θα καλείται απεριόριστα" #. module: base #: selection:module.lang.install,init,lang:0 From 8e26c69bf1e06af49b4bc7561b0d2279215f2e0a Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 18 Jun 2009 18:05:24 +0300 Subject: [PATCH 160/251] Greek translations. bzr revid: p_christ@hol.gr-20090618150524-7we3p4cyb4dwuu0m --- bin/addons/base/i18n/el_GR.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 890e1b99585..66de4fc153d 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-06-08 21:23:39+0000\n" -"PO-Revision-Date: 2009-06-17 21:44+0300\n" +"PO-Revision-Date: 2009-06-18 14:25+0300\n" "Last-Translator: P. Christeas \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" @@ -3967,7 +3967,7 @@ msgstr "Βοήθεια" #: model:ir.actions.act_window,name:base.res_request_link-act #: model:ir.ui.menu,name:base.menu_res_request_link_act msgid "Accepted Links in Requests" -msgstr "Αποδεκτοί Σύνδεσμοι στις Αιτήσεις" +msgstr "Αποδεκτοί Σύνδεσμοι στα Αιτήματα" #. module: base #: field:ir.module.category,module_nr:0 From 0fa7af127d864dca269361c7aace8bc1bfecb305 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 18 Jun 2009 18:10:11 +0300 Subject: [PATCH 161/251] Fix oldxml at python2.6 for Ubuntu 9.04 bzr revid: p_christ@hol.gr-20090618151011-kwip63jqzzu44ydd --- bin/openerp-server.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) mode change 100755 => 100644 bin/openerp-server.py diff --git a/bin/openerp-server.py b/bin/openerp-server.py old mode 100755 new mode 100644 index 57e4af9e71c..447b9577b84 --- a/bin/openerp-server.py +++ b/bin/openerp-server.py @@ -43,10 +43,9 @@ import pwd # the path needs to be updated before any `import xml` # TODO: remove PyXML dependencies, use lxml instead. #---------------------------------------------------------- -_oldxml = '/usr/lib/python%s/site-packages/oldxml' % sys.version[:3] +_oldxml = '/usr/lib/python%s/dist-packages/oldxml' % sys.version[:3] if os.path.exists(_oldxml): - sys.path.append(_oldxml) - + sys.path.insert(0,_oldxml) import release __author__ = release.author From cb5e80507f5a8330ed4e0f2526343b97f8d506e6 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 18 Jun 2009 18:36:39 +0300 Subject: [PATCH 162/251] Improve previous commit, not break Ubuntu 8.0.4 bzr revid: p_christ@hol.gr-20090618153639-lif68w324r9aqypa --- bin/openerp-server.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/bin/openerp-server.py b/bin/openerp-server.py index 447b9577b84..5a43030e8e5 100644 --- a/bin/openerp-server.py +++ b/bin/openerp-server.py @@ -43,9 +43,12 @@ import pwd # the path needs to be updated before any `import xml` # TODO: remove PyXML dependencies, use lxml instead. #---------------------------------------------------------- -_oldxml = '/usr/lib/python%s/dist-packages/oldxml' % sys.version[:3] -if os.path.exists(_oldxml): - sys.path.insert(0,_oldxml) +_oldxml1 = '/usr/lib/python%s/site-packages/oldxml' % sys.version[:3] +_oldxml2 = '/usr/lib/python%s/dist-packages/oldxml' % sys.version[:3] +if os.path.exists(_oldxml1): + sys.path.insert(0,_oldxml1) +elif os.path.exists(_oldxml2): + sys.path.insert(0,_oldxml2) import release __author__ = release.author From 56d2cdbd73c28be489dab0d16b78a159fe2f1838 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 9 Jul 2009 21:16:35 +0300 Subject: [PATCH 163/251] [IMP] Allow OS to rotate the logs, use WatchedFileHandler if needed. All this was needed after logrotate conflicted with the TimedRotation and left the server in a DoS state. Some admins may prefer to handle the log rotations with logrotate, instead of Python's fascilities. bzr revid: p_christ@hol.gr-20090709181635-b7j50yaqjl1qsnc1 --- bin/netsvc.py | 25 +++++++++++++++++++------ bin/tools/config.py | 5 ++++- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 07a6e9c6b71..3ff6416f2b0 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -113,7 +113,12 @@ def init_logger(): dirname = os.path.dirname(logf) if dirname and not os.path.isdir(dirname): os.makedirs(dirname) - handler = logging.handlers.TimedRotatingFileHandler(logf,'D',1,30) + if tools.config['logrotate'] is not False: + handler = logging.handlers.TimedRotatingFileHandler(logf,'D',1,30) + elif os.name == 'posix': + handler = logging.handlers.WatchedFileHandler(logf) + else: + handler = logging.handlers.FileHandler(logf) except Exception, ex: sys.stderr.write("ERROR: couldn't create the logfile directory. Logging to the standard output.\n") handler = logging.StreamHandler(sys.stdout) @@ -169,11 +174,19 @@ class Logger(object): result = tools.ustr(msg).strip().split('\n') except UnicodeDecodeError: result = msg.strip().split('\n') - if len(result)>1: - for idx, s in enumerate(result): - level_method('[%02d]: %s' % (idx+1, s,)) - elif result: - level_method(result[0]) + try: + if len(result)>1: + for idx, s in enumerate(result): + level_method('[%02d]: %s' % (idx+1, s,)) + elif result: + level_method(result[0]) + except IOError,e: + # TODO: perhaps reset the logger streams? + #if logrotate closes our files, we end up here.. + pass + except: + # better ignore the exception and carry on.. + pass def shutdown(self): logging.shutdown() diff --git a/bin/tools/config.py b/bin/tools/config.py index 1a07387615f..5376877cb75 100644 --- a/bin/tools/config.py +++ b/bin/tools/config.py @@ -67,6 +67,7 @@ class configmanager(object): 'import_partial': "", 'pidfile': None, 'logfile': None, + 'logrotate': '1', 'smtp_server': 'localhost', 'smtp_user': False, 'smtp_port':25, @@ -129,6 +130,8 @@ class configmanager(object): # Logging Group group = optparse.OptionGroup(parser, "Logging Configuration") group.add_option("--logfile", dest="logfile", help="file where the server log will be stored") + group.add_option("--no-logrotate", dest="logrotate", action="store_false", + default=None, help="do not rotate the logfile") group.add_option("--syslog", action="store_true", dest="syslog", default=False, help="Send the log to the syslog server") group.add_option('--log-level', dest='log_level', type='choice', choices=self._LOGLEVELS.keys(), @@ -229,7 +232,7 @@ class configmanager(object): self.options[arg] = getattr(opt, arg) keys = ['language', 'translate_out', 'translate_in', 'debug_mode', - 'stop_after_init'] + 'stop_after_init', 'logrotate'] for arg in keys: if getattr(opt, arg) is not None: From 05f8d8380c65e970dc4cb4530d4dce356e39b34b Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 9 Jul 2009 21:16:57 +0300 Subject: [PATCH 164/251] Shortcuts in RNG view definition. bzr revid: p_christ@hol.gr-20090709181657-4epnrx4mxeojihdb --- bin/addons/base/rng/view.rng | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/bin/addons/base/rng/view.rng b/bin/addons/base/rng/view.rng index be56cc3fb95..78bef8172f7 100644 --- a/bin/addons/base/rng/view.rng +++ b/bin/addons/base/rng/view.rng @@ -12,6 +12,7 @@ + @@ -43,6 +44,7 @@ + @@ -145,6 +147,7 @@ + @@ -181,6 +184,7 @@ + @@ -308,6 +312,7 @@ + @@ -387,6 +392,15 @@ + + + + + + + + + From 6dc7389be2721421e33c16c16f943c61d46dd50e Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 9 Jul 2009 21:17:18 +0300 Subject: [PATCH 165/251] [IMP] Partial restrict operator for domains. In some cases, when the domain is restricted based on an optional field, we want it to match anything if that field is not set. There, use the '=?' operator to match "left = right OR right IS NULL/False". eg. match the production lot among all products, when product is not specified (helps barcode scanners pick up the serial no.). bzr revid: p_christ@hol.gr-20090709181718-dk3ykimzddl9l07o --- bin/osv/expression.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/bin/osv/expression.py b/bin/osv/expression.py index b849e77bd08..7e7f0f4c54c 100644 --- a/bin/osv/expression.py +++ b/bin/osv/expression.py @@ -37,7 +37,7 @@ class expression(object): return isinstance(element, (str, unicode)) and element in ['&', '|', '!'] def _is_leaf(self, element, internal=False): - OPS = ('=', '!=', '<>', '<=', '<', '>', '>=', '=like', 'like', 'not like', 'ilike', 'not ilike', 'in', 'not in', 'child_of') + OPS = ('=', '!=', '<>', '<=', '<', '>', '>=', '=?', '=like', 'like', 'not like', 'ilike', 'not ilike', 'in', 'not in', 'child_of') INTERNAL_OPS = OPS + ('inselect',) return (isinstance(element, tuple) or isinstance(element, list)) \ and len(element) == 3 \ @@ -275,6 +275,18 @@ class expression(object): query = '(%s.%s IS NOT NULL and %s.%s != false)' % (table._table, left,table._table, left) elif (((right == False) and (type(right)==bool)) or right is None) and (operator in ['<>', '!=']): query = '%s.%s IS NOT NULL' % (table._table, left) + elif (operator == '=?'): + op = '=' + if (right is False or right is None): + return ( 'TRUE',[]) + if left in table._columns: + format = table._columns[left]._symbol_set[0] + query = '(%s.%s %s %s)' % (table._table, left, op, format) + params = table._columns[left]._symbol_set[1](right) + else: + query = "(%s.%s %s '%%s')" % (table._table, left, op) + params = right + else: if left == 'id': query = '%s.id %s %%s' % (table._table, operator) From 67cb6582a187cb3808dc5bf78660c17da6ff32c1 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 18 Jul 2009 18:34:35 +0300 Subject: [PATCH 166/251] Greek translations, shorten terms. bzr revid: p_christ@hol.gr-20090718153435-fkh0plz088epzln1 --- bin/addons/base/i18n/el_GR.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index 66de4fc153d..ff7e509449d 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-06-08 21:23:39+0000\n" -"PO-Revision-Date: 2009-06-18 14:25+0300\n" +"PO-Revision-Date: 2009-07-13 18:49+0300\n" "Last-Translator: P. Christeas \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" @@ -3094,7 +3094,7 @@ msgstr "(year)=" #. module: base #: rml:ir.module.reference:0 msgid "Dependencies :" -msgstr "Dependencies :" +msgstr "Εξαρτήσεις:" #. module: base #: view:ir.module.module:0 @@ -5129,7 +5129,7 @@ msgstr "Πιθανότητα (0,50)" #. module: base #: selection:ir.module.module.dependency,state:0 msgid "Uninstallable" -msgstr "Uninstallable" +msgstr "Δεν εγκαθίσταται" #. module: base #: field:ir.module.module,url:0 field:ir.module.repository,url:0 @@ -5265,7 +5265,7 @@ msgstr "STOCK_DIALOG_INFO" #: model:ir.actions.wizard,name:base.wizard_upgrade #: model:ir.ui.menu,name:base.menu_wizard_upgrade msgid "Apply Scheduled Upgrades" -msgstr "Εφαρμογή Προγραμματισμένων Ενημερώσεων" +msgstr "Εφαρμογή των Ενημερώσεων" #. module: base #: view:workflow.activity:0 field:workflow.workitem,act_id:0 @@ -6408,7 +6408,7 @@ msgstr "Ρυθμίσεις Εντοπιότητας" #. module: base #: view:ir.module.module:0 field:ir.module.module,dependencies_id:0 msgid "Dependencies" -msgstr "Dependencies" +msgstr "Εξαρτήσεις" #. module: base #: field:ir.cron,user_id:0 field:ir.ui.view.custom,user_id:0 @@ -6435,7 +6435,7 @@ msgstr "STOCK_REVERT_TO_SAVED" #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" -msgstr "Uninstall (beta)" +msgstr "Απεγκατάσταση (beta)" #. module: base #: selection:ir.ui.menu,icon:0 From 326643b430c32c07db99755a221dc5973362fa54 Mon Sep 17 00:00:00 2001 From: Panagiotis Kranidiotis Date: Sat, 18 Jul 2009 20:57:06 +0300 Subject: [PATCH 167/251] Debian changelog commit bzr revid: p_christ@hol.gr-20090718175706-vkfdbu9de70jaayo --- debian/changelog | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/debian/changelog b/debian/changelog index 27cd6862afa..ca24af59116 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +openerp-server (5.0.1-0-1ubuntu2) karmic; urgency=low + + * Minor updates + + -- Panagiotis Kranidiotis Thu, 18 Jun 2009 19:05:32 +0300 + +openerp-server (5.0.1-0-1ubuntu1) karmic; urgency=low + + * New greek translations added + + -- Panagiotis Kranidiotis Wed, 17 Jun 2009 18:45:37 +0300 + + openerp-server (5.0.1-0-1) unstable; urgency=low * Merging upstream version 5.0.1-0. From 5611c395c48c87305be53c7c0fa00cf5ae7c3698 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 24 Jul 2009 00:43:17 +0300 Subject: [PATCH 168/251] Fix Greek translation of email "subject". bzr revid: p_christ@hol.gr-20090723214317-lg7c7tlvzsnppb6x --- bin/addons/base/i18n/el_GR.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index ff7e509449d..e39bd5f6042 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-06-08 21:23:39+0000\n" -"PO-Revision-Date: 2009-07-13 18:49+0300\n" +"PO-Revision-Date: 2009-07-24 00:40+0300\n" "Last-Translator: P. Christeas \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" @@ -6164,7 +6164,7 @@ msgstr "STOCK_PREFERENCES" #: field:ir.actions.server,subject:0 #: wizard_field:res.partner.spam_send,init,subject:0 field:res.request,name:0 msgid "Subject" -msgstr "Υποκείμενο" +msgstr "Θέμα" #. module: base #: selection:module.lang.install,init,lang:0 From fdb3ee7772830d8e1bfde4dfba66a6a729bf28dd Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 24 Jul 2009 01:29:37 +0300 Subject: [PATCH 169/251] email_send: feature to place mails in a maildir, instead of smtp At some testing/development scenarios, we may not want to send the mails away, just place them at a dir for inspection. bzr revid: p_christ@hol.gr-20090723222937-8udu15ncqqxiq2ye --- bin/tools/misc.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/bin/tools/misc.py b/bin/tools/misc.py index a8bbe6c9b7e..08ad464d3d3 100644 --- a/bin/tools/misc.py +++ b/bin/tools/misc.py @@ -379,6 +379,18 @@ def email_send(email_from, email_to, subject, body, email_cc=None, email_bcc=Non def write(self, s): self.logger.notifyChannel('email_send', netsvc.LOG_DEBUG, s) + smtp_server = config['smtp_server'] + if smtp_server.startswith('maildir:/'): + from mailbox import Maildir + maildir_path = smtp_server[8:] + try: + mdir = Maildir(maildir_path,factory=None, create = True) + mdir.add(msg.as_string(True)) + return True + except Exception,e: + netsvc.Logger().notifyChannel('email_send (maildir)', netsvc.LOG_ERROR, e) + return False + try: oldstderr = smtplib.stderr s = smtplib.SMTP() @@ -390,7 +402,7 @@ def email_send(email_from, email_to, subject, body, email_cc=None, email_bcc=Non s.set_debuglevel(int(bool(debug))) # 0 or 1 - s.connect(config['smtp_server'], config['smtp_port']) + s.connect(smtp_server, config['smtp_port']) if ssl: s.ehlo() s.starttls() From 400ee151f82819230671f842544e6e7a2b21dd80 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 26 Jul 2009 10:55:04 +0300 Subject: [PATCH 170/251] Mark some points where SQL calls need optimize. In particular, calls to ir.translate are done in Python loops. This is slow. bzr revid: p_christ@hol.gr-20090726075504-v6qgdyyg9vyaazfr --- bin/osv/orm.py | 6 ++++++ bin/sql_db.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index c337e697f53..0c847f55c0a 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -794,6 +794,7 @@ class orm_template(object): and getattr(self._columns[f], arg): res[f][arg] = getattr(self._columns[f], arg) + #TODO: optimize res_trans = translation_obj._get_source(cr, user, self._name + ',' + f, 'field', context.get('lang', False) or 'en_US') if res_trans: res[f]['string'] = res_trans @@ -1225,6 +1226,7 @@ class orm_template(object): self.pool.get('ir.model.access').check(cr, uid, 'ir.translation', 'read') if not fields: fields = self._columns.keys() + self._inherit_fields.keys() + #FIXME: collect all calls to _get_source into one SQL call. for lang in langs: res[lang] = {'code': lang} for f in fields: @@ -1246,6 +1248,7 @@ class orm_template(object): def write_string(self, cr, uid, id, langs, vals, context=None): self.pool.get('ir.model.access').check(cr, uid, 'ir.translation', 'write') + #FIXME: try to only call the translation in one SQL for lang in langs: for field in vals: if field in self._columns: @@ -2022,6 +2025,7 @@ class orm(orm_template): continue if self._columns[f].translate: ids = map(lambda x: x['id'], res) + #TODO: optimize out of this loop res_trans = self.pool.get('ir.translation')._get_ids(cr, user, self._name+','+f, 'model', context.get('lang', False) or 'en_US', ids) for r in res: r[f] = res_trans.get(r['id'], False) or r[f] @@ -2326,6 +2330,7 @@ class orm(orm_template): 'where id in ('+ids_str+')', upd1) if totranslate: + # TODO: optimize for f in direct: if self._columns[f].translate: src_trans = self.pool.get(self._name).read(cr,user,ids,[f]) @@ -2779,6 +2784,7 @@ class orm(orm_template): data[f] = [(6, 0, data[f])] trans_obj = self.pool.get('ir.translation') + #TODO: optimize translations trans_name='' for f in fields: trans_flag=True diff --git a/bin/sql_db.py b/bin/sql_db.py index edf9a2aeaec..d7769945a84 100644 --- a/bin/sql_db.py +++ b/bin/sql_db.py @@ -158,7 +158,7 @@ class Cursor(object): log("table: %s: %s/%s" %(r[0], str(r[1][1]), r[1][0])) sum+= r[1][1] sqllogs[type].clear() - log("SUM:%s/%d [%d]" % (sum, self.count,sql_counter)) + log("SUM %s:%s/%d [%d]" % (type, sum, self.count,sql_counter)) process('from') process('into') self.count = 0 From e9b723e3218439e671d65e2a26b97dcf838edf44 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 4 Aug 2009 10:28:17 +0300 Subject: [PATCH 171/251] Fix whitespace merging, that broke logging. Python! bzr revid: p_christ@hol.gr-20090804072817-7f8ah12bjyg60u60 --- bin/netsvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index a96aa06db75..8123db83d47 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -176,7 +176,7 @@ class Logger(object): if level in (LOG_ERROR,LOG_CRITICAL): msg = common().get_server_environment() + msg - result = tools.ustr(msg).strip().split('\n') + result = tools.ustr(msg).strip().split('\n') except UnicodeDecodeError: result = msg.strip().split('\n') try: From cdfece0377b9c425cb2187045d4e0a9e960f0671 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 13 Aug 2009 10:25:26 +0300 Subject: [PATCH 172/251] Update debian/changelog to 5.0.2 bzr revid: p_christ@hol.gr-20090813072526-gdxn1oggcdousfsp --- debian/changelog | 394 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 394 insertions(+) diff --git a/debian/changelog b/debian/changelog index ca24af59116..3ba13c29b81 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,397 @@ +openerp-server (5.0.2-0-1ubuntu1) intrepid; urgency=low + + [ P. Christeas ] + * [b98f26433c82] Greek translations, shorten terms. + * [2567b4e8fbc4] [IMP] Partial restrict operator for domains. + * [a507f9bee128] Shortcuts in RNG view definition. + * [e8da054afe0a] [IMP] Allow OS to rotate the logs, use + WatchedFileHandler if needed. + + [ Jay (Open ERP) ] + * [8174407a30ec] [FIX] Property : Removed old referenced values from + property + + [ mra (Open ERP) ] + * [819f9df328fa] [REV] revert chanegs for revision no 1810 + * [70535423260f] [FIX] loading module sequence while creating new + database + + [ Fabien Pinckaers ] + * [5aa83e5bb359] [FIX] bug 369947 + * [dcde99cd9c5e] [FIX] bug 371496 + * [8fbad91c586e] [FIX] bug 371768 bad tooltip + * [f42a9ae9115b] merge + * [db313489098d] merge + + [ dsh (Open ERP) ] + * [a86dc3304dde] [IMP] attributes of barcode + + [ Jay (Open ERP) ] + * [b2dafdb68cce] [FIX] ir_translation : corrected entry insertion when + adding translation + + [ husen daudi ] + * [696445ddfb83] [MERGE] + * [7f9d0d2dd239] [FIX] module:base made name field translatable in + action.server (ref:mga) + + [ Jay (Open ERP) ] + * [ed97326339a8] [FIX] Character Truncation problem on updation solved + + [ Christophe Simonis ] + * [0b6c92ede314] [IMP] ir_model_data: convert assert to sql constraint + + exception + + [ Jay (Open ERP) ] + * [f98cc5a0bee6] [FIX] Custom report : sorted X-axis values + * [0cf0628f3c8a] [FIX] SQL Constraint failure error on particular + record while importing + + [ husen daudi ] + * [d56bb59ca02d] [FIX] xml encoding in header for &.<.> + * [04d765f45692] [Merge] Converted xml reports from xmldom to etree + and better error message with environment information + + [ Jay (Open ERP) ] + * [a915dc15dbfd] [FIX] User with blank password(if so) allowed to log + in. + + [ Fabien Pinckaers ] + * [19e2f2b84eac] [FIX] avoid required parameters rule (domain_force) + * [b8d383a666e6] merge + * [7cdc6778acb1] merge + * [70c8fcdf67f2] merge + * [7cd04889bd27] [IMP] better error message + + [ Jay (Open ERP) ] + * [99f3b0db73f8] [FIX] Fixed oldxml at python2.6 for Ubuntu + 8.0.4,9.04 + * [14b488955652] [IMP] default_xx in context isuue + + [ Fabien Pinckaers ] + * [15a617ecbe04] merge + * [26f02d120db1] [fix] launch signal after action in workflows + + [ Jay (Open ERP) ] + * [0ff7ddcd394d] [FIX] ORM: Defult_field name in context belongs to + curent object only, not to its relationals anymore + * [843604436871] [FIX] ir_attachment preview method corrected + + [ Stephane Wirtel ] + * [406601019f23] [MERGE] + * [fa17b9e5f302] [FIX] fields.related (m2o poiting to M2M/O2M should + be skipped during write. + + [ Jay (Open ERP) ] + * [7feb86ed7ad4] [IMP] Temporarily commented exception for browse + record that broke reports from wizard + + [ husen daudi ] + * [665433813e7f] [FIX] Bad commit + * [c866dcb38c74] [FIX] Added PageCount tag in report engine + + [ Fabien Pinckaers ] + * [a79d7777c888] merge + * [60d6357d3b2b] modifs + * [9ed525cfcd51] [FIX] bug in report engine + + [ Jay (Open ERP) ] + * [2a571396d23e] [FIX] GIF image is previewed + + [ Christophe Simonis ] + * [cee0846dff3c] [MERGE] + * [d2a31d33e1b1] [FIX] upgrade doesn't try to delete modules + * [1376272db30b] [MERGE] + * [bbaad3809f36] [FIX] xml: the tag delete also the reference + to the deleted objects into ir_model_data + * [35d4aa682b36] [FIX] translation export: catch the case when a + object does not exists in database + * [1f0cb7576704] [FIX] browse_record: raise a better exception when + the id doesn't exists + + [ dsh (Open ERP) ] + * [0c8fe65fe3c0] [FIX] fix &,<,> problem for html2html-url report + * [71298ebb40b4] [FIX] fix &,<,> problem for html2html report + * [58b9464b7813] [IMP] added style for the url which are as text + + [ Fabien Pinckaers ] + * [b934dd73d408] merge + * [fe33fdc8df19] [FIX] translations resynchro terms + * [4efe96b4f584] [FIX] Bugfix translations and float/int format in + reports + * [688883ce8183] bugfix_lang_notavailabel + + [ Olivier Laurent ] + * [bee98151efd0] [MERGE] + * [adf826c7285b] [IMP] base: french translations + + [ Christophe Simonis ] + * [cf01b2f3ee31] [IMP] maintenance: complete the remarks with the + database name + * [34e10ece0768] [FIX] complete rng file + * [eb179c00941a] [FIX] load the module graph even if it containt only + "base" + + [ dsh (Open ERP) ] + * [5f1426c9e322] bug fix(skip text if child nodes are there) for the + html2html and openoffice reports + + [ Panos Christeas ] + + [ husen daudi ] + * Revert bad commit + + [ Christophe Simonis ] + * [REL] 5.0.2 + * [MERGE] + * [FIX] ensure sys is imported + + [ Jay (Open ERP) ] + * [FIX] _inherits was misbehaving on search + + [ Christophe Simonis ] + * [FIX] pass the context to check method of 'ir.model.access' + * [FIX] disallow the deletion of records set as default properties + * [MERGE] + * [FIX] increase size of field "name" of ir.model.data + * [IMP] update french translations + * [IMP] update french translations + + [ Jay (Open ERP) ] + * [REF] Unused argument removed + + [ Christophe Simonis ] + * [IMP] update po(t) files + + [ Jay (Open ERP) ] + * [FIX] Login : Login and password accepting accented characters + * [FIX] Error reporting : library error corrected + * [FIX] default_xxx in context was passed to relational + fields,corrected. + + [ P. Christeas ] + * Fix whitespace merging, that broke logging. + + [ Jay (Open ERP) ] + * [FIX] Print screen now displays the report as per WYSIWYG + * [FIX]Importation problem for bool fields corrected + + [ Christophe Simonis ] + * [IMP] new method that ollow the server to return a message that will + be display on login page + + [ Jay (Open ERP) ] + * [FIX] ir_model_data : SQL_Constraint failure covered + * [FIX] Accented characters are displayed on footer now + * [FIX] DB operations(backup,restore) process corrected,were blocked + if db_port was supplied + + [ husen daudi ] + * Merged + + [ Jay (Open ERP) ] + * [FIX] Expression calculation for Datetime Corrected + * [FIX] Logger notification improved + * [FIX] ir_model : context key deletion + * [FIX] Translation : Text with prefix '_' from py files included for + exports. + * [FIX] Corrected bug of expression calculation in previous commit + + [ Olivier Laurent ] + * [FIX] sql expression: in search, add the time part to datetime field + when it's not present + + [ P. Christeas ] + * email_send: feature to place mails in a maildir, instead of smtp + * Fix Greek translation of email "subject". + + [ Olivier Laurent ] + * [FIX] setup.py: py2exe now adds 'zoneinfo' directory in library.zip + + [ Jay (Open ERP) ] + * [FIX] Importation problem corrected for unicode. + * [IMP] Environment Information Notification Improved + + [ husen daudi ] + * [FIX] place tag + + [ Olivier Laurent ] + * [MERGE] + * [FIX] tools.amount_to_text_en: now displays cents + + [ P. Christeas ] + * Greek translations, shorten terms. + + [ Olivier Laurent ] + * [MERGE] + * [FIX] RuntimeError in the cache system + + [ Jay (Open ERP) ] + * [FIX] Print screen reports will behave acc. to locale for + date,datetime + * [FIX] Import : context provided for language translation + + [ dsh (Open ERP) ] + * [FIX] size miss match for page and frame + + [ husen daudi ] + * [FIX] removed report etree warning of len + * [FIX] Added sql_constraint on adding field having size<1 + + [ Quentin De Paoli ] + * [FIX] security on wokflows bugfixed. The security has to be checked + using the current uid, not the one that created the workflow + instance! + + [ Harry (Open ERP) ] + * [FIX] export window : use context for import compatable option in + pass argument instend of added new argemenent + * [IMP] import/export : added Database ID, ID + + [ P. Christeas ] + * [IMP] Partial restrict operator for domains. + * Shortcuts in RNG view definition. + * [IMP] Allow OS to rotate the logs, use WatchedFileHandler if needed. + + [ Olivier Laurent ] + * [MERGE] + * [FIX] supply password problem with pg_dump, pg_restore on win32 + * [IMP] french translations + + [ Jay (Open ERP) ] + * [FIX] Certificate in non-digit format will not be accepted + * [FIX] Certificate in non-digit format will not be accepted + + [ husen daudi ] + * [IMP] Improved environment information message + + [ Jay (Open ERP) ] + * [Fix] CSV Import : Accepting 'Value' of selection field + from[(key,value)] + * [FIX] Property : Removed old referenced values from property + + [ mra (Open ERP) ] + * [REV] revert chanegs for revision no 1810 + * [FIX] loading module sequence while creating new database + + [ Fabien Pinckaers ] + * [FIX] bug 369947 + * [FIX] bug 371496 + * [FIX] bug 371768 bad tooltip + * merge + * merge + + [ dsh (Open ERP) ] + * [IMP] attributes of barcode + + [ Jay (Open ERP) ] + * [FIX] ir_translation : corrected entry insertion when adding + translation + + [ husen daudi ] + * [MERGE] + * [FIX] module:base made name field translatable in action.server + (ref:mga) + + [ Jay (Open ERP) ] + * [FIX] Character Truncation problem on updation solved + + [ Christophe Simonis ] + * [IMP] ir_model_data: convert assert to sql constraint + exception + + [ Jay (Open ERP) ] + * [FIX] Custom report : sorted X-axis values + * [FIX] SQL Constraint failure error on particular record while + importing + + [ husen daudi ] + * [FIX] xml encoding in header for &.<.> + * [Merge] Converted xml reports from xmldom to etree and better error + message with environment information + + [ Jay (Open ERP) ] + * [FIX] User with blank password(if so) allowed to log in. + + [ Fabien Pinckaers ] + * [FIX] avoid required parameters rule (domain_force) + * merge + * merge + * merge + * [IMP] better error message + + [ Jay (Open ERP) ] + * [FIX] Fixed oldxml at python2.6 for Ubuntu 8.0.4,9.04 + * [IMP] default_xx in context isuue + + [ Fabien Pinckaers ] + * merge + * [fix] launch signal after action in workflows + + [ Jay (Open ERP) ] + * [FIX] ORM: Defult_field name in context belongs to curent object + only, not to its relationals anymore + * [FIX] ir_attachment preview method corrected + + [ Stephane Wirtel ] + * [MERGE] + * [FIX] fields.related (m2o poiting to M2M/O2M should be skipped + during write. + + [ Jay (Open ERP) ] + * [IMP] Temporarily commented exception for browse record that broke + reports from wizard + + [ husen daudi ] + * [FIX] Bad commit + * [FIX] Added PageCount tag in report engine + + [ Fabien Pinckaers ] + * merge + * modifs + * [FIX] bug in report engine + + [ Jay (Open ERP) ] + * [FIX] GIF image is previewed + + [ Christophe Simonis ] + * [MERGE] + * [FIX] upgrade doesn't try to delete modules + * [MERGE] + * [FIX] xml: the tag delete also the reference to the deleted + objects into ir_model_data + * [FIX] translation export: catch the case when a object does not + exists in database + * [FIX] browse_record: raise a better exception when the id doesn't + exists + + [ dsh (Open ERP) ] + * [FIX] fix &,<,> problem for html2html-url report + * [FIX] fix &,<,> problem for html2html report + * [IMP] added style for the url which are as text + + [ Fabien Pinckaers ] + * merge + * [FIX] translations resynchro terms + * [FIX] Bugfix translations and float/int format in reports + * bugfix_lang_notavailabel + + [ Olivier Laurent ] + * [MERGE] + * [IMP] base: french translations + + [ Christophe Simonis ] + * [IMP] maintenance: complete the remarks with the database name + * [FIX] complete rng file + * [FIX] load the module graph even if it containt only "base" + + [ dsh (Open ERP) ] + * bug fix(skip text if child nodes are there) for the html2html and + openoffice reports + + [ Panos Christeas ] + + -- Panos Christeas Thu, 13 Aug 2009 10:21:28 +0300 + openerp-server (5.0.1-0-1ubuntu2) karmic; urgency=low * Minor updates From c6e4214daae8a323221f95f32e83023a63a745e0 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 13 Aug 2009 11:16:46 +0300 Subject: [PATCH 173/251] [SEC] [CRITICAL] Forbid RPC calls w/o credentials. This is a major security fix. bzr revid: p_christ@hol.gr-20090813081646-yr0ghe5uu80my7d3 --- bin/service/security.py | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/bin/service/security.py b/bin/service/security.py index 3a4c3c80f61..347dd8c13fe 100644 --- a/bin/service/security.py +++ b/bin/service/security.py @@ -25,6 +25,13 @@ import tools _uid_cache = {} +# When rejecting a password, we need to give as little info as possible +class ExceptionNoTb(Exception): + def __init__(self, msg ): + # self.message = msg # No need in Python 2.6 + self.traceback = ('','','') + self.args = (msg, '') + def login(db, login, password): cr = pooler.get_db(db).cursor() if password: @@ -42,10 +49,10 @@ def check_super(passwd): if passwd == tools.config['admin_passwd']: return True else: - raise Exception('AccessDenied') + raise ExceptionNoTb('AccessDenied') -def check(db, uid, passwd): - if _uid_cache.get(db, {}).get(uid) == passwd: +def check_creds(db, uid, passwd): + if _uid_cache.get(db, {}).get(uid) and _uid_cache.get(db, {}).get(uid) == passwd: return True cr = pooler.get_db(db).cursor() if passwd: @@ -55,7 +62,7 @@ def check(db, uid, passwd): res = cr.fetchone()[0] cr.close() if not bool(res): - raise Exception('AccessDenied') + raise ExceptionNoTb('AccessDenied') if res: if _uid_cache.has_key(db): ulist = _uid_cache[db] @@ -73,8 +80,13 @@ def access(db, uid, passwd, sec_level, ids): res = cr.fetchone() cr.close() if not res: - raise Exception('Bad username or password') + raise ExceptionNoTb('Bad username or password') return res[0] +def check(db, uid, passwd): + if not check_creds(db,uid,passwd): + raise ExceptionNoTb('Bad username or password') + pass + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From 7e9d338e7f37ac4ac7b4e01f1ee4ac4430493add Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 13 Aug 2009 14:51:26 +0300 Subject: [PATCH 174/251] Security: check_creds is not really needed, use "check" The "check" function would not return a False value anyway, so don't use wrapping one. bzr revid: p_christ@hol.gr-20090813115126-hv1uz009ltcnid2y --- bin/service/security.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/bin/service/security.py b/bin/service/security.py index 347dd8c13fe..ee856e8831b 100644 --- a/bin/service/security.py +++ b/bin/service/security.py @@ -51,7 +51,7 @@ def check_super(passwd): else: raise ExceptionNoTb('AccessDenied') -def check_creds(db, uid, passwd): +def check(db, uid, passwd): if _uid_cache.get(db, {}).get(uid) and _uid_cache.get(db, {}).get(uid) == passwd: return True cr = pooler.get_db(db).cursor() @@ -83,10 +83,5 @@ def access(db, uid, passwd, sec_level, ids): raise ExceptionNoTb('Bad username or password') return res[0] -def check(db, uid, passwd): - if not check_creds(db,uid,passwd): - raise ExceptionNoTb('Bad username or password') - pass - # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From ef0faf819723cbb09e2c427a45fc1e2039016d89 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 13 Aug 2009 15:26:27 +0300 Subject: [PATCH 175/251] Update debian/changelog bzr revid: p_christ@hol.gr-20090813122627-ffdabm22f3jvafpr --- debian/changelog | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/debian/changelog b/debian/changelog index 3ba13c29b81..d4f63d124cf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +openerp-server (5.0.2-0-1ubuntu2) intrepid; urgency=critical + + [ P. Christeas ] + * Security: check_creds is not really needed, use "check" + + [ Christophe Simonis ] + * [FIX] security issue: avoid access to inactive users + * [FIX] avoid a bug when look in stack when translate code strings + + [ P. Christeas ] + * [SEC] [CRITICAL] Forbid RPC calls w/o credentials. + + [ Panos Christeas ] + + -- Panos Christeas Thu, 13 Aug 2009 15:25:26 +0300 + openerp-server (5.0.2-0-1ubuntu1) intrepid; urgency=low [ P. Christeas ] From 32d0c8a84c5d5ac0cbb8f18fea807aa2e160f9dc Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 13 Aug 2009 22:04:08 +0300 Subject: [PATCH 176/251] Fix +x permission of openerp-server.py bzr revid: p_christ@hol.gr-20090813190408-3167ac655u4jm0vi --- bin/openerp-server.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 bin/openerp-server.py diff --git a/bin/openerp-server.py b/bin/openerp-server.py old mode 100644 new mode 100755 From 0bfcc2d18e96c44639641112b9b8d5695ed23c89 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 14 Aug 2009 10:38:42 +0300 Subject: [PATCH 177/251] Update translation template. bzr revid: p_christ@hol.gr-20090814073842-n060casv73r56hfd --- bin/addons/base/i18n/base.pot | 13991 ++++++++++++-------------------- 1 file changed, 5174 insertions(+), 8817 deletions(-) diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index 6095742ae74..91ea4c5cf32 100644 --- a/bin/addons/base/i18n/base.pot +++ b/bin/addons/base/i18n/base.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-13 19:05:35+0000\n" +"PO-Revision-Date: 2009-08-13 19:05:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,31 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STOP" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window,target:0 +msgid "Current Window" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Internal Name" +msgstr "" + #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" @@ -26,9 +51,23 @@ msgid "SMS - Gateway: clickatell" msgstr "" #. module: base -#: code:addons/addons/account/wizard/wizard_open_closed_fiscalyear.py:0 -#, python-format -msgid "No journal for ending writing has been defined for the fiscal year" +#: selection:ir.report.custom,frequency:0 +msgid "Monthly" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Unknown" +msgstr "" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" msgstr "" #. module: base @@ -36,725 +75,6 @@ msgstr "" msgid "%j - Day of the year as a decimal number [001,366]." msgstr "" -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Product quantity" -msgstr "" - -#. module: base -#: field:ir.values,meta_unpickle:0 -msgid "Metadata" -msgstr "" - -#. module: base -#: field:ir.ui.view,arch:0 -#: field:ir.ui.view.custom,arch:0 -msgid "View Architecture" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - -#. module: base -#: wizard_field:module.lang.import,init,code:0 -msgid "Code (eg:en__US)" -msgstr "" - -#. module: base -#: view:workflow:0 -#: field:workflow.activity,wkf_id:0 -#: field:workflow.instance,wkf_id:0 -msgid "Workflow" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_bank_statement.py:0 -#, python-format -msgid "Account move line \"%s\" is not valid" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Hungarian / Magyar" -msgstr "" - -#. module: base -#: field:ir.actions.server,wkf_model_id:0 -msgid "Workflow On" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "The Bank type %s of the bank account: %s is not supported" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Views" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "You can not delete posted movement: \"%s\"!" -msgstr "" - -#. module: base -#: view:workflow.activity:0 -msgid "Outgoing transitions" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Yearly" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The unlink method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,target:0 -msgid "Target Window" -msgstr "" - -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_simple_view -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 "" - -#. module: base -#: field:ir.rule,operand:0 -msgid "Operand" -msgstr "" - -#. module: base -#: model:res.country,name:base.kr -msgid "South Korea" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_custom -msgid "ir.ui.view.custom" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "There is no income account defined ' \\n" -" 'for this product: \"%s\" (id:%d)" -msgstr "" - -#. module: base -#: model:res.country,name:base.sz -msgid "Swaziland" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_custom -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.custom" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CANCEL" -msgstr "" - -#. module: base -#: field:ir.report.custom,sortby:0 -msgid "Sorted By" -msgstr "" - -#. module: base -#: field:ir.sequence,number_increment:0 -msgid "Increment Number" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_tree -#: model:ir.ui.menu,name:base.menu_action_res_company_tree -msgid "Company's Structure" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom_fields -msgid "ir.report.custom.fields" -msgstr "" - -#. module: base -#: code:addons/addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "new" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_TOP" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,multi:0 -#: field:ir.actions.report.xml,multi:0 -msgid "On multiple doc." -msgstr "" - -#. module: base -#: field:ir.module.category,module_nr:0 -msgid "Number of Modules" -msgstr "" - -#. module: base -#: field:res.partner.bank.type.field,size:0 -msgid "Max. Size" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "You can not use this general account in this journal !" -msgstr "" - -#. module: base -#: field:res.partner.address,name:0 -msgid "Contact Name" -msgstr "" - -#. module: base -#: code:addons/addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -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 "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password mismatch !" -msgstr "" - -#. module: base -#: code:addons/addons/base/module/module.py:0 -#, python-format -msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "active" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,wiz_name:0 -msgid "Wizard Name" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%y - Year without century as a decimal number [00,99]." -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "You can not add/modify entries in a closed journal." -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Validated" -msgstr "" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "No payment mode or payment type code invalid." -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "" - -#. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "" - -#. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,src_model:0 -msgid "Source Object" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form -#: view:ir.actions.todo:0 -#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form -msgid "Config Wizard Steps" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_sc -msgid "ir.ui.view_sc" -msgstr "" - -#. module: base -#: field:ir.model.access,group_id:0 -#: field:ir.rule,rule_group:0 -msgid "Group" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To browse official translations, you can visit this link: " -msgstr "" - -#. module: base -#: field:ir.exports.line,name:0 -#: field:ir.translation,name:0 -#: field:res.partner.bank.type.field,name:0 -msgid "Field Name" -msgstr "" - -#. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "Cannot delete Purchase Order(s) which are in %s State!' % s['state']))\n" -" return super(purchase_order, self).unlink(cr, uid, unlink_ids, context=context)\n" -"\n" -" def button_dummy(self, cr, uid, ids, context={}):\n" -" return True\n" -"\n" -" def onchange_dest_address_id(self, cr, uid, ids, adr_id):\n" -" if not adr_id:\n" -" return {}\n" -" part_id = self.pool.get('res.partner.address" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_uninstall -#: model:ir.ui.menu,name:base.menu_module_tree_uninstall -msgid "Uninstalled modules" -msgstr "" - -#. module: base -#: code:addons/addons/product/pricelist.py:0 -#, python-format -msgid "Could not resolve product category, ' \\n" -" 'you have defined cyclic categories ' \\n" -" 'of products!" -msgstr "" - -#. module: base -#: wizard_view:server.action.create,init:0 -#: wizard_field:server.action.create,init,type:0 -msgid "Select Action Type" -msgstr "" - -#. module: base -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid " You cannot Resume the operation other then Pause state !" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Configure" -msgstr "" - -#. module: base -#: model:res.country,name:base.tv -msgid "Tuvalu" -msgstr "" - -#. module: base -#: selection:ir.model,state:0 -#: selection:ir.model.grid,state:0 -msgid "Custom Object" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "June" -msgstr "" - -#. module: base -#: field:res.lang,date_format:0 -msgid "Date Format" -msgstr "" - -#. module: base -#: field:res.bank,email:0 -#: field:res.partner.address,email:0 -msgid "E-Mail" -msgstr "" - -#. module: base -#: model:res.country,name:base.an -msgid "Netherlands Antilles" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Workcenter name" -msgstr "" - -#. module: base -#: code:addons/addons/base/res/res_user.py:0 -#, python-format -msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" -msgstr "" - -#. module: base -#: model:res.country,name:base.gf -msgid "French Guyana" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bosnian / bosanski jezik" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,attachment_use:0 -msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The read method is not implemented on this object !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_REWIND" -msgstr "" - -#. module: base -#: field:ir.actions.todo,note:0 -msgid "Text" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Product Quantity" -msgstr "" - -#. module: base -#: field:res.country,name:0 -msgid "Country Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.co -msgid "Colombia" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Schedule Upgrade" -msgstr "" - -#. module: base -#: code:addons/service/web_services.py:0 -#, python-format -msgid "''\n" -"\n" -"OpenERP is an ERP+CRM program for small and medium businesses.\n" -"\n" -"The whole source code is distributed under the terms of the\n" -"GNU Public Licence.\n" -"\n" -"(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" -msgstr "" - -#. module: base -#: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 -#, python-format -msgid "You must assign a partner to this lead before converting to opportunity.\n' \\n" -" 'You can use the convert to partner button." -msgstr "" - -#. module: base -#: help:res.country,code:0 -msgid "The ISO country code in two chars.\n" -"You can use this field for quick search." -msgstr "" - -#. module: base -#: model:res.country,name:base.pw -msgid "Palau" -msgstr "" - -#. module: base -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_be/wizard/partner_vat_listing.py:0 -#, python-format -msgid "No partner has a VAT Number asociated with him." -msgstr "" - -#. module: base -#: view:ir.actions.wizard:0 -#: field:wizard.ir.model.menu.create.line,wizard_id:0 -msgid "Wizard" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CUT" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_wizard -#: view:ir.actions.wizard:0 -#: model:ir.ui.menu,name:base.menu_ir_action_wizard -msgid "Wizards" -msgstr "" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Extended Interface" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - -#. module: base -#: help:ir.actions.server,action_id:0 -msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Can't connect instance %s" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export done" -msgstr "" - -#. module: base -#: view:ir.model:0 -msgid "Model Description" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "You need to choose a model" -msgstr "" - -#. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expression" -msgstr "" - -#. module: base -#: model:res.country,name:base.jo -msgid "Jordan" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the model '%s' !" -msgstr "" - -#. module: base -#: model:res.country,name:base.er -msgid "Eritrea" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Configure simple view" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bulgarian / български" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_actions -msgid "ir.actions.actions" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You can not sign in from an other date than today" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/mrp.py:0 -#, python-format -msgid "from stock: products assigned." -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/bvr_import.py:0 -#, python-format -msgid "Too much total record found!" -msgstr "" - -#. module: base -#: code:addons/addons/account_budget/crossovered_budget.py:0 -#, python-format -msgid "The General Budget '%s' has no Accounts!" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Bar Chart" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_ERROR" -msgstr "" - -#. module: base -#: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 -#, python-format -msgid "Invoice is not created" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDEX" -msgstr "" - -#. module: base -#: model:res.country,name:base.rs -msgid "Serbia" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard View" -msgstr "" - -#. module: base -#: model:res.country,name:base.kh -msgid "Cambodia, Kingdom of" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_form -#: view:ir.sequence:0 -#: model:ir.ui.menu,name:base.menu_ir_sequence_form -#: model:ir.ui.menu,name:base.next_id_5 -msgid "Sequences" -msgstr "" - -#. module: base -#: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 -#, python-format -msgid "You did not installed the opportunities tracking when you configured the crm_configuration module.' \\n" -" '\nI can not convert the lead to an opportunity, you must create a section with the code \'oppor\'." -msgstr "" - -#. module: base -#: code:addons/addons/project_gtd/project_gtd.py:0 -#, python-format -msgid "Eff. Hours" -msgstr "" - -#. module: base -#: code:addons/addons/document_ics/document.py:0 -#, python-format -msgid "You can not set negative Duration." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_QUESTION" -msgstr "" - -#. module: base -#: model:res.country,name:base.pg -msgid "Papua New Guinea" -msgstr "" - -#. module: base -#: code:addons/addons/odms/wizard/host_status.py:0 -#, python-format -msgid "Created by the synchronization wizard" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "SAJ" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_4 -msgid "Basic Partner" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "," -msgstr "" - -#. module: base -#: model:res.country,name:base.es -msgid "Spain" -msgstr "" - #. module: base #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 @@ -762,1967 +82,33 @@ msgid "You may have to reinstall some language pack." msgstr "" #. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Futur Deliveries" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE" msgstr "" #. module: base -#: field:res.partner.address,mobile:0 -msgid "Mobile" +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" msgstr "" #. module: base -#: model:res.country,name:base.om -msgid "Oman" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_payterm_form -#: model:ir.model,name:base.model_res_payterm -msgid "Payment term" -msgstr "" - -#. module: base -#: model:res.country,name:base.nu -msgid "Niue" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Work Days" -msgstr "" - -#. module: base -#: help:ir.values,action_id:0 -msgid "This field is not used, it only helps you to select the right action." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_menu_create -#: view:wizard.ir.model.menu.create:0 -msgid "Create Menu" -msgstr "" - -#. module: base -#: model:res.country,name:base.in -msgid "India" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_module -msgid "maintenance contract modules" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "TOTAL" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "client_action_multi, client_action_relate" -msgstr "" - -#. module: base -#: model:res.country,name:base.ad -msgid "Andorra, Principality of" -msgstr "" - -#. module: base -#: field:ir.module.category,child_ids:0 -#: field:res.partner.category,child_ids:0 -msgid "Child Categories" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "TGZ Archive" -msgstr "" - -#. module: base -#: field:res.partner.som,factor:0 -msgid "Factor" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%B - Full month name." -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_type:0 -#: field:ir.actions.todo,type:0 -#: field:ir.server.object.lines,type:0 -#: field:ir.translation,type:0 -#: field:ir.values,key:0 -#: view:res.partner:0 -msgid "Type" -msgstr "" - -#. module: base -#: code:addons/addons/account_analytic_plans/account_analytic_plans.py:0 -#, python-format -msgid "A model having this name and code already exists !" +#: view:ir.actions.act_window:0 +msgid "Open Window" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_FILE" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child2:0 -msgid "Field child2" -msgstr "" - -#. module: base -#: model:res.country,name:base.gu -msgid "Guam (USA)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_grid -msgid "Objects Security Grid" +msgid "STOCK_DIALOG_QUESTION" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_DOWN" +msgid "terp-account" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OK" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/bvr_import.py:0 -#, python-format -msgid "The properties account payable account receivable" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "You have to define a Default Credit Account for your Financial Journals!\n" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -#: selection:workflow.activity,kind:0 -msgid "Dummy" -msgstr "" - -#. module: base -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: base -#: code:addons/addons/account_analytic_analysis/account_analytic_analysis.py:0 -#: code:addons/osv/orm.py:0 -#, python-format -msgid "You try to bypass an access rule (Document type: %s)." -msgstr "" - -#. module: base -#: model:res.country,name:base.ky -msgid "Cayman Islands" -msgstr "" - -#. module: base -#: code:addons/report/custom.py:0 -#, python-format -msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "invalid mode for test_state" -msgstr "" - -#. module: base -#: field:ir.sequence,name:0 -#: field:ir.sequence.type,name:0 -msgid "Sequence Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.td -msgid "Chad" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "September" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish (AR) / Español (AR)" -msgstr "" - -#. module: base -#: model:res.country,name:base.ug -msgid "Uganda" -msgstr "" - -#. module: base -#: model:res.country,name:base.ne -msgid "Niger" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "You can not do this modification on a confirmed entry ! Please note that you can just change some non important fields !" -msgstr "" - -#. module: base -#: model:res.country,name:base.ba -msgid "Bosnia-Herzegovina" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,alignment:0 -msgid "Alignment" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid ">=" -msgstr "" - -#. module: base -#: code:addons/addons/account_followup/wizard/wizard_followup_print.py:0 -#, python-format -msgid "\n\nMail sent to following Partners successfully, !\n\n" -msgstr "" - -#. module: base -#: view:res.lang:0 -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 "" - -#. module: base -#: field:res.partner.event,planned_cost:0 -msgid "Planned Cost" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_config -msgid "ir.model.config" -msgstr "" - -#. module: base -#: field:ir.module.module,website:0 -#: field:res.partner,website:0 -msgid "Website" -msgstr "" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - -#. module: base -#: view:ir.module.repository:0 -msgid "Repository" -msgstr "" - -#. module: base -#: model:res.country,name:base.gs -msgid "S. Georgia & S. Sandwich Isls." -msgstr "" - -#. module: base -#: field:ir.actions.url,url:0 -msgid "Action URL" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_pay_invoice.py:0 -#: code:addons/addons/odms/odms_invoice.py:0 -#, python-format -msgid "Your journal must have a default credit and debit account." -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "This feature is only available for location type Amazon" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_FILL" -msgstr "" - -#. module: base -#: model:res.country,name:base.mh -msgid "Marshall Islands" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Bad account!" -msgstr "" - -#. module: base -#: model:res.country,name:base.ht -msgid "Haiti" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "RML" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_main -msgid "Partners by Categories" -msgstr "" - -#. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Received Qty" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Pie charts need exactly two fields" -msgstr "" - -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "" - -#. module: base -#: code:addons/addons/project/wizard/close_task.py:0 -#, python-format -msgid "Couldn't send mail because your email address is not configured!" -msgstr "" - -#. module: base -#: model:res.country,name:base.md -msgid "Moldavia" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Features" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "No Analytic Journal !" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Unit Product Price" -msgstr "" - -#. module: base -#: field:ir.report.custom,frequency:0 -msgid "Frequency" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc0_op:0 -#: field:ir.report.custom.fields,fc1_op:0 -#: field:ir.report.custom.fields,fc2_op:0 -#: field:ir.report.custom.fields,fc3_op:0 -msgid "Relation" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_exports -msgid "ir.exports" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MISSING_IMAGE" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Define New Users" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REMOVE" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "raw" -msgstr "" - -#. module: base -#: help:ir.actions.server,email:0 -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 "" - -#. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 -#, python-format -msgid "The production is in \"%s\" state. You can not change the production quantity anymore" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "-" -msgstr "" - -#. module: base -#: code:addons/addons/auction/wizard/wizard_aie_send.py:0 -#: code:addons/addons/auction/wizard/wizard_aie_send_result.py:0 -#, python-format -msgid "Connection to WWW.Auction-in-Europe.com failed !" -msgstr "" - -#. module: base -#: field:res.payterm,name:0 -msgid "Payment Term (short name)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_bank -#: view:res.bank:0 -#: field:res.partner.bank,bank:0 -msgid "Bank" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_exports_line -msgid "ir.exports.line" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/mrp.py:0 -#, python-format -msgid "Cannot delete Production Order(s) which are in %s State!' % s['state']))\n" -" return osv.osv.unlink(self, cr, uid, unlink_ids, context=context)\n" -"\n" -" def copy(self, cr, uid, id, default=None,context=None):\n" -" if not default:\n" -" default = {}\n" -" default.update({\n" -" 'name': self.pool.get('ir.sequence" -msgstr "" - -#. module: base -#: field:ir.module.module,reports_by_module:0 -msgid "Reports" -msgstr "" - -#. module: base -#: field:workflow,on_create:0 -msgid "On Create" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "No E-Mail ID Found for your Company address or missing reply address in section!" -msgstr "" - -#. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,user:0 -#: field:res.users,login:0 -msgid "Login" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence_type -msgid "ir.sequence.type" -msgstr "" - -#. module: base -#: view:maintenance.contract:0 -#: field:maintenance.contract,module_ids:0 -msgid "Covered Modules" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COPY" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "Model %s Does not Exist !\" % vals['relation']))\n" -" \n" -" if self.pool.get(vals['model']):\n" -" self.pool.get(vals['model']).__init__(self.pool, cr)\n" -" self.pool.get(vals['model'])._auto_init(cr, {})\n" -" \n" -" return res\n" -"ir_model_fields()\n" -"\n" -"class ir_model_access(osv.osv):\n" -" _name = 'ir.model.access'\n" -" _columns = {\n" -" 'name': fields.char('Name', size=64, required=True),\n" -" 'model_id': fields.many2one('ir.model', 'Object', required=True),\n" -" 'group_id': fields.many2one('res.groups', 'Group" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 -#, python-format -msgid "You can't modify this order. It has already been paid" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request_link -msgid "res.request.link" -msgstr "" - -#. module: base -#: wizard_button:module.module.update,init,update:0 -msgid "Check new modules" -msgstr "" - -#. module: base -#: model:res.country,name:base.km -msgid "Comoros" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_server_action -#: view:ir.actions.server:0 -#: model:ir.ui.menu,name:base.menu_server_action -msgid "Server Actions" -msgstr "" - -#. module: base -#: model:res.country,name:base.tp -msgid "East Timor" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "Simple domain setup" -msgstr "" - -#. module: base -#: field:res.currency,accuracy:0 -msgid "Computational Accuracy" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_account_balance_report.py:0 -#: code:addons/addons/account/wizard/wizard_general_ledger_report.py:0 -#: code:addons/addons/account/wizard/wizard_partner_balance_report.py:0 -#: code:addons/addons/account/wizard/wizard_third_party_ledger.py:0 -#, python-format -msgid "Date to must be set between %s and %s" -msgstr "" - -#. module: base -#: model:res.country,name:base.kg -msgid "Kyrgyz Republic (Kyrgyzstan)" -msgstr "" - -#. module: base -#: code:addons/addons/product/product.py:0 -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Products: " -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "No bank account for the company." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line -msgid "wizard.ir.model.menu.create.line" -msgstr "" - -#. module: base -#: field:ir.attachment,res_id:0 -msgid "Attached ID" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "You can not modify/delete a journal with entries for this period !" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Day: %(day)s" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/hr_timesheet.py:0 -#, python-format -msgid "UnknownError" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND_AND_REPLACE" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-crm" -msgstr "" - -#. module: base -#: model:res.country,name:base.mv -msgid "Maldives" -msgstr "" - -#. module: base -#: help:ir.values,res_id:0 -msgid "Keep 0 if the action must appear on all resources." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_rule -msgid "ir.rule" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Invalid Region" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,width:0 -msgid "Fixed Width" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-calendar" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_YES" -msgstr "" - -#. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "P&L Qty" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_custom -#: model:ir.ui.menu,name:base.menu_ir_action_report_custom -msgid "Report Custom" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "7. %H:%M:%S ==> 18:25:20" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_form -#: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form -#: view:res.partner:0 -msgid "Partners" -msgstr "" - -#. module: base -#: help:ir.actions.server,message:0 -msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" -msgstr "" - -#. module: base -#: field:ir.attachment,res_model:0 -msgid "Attached Model" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - -#. module: base -#: field:ir.actions.server,trigger_name:0 -msgid "Trigger Name" -msgstr "" - -#. module: base -#: code:addons/addons/odms/portal.py:0 -#, python-format -msgid "unable to find a server" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_access -msgid "ir.model.access" -msgstr "" - -#. module: base -#: field:ir.cron,priority:0 -#: field:ir.ui.view,priority:0 -#: field:res.request,priority:0 -#: field:res.request.link,priority:0 -msgid "Priority" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Missing info: Subscription" -msgstr "" - -#. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Legend (for prefix, suffix)" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "Reply" -msgstr "" - -#. module: base -#: code:addons/addons/base/res/res_user.py:0 -#, python-format -msgid "Can not remove root user!" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_LEFT" -msgstr "" - -#. module: base -#: model:res.country,name:base.mw -msgid "Malawi" -msgstr "" - -#. module: base -#: field:res.partner.address,type:0 -msgid "Address Type" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Auto" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "End of Request" -msgstr "" - -#. module: base -#: code:addons/addons/stock/wizard/wizard_track_line.py:0 -#, python-format -msgid "No production sequence defined" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "References" -msgstr "" - -#. module: base -#: view:res.lang:0 -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 "" - -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Note that this operation may take a few minutes." -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,view_type:0 -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Tree" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Could you check your contract information ?" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLEAR" -msgstr "" - -#. module: base -#: help:res.users,password:0 -msgid "Keep empty if you don't want the user to be able to connect on the system." -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_mode:0 -#: field:res.config.view,view:0 -msgid "View Mode" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Product Cost Structure" -msgstr "" - -#. module: base -#: code:addons/osv/fields.py:0 -#, python-format -msgid "Not implemented search_memory method !" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish / Español" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "There is no receivable account defined for this journal:'\\n" -" ' \"%s\" (id:%d)" -msgstr "" - -#. module: base -#: field:res.company,logo:0 -msgid "Logo" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PROPERTIES" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "The journal must have centralised counterpart" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,target:0 -#: selection:ir.actions.url,target:0 -msgid "New Window" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to create your control center user" -msgstr "" - -#. module: base -#: model:res.country,name:base.bs -msgid "Bahamas" -msgstr "" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Commercial Prospect" -msgstr "" - -#. module: base -#: code:addons/addons/base/res/partner/partner.py:0 -#, python-format -msgid "Couldn't generate the next id because some partners have an alphabetic id !" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: base -#: model:res.country,name:base.ie -msgid "Ireland" -msgstr "" - -#. module: base -#: wizard_field:module.module.update,update,update:0 -msgid "Number of modules updated" -msgstr "" - -#. module: base -#: code:addons/osv/fields.py:0 -#, python-format -msgid "Not implemented set_memory method !" -msgstr "" - -#. module: base -#: code:addons/addons/hr_attendance/wizard/sign_in_out.py:0 -#, python-format -msgid "A sign-out must be right after a sign-in !" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,groups_id:0 -#: model:ir.actions.act_window,name:base.action_res_groups -#: field:ir.actions.report.xml,groups_id:0 -#: field:ir.actions.todo,groups_id:0 -#: field:ir.actions.wizard,groups_id:0 -#: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 -#: field:ir.ui.menu,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups -#: view:res.groups:0 -#: view:res.users:0 -#: field:res.users,groups_id:0 -msgid "Groups" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the Address field in the Partner: %s." -msgstr "" - -#. module: base -#: model:res.country,name:base.bz -msgid "Belize" -msgstr "" - -#. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Error, no partner !" -msgstr "" - -#. module: base -#: model:res.country,name:base.ge -msgid "Georgia" -msgstr "" - -#. module: base -#: model:res.country,name:base.pl -msgid "Poland" -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "To be removed" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Maintenance contract added !" -msgstr "" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "This wizard will detect new terms in the application so that you can update them manually." -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "The region should be in " -msgstr "" - -#. module: base -#: help:ir.actions.server,expression:0 -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 "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Field" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_COLOR" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NO" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "Cannot delete a point of sale which is already confirmed !" -msgstr "" - -#. module: base -#: model:res.country,name:base.st -msgid "Saint Tome (Sao Tome) and Principe" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Invoice" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REDO" -msgstr "" - -#. module: base -#: model:res.country,name:base.bb -msgid "Barbados" -msgstr "" - -#. module: base -#: model:res.country,name:base.mg -msgid "Madagascar" -msgstr "" - -#. module: base -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 -#: view:ir.ui.menu:0 -#: field:ir.ui.menu,name:0 -msgid "Menu" -msgstr "" - -#. module: base -#: field:res.currency,rate:0 -msgid "Current Rate" -msgstr "" - -#. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Original View" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Action To Launch" -msgstr "" - -#. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "There is no journal defined '\\n" -" 'on the product category: \"%s\" (id: %d)" -msgstr "" - -#. module: base -#: field:ir.actions.url,target:0 -msgid "Action Target" -msgstr "" - -#. module: base -#: model:res.country,name:base.ai -msgid "Anguilla" -msgstr "" - -#. module: base -#: field:ir.model.config,password_check:0 -msgid "Confirmation" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Enter at least one field !" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "No bank defined\n' \\n" -" 'for the bank account: %s\n' \\n" -" 'on the partner: %s\n' \\n" -" 'on line: %s" -msgstr "" - -#. module: base -#: model:res.country,name:base.ve -msgid "Venezuela" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,name:0 -msgid "Shortcut Name" -msgstr "" - -#. module: base -#: help:ir.actions.act_window,limit:0 -msgid "Default limit for the list view" -msgstr "" - -#. module: base -#: help:ir.actions.server,write_id:0 -msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." -msgstr "" - -#. module: base -#: model:res.country,name:base.zw -msgid "Zimbabwe" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_export -msgid "Import / Export" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_user_form -#: view:res.users:0 -msgid "Configure User" -msgstr "" - -#. module: base -#: field:ir.actions.server,email:0 -msgid "Email Address" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -#: field:workflow.activity,action_id:0 -msgid "Server Action" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "The account is not defined to be reconciled !" -msgstr "" - -#. module: base -#: model:res.country,name:base.tt -msgid "Trinidad and Tobago" -msgstr "" - -#. module: base -#: model:res.country,name:base.lv -msgid "Latvia" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Values" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mappings" -msgstr "" - -#. module: base -#: code:addons/addons/product_margin/wizard/wizard_product_margin.py:0 -#, python-format -msgid "Product Margins" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Customization" -msgstr "" - -#. module: base -#: model:res.country,name:base.py -msgid "Paraguay" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "You have to provide an account for the write off entry !" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "left" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_close -msgid "ir.actions.act_window_close" -msgstr "" - -#. module: base -#: field:ir.server.object.lines,col1:0 -msgid "Destination" -msgstr "" - -#. module: base -#: model:res.country,name:base.lt -msgid "Lithuania" -msgstr "" - -#. module: base -#: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 -#, python-format -msgid "A partner is already defined on this lead." -msgstr "" - -#. module: base -#: code:addons/addons/project/wizard/task_delegate.py:0 -#, python-format -msgid "CHECK: " -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT_PREVIEW" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:addons/addons/stock/wizard/wizard_inventory.py:0 -#, python-format -msgid "Message !" -msgstr "" - -#. module: base -#: model:res.country,name:base.si -msgid "Slovenia" -msgstr "" - -#. module: base -#: code:addons/addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "No journal defined on the related employee.\nFill in the timesheet tab of the employee form." -msgstr "" - -#. module: base -#: view:res.partner.canal:0 -#: field:res.partner.event,canal_id:0 -msgid "Channel" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "You can not escalate this case.\nYou are already at the top level." -msgstr "" - -#. module: base -#: code:addons/addons/account_budget/crossovered_budget.py:0 -#: code:addons/addons/crm/crm.py:0 -#: code:addons/addons/document/document.py:0 -#: code:addons/addons/event/event.py:0 -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#: code:addons/addons/odms/odms_invoice.py:0 -#: code:addons/addons/stock/stock.py:0 -#: code:addons/addons/stock/wizard/wizard_track_line.py:0 -#, python-format -msgid "Error!" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%p - Equivalent of either AM or PM." -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Actions" -msgstr "" - -#. module: base -#: field:maintenance.contract,date_stop:0 -msgid "Ending Date" -msgstr "" - -#. module: base -#: model:res.country,name:base.nz -msgid "New Zealand" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_7 -msgid "Openstuff.net" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_account_balance_report.py:0 -#: code:addons/addons/account/wizard/wizard_general_ledger_report.py:0 -#: code:addons/addons/account/wizard/wizard_partner_balance_report.py:0 -#: code:addons/addons/account/wizard/wizard_third_party_ledger.py:0 -#, python-format -msgid "Date not in a defined fiscal year" -msgstr "" - -#. module: base -#: model:res.country,name:base.nf -msgid "Norfolk Island" -msgstr "" - -#. module: base -#: code:addons/addons/delivery/delivery.py:0 -#, python-format -msgid "No line matched this order in the choosed delivery grids !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PLAY" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "You can't delete this server because it acts as backup for other servers." -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "The account move (%s) for centralisation ' \\n" -" 'has been confirmed!" -msgstr "" - -#. module: base -#: field:ir.rule,operator:0 -msgid "Operator" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Installation Done" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Registration of your account" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OPEN" -msgstr "" - -#. module: base -#: field:ir.actions.server,action_id:0 -#: selection:ir.actions.server,state:0 -msgid "Client Action" -msgstr "" - -#. module: base -#: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#, python-format -msgid "You cannot make an advance on a sale order that is defined as 'Automatic Invoice after delivery'." -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "right" -msgstr "" - -#. module: base -#: model:res.country,name:base.bd -msgid "Bangladesh" -msgstr "" - -#. module: base -#: constraint:res.company:0 -msgid "Error! You can not create recursive companies." -msgstr "" - -#. module: base -#: code:addons/addons/account/account_bank_statement.py:0 -#, python-format -msgid "Please verify that an account is defined in the journal." -msgstr "" - -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Valid" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "You must provide a Clearing Number for your bank account." -msgstr "" - -#. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "No Partner!" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "XSL" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_other_form -#: model:ir.ui.menu,name:base.menu_partner_other_form -msgid "Others Partners" -msgstr "" - -#. module: base -#: code:addons/addons/base/module/module.py:0 -#, python-format -msgid "Can not upgrade module '%s'. It is not installed." -msgstr "" - -#. module: base -#: model:res.country,name:base.cu -msgid "Cuba" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%S - Second as a decimal number [00,61]." -msgstr "" - -#. module: base -#: model:res.country,name:base.am -msgid "Armenia" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Missing info: Test Instance" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "Unable to create invoice (partner has no address)." -msgstr "" - -#. module: base -#: code:addons/addons/stock/wizard/inventory_merge_zero.py:0 -#, python-format -msgid "Please select one and only one inventory !" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year with century: %(year)s" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Daily" -msgstr "" - -#. module: base -#: model:res.country,name:base.se -msgid "Sweden" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Gantt" -msgstr "" - -#. module: base -#: view:ir.property:0 -msgid "Property" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type -#: view:res.partner.bank.type:0 -msgid "Bank Account Type" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-project" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_central_journal.py:0 -#: code:addons/addons/account/wizard/wizard_general_journal.py:0 -#: code:addons/addons/account/wizard/wizard_print_journal.py:0 -#: code:addons/addons/account/wizard/wizard_third_party_ledger.py:0 -#: code:addons/addons/hr_attendance/wizard/print_attendance_error.py:0 -#, python-format -msgid "No Data Available" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Action Configuration" -msgstr "" - -#. module: base -#: model:res.country,name:base.at -msgid "Austria" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Calendar" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "No fiscal year defined for this date !\nPlease create one." -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 -#, python-format -msgid "Selected Move lines does not have any account move enties in draft state" -msgstr "" - -#. module: base -#: field:workflow.activity,signal_send:0 -msgid "Signal (subflow.*)" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_17 -msgid "HR sector" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -msgid "Module dependency" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#: selection:maintenance.contract.wizard,state:0 -#, python-format -msgid "Draft" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_CENTER" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Choose Your Mode" -msgstr "" - -#. module: base -#: field:res.company,rml_footer1:0 -msgid "Report Footer 1" -msgstr "" - -#. module: base -#: field:res.company,rml_footer2:0 -msgid "Report Footer 2" -msgstr "" - -#. module: base -#: view:ir.model.access:0 -#: model:ir.ui.menu,name:base.menu_security_access -#: view:res.groups:0 -#: field:res.groups,model_access:0 -msgid "Access Controls" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -#: field:ir.module.module,dependencies_id:0 -msgid "Dependencies" -msgstr "" - -#. module: base -#: field:res.partner,parent_id:0 -msgid "Main Company" -msgstr "" - -#. module: base -#: code:addons/addons/auction/auction.py:0 -#, python-format -msgid "Missed Address !" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,bgcolor:0 -msgid "Background Color" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "If you use a formula type, use a python expression using the variable 'object'." -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "January" -msgstr "" - -#. module: base -#: field:res.partner.address,birthdate:0 -msgid "Birthdate" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_contact -#: model:ir.ui.menu,name:base.menu_partner_title_contact -msgid "Contact Titles" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_som -msgid "res.partner.som" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_activity -msgid "workflow.activity" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/report/pos_invoice.py:0 -#: code:addons/addons/point_of_sale/wizard/wizard_pos_payment.py:0 -#, python-format -msgid "Please create an invoice for this sale." -msgstr "" - -#. module: base -#: field:ir.model.fields,select_level:0 -msgid "Searchable" -msgstr "" - -#. module: base -#: model:res.country,name:base.uy -msgid "Uruguay" -msgstr "" - -#. module: base -#: view:res.partner.event:0 -msgid "Document Link" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_title -msgid "res.partner.title" -msgstr "" - -#. module: base -#: field:ir.sequence,prefix:0 -msgid "Prefix" -msgstr "" - -#. module: base -#: field:ir.actions.server,loop_action:0 -msgid "Loop Action" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "German / Deutsch" -msgstr "" - -#. module: base -#: help:ir.actions.server,trigger_name:0 -msgid "Select the Signal name that is to be used as the trigger." -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Fields Mapping" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 -#, python-format -msgid "Balance product needed" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "" - -#. module: base -#: wizard_button:module.upgrade,next,start:0 -msgid "Start Upgrade" -msgstr "" - -#. module: base -#: field:ir.default,ref_id:0 -msgid "ID Ref." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "French / Français" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Product supplier" -msgstr "" - -#. module: base -#: model:res.country,name:base.mt -msgid "Malta" -msgstr "" - -#. module: base -#: field:ir.actions.server,fields_lines:0 -msgid "Field Mappings." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 -#: view:ir.module.module:0 -#: field:ir.module.module.dependency,module_id:0 -#: rml:ir.module.reference:0 -msgid "Module" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Configuration of the server" -msgstr "" - -#. module: base -#: field:ir.attachment,description:0 -#: field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 -#: view:res.partner.event:0 -#: field:res.partner.event,description:0 -#: view:res.request:0 -msgid "Description" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "You must provide ' \\n" -" 'a bank number \n' \\n" -" 'for the partner bank: %s\n' \\n" -" 'on line: %s" -msgstr "" - -#. module: base -#: code:addons/addons/account_analytic_plans/account_analytic_plans.py:0 -#, python-format -msgid "Value Error" -msgstr "" - -#. module: base -#: code:addons/addons/use_control/module.py:0 -#, python-format -msgid "You are not authorized to copy module repositories" -msgstr "" - -#. module: base -#: field:res.users,action_id:0 -msgid "Home Action" -msgstr "" - -#. module: base -#: field:res.lang,grouping:0 -msgid "Separator Format" -msgstr "" - -#. module: base -#: code:addons/addons/delivery/stock.py:0 -#, python-format -msgid "The carrier %s (id: %d) has no delivery grid!" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export language" -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Unvalidated" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_9 -msgid "Database Structure" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard -#: wizard_view:res.partner.spam_send,init:0 -msgid "Mass Mailing" -msgstr "" - -#. module: base -#: model:res.country,name:base.yt -msgid "Mayotte" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "You can also import .po files." -msgstr "" - -#. module: base -#: code:addons/addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "Unable to find a valid contract" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify an action to launch !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_RIGHT" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_function -msgid "Function of the contact" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_upgrade -#: model:ir.ui.menu,name:base.menu_module_tree_upgrade -msgid "Modules to be installed, upgraded or removed" -msgstr "" - -#. module: base -#: code:addons/addons/document/document.py:0 -#, python-format -msgid "File name must be unique!" -msgstr "" - -#. module: base -#: view:res.payterm:0 -msgid "Payment Term" -msgstr "" - -#. module: base -#: field:ir.report.custom,footer:0 -msgid "Report Footer" -msgstr "" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Right-to-Left" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "Open" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Please check that all your lines have %d columns." -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import language" -msgstr "" - -#. module: base -#: code:addons/addons/mrp_repair/mrp_repair.py:0 -#, python-format -msgid "No partner !" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_cron_act -#: view:ir.cron:0 -#: model:ir.ui.menu,name:base.menu_ir_cron_act -msgid "Scheduled Actions" +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." msgstr "" #. module: base @@ -2733,27 +119,50 @@ msgid "Title" msgstr "" #. module: base -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Production Order Cannot start in [%s] state" +#: wizard_field:res.partner.sms_send,init,text:0 +msgid "SMS Message" msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Recursivity Detected." +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_grid +msgid "Objects Security Grid" +msgstr "" + +#. module: base +#: model:res.country,name:base.cm +msgid "Cameroon" +msgstr "" + +#. module: base +#: model:res.country,name:base.bf +msgid "Burkina Faso" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country_state +#: model:ir.ui.menu,name:base.menu_country_state_partner +msgid "Fed. States" +msgstr "" + +#. module: base +#: view:ir.model:0 +#: view:res.groups:0 +msgid "Access Rules" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "terp-account" +msgid "STOCK_CONNECT" msgstr "" #. module: base -#: code:addons/addons/base/module/module.py:0 -#: code:addons/addons/base_module_merge/wizard/base_module_merge.py:0 -#, python-format -msgid "Recursion error in modules dependencies !" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base @@ -2762,8 +171,52 @@ msgid "Create a Menu" msgstr "" #. module: base -#: help:res.partner,vat:0 -msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "" + +#. module: base +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "" + +#. module: base +#: model:res.country,name:base.tg +msgid "Togo" +msgstr "" + +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.report.custom,model:0 +#: field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 +#: field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 +#: field:ir.default,field_tbl:0 +#: view:ir.model:0 +#: field:ir.model,model:0 +#: field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 +#: field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 +#: field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 +#: field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 +#: field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +msgid "Object" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " msgstr "" #. module: base @@ -2772,19 +225,84 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: help:ir.actions.server,expression:0 +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 "" + +#. module: base +#: model:res.country,name:base.cc +msgid "Cocos (Keeling) Islands" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Hungarian / Magyar" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_default +msgid "ir.default" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "" + +#. module: base +#: view:res.company:0 +msgid "Header/Footer" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" msgstr "" #. module: base -#: field:res.company,name:0 -msgid "Company Name" +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_ERROR" +msgstr "" + +#. module: base +#: field:ir.actions.server,wkf_model_id:0 +msgid "Workflow On" +msgstr "" + +#. module: base +#: model:res.country,name:base.dm +msgid "Dominica" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch / Nederlands" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "" + +#. module: base +#: field:ir.sequence,padding:0 +msgid "Number padding" msgstr "" #. module: base @@ -2803,26 +321,100 @@ msgid "Countries" msgstr "" #. module: base -#: view:ir.rule.group:0 -msgid "Record rules" +#: field:ir.rule,operator:0 +msgid "Operator" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Checking your Promotional Code" +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" msgstr "" #. module: base -#: code:addons/addons/hr_attendance/hr_attendance.py:0 -#, python-format -msgid "You tried to sign with a date anterior to another event !\nTry to contact the administrator to correct attendances." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" msgstr "" #. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "You must first cancel all invoices attached to this purchase order." +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "" + +#. module: base +#: model:res.country,name:base.pm +msgid "Saint Pierre and Miquelon" +msgstr "" + +#. module: base +#: model:res.country,name:base.to +msgid "Tonga" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "" + +#. module: base +#: model:res.country,name:base.vu +msgid "Vanuatu" +msgstr "" + +#. module: base +#: wizard_view:server.action.create,step_1:0 +#: wizard_field:server.action.create,step_1,report:0 +msgid "Select Report" +msgstr "" + +#. module: base +#: view:ir.actions.wizard:0 +#: field:wizard.ir.model.menu.create.line,wizard_id:0 +msgid "Wizard" +msgstr "" + +#. module: base +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "" + +#. module: base +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "1cm 28cm 20cm 28cm" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "" + +#. module: base +#: model:res.country,name:base.mo +msgid "Macau" +msgstr "" + +#. module: base +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" msgstr "" #. module: base @@ -2831,8 +423,27 @@ msgid "12. %w ==> 5 ( Friday is the 6th day)" msgstr "" #. module: base -#: constraint:res.partner.category:0 -msgid "Error ! You can not create recursive categories." +#: field:ir.rule.group,global:0 +msgid "Global" +msgstr "" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "" + +#. module: base +#: field:ir.model.config,password:0 +#: field:maintenance.contract,password:0 +#: field:maintenance.contract.wizard,password:0 +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:res.users,password:0 +msgid "Password" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" msgstr "" #. module: base @@ -2849,8 +460,44 @@ msgid "Regexp to search module on the repository webpage:\n" msgstr "" #. module: base -#: view:res.lang:0 -msgid "%M - Minute as a decimal number [00,59]." +#: field:ir.default,field_name:0 +msgid "Object Field" +msgstr "" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_simple_view +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 "" + +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" + +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "" + +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" msgstr "" #. module: base @@ -2859,8 +506,18 @@ msgid "Tajikistan" msgstr "" #. module: base -#: help:ir.actions.report.xml,header:0 -msgid "Add or not the coporate RML header" +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "" + +#. module: base +#: model:res.country,name:base.tr +msgid "Turkey" +msgstr "" + +#. module: base +#: model:res.country,name:base.fk +msgid "Falkland Islands" msgstr "" #. module: base @@ -2874,21 +531,95 @@ msgstr "" msgid "GPL-2 or later version" msgstr "" +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NEW" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_custom +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.custom" +msgstr "" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CANCEL" +msgstr "" + #. module: base #: selection:res.partner.event,type:0 msgid "Prospect Contact" msgstr "" #. module: base -#: code:addons/addons/subscription/subscription.py:0 -#, python-format -msgid "Wrong Source Document !" +#: selection:ir.report.custom.fields,operation:0 +msgid "None" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_actions_wizard -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.wizard" +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "" + +#. module: base +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "" + +#. module: base +#: field:ir.actions.report.custom,type:0 +#: field:ir.actions.report.xml,type:0 +#: field:ir.report.custom,type:0 +msgid "Report Type" +msgstr "" + +#. module: base +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_tree +#: model:ir.ui.menu,name:base.menu_action_res_company_tree +msgid "Company's Structure" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "" + +#. module: base +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" msgstr "" #. module: base @@ -2897,14 +628,19 @@ msgid "Nauru" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/hr_timesheet.py:0 -#, python-format -msgid "No analytic journal available for this employee.\nDefine an employee for the selected user and assign an analytic journal." +#: model:res.country,name:base.no +msgid "Norway" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_property -msgid "ir.property" +#: view:res.lang:0 +msgid "4. %b, %B ==> Dec, December" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Load an Official Translation" msgstr "" #. module: base @@ -2916,9 +652,8 @@ msgid "Form" msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Can not define a column %s. Reserved keyword !" +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" msgstr "" #. module: base @@ -2926,20 +661,83 @@ msgstr "" msgid "Montenegro" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_QUIT" msgstr "" #. module: base -#: code:addons/addons/stock/wizard/wizard_inventory.py:0 -#, python-format -msgid "No product in this location." +#: help:ir.actions.server,loop_action:0 +msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." msgstr "" #. module: base -#: view:ir.cron:0 -msgid "Technical Data" +#: selection:res.request,state:0 +msgid "waiting" +msgstr "" + +#. module: base +#: model:res.country,name:base.va +msgid "Holy See (Vatican City State)" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Connect Events to Actions" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_ASCENDING" +msgstr "" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,fc0_op:0 +#: field:ir.report.custom.fields,fc1_op:0 +#: field:ir.report.custom.fields,fc2_op:0 +#: field:ir.report.custom.fields,fc3_op:0 +msgid "Relation" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_TOP" +msgstr "" + +#. module: base +#: field:ir.values,meta_unpickle:0 +msgid "Metadata" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%m - Month as a decimal number [01,12]." +msgstr "" + +#. module: base +#: field:ir.actions.todo,state:0 +#: field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 +#: field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 +#: field:res.bank,state:0 +#: view:res.country.state:0 +#: field:res.partner.bank,state_id:0 +#: field:res.request,state:0 +#: field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +msgid "State" msgstr "" #. module: base @@ -2949,12 +747,23 @@ msgid "Categories" msgstr "" #. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "You must provide ' \\n" -" 'a Clearing Number\n' \\n" -" 'for the partner bank: %s\n' \\n" -" 'on line %s" +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "" + +#. module: base +#: model:res.country,name:base.id +msgid "Indonesia" msgstr "" #. module: base @@ -2968,11 +777,27 @@ msgstr "" msgid "Libya" msgstr "" +#. module: base +#: field:ir.module.category,parent_id:0 +#: field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-purchase" msgstr "" +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "" + +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" +msgstr "" + #. module: base #: wizard_field:module.module.update,init,repositories:0 msgid "Repositories" @@ -2989,9 +814,14 @@ msgid "Liechtenstein" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Configuration of the incremental backup servers" +#: selection:res.partner.address,type:0 +#: selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND_AND_REPLACE" msgstr "" #. module: base @@ -3000,13 +830,33 @@ msgid "Ltd" msgstr "" #. module: base -#: field:ir.actions.server,expression:0 -msgid "Loop Expression" +#: selection:res.request,state:0 +msgid "active" msgstr "" #. module: base -#: field:ir.actions.report.custom,report_id:0 -msgid "Report Ref." +#: field:ir.actions.wizard,wiz_name:0 +msgid "Wizard Name" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%y - Year without century as a decimal number [00,99]." +msgstr "" + +#. module: base +#: model:res.country,name:base.as +msgid "American Samoa" +msgstr "" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Custom Field" +msgstr "" + +#. module: base +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" msgstr "" #. module: base @@ -3014,20 +864,64 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree +msgid "Repository list" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +msgid "wizard.ir.model.menu.create.line" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" msgstr "" #. module: base -#: code:addons/addons/auction/auction.py:0 -#, python-format -msgid "The Buyer \"%s\" has no Invoice Address." +#: view:ir.module.module:0 +msgid "Cancel Uninstall" msgstr "" #. module: base -#: selection:maintenance.contract,state:0 -msgid "Unvalid" +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "" + +#. module: base +#: view:workflow:0 +#: field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +msgid "Workflow" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,type:0 +#: field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 +#: field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 +#: field:ir.actions.url,type:0 +#: field:ir.actions.wizard,type:0 +msgid "Action Type" +msgstr "" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "" + +#. module: base +#: model:res.country,name:base.vn +msgid "Vietnam" +msgstr "" + +#. module: base +#: model:res.country,name:base.sk +msgid "Slovak Republic" msgstr "" #. module: base @@ -3040,15 +934,85 @@ msgstr "" msgid "6. %d, %m ==> 05, 12" msgstr "" +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "" + +#. module: base +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,report_rml:0 +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: view:ir.actions.todo:0 +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +msgid "Config Wizard Steps" +msgstr "" + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "" + +#. module: base +#: field:ir.model.access,group_id:0 +#: field:ir.rule,rule_group:0 +msgid "Group" +msgstr "" + +#. module: base +#: model:res.country,name:base.sm +msgid "San Marino" +msgstr "" + #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." msgstr "" #. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "No Customer Defined !" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "" + +#. module: base +#: model:res.country,name:base.kw +msgid "Kuwait" +msgstr "" + +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "" + +#. module: base +#: field:ir.actions.server,sms:0 +#: selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "" + +#. module: base +#: model:res.country,name:base.cr +msgid "Costa Rica" +msgstr "" + +#. module: base +#: field:ir.exports.line,name:0 +#: field:ir.translation,name:0 +#: field:res.partner.bank.type.field,name:0 +msgid "Field Name" msgstr "" #. module: base @@ -3060,21 +1024,38 @@ msgid "Languages" msgstr "" #. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "You have to define an analytic journal on the '%s' journal!" +#: field:workflow.workitem,inst_id:0 +msgid "Instance" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Configuration of the DNS servers" +#: help:ir.actions.report.xml,attachment:0 +msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." msgstr "" #. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "Xor" +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "" + +#. module: base +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: base +#: model:res.country,name:base.ng +msgid "Nigeria" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "txt" +msgstr "" + +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." msgstr "" #. module: base @@ -3083,21 +1064,20 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." +#: view:ir.module.module:0 +msgid "Schedule Upgrade" msgstr "" #. module: base -#: model:res.country,name:base.au -msgid "Australia" +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form +#: view:res.currency:0 +msgid "Currencies" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "August" +#: selection:ir.actions.todo,type:0 +msgid "Configure" msgstr "" #. module: base @@ -3105,14 +1085,70 @@ msgstr "" 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 "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "" + #. module: base #: rml:ir.module.reference:0 msgid "Menu :" msgstr "" #. module: base -#: selection:ir.model.fields,state:0 -msgid "Base Field" +#: help:ir.rule.group,global:0 +msgid "Make the rule global, otherwise it needs to be put on a group" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + +#. module: base +#: model:res.country,name:base.zr +msgid "Zaire" +msgstr "" + +#. module: base +#: field:res.lang,date_format:0 +msgid "Date Format" +msgstr "" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "" + +#. module: base +#: field:res.bank,email:0 +#: field:res.partner.address,email:0 +msgid "E-Mail" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export Name" +msgstr "" + +#. module: base +#: model:res.country,name:base.an +msgid "Netherlands Antilles" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + +#. module: base +#: model:res.country,name:base.hk +msgid "Hong Kong" msgstr "" #. module: base @@ -3121,16 +1157,18 @@ msgid "New modules" msgstr "" #. module: base -#: field:ir.actions.report.xml,report_sxw_content:0 -#: field:ir.actions.report.xml,report_sxw_content_data:0 -msgid "SXW content" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "October" +#: help:ir.actions.server,name:0 +msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" +msgstr "" + +#. module: base +#: field:res.currency,rate:0 +msgid "Current Rate" msgstr "" #. module: base @@ -3139,8 +1177,13 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_currency_rate -msgid "Currency Rate" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" msgstr "" #. module: base @@ -3158,6 +1201,16 @@ msgstr "" msgid "Default" msgstr "" +#. module: base +#: model:res.country,name:base.dk +msgid "Denmark" +msgstr "" + +#. module: base +#: model:res.country,name:base.ph +msgid "Philippines" +msgstr "" + #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -3165,33 +1218,61 @@ msgid "Required" msgstr "" #. module: base -#: field:ir.model.fields,domain:0 -#: field:ir.rule,domain:0 -#: field:res.partner.title,domain:0 -msgid "Domain" +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" msgstr "" #. module: base -#: field:res.request.history,name:0 -msgid "Summary" +#: field:res.country,code:0 +msgid "Country Code" msgstr "" #. module: base -#: code:addons/addons/account_date_check/account_date_check.py:0 -#, python-format -msgid "The date of your account move is not in the defined period !" +#: selection:module.lang.install,init,lang:0 +msgid "Greek / Ελληνικά" msgstr "" #. module: base -#: code:addons/addons/wiki/wizard/open_page.py:0 -#, python-format -msgid "No action found" +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Tree" msgstr "" #. module: base -#: code:addons/addons/hr_holidays/hr.py:0 -#, python-format -msgid "You can not cancel this holiday request. first You have to make its case in draft state." +#: model:res.country,name:base.ma +msgid "Morocco" +msgstr "" + +#. module: base +#: view:res.request.history:0 +msgid "Request History" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bosnian / bosanski jezik" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "10. %S ==> 20" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,attachment_use:0 +msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." +msgstr "" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Partial" msgstr "" #. module: base @@ -3200,8 +1281,55 @@ msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ o msgstr "" #. module: base -#: view:res.company:0 -msgid "Header/Footer" +#: view:res.lang:0 +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "" + +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +msgid "Trigger On" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_request_link +msgid "res.request.link" +msgstr "" + +#. module: base +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" +msgstr "" + +#. module: base +#: model:res.country,name:base.ee +msgid "Estonia" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 +#: view:res.partner.event:0 +msgid "Partner Events" +msgstr "" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +msgstr "" + +#. module: base +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%a - Abbreviated weekday name." msgstr "" #. module: base @@ -3210,30 +1338,70 @@ msgid "Lebanon" msgstr "" #. module: base -#: wizard_field:module.lang.import,init,name:0 -msgid "Language name" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" msgstr "" #. module: base -#: model:res.country,name:base.va -msgid "Holy See (Vatican City State)" +#: rml:ir.module.reference:0 +msgid "Introspection report on objects" msgstr "" #. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "You have to select a customer in the sale form !\nPlease set one customer before choosing a product." +#: model:res.country,name:base.pf +msgid "Polynesia (French)" msgstr "" #. module: base -#: code:addons/addons/account/project/wizard/wizard_account_analytic_line.py:0 -#, python-format -msgid "Analytic Entries" +#: field:res.country,name:0 +msgid "Country Name" msgstr "" #. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Object" +#: field:res.company,name:0 +msgid "Company Name" +msgstr "" + +#. module: base +#: model:res.country,name:base.co +msgid "Colombia" +msgstr "" + +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +#: wizard_button:res.partner.sms_send,init,send:0 +msgid "Send SMS" +msgstr "" + +#. module: base +#: field:ir.actions.report.custom,report_id:0 +msgid "Report Ref." +msgstr "" + +#. module: base +#: field:res.roles,child_id:0 +msgid "Children" +msgstr "" + +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + +#. module: base +#: help:res.country,code:0 +msgid "The ISO country code in two chars.\n" +"You can use this field for quick search." +msgstr "" + +#. module: base +#: model:res.country,name:base.pw +msgid "Palau" msgstr "" #. module: base @@ -3241,6 +1409,21 @@ msgstr "" msgid "Subscribed" msgstr "" +#. module: base +#: model:res.country,name:base.ke +msgid "Kenya" +msgstr "" + +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "Select the object on which the action will work (read, write, create)." +msgstr "" + +#. module: base +#: model:res.country,name:base.np +msgid "Nepal" +msgstr "" + #. module: base #: wizard_view:module.lang.install,init:0 #: wizard_view:module.upgrade,next:0 @@ -3252,22 +1435,98 @@ msgstr "" msgid "Incoming Transitions" msgstr "" +#. module: base +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" +msgstr "" + +#. module: base +#: wizard_field:module.lang.import,init,name:0 +msgid "Language name" +msgstr "" + +#. module: base +#: field:res.partner,parent_id:0 +msgid "Main Company" +msgstr "" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Extended Interface" +msgstr "" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "" + #. module: base #: model:res.country,name:base.sr msgid "Suriname" msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The create method is not implemented on this object !" +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level Objects" msgstr "" #. module: base -#: field:ir.values,key2:0 -#: view:res.partner.event.type:0 -#: field:res.partner.event.type,name:0 -msgid "Event Type" +#: field:ir.actions.report.custom,multi:0 +#: field:ir.actions.report.xml,multi:0 +msgid "On multiple doc." +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "" + +#. module: base +#: help:ir.actions.server,action_id:0 +msgid "Select the Action Window, Report, Wizard to be executed." +msgstr "" + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 +#: field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +msgid "View Type" +msgstr "" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field +msgid "acc_number" +msgstr "" + +#. module: base +#: view:ir.model:0 +msgid "Model Description" +msgstr "" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Unvalid" +msgstr "" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "Bulk SMS send" msgstr "" #. module: base @@ -3276,20 +1535,95 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: field:res.partner.canal,name:0 +msgid "Channel Name" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Pie Chart" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "" + +#. module: base +#: help:ir.values,key2:0 +msgid "The kind of action or button in the client side that will trigger the action." +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "" + +#. module: base +#: model:res.country,name:base.jo +msgid "Jordan" +msgstr "" + +#. module: base +#: view:ir.rule.group:0 +msgid "Multiple rules on same objects are joined using operator OR" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" msgstr "" #. module: base -#: code:addons/addons/base/module/module.py:0 -#, python-format -msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system." +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: model:res.country,name:base.md +msgid "Moldavia" +msgstr "" + +#. module: base +#: help:ir.model.fields,on_delete:0 +msgid "On delete property for many2one fields" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +msgid "Update Modules List" +msgstr "" + +#. module: base +#: model:res.country,name:base.er +msgid "Eritrea" +msgstr "" + +#. module: base +#: model:res.country,name:base.cd +msgid "Congo, The Democratic Republic of the" +msgstr "" + +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bulgarian / български" msgstr "" #. module: base @@ -3298,9 +1632,8 @@ msgid "License" msgstr "" #. module: base -#: code:addons/addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Invalid operation" +#: model:res.country,name:base.re +msgid "Reunion (French)" msgstr "" #. module: base @@ -3309,33 +1642,92 @@ msgid "STOCK_SAVE_AS" msgstr "" #. module: base -#: code:addons/addons/warning/warning.py:0 -#, python-format -msgid "Alert for ' + product_info.name +' !" +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_custom_action +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" msgstr "" #. module: base -#: field:ir.actions.server,srcmodel_id:0 -msgid "Model" +#: view:res.request:0 +#: field:res.request,body:0 +#: field:res.request.history,req_id:0 +msgid "Request" msgstr "" #. module: base -#: code:addons/addons/base/module/module.py:0 -#, python-format -msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." +#: model:ir.model,name:base.model_ir_report_custom +msgid "ir.report.custom" msgstr "" #. module: base -#: field:ir.actions.act_window.view,view_id:0 -#: field:ir.default,page:0 -#: selection:ir.translation,type:0 -#: field:wizard.ir.model.menu.create.line,view_id:0 -msgid "View" +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" msgstr "" #. module: base -#: field:ir.actions.server,write_id:0 -msgid "Write Id" +#: field:ir.model.fields,model_id:0 +#: field:ir.values,res_id:0 +msgid "Object ID" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +msgid "Default Properties" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Slovenian / slovenščina" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "" + +#. module: base +#: field:ir.actions.server,message:0 +#: wizard_field:res.partner.spam_send,init,text:0 +msgid "Message" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +msgstr "" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_info:0 +msgid "Modules to update" +msgstr "" + +#. module: base +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action2 +msgid "Company Architecture" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" msgstr "" #. module: base @@ -3344,26 +1736,127 @@ msgid "Open a Window" msgstr "" #. module: base -#: model:res.country,name:base.gq -msgid "Equatorial Guinea" +#: model:res.country,name:base.bv +msgid "Bouvet Island" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDEX" msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Language with code \"%s\" is not defined in your system !\nDefine it through the Administration menu." +#: selection:ir.report.custom,type:0 +msgid "Tabular" msgstr "" #. module: base -#: code:addons/addons/project/wizard/close_task.py:0 -#, python-format -msgid "Couldn't send mail because the contact for this task (%s) has no email address!" +#: field:ir.report.custom,print_orientation:0 +msgid "Print orientation" +msgstr "" + +#. module: base +#: model:res.country,name:base.rs +msgid "Serbia" +msgstr "" + +#. module: base +#: view:res.payterm:0 +msgid "Payment Term" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "" + +#. module: base +#: help:ir.actions.server,sequence:0 +msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,header:0 +msgid "Add RML header" +msgstr "" + +#. module: base +#: model:res.country,name:base.cx +msgid "Christmas Island" +msgstr "" + +#. module: base +#: model:res.country,name:base.kh +msgid "Cambodia, Kingdom of" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "" + +#. module: base +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "" + +#. module: base +#: model:res.country,name:base.gr +msgid "Greece" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "User Interface" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + +#. module: base +#: field:res.request,trigger_date:0 +msgid "Trigger Date" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Croatian / hrvatski jezik" +msgstr "" + +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + +#. module: base +#: model:res.country,name:base.mv +msgid "Maldives" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form +#: view:ir.sequence:0 +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +msgid "Sequences" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." msgstr "" #. module: base @@ -3371,24 +1864,90 @@ msgstr "" msgid "Author" msgstr "" +#. module: base +#: help:ir.actions.server,code:0 +msgid "Python code to be executed" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +msgid "XSL path" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%b - Abbreviated month name." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDELETE" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." +msgstr "" + #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: field:ir.actions.report.xml,attachment_use:0 +msgid "Reload from Attachment" +msgstr "" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner Category" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 +msgid "Trigger" +msgstr "" + +#. module: base +#: help:ir.actions.server,write_id:0 +msgid "Provide the field name that the record id refers to for the write operation. If it is empty it will refer to the active id of the object." +msgstr "" + +#. module: base +#: field:res.partner,supplier:0 +msgid "Supplier" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" msgstr "" #. module: base -#: model:res.country,name:base.gh -msgid "Ghana" +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Close" +msgstr "" + +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" msgstr "" #. module: base @@ -3396,6 +1955,11 @@ msgstr "" msgid "Direction" msgstr "" +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Full" +msgstr "" + #. module: base #: model:ir.model,name:base.model_wizard_module_update_translations msgid "wizard.module.update_translations" @@ -3422,14 +1986,18 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/addons/base/module/module.py:0 -#, python-format -msgid "You try to remove a module that is installed or will be installed" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" msgstr "" #. module: base -#: help:ir.values,key2:0 -msgid "The kind of action or button in the client side that will trigger the action." +#: rml:ir.module.reference:0 +msgid "," +msgstr "" + +#. module: base +#: field:res.users,menu_id:0 +msgid "Menu Action" msgstr "" #. module: base @@ -3443,22 +2011,36 @@ msgid "Guatemala" msgstr "" #. module: base -#: code:addons/addons/hr_attendance/wizard/sign_in_out.py:0 -#, python-format -msgid "The sign-out date must be in the past" +#: field:ir.model.fields,view_load:0 +msgid "View Auto-Load" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_form -#: model:ir.ui.menu,name:base.menu_workflow -msgid "Workflows" +#: field:res.partner,vat:0 +msgid "VAT" msgstr "" #. module: base -#: code:addons/addons/base_module_publish/wizard/base_module_publish.py:0 -#: code:addons/addons/base_module_publish/wizard/base_module_publish_all.py:0 -#, python-format -msgid "Login failed!" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIRECTORY" +msgstr "" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "" + +#. module: base +#: model:res.country,name:base.es +msgid "Spain" msgstr "" #. module: base @@ -3468,21 +2050,83 @@ msgid "Configuration Wizard" msgstr "" #. module: base -#: code:addons/addons/account_report/account.py:0 -#, python-format -msgid "You cannot delete an indicator history record. You may have to delete the concerned Indicator!" +#: view:res.request.link:0 +msgid "Request Link" msgstr "" #. module: base -#: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "No Partner Defined !" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_roles -msgid "res.roles" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "" + +#. module: base +#: field:res.partner.address,mobile:0 +msgid "Mobile" +msgstr "" + +#. module: base +#: model:res.country,name:base.om +msgid "Oman" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "Html from html" +msgstr "" + +#. module: base +#: field:res.lang,time_format:0 +msgid "Time Format" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Iteration" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_low_workflow +msgid "Workflow Items" +msgstr "" + +#. module: base +#: field:res.request,ref_doc2:0 +msgid "Document Ref 2" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +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 "" + +#. module: base +#: field:res.request,ref_doc1:0 +msgid "Document Ref 1" +msgstr "" + +#. module: base +#: model:res.country,name:base.ga +msgid "Gabon" +msgstr "" + +#. module: base +#: model:res.country,name:base.nu +msgid "Niue" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Work Days" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" msgstr "" #. module: base @@ -3492,16 +2136,29 @@ msgid "0=Very Urgent\n" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet_invoice/hr_timesheet_invoice.py:0 -#, python-format -msgid "You can not modify an invoiced analytic line!" +#: field:ir.sequence,suffix:0 +msgid "Suffix" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You cannot enter an attendance ' \\n" -" 'date outside the current timesheet dates!" +#: view:ir.model:0 +#: view:res.groups:0 +msgid "Access Rights" +msgstr "" + +#. module: base +#: model:res.country,name:base.gl +msgid "Greenland" +msgstr "" + +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account Number" msgstr "" #. module: base @@ -3510,16 +2167,34 @@ msgid "Skip" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.res_request_link-act -#: model:ir.ui.menu,name:base.menu_res_request_link_act -msgid "Accepted Links in Requests" +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" msgstr "" #. module: base -#: code:addons/addons/analytic_user_function/analytic_user_function.py:0 -#, python-format -msgid "There is no expense account define ' \\n" -" 'for this product: \"%s\" (id:%d)" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "" + +#. module: base +#: model:res.country,name:base.in +msgid "India" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "1. %c ==> Fri Dec 5 18:25:20 2008" +msgstr "" + +#. module: base +#: help:ir.ui.menu,groups_id:0 +msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." +msgstr "" + +#. module: base +#: model:res.country,name:base.nc +msgid "New Caledonia (French)" msgstr "" #. module: base @@ -3527,6 +2202,21 @@ msgstr "" msgid "Lesotho" msgstr "" +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "" + +#. module: base +#: field:res.partner.function,name:0 +msgid "Function Name" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.grant_menu_access #: model:ir.ui.menu,name:base.menu_grant_menu_access @@ -3534,14 +2224,8 @@ msgid "Grant Access To Menus" msgstr "" #. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "You have to define a Default Debit Account for your Financial Journals!\n" -msgstr "" - -#. module: base -#: model:res.country,name:base.ke -msgid "Kenya" +#: field:res.partner.category,name:0 +msgid "Category Name" msgstr "" #. module: base @@ -3550,14 +2234,80 @@ msgid "Choose the simplified interface if you are testing OpenERP for the first msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Error occurred while validating the field(s) %s: %s" +#: model:res.country,name:base.tz +msgid "Tanzania" msgstr "" #. module: base -#: model:res.country,name:base.sm -msgid "San Marino" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "" + +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "" + +#. module: base +#: field:res.request,act_from:0 +#: field:res.request.history,act_from:0 +msgid "From" +msgstr "" + +#. module: base +#: model:res.country,name:base.cz +msgid "Czech Republic" +msgstr "" + +#. module: base +#: model:res.country,name:base.mr +msgid "Mauritania" +msgstr "" + +#. module: base +#: model:res.country,name:base.sb +msgid "Solomon Islands" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "" + +#. module: base +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + +#. module: base +#: model:res.country,name:base.ad +msgid "Andorra, Principality of" +msgstr "" + +#. module: base +#: field:ir.module.category,child_ids:0 +#: field:res.partner.category,child_ids:0 +msgid "Child Categories" +msgstr "" + +#. module: base +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "TGZ Archive" msgstr "" #. module: base @@ -3565,26 +2315,34 @@ msgstr "" msgid "Bermuda" msgstr "" -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "Cannot delete an order line which is %s !" -msgstr "" - #. module: base #: model:res.country,name:base.pe msgid "Peru" msgstr "" #. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Set NULL" +#: field:res.partner.som,factor:0 +msgid "Factor" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "" + +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_type:0 +#: field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 +#: field:ir.translation,type:0 +#: field:ir.values,key:0 +#: view:res.partner:0 +msgid "Type" msgstr "" #. module: base @@ -3593,38 +2351,65 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "You can not change the tax, you should remove and recreate lines !" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - -#. module: base -#: code:addons/addons/proforma_followup/proforma.py:0 -#, python-format -msgid "You can not create this kind of document" +#: selection:ir.actions.todo,state:0 +msgid "Skipped" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONNECT" +msgid "STOCK_ZOOM_IN" msgstr "" #. module: base -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "Cannot delete invoice(s) that are already opened or paid !" +#: view:res.lang:0 +msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" #. module: base -#: code:addons/addons/mrp/mrp.py:0 -#: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 -#, python-format -msgid "Couldn't find bill of material for product" +#: model:res.country,name:base.mx +msgid "Mexico" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "" + +#. module: base +#: model:res.country,name:base.gu +msgid "Guam (USA)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "" + +#. module: base +#: view:ir.translation:0 +#: model:ir.ui.menu,name:base.menu_translation +msgid "Translations" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_rml_content:0 +#: field:ir.actions.report.xml,report_rml_content_data:0 +msgid "RML content" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child3:0 +msgid "Field child3" +msgstr "" + +#. module: base +#: view:workflow.activity:0 +msgid "Incoming transitions" +msgstr "" + +#. module: base +#: model:res.country,name:base.tn +msgid "Tunisia" msgstr "" #. module: base @@ -3633,9 +2418,8 @@ msgid "Not Searchable" msgstr "" #. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "Create line failed !" +#: model:res.country,name:base.cn +msgid "China" msgstr "" #. module: base @@ -3643,6 +2427,11 @@ msgstr "" msgid "Key" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OK" +msgstr "" + #. module: base #: field:ir.cron,nextcall:0 msgid "Next Call Date" @@ -3653,15 +2442,61 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + +#. module: base +#: model:res.country,name:base.ua +msgid "Ukraine" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +#: selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "" + +#. module: base +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" +msgstr "" + +#. module: base +#: model:res.country,name:base.eh +msgid "Western Sahara" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow +msgid "workflow" +msgstr "" + #. module: base #: wizard_field:res.partner.sms_send,init,app_id:0 msgid "API ID" msgstr "" #. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "No sequence defined in the journal !" +#: model:res.country,name:base.ky +msgid "Cayman Islands" +msgstr "" + +#. module: base +#: field:ir.rule.group,rules:0 +msgid "Tests" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category +#: view:ir.module.category:0 +msgid "Module Category" msgstr "" #. module: base @@ -3669,6 +2504,11 @@ msgstr "" msgid "Mauritius" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "" + #. module: base #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -3680,9 +2520,18 @@ msgid "Module Repository" msgstr "" #. module: base -#: code:addons/addons/odms/wizard/host_status.py:0 -#, python-format -msgid "This image has been created by the synchronization wizard" +#: model:res.country,name:base.ml +msgid "Mali" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -3691,9 +2540,39 @@ msgid "Security" msgstr "" #. module: base -#: code:addons/addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Using a relation field which uses an unknown object" +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +msgid "Report Custom" +msgstr "" + +#. module: base +#: model:res.country,name:base.bg +msgid "Bulgaria" +msgstr "" + +#. module: base +#: field:ir.cron,interval_number:0 +msgid "Interval Number" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND" +msgstr "" + +#. module: base +#: model:res.country,name:base.ao +msgid "Angola" +msgstr "" + +#. module: base +#: model:res.country,name:base.tf +msgid "French Southern Territories" +msgstr "" + +#. module: base +#: model:res.country,name:base.td +msgid "Chad" msgstr "" #. module: base @@ -3701,6 +2580,34 @@ msgstr "" msgid "South Africa" msgstr "" +#. module: base +#: model:res.country,name:base.tk +msgid "Tokelau" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HELP" +msgstr "" + +#. module: base +#: view:ir.model.access:0 +#: model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 +#: field:res.groups,model_access:0 +msgid "Access Controls" +msgstr "" + +#. module: base +#: model:res.country,name:base.bn +msgid "Brunei Darussalam" +msgstr "" + #. module: base #: model:ir.model,name:base.model_wizard_module_lang_export msgid "wizard.module.lang.export" @@ -3713,20 +2620,49 @@ msgid "Installed" msgstr "" #. module: base -#: model:res.country,name:base.sn -msgid "Senegal" +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +msgid "Partner Functions" msgstr "" #. module: base -#: code:addons/addons/stock/wizard/wizard_return.py:0 -#, python-format -msgid "Invoice state" +#: model:ir.model,name:base.model_res_currency +#: field:res.company,currency_id:0 +#: view:res.currency:0 +#: field:res.currency,name:0 +#: field:res.currency.rate,currency_id:0 +msgid "Currency" msgstr "" #. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "You can not delete this case. You should better cancel it." +#: view:res.lang:0 +msgid "%Y - Year with century as a decimal number." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish (AR) / Español (AR)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "5. %y, %Y ==> 08, 2008" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + +#. module: base +#: model:res.country,name:base.sa +msgid "Saudi Arabia" msgstr "" #. module: base @@ -3735,14 +2671,23 @@ msgid "Hungary" msgstr "" #. module: base -#: code:addons/addons/use_control/module.py:0 -#, python-format -msgid "You are not authorized to write module repositories" +#: model:res.country,name:base.ne +msgid "Niger" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_groups -msgid "res.groups" +#: model:res.country,name:base.ba +msgid "Bosnia-Herzegovina" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" msgstr "" #. module: base @@ -3751,9 +2696,29 @@ msgid "Brazil" msgstr "" #. module: base -#: code:addons/addons/mrp_repair/mrp_repair.py:0 -#, python-format -msgid "You have to select a partner in the repair form !" +#: help:ir.rule.group,rules:0 +msgid "The rule is satisfied if at least one test is True" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Weeks" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_administration +msgid "Administration" msgstr "" #. module: base @@ -3761,12 +2726,42 @@ msgstr "" msgid "Next Number" msgstr "" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.currency:0 #: field:res.currency,rate_ids:0 msgid "Rates" msgstr "" +#. module: base +#: view:res.lang:0 +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 "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_BACK" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3778,14 +2773,20 @@ msgid "======================================================" msgstr "" #. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "SUBTOTAL" +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" msgstr "" #. module: base -#: field:ir.report.custom.fields,field_child3:0 -msgid "Field child3" +#: field:ir.report.custom.fields,field_child2:0 +msgid "Field child2" +msgstr "" + +#. module: base +#: field:ir.values,key2:0 +#: view:res.partner.event.type:0 +#: field:res.partner.event.type,name:0 +msgid "Event Type" msgstr "" #. module: base @@ -3798,34 +2799,83 @@ msgstr "" msgid "Field child1" msgstr "" +#. module: base +#: field:ir.module.module,website:0 +#: field:res.partner,website:0 +msgid "Website" +msgstr "" + #. module: base #: field:ir.model.fields,selection:0 msgid "Field Selection" msgstr "" #. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Delivered Qty" +#: view:res.roles:0 +msgid "Role" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete non uninstalled instances" +#: view:wizard.module.lang.export:0 +msgid "https://translations.launchpad.net/openobject" msgstr "" #. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "Packing Information !" +#: model:res.country,name:base.ir +msgid "Iran" msgstr "" #. module: base -#: code:addons/addons/crm/crm.py:0 -#: selection:res.request,state:0 -#, python-format -msgid "draft" +#: model:res.country,name:base.dz +msgid "Algeria" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,operation:0 +#: field:ir.ui.menu,icon_pict:0 +#: field:wizard.module.lang.export,state:0 +msgid "unknown" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_som-act +#: model:ir.ui.menu,name:base.menu_res_partner_som-act +msgid "States of mind" +msgstr "" + +#. module: base +#: model:res.country,name:base.gs +msgid "S. Georgia & S. Sandwich Isls." +msgstr "" + +#. module: base +#: field:ir.actions.url,url:0 +msgid "Action URL" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,res_id:0 +msgid "Resource Ref." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "" + +#. module: base +#: model:res.country,name:base.mh +msgid "Marshall Islands" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" msgstr "" #. module: base @@ -3837,14 +2887,18 @@ msgid "Date" msgstr "" #. module: base -#: field:ir.actions.report.xml,report_sxw:0 -msgid "SXW path" +#: model:res.country,name:base.ki +msgid "Kiribati" msgstr "" #. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "No period defined for this date !\nPlease create a fiscal year." +#: model:res.country,name:base.ht +msgid "Haiti" +msgstr "" + +#. module: base +#: model:res.country,name:base.iq +msgid "Iraq" msgstr "" #. module: base @@ -3853,12 +2907,8 @@ msgid "Data" msgstr "" #. module: base -#: field:ir.cron,user_id:0 -#: field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 -#: field:res.partner.event,user_id:0 -#: view:res.users:0 -msgid "User" +#: selection:ir.translation,type:0 +msgid "RML" msgstr "" #. module: base @@ -3867,15 +2917,60 @@ msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: field:ir.ui.menu,parent_id:0 -#: field:wizard.ir.model.menu.create,menu_id:0 -msgid "Parent Menu" +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +msgid "Partners by Categories" msgstr "" #. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Some entries are already reconciled !" +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +#: model:ir.ui.menu,name:base.next_id_12 +#: view:res.request:0 +msgid "Requests" +msgstr "" + +#. module: base +#: model:res.country,name:base.cl +msgid "Chile" +msgstr "" + +#. module: base +#: field:ir.translation,lang:0 +#: wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 +#: field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "" + +#. module: base +#: model:res.country,name:base.gm +msgid "Gambia" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form +#: view:res.company:0 +msgid "Companies" msgstr "" #. module: base @@ -3886,9 +2981,24 @@ msgid "If set to true, the action will not be displayed on the right toolbar of msgstr "" #. module: base -#: code:addons/addons/stock/wizard/inventory_merge.py:0 -#, python-format -msgid "Merging is only allowed on draft inventories." +#: model:ir.actions.act_window,name:base.action_partner_supplier_form +#: model:ir.ui.menu,name:base.menu_partner_supplier_form +msgid "Suppliers Partners" +msgstr "" + +#. module: base +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "" + +#. module: base +#: model:res.country,name:base.be +msgid "Belgium" +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "CSV File" msgstr "" #. module: base @@ -3902,24 +3012,62 @@ msgid "Decimal Separator" msgstr "" #. module: base -#: view:res.partner:0 -#: view:res.request:0 -#: field:res.request,history:0 -msgid "History" +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" msgstr "" #. module: base -#: code:addons/addons/account/account_bank_statement.py:0 -#, python-format -msgid "Unable to reconcile entry \"%s\": %.2f" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" msgstr "" #. module: base -#: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#, python-format -msgid "Your bank BVR adherent number must contain exactly seven' \\n" -" 'digits!\nPlease check your company ' \\n" -" 'information for the invoice:\n%s" +#: field:ir.model.data,date_init:0 +msgid "Init Date" +msgstr "" + +#. module: base +#: field:res.company,rml_header2:0 +msgid "RML Internal Header" +msgstr "" + +#. module: base +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 +msgid "Base Object" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-crm" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STRIKETHROUGH" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "(year)=" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-partner" msgstr "" #. module: base @@ -3928,14 +3076,31 @@ msgid "Creator" msgstr "" #. module: base -#: model:res.country,name:base.mx -msgid "Mexico" +#: view:ir.actions.server:0 +#: field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +msgid "Python Code" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "You can not remove a lot line !" +#: model:res.country,name:base.gq +msgid "Equatorial Guinea" +msgstr "" + +#. module: base +#: field:ir.model.fields,field_description:0 +msgid "Field Label" +msgstr "" + +#. module: base +#: model:ir.module.module,description:base.module_meta_information +msgid "The kernel of OpenERP, needed for all installation." +msgstr "" + +#. module: base +#: field:ir.actions.act_window,view_mode:0 +#: field:res.config.view,view:0 +msgid "View Mode" msgstr "" #. module: base @@ -3943,20 +3108,51 @@ msgstr "" msgid "Swedish / svenska" msgstr "" +#. module: base +#: model:res.country,name:base.dj +msgid "Djibouti" +msgstr "" + +#. module: base +#: field:ir.report.custom,frequency:0 +msgid "Frequency" +msgstr "" + +#. module: base +#: model:res.country,name:base.ag +msgid "Antigua and Barbuda" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +msgid "Import a Translation File" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.ui.menu,name:base.menu_partner_customer_form +msgid "Customers Partners" +msgstr "" + #. module: base #: field:res.company,child_ids:0 msgid "Child Companies" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base -#: code:addons/addons/account_followup/wizard/wizard_followup_print.py:0 -#, python-format -msgid "All emails have been successfully sent to Partners:.\n\n" +#: model:ir.ui.menu,name:base.menu_management +msgid "Modules Management" +msgstr "" + +#. module: base +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" msgstr "" #. module: base @@ -3965,9 +3161,39 @@ msgid "Nicaragua" msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The write method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "" + +#. module: base +#: model:res.country,name:base.ck +msgid "Cook Islands" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: field:ir.model.data,res_id:0 +#: field:ir.translation,res_id:0 +#: field:workflow.instance,res_id:0 +#: field:workflow.triggers,res_id:0 +msgid "Resource ID" +msgstr "" + +#. module: base +#: view:ir.cron:0 +#: field:ir.model,info:0 +#: field:ir.model.grid,info:0 +#: view:maintenance.contract:0 +msgid "Information" +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "PO File" msgstr "" #. module: base @@ -3976,13 +3202,43 @@ msgid "General Description" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Sale Opportunity" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MISSING_IMAGE" msgstr "" #. module: base -#: field:ir.values,meta:0 -msgid "Meta Datas" +#: view:res.users:0 +msgid "Define New Users" +msgstr "" + +#. module: base +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_rml:0 +msgid "RML path" +msgstr "" + +#. module: base +#: field:ir.actions.configuration.wizard,item_id:0 +msgid "Next Configuration Wizard" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_rule_group +msgid "ir.rule.group" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation Done" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Maintenance contract added !" msgstr "" #. module: base @@ -3992,9 +3248,39 @@ msgid "Field" msgstr "" #. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Unable to change tax !" +#: selection:ir.actions.todo,type:0 +#: selection:res.partner.address,type:0 +msgid "Other" +msgstr "" + +#. module: base +#: help:ir.actions.server,email:0 +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 "" + +#. module: base +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "" + +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import New Language" +msgstr "" + +#. module: base +#: model:res.country,name:base.ve +msgid "Venezuela" +msgstr "" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Installed version" msgstr "" #. module: base @@ -4003,9 +3289,33 @@ msgid "9. %j ==> 340" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Activation of your subscription" +#: model:ir.actions.act_window,name:base.action_workflow_activity_form +#: model:ir.ui.menu,name:base.menu_workflow_activity +#: view:workflow:0 +#: field:workflow,activities:0 +msgid "Activities" +msgstr "" + +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + +#. module: base +#: field:ir.ui.menu,parent_id:0 +#: field:wizard.ir.model.menu.create,menu_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "" + +#. module: base +#: model:res.country,name:base.is +msgid "Iceland" msgstr "" #. module: base @@ -4014,15 +3324,23 @@ msgid "Zambia" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_xml -#: model:ir.ui.menu,name:base.menu_ir_action_report_xml -msgid "Report Xml" +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/addons/delivery/wizard/delivery_sale_order.py:0 -#, python-format -msgid "No grid matching for this carrier !" +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + +#. module: base +#: model:res.country,name:base.mw +msgid "Malawi" +msgstr "" + +#. module: base +#: field:ir.attachment,name:0 +msgid "Attachment Name" msgstr "" #. module: base @@ -4031,9 +3349,13 @@ msgid "Cancel Upgrade" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "This feature is only available for location of type \"Amazon\"" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" msgstr "" #. module: base @@ -4042,8 +3364,34 @@ msgid "Ivory Coast (Cote D'Ivoire)" msgstr "" #. module: base -#: model:res.country,name:base.kz -msgid "Kazakhstan" +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 +msgid "=" +msgstr "" + +#. module: base +#: field:res.payterm,name:0 +msgid "Payment Term (short name)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_bank +#: view:res.bank:0 +#: field:res.partner.bank,bank:0 +msgid "Bank" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" msgstr "" #. module: base @@ -4074,27 +3422,98 @@ msgstr "" msgid "Name" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_property +msgid "ir.property" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "" + #. module: base #: model:res.country,name:base.ms msgid "Montserrat" msgstr "" #. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Product uom" +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" msgstr "" #. module: base -#: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 -#, python-format -msgid "Standard Encoding" +#: wizard_view:server.action.create,init:0 +#: wizard_field:server.action.create,init,type:0 +msgid "Select Action Type" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_translation_app -msgid "Application Terms" +#: field:workflow,on_create:0 +msgid "On Create" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "" + +#. module: base +#: model:res.country,name:base.gy +msgid "Guyana" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Resynchronise Terms" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese (BR) / português (BR)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +msgid "ir.sequence.type" +msgstr "" + +#. module: base +#: field:ir.actions.server,record_id:0 +msgid "Create Id" +msgstr "" + +#. module: base +#: model:res.country,name:base.hn +msgid "Honduras" +msgstr "" + +#. module: base +#: field:ir.ui.view,arch:0 +#: field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "" + +#. module: base +#: view:maintenance.contract:0 +#: field:maintenance.contract,module_ids:0 +msgid "Covered Modules" msgstr "" #. module: base @@ -4102,15 +3521,25 @@ msgstr "" msgid "Calculate Average" msgstr "" +#. module: base +#: field:res.users,context_tz:0 +msgid "Timezone" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_grid_security +#: model:ir.ui.menu,name:base.menu_ir_access_grid +msgid "Access Controls Grid" +msgstr "" + #. module: base #: field:ir.module.module,demo:0 msgid "Demo data" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 -#, python-format -msgid "Please fill a Balance product in the wizard" +#: selection:res.request,priority:0 +msgid "High" msgstr "" #. module: base @@ -4125,13 +3554,57 @@ msgid "Antarctica" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" +#: field:ir.exports.line,export_id:0 +msgid "Export" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_view -msgid "ir.actions.act_window.view" +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "" + +#. module: base +#: wizard_button:module.upgrade,end,config:0 +#: wizard_button:module.upgrade,start,config:0 +msgid "Start configuration" +msgstr "" + +#. module: base +#: model:res.country,name:base.na +msgid "Namibia" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "" + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "" + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "" + +#. module: base +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: view:ir.actions.server:0 +#: model:ir.ui.menu,name:base.menu_server_action +msgid "Server Actions" +msgstr "" + +#. module: base +#: model:res.country,name:base.tp +msgid "East Timor" msgstr "" #. module: base @@ -4140,30 +3613,33 @@ msgid "Web" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Wed" +#: help:res.bank,bic:0 +msgid "Bank Identifier Code" msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "You try to write on an record that doesn\'t exist ' \\n" -" '(Document type: %s)." +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflow Definitions" msgstr "" #. module: base -#: field:res.bank,zip:0 -#: field:res.partner.address,zip:0 -#: field:res.partner.bank,zip:0 -msgid "Zip" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base -#: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 -#, python-format -msgid "Invoice is already created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" +msgstr "" + +#. module: base +#: field:workflow.activity,action:0 +msgid "Python Action" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -4172,9 +3648,8 @@ msgid "Planned Revenue" msgstr "" #. module: base -#: code:addons/addons/account_budget/wizard/wizard_budget_report.py:0 -#, python-format -msgid "Insufficient Data!" +#: view:ir.rule.group:0 +msgid "Record rules" msgstr "" #. module: base @@ -4182,6 +3657,11 @@ msgstr "" 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 "" +#. module: base +#: help:res.country,name:0 +msgid "The full name of the country." +msgstr "" + #. module: base #: model:res.country,name:base.et msgid "Ethiopia" @@ -4193,25 +3673,24 @@ msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." msgstr "" #. module: base -#: view:res.roles:0 -msgid "Role" +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." msgstr "" #. module: base -#: code:addons/addons/account/wizard/wizard_aged_trial_balance.py:0 -#, python-format -msgid "You must enter a period length that cannot be 0 or below !" +#: help:ir.actions.report.xml,header:0 +msgid "Add or not the coporate RML header" msgstr "" #. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Product name" +#: help:res.country.state,code:0 +msgid "The state code in three chars.\n" +"" msgstr "" #. module: base -#: model:res.country,name:base.sj -msgid "Svalbard and Jan Mayen Islands" +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" msgstr "" #. module: base @@ -4220,142 +3699,21 @@ msgid "Test" msgstr "" #. module: base -#: code:addons/addons/document/document.py:0 -#, python-format -msgid "Permission Denied !" +#: field:ir.actions.act_window.view,view_id:0 +#: field:ir.default,page:0 +#: selection:ir.translation,type:0 +#: field:wizard.ir.model.menu.create.line,view_id:0 +msgid "View" msgstr "" #. module: base -#: field:ir.report.custom.fields,groupby:0 -msgid "Group By" +#: field:res.partner.event,document:0 +msgid "Document" msgstr "" #. module: base -#: code:addons/addons/l10n_ch/wizard/bvr_import.py:0 -#, python-format -msgid "Record found after total record!" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" -msgstr "" - -#. module: base -#: code:addons/addons/use_control/module.py:0 -#, python-format -msgid "The \"use_control\" module is not uninstallable" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_WARNING" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_IN" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "closed" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "get" -msgstr "" - -#. module: base -#: help:ir.model.fields,on_delete:0 -msgid "On delete property for many2one fields" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "BNK" -msgstr "" - -#. module: base -#: model:res.country,name:base.do -msgid "Dominican Republic" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,domain:0 -msgid "Domain Value" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ITALIC" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 -#, python-format -msgid "No cost unit defined for this employee !" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "SMS Configuration" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_access_act -#: model:ir.ui.menu,name:base.menu_ir_access_act -msgid "Access Controls List" -msgstr "" - -#. module: base -#: model:res.country,name:base.um -msgid "USA Minor Outlying Islands" -msgstr "" - -#. module: base -#: field:res.partner.bank,state:0 -#: field:res.partner.bank.type.field,bank_type_id:0 -msgid "Bank Type" -msgstr "" - -#. module: base -#: code:addons/addons/base/res/res_user.py:0 -#, python-format -msgid "The name of the group can not start with \"-\"" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,end:0 -#: wizard_view:module.upgrade,start:0 -msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -msgstr "" - -#. module: base -#: view:ir.ui.view_sc:0 -#: field:res.partner.title,shortcut:0 -msgid "Shortcut" -msgstr "" - -#. module: base -#: field:ir.model.data,date_init:0 -msgid "Init Date" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/account_analytic_profit.py:0 -#: code:addons/addons/l10n_be/wizard/partner_vat_listing.py:0 -#: code:addons/addons/sale_crm/wizard/makesale.py:0 -#, python-format -msgid "Data Insufficient!" -msgstr "" - -#. module: base -#: field:workflow.activity,flow_start:0 -msgid "Flow Start" +#: model:res.country,name:base.kg +msgid "Kyrgyz Republic (Kyrgyzstan)" msgstr "" #. module: base @@ -4365,9 +3723,427 @@ msgid "Security on Groups" msgstr "" #. module: base -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REFRESH" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Hours" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HOME" +msgstr "" + +#. module: base +#: field:res.bank,zip:0 +#: field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FILE" +msgstr "" + +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "" + +#. module: base +#: model:res.country,name:base.uz +msgid "Uzbekistan" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be installed" +msgstr "" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act +#: view:ir.cron:0 +#: model:ir.ui.menu,name:base.menu_ir_cron_act +msgid "Scheduled Actions" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_module +msgid "maintenance contract modules" +msgstr "" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_meta_information +msgid "Base" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "" + +#. module: base +#: view:res.partner:0 +#: view:res.request:0 +#: field:res.request,history:0 +msgid "History" +msgstr "" + +#. module: base +#: model:res.country,name:base.mk +msgid "FYROM" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be removed" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_WARNING" +msgstr "" + +#. module: base +#: model:res.country,name:base.lr +msgid "Liberia" +msgstr "" + +#. module: base +#: model:ir.actions.report.xml,name:base.ir_module_reference_print +msgid "Technical guide" +msgstr "" + +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "" + +#. module: base +#: help:ir.values,res_id:0 +msgid "Keep 0 if the action must appear on all resources." +msgstr "" + +#. module: base +#: field:ir.cron,interval_type:0 +msgid "Interval Unit" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "cs_CS" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONVERT" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +#: view:ir.model:0 +#: view:res.groups:0 +#: view:res.partner:0 +#: field:res.partner,comment:0 +#: field:res.partner.function,ref:0 +msgid "Notes" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "" + +#. module: base +#: field:ir.property,value:0 +#: selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 +#: field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "" + +#. module: base +#: field:ir.actions.server,write_id:0 +msgid "Write Id" +msgstr "" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +msgid "Code" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Other Actions Configuration" +msgstr "" + +#. module: base +#: model:res.country,name:base.mc +msgid "Monaco" +msgstr "" + +#. module: base +#: field:res.company,rml_footer1:0 +msgid "Report Footer 1" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EXECUTE" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "The modules have been upgraded / installed !" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 +msgid "Help" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "" + +#. module: base +#: field:ir.module.category,module_nr:0 +msgid "Number of Modules" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "SMS Configuration" +msgstr "" + +#. module: base +#: view:ir.cron:0 +msgid "Technical Data" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_canal-act +#: model:ir.model,name:base.model_res_partner_canal +#: model:ir.ui.menu,name:base.menu_res_partner_canal-act +msgid "Channels" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "draft" +msgstr "" + +#. module: base +#: model:res.country,name:base.kn +msgid "Saint Kitts & Nevis Anguilla" +msgstr "" + +#. module: base +#: help:ir.actions.server,condition:0 +msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule for Installation" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "7. %H:%M:%S ==> 18:25:20" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form +#: view:res.partner:0 +msgid "Partners" +msgstr "" + +#. module: base +#: help:ir.actions.server,message:0 +msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" +msgstr "" + +#. module: base +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +msgid "Bank Type" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "fi_FI" +msgstr "" + +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export ID" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "" + +#. module: base +#: view:res.request:0 +msgid "Send" +msgstr "" + +#. module: base +#: model:res.country,name:base.fr +msgid "France" +msgstr "" + +#. module: base +#: field:ir.cron,priority:0 +#: field:ir.ui.view,priority:0 +#: field:res.request,priority:0 +#: field:res.request.link,priority:0 +msgid "Priority" +msgstr "" + +#. module: base +#: field:ir.translation,src:0 +msgid "Source" +msgstr "" + +#. module: base +#: help:res.partner.address,partner_id:0 +msgid "Keep empty for a private address, not related to partner." +msgstr "" + +#. module: base +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Legend (for prefix, suffix)" +msgstr "" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" +msgstr "" + +#. module: base +#: view:res.company:0 +msgid "Internal Header/Footer" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" msgstr "" #. module: base @@ -4381,14 +4157,67 @@ msgstr "" msgid "Client Actions Connections" msgstr "" +#. module: base +#: field:ir.ui.view,name:0 +msgid "View Name" +msgstr "" + #. module: base #: field:ir.ui.view_sc,resource:0 msgid "Resource Name" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Hours" +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 +msgid "Multi Actions" +msgstr "" + +#. module: base +#: model:res.country,name:base.af +msgid "Afghanistan, Islamic State of" +msgstr "" + +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "" + +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." +msgstr "" + +#. module: base +#: view:res.company:0 +#: view:res.partner:0 +msgid "General Information" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +msgid "Not Installable" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_window +#: model:ir.ui.menu,name:base.menu_ir_action_window +msgid "Window Actions" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group By" msgstr "" #. module: base @@ -4397,9 +4226,18 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/addons/account_analytic_plans/wizard/wizard_crossovered_analytic.py:0 -#, python-format -msgid "User Error" +#: field:ir.translation,value:0 +msgid "Translation Value" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Catalan / Català" +msgstr "" + +#. module: base +#: view:res.request:0 +msgid "End of Request" msgstr "" #. module: base @@ -4408,9 +4246,99 @@ msgid "Accumulate" msgstr "" #. module: base -#: code:addons/addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Tree can only be used in tabular reports" +#: view:res.request:0 +msgid "References" +msgstr "" + +#. module: base +#: model:res.country,name:base.do +msgid "Dominican Republic" +msgstr "" + +#. module: base +#: view:res.lang:0 +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 "" + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COLOR_PICKER" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-product" +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "" + +#. module: base +#: model:res.country,name:base.gh +msgid "Ghana" +msgstr "" + +#. module: base +#: field:maintenance.contract,kind:0 +#: field:workflow.activity,kind:0 +msgid "Kind" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" +msgstr "" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of Calls" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Could you check your contract information ?" +msgstr "" + +#. module: base +#: model:res.country,name:base.hm +msgid "Heard and McDonald Islands" +msgstr "" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created Date" +msgstr "" + +#. module: base +#: wizard_button:base.module.import,init,end:0 +#: selection:ir.actions.todo,state:0 +#: wizard_button:module.lang.import,init,end:0 +#: wizard_button:module.lang.install,init,end:0 +#: wizard_button:module.module.update,init,end:0 +#: wizard_button:module.upgrade,next,end:0 +#: wizard_button:res.partner.sms_send,init,end:0 +#: wizard_button:res.partner.spam_send,init,end:0 +#: view:wizard.ir.model.menu.create:0 +#: view:wizard.module.lang.export:0 +#: view:wizard.module.update_translations:0 +msgid "Cancel" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -4418,31 +4346,65 @@ msgstr "" msgid "Directory" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Line Plot" +msgstr "" + #. module: base #: field:wizard.ir.model.menu.create,name:0 msgid "Menu Name" msgstr "" +#. module: base +#: help:res.partner,supplier:0 +msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." +msgstr "" + +#. module: base +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" + +#. module: base +#: help:res.users,password:0 +msgid "Keep empty if you don't want the user to be able to connect on the system." +msgstr "" + #. module: base #: field:ir.report.custom,title:0 msgid "Report Title" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish / Español" +msgstr "" + #. module: base #: field:ir.report.custom.fields,fontcolor:0 msgid "Font color" msgstr "" #. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "not implemented" +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (TW) / 正體字" msgstr "" #. module: base -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "Global taxes defined, but are not in invoice lines !" +#: field:workflow.triggers,instance_id:0 +msgid "Destination Instance" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,multi:0 +msgid "Action on Multiple Doc." msgstr "" #. module: base @@ -4450,11 +4412,27 @@ msgstr "" msgid "STOCK_SORT_DESCENDING" msgstr "" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." +msgstr "" + #. module: base #: model:res.country,name:base.my msgid "Malaysia" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title +#: model:ir.ui.menu,name:base.menu_partner_title +msgid "Titles" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_request_history msgid "res.request.history" @@ -4465,6 +4443,16 @@ msgstr "" msgid "Client Action Configuration" msgstr "" +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "" + +#. module: base +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_address_form #: model:ir.model,name:base.model_res_partner_address @@ -4473,15 +4461,53 @@ msgid "Partner Addresses" msgstr "" #. module: base -#: code:addons/addons/project/project.py:0 -#, python-format -msgid "Task '%s' cancelled" +#: model:res.country,name:base.us +msgid "United States" msgstr "" #. module: base -#: code:addons/addons/subscription/subscription.py:0 -#, python-format -msgid "Please provide another source document.\nThis one does not exist !" +#: field:ir.default,company_id:0 +#: field:ir.property,company_id:0 +#: field:ir.values,company_id:0 +#: view:res.company:0 +#: field:res.users,company_id:0 +msgid "Company" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "" + +#. module: base +#: model:res.country,name:base.so +msgid "Somalia" +msgstr "" + +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window,target:0 +#: selection:ir.actions.url,target:0 +msgid "New Window" +msgstr "" + +#. module: base +#: model:res.country,name:base.gn +msgid "Guinea" +msgstr "" + +#. module: base +#: model:res.country,name:base.pa +msgid "Panama" msgstr "" #. module: base @@ -4490,20 +4516,71 @@ msgid "Indonesian / Bahasa Indonesia" msgstr "" #. module: base -#: model:res.country,name:base.as -msgid "American Samoa" +#: model:res.country,name:base.lu +msgid "Luxembourg" msgstr "" #. module: base -#: code:addons/addons/base/module/module.py:0 -#, python-format -msgid "Some installed modules depend on the module you plan to Uninstall :\n %s" +#: model:res.country,name:base.cv +msgid "Cape Verde" msgstr "" #. module: base -#: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#, python-format -msgid "No bank specified on invoice:\n%s" +#: model:res.country,name:base.bs +msgid "Bahamas" +msgstr "" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_step_user +msgid "Create your users.\n" +"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" +" " +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NETWORK" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: base +#: model:res.country,name:base.ie +msgid "Ireland" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +#: model:ir.ui.menu,name:base.menu_partner_customer_form_new +msgid "New Partner" +msgstr "" + +#. module: base +#: wizard_field:module.module.update,update,update:0 +msgid "Number of modules updated" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Skip Step" msgstr "" #. module: base @@ -4519,6 +4596,11 @@ msgstr "" msgid "Roles Structure" msgstr "" +#. module: base +#: model:res.country,name:base.pn +msgid "Pitcairn Island" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_actions_url #: selection:ir.ui.menu,action:0 @@ -4531,14 +4613,40 @@ msgid "STOCK_MEDIA_STOP" msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %r, expected an integer." +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +msgid "Active Partner Events" +msgstr "" + +#. module: base +#: model:res.country,name:base.sv +msgid "El Salvador" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND_MULTIPLE" +msgid "terp-graph" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" msgstr "" #. module: base @@ -4552,20 +4660,77 @@ msgstr "" msgid "Number of modules added" msgstr "" +#. module: base +#: field:res.bank,phone:0 +#: field:res.partner.address,phone:0 +msgid "Phone" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +msgstr "" + #. module: base #: field:workflow.transition,role_id:0 msgid "Role Required" msgstr "" +#. module: base +#: field:ir.actions.act_window,groups_id:0 +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.report.xml,groups_id:0 +#: field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 +#: field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 +#: field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups +#: view:res.groups:0 +#: view:res.users:0 +#: field:res.users,groups_id:0 +msgid "Groups" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French / Français" +msgstr "" + +#. module: base +#: field:res.groups,menu_access:0 +msgid "Access Menu" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Menus" msgstr "" #. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "There is no expense account defined for this product: \"%s\" (id:%d)" +#: selection:module.lang.install,init,lang:0 +msgid "Dutch (Belgium) / Nederlands (Belgïe)" +msgstr "" + +#. module: base +#: view:ir.model:0 +#: view:ir.model.fields:0 +#: view:ir.property:0 +#: model:ir.ui.menu,name:base.next_id_15 +msgid "Properties" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid ">" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" msgstr "" #. module: base @@ -4573,9 +4738,44 @@ msgstr "" msgid "Workitem" msgstr "" +#. module: base +#: model:res.country,name:base.ge +msgid "Georgia" +msgstr "" + +#. module: base +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry +msgid "country_id" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDENT" +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "" + +#. module: base +#: model:res.country,name:base.pl +msgid "Poland" +msgstr "" + +#. module: base +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "" + +#. module: base +#: field:workflow.activity,signal_send:0 +msgid "Signal (subflow.*)" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4583,6 +4783,24 @@ msgstr "" msgid "STOCK_ZOOM_OUT" msgstr "" +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "" + +#. module: base +#: field:ir.values,meta:0 +msgid "Meta Datas" +msgstr "" + +#. module: base +#: field:ir.model,name:0 +#: field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 +#: field:ir.values,model:0 +msgid "Object Name" +msgstr "" + #. module: base #: field:ir.actions.act_window.view,act_window_id:0 #: view:ir.actions.actions:0 @@ -4593,6 +4811,18 @@ msgstr "" msgid "Action" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: view:ir.actions.wizard:0 +#: model:ir.ui.menu,name:base.menu_ir_action_wizard +msgid "Wizards" +msgstr "" + +#. module: base +#: field:ir.rule,domain_force:0 +msgid "Force Domain" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Email Configuration" @@ -4604,9 +4834,21 @@ msgid "ir.cron" msgstr "" #. module: base -#: code:addons/addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "End of Fiscal Year Entry" +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "And" +msgstr "" + +#. module: base +#: field:ir.model.fields,relation:0 +msgid "Object Relation" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: view:ir.attachment:0 +#: model:ir.ui.menu,name:base.menu_action_attachment +msgid "Attachments" msgstr "" #. module: base @@ -4616,19 +4858,98 @@ msgid "To" msgstr "" #. module: base -#: code:addons/addons/project/project.py:0 -#, python-format -msgid "Operation Done" +#: view:maintenance.contract.wizard:0 +msgid "_Validate" msgstr "" #. module: base -#: field:ir.actions.server,trigger_obj_id:0 -msgid "Trigger On" +#: model:ir.model,name:base.model_maintenance_contract_wizard +msgid "maintenance.contract.wizard" msgstr "" #. module: base -#: model:res.country,name:base.fj -msgid "Fiji" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT" +msgstr "" + +#. module: base +#: view:res.partner:0 +msgid "General" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" +msgstr "" + +#. module: base +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "" + +#. module: base +#: field:ir.actions.server,child_ids:0 +msgid "Other Actions" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "" + +#. module: base +#: field:workflow.activity,out_transitions:0 +msgid "Outgoing Transitions" +msgstr "" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" +msgstr "" + +#. module: base +#: model:res.country,name:base.vi +msgid "Virgin Islands (USA)" +msgstr "" + +#. module: base +#: help:res.partner,vat:0 +msgid "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement." +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" +msgstr "" + +#. module: base +#: model:res.country,name:base.cy +msgid "Cyprus" +msgstr "" + +#. module: base +#: field:ir.model.access,perm_write:0 +msgid "Write Access" +msgstr "" + +#. module: base +#: model:res.country,name:base.bb +msgid "Barbados" msgstr "" #. module: base @@ -4637,25 +4958,45 @@ msgid "Size" msgstr "" #. module: base -#: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 -#, python-format -msgid "A partner is already existing with the same name." +#: field:res.bank,city:0 +#: field:res.partner,city:0 +#: field:res.partner.address,city:0 +#: field:res.partner.bank,city:0 +msgid "City" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "This method can be called with multiple ids" +#: model:res.country,name:base.mg +msgid "Madagascar" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: model:res.country,name:base.it +msgid "Italy" msgstr "" #. module: base -#: view:res.lang:0 -msgid "%m - Month as a decimal number [01,12]." +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 +msgid "Custom Object" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 +#: view:ir.ui.menu:0 +#: field:ir.ui.menu,name:0 +msgid "Menu" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" msgstr "" #. module: base @@ -4669,8 +5010,13 @@ msgid "Micronesia" msgstr "" #. module: base -#: view:res.request.history:0 -msgid "Request History" +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Estonian / Eesti keel" msgstr "" #. module: base @@ -4680,9 +5026,65 @@ msgid "Menus" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least one line has no product !" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_UP" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Action To Launch" +msgstr "" + +#. module: base +#: model:res.country,name:base.um +msgid "USA Minor Outlying Islands" +msgstr "" + +#. module: base +#: field:ir.actions.url,target:0 +msgid "Action Target" +msgstr "" + +#. module: base +#: field:ir.report.custom,field_parent:0 +#: field:ir.ui.view,field_parent:0 +msgid "Child Field" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "uk_UK" +msgstr "" + +#. module: base +#: model:res.country,name:base.ai +msgid "Anguilla" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese / português" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,usage:0 +#: field:ir.actions.act_window_close,usage:0 +#: field:ir.actions.actions,usage:0 +#: field:ir.actions.report.custom,usage:0 +#: field:ir.actions.report.xml,usage:0 +#: field:ir.actions.server,usage:0 +#: field:ir.actions.wizard,usage:0 +msgid "Action Usage" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" msgstr "" #. module: base @@ -4690,11 +5092,62 @@ msgstr "" msgid "Israel" msgstr "" +#. module: base +#: field:ir.model.config,password_check:0 +msgid "Confirmation" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "" + #. module: base #: model:ir.actions.wizard,name:base.wizard_server_action_create msgid "Create Action" msgstr "" +#. module: base +#: model:ir.model,name:base.model_workflow_workitem +msgid "workflow.workitem" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: base +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "" + +#. module: base +#: model:res.country,name:base.pg +msgid "Papua New Guinea" +msgstr "" + +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "" + +#. module: base +#: field:ir.module.module,url:0 +#: field:ir.module.repository,url:0 +msgid "URL" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_model_model #: model:ir.model,name:base.model_ir_model @@ -4703,21 +5156,13 @@ msgid "Objects" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/account_analytic_profit.py:0 -#, python-format -msgid "No Records Found for Report!" +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "There is no stock output account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" -msgstr "" - -#. module: base -#: field:res.lang,time_format:0 -msgid "Time Format" +#: field:res.users,address_id:0 +msgid "Address" msgstr "" #. module: base @@ -4726,14 +5171,40 @@ msgid "Your system will be upgraded." msgstr "" #. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "You must first cancel all packing attached to this purchase order." +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +msgid "Configure User" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Defined Reports" +#: field:ir.report.custom,print_format:0 +msgid "Print format" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUMP_TO" +msgstr "" + +#. module: base +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-calendar" +msgstr "" + +#. module: base +#: field:ir.exports,resource:0 +#: field:ir.property,res_id:0 +msgid "Resource" +msgstr "" + +#. module: base +#: field:ir.actions.server,email:0 +msgid "Email Address" msgstr "" #. module: base @@ -4741,6 +5212,12 @@ msgstr "" msgid "terp-tools" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +msgid "Payment term" +msgstr "" + #. module: base #: view:ir.actions.report.xml:0 msgid "Report xml" @@ -4762,21 +5239,47 @@ msgstr "" msgid "Subflow" msgstr "" +#. module: base +#: help:ir.values,action_id:0 +msgid "This field is not used, it only helps you to select the right action." +msgstr "" + +#. module: base +#: model:res.country,name:base.tt +msgid "Trinidad and Tobago" +msgstr "" + +#. module: base +#: field:maintenance.contract,name:0 +#: field:maintenance.contract.wizard,name:0 +msgid "Contract ID" +msgstr "" + +#. module: base +#: model:res.country,name:base.lv +msgid "Latvia" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Values" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDO" +msgid "STOCK_DIALOG_INFO" msgstr "" #. module: base -#: field:workflow.transition,signal:0 -msgid "Signal (button Name)" +#: model:ir.actions.wizard,name:base.wizard_upgrade +#: model:ir.ui.menu,name:base.menu_wizard_upgrade +msgid "Apply Scheduled Upgrades" msgstr "" #. module: base -#: code:addons/addons/account/account.py:0 -#: code:addons/addons/account/wizard/wizard_use_model.py:0 -#, python-format -msgid "Unable to find a valid period !" +#: view:workflow.activity:0 +#: field:workflow.workitem,act_id:0 +msgid "Activity" msgstr "" #. module: base @@ -4787,15 +5290,25 @@ msgstr "" msgid "Banks" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "" + +#. module: base +#: view:ir.ui.view_sc:0 +#: field:res.partner.title,shortcut:0 +msgid "Shortcut" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-sale" msgstr "" #. module: base -#: code:addons/addons/use_control/module.py:0 -#, python-format -msgid "You are not authorized to create module repositories" +#: view:ir.actions.server:0 +msgid "Field Mappings" msgstr "" #. module: base @@ -4814,17 +5327,13 @@ msgid "Romanian / limba română" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ADD" +#: field:res.company,parent_id:0 +msgid "Parent Company" msgstr "" #. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -#: selection:ir.rule,operator:0 -msgid "in" +#: field:ir.values,object:0 +msgid "Is Object" msgstr "" #. module: base @@ -4833,9 +5342,8 @@ msgid "Repeat Missed" msgstr "" #. module: base -#: code:addons/addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Can not create the module file: %s !" +#: help:ir.actions.server,state:0 +msgid "Type of the Action that is to be executed" msgstr "" #. module: base @@ -4843,6 +5351,11 @@ msgstr "" msgid "Object Mapping" msgstr "" +#. module: base +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "" + #. module: base #: help:res.currency,rate:0 #: help:res.currency.rate,rate:0 @@ -4850,8 +5363,23 @@ msgid "The rate of the currency to the currency of rate 1" msgstr "" #. module: base -#: model:res.country,name:base.uk -msgid "United Kingdom" +#: field:maintenance.contract.wizard,state:0 +msgid "States" +msgstr "" + +#. module: base +#: model:res.country,name:base.ug +msgid "Uganda" +msgstr "" + +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "" + +#. module: base +#: model:res.country,name:base.cg +msgid "Congo" msgstr "" #. module: base @@ -4859,30 +5387,87 @@ msgstr "" msgid "Create / Write" msgstr "" +#. module: base +#: view:res.lang:0 +msgid "Examples" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +msgid "Customization" +msgstr "" + #. module: base #: help:res.partner.category,active:0 msgid "The active field allows you to hide the category without removing it." msgstr "" +#. module: base +#: model:res.country,name:base.py +msgid "Paraguay" +msgstr "" + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: rml:ir.module.reference:0 msgid "Object:" msgstr "" +#. module: base +#: model:res.country,name:base.st +msgid "Saint Tome (Sao Tome) and Principe" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "" + #. module: base #: model:res.country,name:base.bw msgid "Botswana" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Uninstall (beta)" +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" msgstr "" #. module: base -#: code:addons/addons/document/document.py:0 -#, python-format -msgid "Directory name contains special characters!" +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "" + +#. module: base +#: view:ir.model:0 +#: view:res.request:0 +msgid "Status" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +msgid "Report Xml" +msgstr "" + +#. module: base +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -4897,11 +5482,74 @@ msgstr "" msgid "Service" msgstr "" +#. module: base +#: field:ir.actions.report.xml,report_xml:0 +msgid "XML path" +msgstr "" + #. module: base #: help:ir.actions.act_window,auto_refresh:0 msgid "Add an auto-refresh on the view" msgstr "" +#. module: base +#: model:res.country,name:base.lt +msgid "Lithuania" +msgstr "" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Base Field" +msgstr "" + +#. module: base +#: field:ir.attachment,datas_fname:0 +#: field:wizard.module.lang.export,name:0 +msgid "Filename" +msgstr "" + +#. module: base +#: field:ir.model,access_ids:0 +#: field:ir.model.grid,access_ids:0 +msgid "Access" +msgstr "" + +#. module: base +#: field:res.partner,child_ids:0 +#: field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "" + +#. module: base +#: model:res.country,name:base.aw +msgid "Aruba" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_DOWN" +msgstr "" + +#. module: base +#: model:res.country,name:base.tw +msgid "Taiwan" +msgstr "" + +#. module: base +#: model:res.country,name:base.ar +msgid "Argentina" +msgstr "" + +#. module: base +#: help:res.partner,user_id:0 +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "" + +#. module: base +#: field:res.groups,name:0 +msgid "Group Name" +msgstr "" + #. module: base #: wizard_view:module.upgrade,next:0 #: wizard_field:module.upgrade,next,module_download:0 @@ -4909,9 +5557,24 @@ msgid "Modules to download" msgstr "" #. module: base -#: code:addons/addons/stock/wizard/wizard_return.py:0 -#, python-format -msgid "Return lines" +#: model:res.country,name:base.ch +msgid "Switzerland" +msgstr "" + +#. module: base +#: model:res.country,name:base.bh +msgid "Bahrain" +msgstr "" + +#. module: base +#: field:res.bank,fax:0 +#: field:res.partner.address,fax:0 +msgid "Fax" +msgstr "" + +#. module: base +#: model:res.country,name:base.ye +msgid "Yemen" msgstr "" #. module: base @@ -4920,20 +5583,50 @@ msgstr "" msgid "Workitems" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT_PREVIEW" +msgstr "" + #. module: base #: field:wizard.module.lang.export,advice:0 msgid "Advice" msgstr "" +#. module: base +#: model:res.country,name:base.si +msgid "Slovenia" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_attachment msgid "ir.attachment" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to start The Open ERP server without backups" +#: model:ir.model,name:base.model_ir_report_custom_fields +msgid "ir.report.custom.fields" +msgstr "" + +#. module: base +#: model:res.country,name:base.uk +msgid "United Kingdom" +msgstr "" + +#. module: base +#: model:res.country,name:base.de +msgid "Germany" +msgstr "" + +#. module: base +#: help:ir.actions.server,srcmodel_id:0 +msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Not Installed" msgstr "" #. module: base @@ -4942,14 +5635,37 @@ msgid "Lithuanian / Lietuvių kalba" msgstr "" #. module: base -#: help:ir.actions.server,record_id:0 -msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." +#: field:res.users,action_id:0 +msgid "Home Action" msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Couldn't find tag '%s' in parent view !" +#: field:ir.ui.menu,icon:0 +msgid "Icon" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_maintenance_contract_add +#: view:maintenance.contract.wizard:0 +msgid "Add Maintenance Contract" +msgstr "" + +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +msgid "Ok" +msgstr "" + +#. module: base +#: field:res.lang,grouping:0 +msgid "Separator Format" +msgstr "" + +#. module: base +#: model:res.country,name:base.pk +msgid "Pakistan" msgstr "" #. module: base @@ -4963,13 +5679,100 @@ msgid "ir.translation" msgstr "" #. module: base -#: model:res.country,name:base.lu -msgid "Luxembourg" +#: model:res.country,name:base.mq +msgid "Martinique (French)" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" +#: view:res.lang:0 +msgid "%p - Equivalent of either AM or PM." +msgstr "" + +#. module: base +#: field:ir.actions.act_window,limit:0 +#: field:ir.report.custom,limitt:0 +msgid "Limit" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Actions" +msgstr "" + +#. module: base +#: help:ir.actions.server,wkf_model_id:0 +msgid "Workflow to be executed on this model." +msgstr "" + +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + +#. module: base +#: model:res.country,name:base.sn +msgid "Senegal" +msgstr "" + +#. module: base +#: model:res.country,name:base.ws +msgid "Samoa" +msgstr "" + +#. module: base +#: model:res.country,name:base.nz +msgid "New Zealand" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "" + +#. module: base +#: model:res.country,name:base.jm +msgid "Jamaica" +msgstr "" + +#. module: base +#: model:res.country,name:base.al +msgid "Albania" +msgstr "" + +#. module: base +#: field:maintenance.contract,date_stop:0 +msgid "Ending Date" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "" + +#. module: base +#: model:res.country,name:base.nf +msgid "Norfolk Island" +msgstr "" + +#. module: base +#: model:res.country,name:base.kz +msgid "Kazakhstan" +msgstr "" + +#. module: base +#: model:res.country,name:base.az +msgid "Azerbaijan" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_roles +msgid "res.roles" msgstr "" #. module: base @@ -4979,38 +5782,105 @@ msgid "Installed modules" msgstr "" #. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "Case" +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Your Maintenance Contracts" msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The name_get method is not implemented on this object !" +#: field:ir.ui.menu,child_id:0 +msgid "Child IDs" msgstr "" #. module: base -#: model:res.country,name:base.lc -msgid "Saint Lucia" +#: model:res.country,name:base.ae +msgid "United Arab Emirates" msgstr "" #. module: base -#: code:addons/addons/hr_expense/hr_expense.py:0 -#, python-format -msgid "Please configure Default Expanse account for Product purchase, `property_account_expense_categ`" +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 +#: view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 +#: rml:ir.module.reference:0 +msgid "Module" msgstr "" #. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "No IBAN for the company bank account." +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "cancel" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + +#. module: base +#: model:res.country,name:base.gi +msgid "Gibraltar" +msgstr "" + +#. module: base +#: field:ir.actions.server,action_id:0 +#: selection:ir.actions.server,state:0 +msgid "Client Action" +msgstr "" + +#. module: base +#: model:res.country,name:base.vg +msgid "Virgin Islands (British)" +msgstr "" + +#. module: base +#: model:res.country,name:base.bd +msgid "Bangladesh" +msgstr "" + +#. module: base +#: field:workflow.transition,signal:0 +msgid "Signal (button Name)" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "" + +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Czech / Čeština" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" + +#. module: base +#: field:ir.actions.server,loop_action:0 +msgid "Loop Action" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +#: field:maintenance.contract.module,version:0 +msgid "Version" msgstr "" #. module: base @@ -5025,15 +5895,29 @@ msgid "Select the object from the model on which the workflow will executed." msgstr "" #. module: base -#: field:ir.model,state:0 -#: field:ir.model.fields,state:0 -#: field:ir.model.grid,state:0 -msgid "Manually Created" +#: model:res.country,name:base.la +msgid "Laos" msgstr "" #. module: base #: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" +msgid "Calculate Sum" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the week (0:Monday): %(weekday)s" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Email" +msgstr "" + +#. module: base +#: view:res.partner.canal:0 +#: field:res.partner.event,canal_id:0 +msgid "Channel" msgstr "" #. module: base @@ -5042,9 +5926,24 @@ msgid "Create Access" msgstr "" #. module: base -#: code:addons/addons/use_control/module.py:0 -#, python-format -msgid "You are not authorized to unlink module repositories" +#: help:ir.actions.server,mobile:0 +msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +#: model:ir.ui.menu,name:base.menu_partner_other_form +msgid "Others Partners" +msgstr "" + +#. module: base +#: field:ir.model.data,noupdate:0 +msgid "Non Updatable" +msgstr "" + +#. module: base +#: model:res.country,name:base.cu +msgid "Cuba" msgstr "" #. module: base @@ -5053,25 +5952,58 @@ msgid "Fed. State" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "Please verify that the total difference of the sheet is lower than %.2f !" +#: view:res.lang:0 +msgid "%S - Second as a decimal number [00,61]." msgstr "" #. module: base -#: model:res.country,name:base.io -msgid "British Indian Ocean Territory" +#: view:ir.values:0 +msgid "Action Source" msgstr "" #. module: base -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "Please verify the price of the invoice !\nThe real total does not match the computed total." +#: selection:wizard.module.lang.export,state:0 +msgid "get" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Field Mapping" +#: model:res.country,name:base.yt +msgid "Mayotte" +msgstr "" + +#. module: base +#: model:res.country,name:base.ro +msgid "Romania" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%w - Weekday as a decimal number [0(Sunday),6]." +msgstr "" + +#. module: base +#: model:res.country,name:base.am +msgid "Armenia" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields +#: view:ir.model:0 +#: field:ir.model,field_id:0 +#: model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 +#: field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 +#: field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +msgid "Fields" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: model:ir.ui.menu,name:base.menu_config +#: view:res.company:0 +msgid "Configuration" msgstr "" #. module: base @@ -5085,6 +6017,12 @@ msgstr "" msgid "Field Type" msgstr "" +#. module: base +#: field:ir.model.fields,complete_name:0 +#: field:ir.ui.menu,complete_name:0 +msgid "Complete Name" +msgstr "" + #. module: base #: field:res.country.state,code:0 msgid "State Code" @@ -5095,30 +6033,119 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: view:res.request:0 +msgid "Reply" +msgstr "" + +#. module: base +#: field:ir.cron,function:0 +#: field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +msgid "Function" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Cancel" +msgstr "" + +#. module: base +#: view:ir.report.custom:0 +msgid "Subscribe Report" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 +msgid "in" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-report" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +msgid "Workflows" +msgstr "" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" msgstr "" +#. module: base +#: help:ir.actions.wizard,multi:0 +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." +msgstr "" + #. module: base #: field:res.lang,translatable:0 msgid "Translatable" msgstr "" #. module: base -#: model:res.country,name:base.vn -msgid "Vietnam" +#: selection:ir.report.custom,frequency:0 +msgid "Daily" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" +#: view:res.lang:0 +msgid "3. %x ,%X ==> 12/05/08, 18:25:20" msgstr "" #. module: base -#: code:addons/osv/fields.py:0 -#, python-format -msgid "Not Implemented" +#: selection:ir.model.fields,on_delete:0 +msgid "Cascade" +msgstr "" + +#. module: base +#: model:res.country,name:base.se +msgid "Sweden" +msgstr "" + +#. module: base +#: model:res.country,name:base.au +msgid "Australia" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard View" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Gantt" +msgstr "" + +#. module: base +#: view:ir.property:0 +msgid "Property" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type +#: view:res.partner.bank.type:0 +msgid "Bank Account Type" msgstr "" #. module: base @@ -5127,9 +6154,72 @@ msgid "Full Name" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Invoices" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-project" +msgstr "" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "" + +#. module: base +#: field:ir.model.fields,domain:0 +#: field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "" + +#. module: base +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "sv_SV" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%X - Appropriate time representation." +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Action Configuration" +msgstr "" + +#. module: base +#: model:res.country,name:base.qa +msgid "Qatar" +msgstr "" + +#. module: base +#: view:res.company:0 +msgid "Your Logo - Use a size of about 450x150 pixels." +msgstr "" + +#. module: base +#: help:res.lang,grouping:0 +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 "" + +#. module: base +#: model:res.country,name:base.at +msgid "Austria" msgstr "" #. module: base @@ -5138,9 +6228,25 @@ msgid "Mozambique" msgstr "" #. module: base -#: field:ir.actions.server,message:0 -#: wizard_field:res.partner.spam_send,init,text:0 -msgid "Message" +#: model:res.country,name:base.tv +msgid "Tuvalu" +msgstr "" + +#. module: base +#: field:workflow.activity,join_mode:0 +msgid "Join Mode" +msgstr "" + +#. module: base +#: model:res.country,name:base.jp +msgid "Japan" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" msgstr "" #. module: base @@ -5148,6 +6254,21 @@ msgstr "" msgid "On Multiple Doc." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Button" +msgstr "" + +#. module: base +#: model:res.country,name:base.nl +msgid "Netherlands" +msgstr "" + #. module: base #: field:res.partner,address:0 #: view:res.partner.address:0 @@ -5160,9 +6281,55 @@ msgid "Faroe Islands" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.wizard_upgrade -#: model:ir.ui.menu,name:base.menu_wizard_upgrade -msgid "Apply Scheduled Upgrades" +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Graph" +msgstr "" + +#. module: base +#: field:ir.module.module,installed_version:0 +msgid "Latest version" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "" + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "" + +#. module: base +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "right" +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Draft" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" msgstr "" #. module: base @@ -5171,9 +6338,35 @@ msgid "Maintenance" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You can not sign out from an other date than today" +#: model:res.country,name:base.sj +msgid "Svalbard and Jan Mayen Islands" +msgstr "" + +#. module: base +#: view:res.config.view:0 +msgid "Choose Your Mode" +msgstr "" + +#. module: base +#: view:ir.actions.report.custom:0 +msgid "Report custom" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +#: field:workflow.activity,action_id:0 +msgid "Server Action" +msgstr "" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 +#: field:res.users,login:0 +msgid "Login" msgstr "" #. module: base @@ -5182,9 +6375,120 @@ msgid "Northern Mariana Islands" msgstr "" #. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "Please provide a partner for the sale." +#: model:res.country,name:base.by +msgid "Belarus" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,name:0 +#: field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 +#: field:ir.actions.server,name:0 +#: field:ir.actions.url,name:0 +msgid "Action Name" +msgstr "" + +#. module: base +#: field:ir.actions.configuration.wizard,progress:0 +msgid "Configuration Progress" +msgstr "" + +#. module: base +#: field:res.company,rml_footer2:0 +msgid "Report Footer 2" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_11 +msgid "Configuration Wizards" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "" + +#. module: base +#: field:res.bank,street2:0 +#: field:res.partner.address,street2:0 +msgid "Street2" +msgstr "" + +#. module: base +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_localisation +msgid "Localisation" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +#: field:ir.module.module,dependencies_id:0 +msgid "Dependencies" +msgstr "" + +#. module: base +#: field:ir.cron,user_id:0 +#: field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 +#: field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Action to Launch" +msgstr "" + +#. module: base +#: model:res.country,name:base.pr +msgid "Puerto Rico" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REVERT_TO_SAVED" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "" + +#. module: base +#: model:res.country,name:base.lc +msgid "Saint Lucia" +msgstr "" + +#. module: base +#: field:ir.actions.server,condition:0 +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:workflow.transition,condition:0 +msgid "Condition" +msgstr "" + +#. module: base +#: help:ir.values,model_id:0 +msgid "This field is not used, it only helps you to select a good model." +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" msgstr "" #. module: base @@ -5194,8 +6498,39 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Italian / Italiano" +msgstr "" + +#. module: base +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +msgid "Import module" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users +#: field:ir.actions.todo,users_id:0 +#: field:ir.default,uid:0 +#: field:ir.rule.group,users:0 +#: model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users +#: view:res.groups:0 +#: field:res.groups,users:0 +#: field:res.roles,users:0 +#: view:res.users:0 +msgid "Users" msgstr "" #. module: base @@ -5203,6 +6538,27 @@ msgstr "" msgid "Transition" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "" + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contact Titles" +msgstr "" + +#. module: base +#: field:ir.module.repository,filter:0 +msgid "Filter" +msgstr "" + #. module: base #: field:ir.actions.todo,active:0 #: field:ir.cron,active:0 @@ -5222,8 +6578,13 @@ msgid "Active" msgstr "" #. module: base -#: model:res.country,name:base.na -msgid "Namibia" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" + +#. module: base +#: model:res.country,name:base.hr +msgid "Croatia" msgstr "" #. module: base @@ -5232,2721 +6593,22 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Futur P&L" +#: field:ir.actions.server,mobile:0 +msgid "Mobile No" msgstr "" #. module: base -#: code:addons/addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "The opening journal must not have any entry in the new fiscal year !" +#: model:res.country,name:base.th +msgid "Thailand" msgstr "" #. module: base -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "Taxes missing !" -msgstr "" - -#. module: base -#: view:res.partner.som:0 -msgid "Partner State of Mind" -msgstr "" - -#. module: base -#: selection:ir.ui.view,type:0 -msgid "mdx" -msgstr "" - -#. module: base -#: model:res.country,name:base.bi -msgid "Burundi" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#: wizard_button:module.upgrade,end,end:0 -#: wizard_button:module.upgrade,start,end:0 -#: wizard_button:server.action.create,init,end:0 -#: wizard_button:server.action.create,step_1,end:0 -#: view:wizard.module.lang.export:0 -#, python-format -msgid "Close" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_fiscalyear_close_state.py:0 -#, python-format -msgid "Closing of states cancelled, please check the box !" -msgstr "" - -#. module: base -#: model:res.country,name:base.bt -msgid "Bhutan" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_11 -msgid "Textile Suppliers" -msgstr "" - -#. module: base -#: selection:ir.actions.url,target:0 -msgid "This Window" -msgstr "" - -#. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_config_view -msgid "res.config.view" -msgstr "" - -#. module: base -#: code:addons/addons/delivery/wizard/delivery_sale_order.py:0 -#, python-format -msgid "The order state have to be draft to add delivery lines." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "" - -#. module: base -#: view:workflow.workitem:0 -msgid "Workflow Workitems" -msgstr "" - -#. module: base -#: model:res.country,name:base.vc -msgid "Saint Vincent & Grenadines" -msgstr "" - -#. module: base -#: field:ir.model.config,password:0 -#: field:maintenance.contract,password:0 -#: field:maintenance.contract.wizard,password:0 -#: wizard_field:res.partner.sms_send,init,password:0 -#: field:res.users,password:0 -msgid "Password" -msgstr "" - -#. module: base -#: code:addons/addons/project/project.py:0 -#, python-format -msgid "Task '%s' closed" -msgstr "" - -#. module: base -#: code:addons/addons/analytic_user_function/analytic_user_function.py:0 -#, python-format -msgid "There is no expense account define ' \\n" -" 'for this product: \"%s\" (id:%d)" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_fields -#: view:ir.model:0 -#: field:ir.model,field_id:0 -#: model:ir.model,name:base.model_ir_model_fields -#: view:ir.model.fields:0 -#: field:ir.model.grid,field_id:0 -#: field:ir.property,fields_id:0 -#: field:ir.report.custom,fields_child0:0 -#: model:ir.ui.menu,name:base.ir_model_model_fields -msgid "Fields" -msgstr "" - -#. module: base -#: code:addons/addons/product/pricelist.py:0 -#, python-format -msgid "Other Pricelist" -msgstr "" - -#. module: base -#: model:res.country,name:base.mk -msgid "Macedonia" -msgstr "" - -#. module: base -#: field:res.company,rml_header2:0 -msgid "RML Internal Header" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a4" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field -msgid "acc_number" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_partner_address_form -msgid "Addresses" -msgstr "" - -#. module: base -#: model:res.country,name:base.mm -msgid "Myanmar" -msgstr "" - -#. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "You can not create new moves." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (CN) / 简体中文" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_NEXT" -msgstr "" - -#. module: base -#: field:res.bank,street:0 -#: field:res.partner.address,street:0 -#: field:res.partner.bank,street:0 -msgid "Street" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Can not create an automatic sequence for this piece !\n\nPut a sequence in the journal definition for automatic numbering or create a sequence manually for this piece." -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Note that this operation my take a few minutes." -msgstr "" - -#. module: base -#: field:ir.model.data,name:0 -msgid "XML Identifier" -msgstr "" - -#. module: base -#: model:res.country,name:base.ca -msgid "Canada" -msgstr "" - -#. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Futur Stock" -msgstr "" - -#. module: base -#: code:addons/addons/account_analytic_plans/wizard/create_model.py:0 -#, python-format -msgid "No analytic plan defined !" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_name:0 -msgid "Internal Name" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Unknown" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users_my -msgid "Change My Preferences" -msgstr "" - -#. module: base -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,text:0 -msgid "SMS Message" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EDIT" -msgstr "" - -#. module: base -#: model:res.country,name:base.cm -msgid "Cameroon" -msgstr "" - -#. module: base -#: model:res.country,name:base.bf -msgid "Burkina Faso" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "You selected a quantity of %d Units.\nBut it's not compatible with the selected packaging.\nHere is a proposition of quantities according to the packaging: " -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_FORWARD" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Skipped" -msgstr "" - -#. module: base -#: selection:ir.model.fields,state:0 -msgid "Custom Field" -msgstr "" - -#. module: base -#: model:res.country,name:base.cc -msgid "Cocos (Keeling) Islands" -msgstr "" - -#. module: base -#: field:workflow.instance,uid:0 -msgid "User ID" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "11. %U or %W ==> 48 (49th week)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type_field -msgid "Bank type fields" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "No bank name defined\n' \\n" -" 'for the bank account: %s\n' \\n" -" 'on the partner: %s\n' \\n" -" 'on line: %s" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "type,name,res_id,src,value" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_refund.py:0 -#, python-format -msgid "No Period found on Invoice!" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch / Nederlands" -msgstr "" - -#. module: base -#: code:addons/addons/document/document.py:0 -#, python-format -msgid "You do not permissions to write on the server side." -msgstr "" - -#. module: base -#: code:addons/addons/base_module_publish/wizard/module_zip.py:0 -#, python-format -msgid "Can not export module that is not installed!" -msgstr "" - -#. module: base -#: model:res.country,name:base.to -msgid "Tonga" -msgstr "" - -#. module: base -#: wizard_view:server.action.create,step_1:0 -#: wizard_field:server.action.create,step_1,report:0 -msgid "Select Report" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc1_condition:0 -#: field:ir.report.custom.fields,fc2_condition:0 -#: field:ir.report.custom.fields,fc3_condition:0 -msgid "condition" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SAVE" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "1cm 28cm 20cm 28cm" -msgstr "" - -#. module: base -#: field:ir.sequence,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: base -#: model:res.country,name:base.mo -msgid "Macau" -msgstr "" - -#. module: base -#: model:ir.actions.report.xml,name:base.res_partner_address_report -msgid "Labels" -msgstr "" - -#. module: base -#: wizard_field:res.partner.spam_send,init,from:0 -msgid "Sender's email" -msgstr "" - -#. module: base -#: field:ir.default,field_name:0 -msgid "Object Field" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#: code:addons/addons/account/wizard/wizard_use_model.py:0 -#, python-format -msgid "No period found !" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Records were modified in the meanwhile" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NEW" -msgstr "" - -#. module: base -#: code:addons/addons/stock/wizard/inventory_merge.py:0 -#, python-format -msgid "Please select at least two inventories." -msgstr "" - -#. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "" - -#. module: base -#: view:res.partner:0 -msgid "General" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The exists method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:workflow.transition,act_to:0 -msgid "Destination Activity" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The name_search method is not implemented on this object !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-mrp" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Connect Events to Actions" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You cannot enter an attendance ' \\n" -" 'date outside the current timesheet dates!" -msgstr "" - -#. module: base -#: code:addons/addons/audittrail/audittrail.py:0 -#, python-format -msgid "WARNING:audittrail is not part of the pool" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ABOUT" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "Bank Journal " -msgstr "" - -#. module: base -#: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 -#, python-format -msgid "Invoice cannot be created from Packing." -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field '\n" -" 'in the analytic account:\n%s" -msgstr "" - -#. module: base -#: field:ir.module.category,parent_id:0 -#: field:res.partner.category,parent_id:0 -msgid "Parent Category" -msgstr "" - -#. module: base -#: model:res.country,name:base.fi -msgid "Finland" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 -#: selection:res.partner.title,domain:0 -msgid "Contact" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "The old fiscal year does not have any entry to reconcile!" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_menu -msgid "ir.ui.menu" -msgstr "" - -#. module: base -#: model:res.country,name:base.tw -msgid "Taiwan" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "You can not do this modification on a reconciled entry ! Please note that you can just change some non important fields !" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "You can not deactivate an account that contains account moves." -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Uninstall" -msgstr "" - -#. module: base -#: model:res.country,name:base.cy -msgid "Cyprus" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "Could not cancel sale order !" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "" - -#. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" - -#. module: base -#: code:addons/addons/base/module/module.py:0 -#, python-format -msgid "Module %s: Invalid Quality Certificate" -msgstr "" - -#. module: base -#: model:res.country,name:base.kw -msgid "Kuwait" -msgstr "" - -#. module: base -#: field:workflow.workitem,inst_id:0 -msgid "Instance" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,attachment:0 -msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid " Type of ul: " -msgstr "" - -#. module: base -#: model:res.country,name:base.ng -msgid "Nigeria" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "" - -#. module: base -#: code:addons/addons/event/event.py:0 -#, python-format -msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDERLINE" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Values for Event Type" -msgstr "" - -#. module: base -#: model:res.country,name:base.zr -msgid "Zaire" -msgstr "" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Always Searchable" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "" - -#. module: base -#: model:res.country,name:base.hk -msgid "Hong Kong" -msgstr "" - -#. module: base -#: help:ir.actions.server,name:0 -msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_BOLD" -msgstr "" - -#. module: base -#: model:res.country,name:base.ph -msgid "Philippines" -msgstr "" - -#. module: base -#: code:addons/addons/hr_holidays/hr.py:0 -#, python-format -msgid "Attention!" -msgstr "" - -#. module: base -#: model:res.country,name:base.ma -msgid "Morocco" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-graph" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 -#, python-format -msgid "Specified Journal does not have any account move entries in draft state for this period" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "2. %a ,%A ==> Fri, Friday" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -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 "" - -#. module: base -#: code:addons/addons/account_analytic_plans/wizard/create_model.py:0 -#, python-format -msgid "Please put a name and a code before saving the model !" -msgstr "" - -#. module: base -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Operation is Already Cancelled !" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence -msgid "ir.sequence" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 -#: view:res.partner.event:0 -msgid "Partner Events" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%a - Abbreviated weekday name." -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Introspection report on objects" -msgstr "" - -#. module: base -#: model:res.country,name:base.pf -msgid "Polynesia (French)" -msgstr "" - -#. module: base -#: model:res.country,name:base.dm -msgid "Dominica" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard -#: wizard_button:res.partner.sms_send,init,send:0 -msgid "Send SMS" -msgstr "" - -#. module: base -#: model:res.country,name:base.np -msgid "Nepal" -msgstr "" - -#. module: base -#: field:res.partner.event,event_ical_id:0 -msgid "iCal id" -msgstr "" - -#. module: base -#: code:addons/addons/account_analytic_plans/account_analytic_plans.py:0 -#, python-format -msgid "The Total Should be Between %s and %s" -msgstr "" - -#. module: base -#: code:addons/addons/sale_crm/wizard/makesale.py:0 -#, python-format -msgid "Customer has no addresses defined!" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 -#: field:ir.ui.view,type:0 -#: field:wizard.ir.model.menu.create.line,view_type:0 -msgid "View Type" -msgstr "" - -#. module: base -#: wizard_view:res.partner.sms_send,init:0 -msgid "Bulk SMS send" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_2 -msgid "User Interface" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Pie Chart" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Seconde: %(sec)s" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "Could not cancel this sale order !" -msgstr "" - -#. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "Could not cancel purchase order !" -msgstr "" - -#. module: base -#: code:addons/addons/base/module/module.py:0 -#, python-format -msgid "Can not create the module file:\n %s" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_update -#: model:ir.ui.menu,name:base.menu_module_update -msgid "Update Modules List" -msgstr "" - -#. module: base -#: code:addons/addons/base_module_publish/wizard/base_module_publish.py:0 -#, python-format -msgid "This version of the module is already exist on the server" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Continue" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Object %s does not exists" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form -#: model:ir.ui.menu,name:base.menu_ir_property_form -msgid "Default Properties" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Slovenian / slovenščina" -msgstr "" - -#. module: base -#: code:addons/addons/warning/warning.py:0 -#, python-format -msgid "Alert for ' + partner.name +' !" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,attachment_use:0 -msgid "Reload from Attachment" -msgstr "" - -#. module: base -#: model:res.country,name:base.bv -msgid "Bouvet Island" -msgstr "" - -#. module: base -#: field:ir.report.custom,print_orientation:0 -msgid "Print orientation" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export a Translation File" -msgstr "" - -#. module: base -#: field:ir.attachment,name:0 -msgid "Attachment Name" -msgstr "" - -#. module: base -#: wizard_field:module.lang.import,init,data:0 -#: field:wizard.module.lang.export,data:0 -msgid "File" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Add User" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_configuration_wizard -msgid "ir.actions.configuration.wizard" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%b - Abbreviated month name." -msgstr "" - -#. module: base -#: code:addons/addons/delivery/wizard/delivery_sale_order.py:0 -#, python-format -msgid "No grid avaible !" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 -#, python-format -msgid "You have to define the bank account\nin the journal definition for reconciliation." -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,user_id:0 -msgid "User Ref." -msgstr "" - -#. module: base -#: field:res.partner,supplier:0 -#: model:res.partner.category,name:base.res_partner_category_8 -msgid "Supplier" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -#: selection:ir.actions.server,state:0 -msgid "Multi Actions" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Close" -msgstr "" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Full" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "March" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_bank_statement.py:0 -#, python-format -msgid "The statement balance is incorrect !\n" -msgstr "" - -#. module: base -#: model:res.country,name:base.cv -msgid "Cape Verde" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "html" -msgstr "" - -#. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "No Default Credit Account !" -msgstr "" - -#. module: base -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "Free Reference" -msgstr "" - -#. module: base -#: code:addons/addons/document/document.py:0 -#, python-format -msgid "Directory name must be unique!" -msgstr "" - -#. module: base -#: view:res.request.link:0 -msgid "Request Link" -msgstr "" - -#. module: base -#: field:ir.module.module,url:0 -#: field:ir.module.repository,url:0 -msgid "URL" -msgstr "" - -#. module: base -#: help:res.country,name:0 -msgid "The full name of the country." -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Iteration" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" -msgstr "" - -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify the Partner Email address !" -msgstr "" - -#. module: base -#: code:addons/addons/base_module_publish/wizard/base_module_publish.py:0 -#, python-format -msgid "You could not publish a module that is not installed!" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#: code:addons/addons/account/account_move_line.py:0 -#: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/account/wizard/wizard_account_balance_report.py:0 -#: code:addons/addons/account/wizard/wizard_aged_trial_balance.py:0 -#: code:addons/addons/account/wizard/wizard_automatic_reconcile.py:0 -#: code:addons/addons/account/wizard/wizard_fiscalyear_close.py:0 -#: code:addons/addons/account/wizard/wizard_fiscalyear_close_state.py:0 -#: code:addons/addons/account/wizard/wizard_general_ledger_report.py:0 -#: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/account/wizard/wizard_partner_balance_report.py:0 -#: code:addons/addons/account/wizard/wizard_third_party_ledger.py:0 -#: code:addons/addons/hr_attendance/wizard/sign_in_out.py:0 -#: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 -#: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 -#: code:addons/addons/stock/stock.py:0 -#: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 -#: code:addons/osv/orm.py:0 -#, python-format -msgid "UserError" -msgstr "" - -#. module: base -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "Tax base different !\nClick on compute to update tax base" -msgstr "" - -#. module: base -#: model:res.country,name:base.ae -msgid "United Arab Emirates" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_RECORD" -msgstr "" - -#. module: base -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "You must define an analytic journal of type '%s' !" -msgstr "" - -#. module: base -#: model:res.country,name:base.re -msgid "Reunion (French)" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - -#. module: base -#: model:res.country,name:base.cz -msgid "Czech Republic" -msgstr "" - -#. module: base -#: model:res.country,name:base.sb -msgid "Solomon Islands" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "You can not use an inactive account!" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "You must first cancel all packing attached to this sale order." -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Entries are not of the same account or already reconciled ! " -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "Integrity Error !" -msgstr "" - -#. module: base -#: view:ir.translation:0 -#: model:ir.ui.menu,name:base.menu_translation -msgid "Translations" -msgstr "" - -#. module: base -#: field:ir.sequence,padding:0 -msgid "Number padding" -msgstr "" - -#. module: base -#: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#: code:addons/addons/mrp/mrp.py:0 -#: code:addons/addons/point_of_sale/pos.py:0 -#: code:addons/addons/purchase/purchase.py:0 -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "You can specify year, month and date in the name of the model using the following labels:\n\n%(year)s : To Specify Year \n%(month)s : To Specify Month \n%(date)s : Current Date\n\ne.g. My model on %(date)s" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "No IBAN defined \n' \\n" -" 'for the bank account: %s\n' + \\n" -" 'on line: %s" -msgstr "" - -#. module: base -#: model:res.country,name:base.ua -msgid "Ukraine" -msgstr "" - -#. module: base -#: code:addons/addons/stock/wizard/wizard_return.py:0 -#: selection:ir.report.custom.fields,operation:0 -#, python-format -msgid "None" -msgstr "" - -#. module: base -#: code:addons/addons/audittrail/audittrail.py:0 -#, python-format -msgid "Change audittrail depends -- Setting rule as DRAFT" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_category -#: view:ir.module.category:0 -msgid "Module Category" -msgstr "" - -#. module: base -#: model:res.country,name:base.us -msgid "United States" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reference Guide" -msgstr "" - -#. module: base -#: model:res.country,name:base.ml -msgid "Mali" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNINDENT" -msgstr "" - -#. module: base -#: field:ir.cron,interval_number:0 -msgid "Interval Number" -msgstr "" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Partial" -msgstr "" - -#. module: base -#: model:res.country,name:base.tk -msgid "Tokelau" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_xsl:0 -msgid "XSL path" -msgstr "" - -#. module: base -#: model:res.country,name:base.bn -msgid "Brunei Darussalam" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_function_form -#: model:ir.ui.menu,name:base.menu_partner_function_form -#: view:res.partner.function:0 -msgid "Partner Functions" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%Y - Year with century as a decimal number." -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "There is no default default credit account defined \n' \\n" -" 'on journal \"%s\"" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_INFO" -msgstr "" - -#. module: base -#: field:ir.attachment,create_date:0 -msgid "Date Created" -msgstr "" - -#. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "You have to select a product UOM in the same category than the purchase UOM of the product" -msgstr "" - -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - -#. module: base -#: model:res.country,name:base.fk -msgid "Falkland Islands" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Fri" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_todo -msgid "ir.actions.todo" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/bvr_import.py:0 -#, python-format -msgid "Number record different from the computed!" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Get file" -msgstr "" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "This function will check for new modules in the 'addons' path and on module repositories:" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "done" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_BACK" -msgstr "" - -#. module: base -#: code:addons/addons/account_analytic_analysis/account_analytic_analysis.py:0 -#: code:addons/addons/base/ir/ir_model.py:0 -#: code:addons/osv/orm.py:0 -#, python-format -msgid "AccessError" -msgstr "" - -#. module: base -#: model:res.country,name:base.dz -msgid "Algeria" -msgstr "" - -#. module: base -#: model:res.country,name:base.be -msgid "Belgium" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "You cannot perform this operation." -msgstr "" - -#. module: base -#: field:ir.translation,lang:0 -#: wizard_field:module.lang.install,init,lang:0 -#: field:res.partner,lang:0 -#: field:res.users,context_lang:0 -#: field:wizard.module.lang.export,lang:0 -#: field:wizard.module.update_translations,lang:0 -msgid "Language" -msgstr "" - -#. module: base -#: model:res.country,name:base.gm -msgid "Gambia" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form -#: view:res.company:0 -msgid "Companies" -msgstr "" - -#. module: base -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "You cannot Pause the Operation other then Start/Resume state !" -msgstr "" - -#. module: base -#: code:addons/osv/fields.py:0 -#, python-format -msgid "Not implemented get_memory method !" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -#: field:ir.actions.server,code:0 -#: selection:ir.actions.server,state:0 -msgid "Python Code" -msgstr "" - -#. module: base -#: help:ir.actions.server,state:0 -msgid "Type of the Action that is to be executed" -msgstr "" - -#. module: base -#: model:ir.module.module,description:base.module_meta_information -msgid "The kernel of OpenERP, needed for all installation." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form -#: model:ir.ui.menu,name:base.menu_partner_customer_form -msgid "Customers Partners" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#: selection:ir.actions.todo,state:0 -#: wizard_button:module.lang.import,init,end:0 -#: wizard_button:module.lang.install,init,end:0 -#: wizard_button:module.module.update,init,end:0 -#: wizard_button:module.upgrade,next,end:0 -#: wizard_button:res.partner.sms_send,init,end:0 -#: wizard_button:res.partner.spam_send,init,end:0 -#: view:wizard.ir.model.menu.create:0 -#: view:wizard.module.lang.export:0 -#: view:wizard.module.update_translations:0 -#, python-format -msgid "Cancel" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#, python-format -msgid "Your bank BVR number should be of the form 0X-XXX-X!\n' \\n" -" 'Please check your company ' \\n" -" 'information for the invoice:\n%s" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify server option --smtp-from !" -msgstr "" - -#. module: base -#: code:addons/addons/stock/wizard/wizard_return.py:0 -#, python-format -msgid "Provide the quantities of the returned products." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "" - -#. module: base -#: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 -#, python-format -msgid "No timebox child of this one !" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_9 -msgid "Components Supplier" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 -#: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 -#: model:ir.ui.menu,name:base.menu_action_res_users -#: model:ir.ui.menu,name:base.menu_users -#: view:res.groups:0 -#: field:res.groups,users:0 -#: field:res.roles,users:0 -#: view:res.users:0 -msgid "Users" -msgstr "" - -#. module: base -#: field:ir.module.module,published_version:0 -msgid "Published Version" -msgstr "" - -#. module: base -#: model:res.country,name:base.is -msgid "Iceland" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Roles are used to defined available actions, provided by workflows." -msgstr "" - -#. module: base -#: model:res.country,name:base.de -msgid "Germany" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Week of the year: %(woy)s" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_14 -msgid "Bad customers" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HARDDISK" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reports :" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_APPLY" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Thu" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_form -#: model:ir.ui.menu,name:base.menu_maintenance_contract -msgid "Your Maintenance Contracts" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Please note that you will have to logout and relog if you change your password." -msgstr "" - -#. module: base -#: model:res.country,name:base.gy -msgid "Guyana" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-2" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese (BR) / português (BR)" -msgstr "" - -#. module: base -#: field:ir.actions.server,record_id:0 -msgid "Create Id" -msgstr "" - -#. module: base -#: model:res.country,name:base.hn -msgid "Honduras" -msgstr "" - -#. module: base -#: model:res.country,name:base.eg -msgid "Egypt" -msgstr "" - -#. module: base -#: help:ir.actions.server,model_id:0 -msgid "Select the object on which the action will work (read, write, create)." -msgstr "" - -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - -#. module: base -#: view:ir.model:0 -msgid "Fields Description" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Please set an analytic journal on this financial journal !" -msgstr "" - -#. module: base -#: code:addons/tools/translate.py:0 -#, python-format -msgid "Bad file format" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CDROM" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 -#: code:addons/addons/hr_timesheet_sheet/wizard/wizard_timesheet_current.py:0 -#, python-format -msgid "No employee defined for your user !" -msgstr "" - -#. module: base -#: code:addons/addons/project/project.py:0 -#, python-format -msgid "Operation Not Permitted !" -msgstr "" - -#. module: base -#: field:ir.model.fields,readonly:0 -#: field:res.partner.bank.type.field,readonly:0 -msgid "Readonly" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Cycles Cost" -msgstr "" - -#. module: base -#: field:res.partner.event,type:0 -msgid "Type of Event" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_type -#: model:ir.ui.menu,name:base.menu_ir_sequence_type -msgid "Sequence Types" -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "To be installed" -msgstr "" - -#. module: base -#: model:ir.module.module,shortdesc:base.module_meta_information -msgid "Base" -msgstr "" - -#. module: base -#: code:addons/addons/hr_expense/hr_expense.py:0 -#, python-format -msgid "The employee must have a contact address" -msgstr "" - -#. module: base -#: model:res.country,name:base.lr -msgid "Liberia" -msgstr "" - -#. module: base -#: code:addons/addons/account_report/wizard/wizard_print_indicators.py:0 -#, python-format -msgid "Please select maximum 8 records to fit the page-width." -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_state_open.py:0 -#, python-format -msgid "Invoice is already reconciled" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -#: view:ir.model:0 -#: view:res.groups:0 -#: view:res.partner:0 -#: field:res.partner,comment:0 -#: field:res.partner.function,ref:0 -msgid "Notes" -msgstr "" - -#. module: base -#: field:ir.property,value:0 -#: selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 -#: field:ir.values,value:0 -#: field:ir.values,value_unpickle:0 -msgid "Value" -msgstr "" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update Translations" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner,ref:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -msgid "Code" -msgstr "" - -#. module: base -#: model:res.country,name:base.mc -msgid "Monaco" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Minutes" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,end:0 -#: wizard_view:module.upgrade,start:0 -msgid "The modules have been upgraded / installed !" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -#: view:wizard.module.lang.export:0 -msgid "Help" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "Couldn't create move between different companies" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Analytic Account incomplete" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Entry \"%s\" is not valid !" -msgstr "" - -#. module: base -#: code:addons/tools/amount_to_text_en.py:0 -#, python-format -msgid "Number too large '%d', can not translate it" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-hr" -msgstr "" - -#. module: base -#: wizard_button:server.action.create,step_1,create:0 -msgid "Create" -msgstr "" - -#. module: base -#: field:ir.exports,export_fields:0 -msgid "Export ID" -msgstr "" - -#. module: base -#: model:res.country,name:base.fr -msgid "France" -msgstr "" - -#. module: base -#: field:workflow.activity,flow_stop:0 -msgid "Flow Stop" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Weeks" -msgstr "" - -#. module: base -#: model:res.country,name:base.af -msgid "Afghanistan, Islamic State of" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#: code:addons/addons/account/account_analytic_line.py:0 -#: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/account/account_move_line.py:0 -#: code:addons/addons/account/wizard/wizard_pay_invoice.py:0 -#: code:addons/addons/account/wizard/wizard_refund.py:0 -#: code:addons/addons/account_payment/account_move_line.py:0 -#: code:addons/addons/account_report/account.py:0 -#: code:addons/addons/analytic_user_function/analytic_user_function.py:0 -#: code:addons/addons/base/module/wizard/wizard_module_import.py:0 -#: code:addons/addons/crm/crm.py:0 -#: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 -#: code:addons/addons/crm_vertical/crm_vertical.py:0 -#: code:addons/addons/event_project/wizard/event_task.py:0 -#: code:addons/addons/hr_expense/hr_expense.py:0 -#: code:addons/addons/hr_timesheet_invoice/hr_timesheet_invoice.py:0 -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#: code:addons/addons/hr_timesheet_sheet/wizard/wizard_timesheet_current.py:0 -#: code:addons/addons/membership/wizard/invoice_membership.py:0 -#: code:addons/addons/odms/odms.py:0 -#: code:addons/addons/odms/odms_invoice.py:0 -#: code:addons/addons/odms/wizard/host_status.py:0 -#: code:addons/addons/point_of_sale/pos.py:0 -#: code:addons/addons/point_of_sale/report/pos_invoice.py:0 -#: code:addons/addons/point_of_sale/wizard/wizard_pos_payment.py:0 -#: code:addons/addons/project_gtd/wizard/project_gtd_daily.py:0 -#: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 -#: code:addons/addons/purchase/purchase.py:0 -#: code:addons/addons/sale/sale.py:0 -#: code:addons/addons/stock/report_stock.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry -msgid "country_id" -msgstr "" - -#. module: base -#: field:ir.cron,interval_type:0 -msgid "Interval Unit" -msgstr "" - -#. module: base -#: field:maintenance.contract,kind:0 -#: field:workflow.activity,kind:0 -msgid "Kind" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Manual" -msgstr "" - -#. module: base -#: field:res.bank,fax:0 -#: field:res.partner.address,fax:0 -msgid "Fax" -msgstr "" - -#. module: base -#: field:res.lang,thousands_sep:0 -msgid "Thousands Separator" -msgstr "" - -#. module: base -#: field:res.request,create_date:0 -msgid "Created Date" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Line Plot" -msgstr "" - -#. module: base -#: help:ir.actions.server,loop_action:0 -msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (TW) / 正體字" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_UP" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request -msgid "res.request" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Configuration of your control center account" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid " Quantity: " -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "No E-Mail ID Found for the Responsible Partner or missing reply address in section!" -msgstr "" - -#. module: base -#: field:ir.default,company_id:0 -#: field:ir.property,company_id:0 -#: field:ir.values,company_id:0 -#: view:res.company:0 -#: field:res.users,company_id:0 -msgid "Company" -msgstr "" - -#. module: base -#: field:ir.attachment,datas:0 -msgid "File Content" -msgstr "" - -#. module: base -#: model:res.country,name:base.pa -msgid "Panama" -msgstr "" - -#. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "You have to select a partner in the purchase form !\nPlease set one partner before choosing a product." -msgstr "" - -#. module: base -#: model:res.country,name:base.gi -msgid "Gibraltar" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "PO File" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Skip Step" -msgstr "" - -#. module: base -#: model:res.country,name:base.pn -msgid "Pitcairn Island" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_event_type-act -#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act -msgid "Active Partner Events" -msgstr "" - -#. module: base -#: code:addons/addons/account_payment/account_move_line.py:0 -#, python-format -msgid "No partner defined on entry line" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_rule -#: model:ir.ui.menu,name:base.menu_action_rule -msgid "Record Rules" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Day of the year: %(doy)s" -msgstr "" - -#. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "" - -#. module: base -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Sorry!" -msgstr "" - -#. module: base -#: code:addons/addons/crm_configuration/wizard/meeting_planify.py:0 -#, python-format -msgid "meeting" -msgstr "" - -#. module: base -#: view:ir.model:0 -#: view:ir.model.fields:0 -#: view:ir.property:0 -#: model:ir.ui.menu,name:base.next_id_15 -msgid "Properties" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%A - Full weekday name." -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Selection" -msgstr "" - -#. module: base -#: field:ir.rule,domain_force:0 -msgid "Force Domain" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_attachment -#: view:ir.attachment:0 -#: model:ir.ui.menu,name:base.menu_action_attachment -msgid "Attachments" -msgstr "" - -#. module: base -#: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/account/wizard/wizard_refund.py:0 -#, python-format -msgid "Data Insufficient !" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Validate" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_wizard -msgid "maintenance.contract.wizard" -msgstr "" - -#. module: base -#: field:ir.actions.server,child_ids:0 -msgid "Other Actions" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Done" -msgstr "" - -#. module: base -#: code:addons/addons/odms/portal.py:0 -#, python-format -msgid "error" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_write:0 -msgid "Write Access" -msgstr "" - -#. module: base -#: field:res.bank,city:0 -#: field:res.partner,city:0 -#: field:res.partner.address,city:0 -#: field:res.partner.bank,city:0 -msgid "City" -msgstr "" - -#. module: base -#: model:res.country,name:base.qa -msgid "Qatar" -msgstr "" - -#. module: base -#: model:res.country,name:base.it -msgid "Italy" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<>" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<=" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Estonian / Eesti keel" -msgstr "" - -#. module: base -#: code:addons/addons/wiki/wizard/show_diff.py:0 -#, python-format -msgid "You need to select minimum 1 or maximum 2 history revision!" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/bvr_import.py:0 -#, python-format -msgid "Total record different from the computed!" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese / português" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3 or later version" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "open" -msgstr "" - -#. module: base -#: field:workflow.activity,action:0 -msgid "Python Action" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Unknown position in inherited view %s !" -msgstr "" - -#. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "" - -#. module: base -#: field:ir.report.custom,repeat_header:0 -msgid "Repeat Header" -msgstr "" - -#. module: base -#: field:res.users,address_id:0 -msgid "Address" -msgstr "" - -#. module: base -#: field:ir.module.module,latest_version:0 -msgid "Installed version" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_workflow_root -msgid "Workflow Definitions" -msgstr "" - -#. module: base -#: model:res.country,name:base.mr -msgid "Mauritania" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "failed. Bad Promotional Code." -msgstr "" - -#. module: base -#: view:workflow.activity:0 -#: field:workflow.workitem,act_id:0 -msgid "Activity" -msgstr "" - -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - -#. module: base -#: field:res.company,parent_id:0 -msgid "Parent Company" -msgstr "" - -#. module: base -#: field:res.currency.rate,rate:0 -msgid "Rate" -msgstr "" - -#. module: base -#: model:res.country,name:base.cg -msgid "Congo" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "Examples" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "" - -#. module: base -#: help:res.country.state,code:0 -msgid "The state code in three chars.\n" -"" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_country_state -msgid "Country state" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form_all -#: model:ir.ui.menu,name:base.menu_ir_property_form_all -msgid "All Properties" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_window -#: model:ir.ui.menu,name:base.menu_ir_action_window -msgid "Window Actions" -msgstr "" - -#. module: base -#: code:addons/addons/account_analytic_plans/wizard/wizard_crossovered_analytic.py:0 -#, python-format -msgid "There are no Analytic lines related to Account %s' % name))\n" -" return {}\n" -"\n" -" states = {\n" -" 'init': {\n" -" 'actions': [],\n" -" 'result': {'type':'form', 'arch':form, 'fields':fields, 'state':[('end','Cancel" -msgstr "" - -#. module: base -#: model:res.country,name:base.ch -msgid "Switzerland" -msgstr "" - -#. module: base -#: code:addons/addons/delivery/delivery.py:0 -#, python-format -msgid "No price available !" -msgstr "" - -#. module: base -#: model:res.country,name:base.kn -msgid "Saint Kitts & Nevis Anguilla" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to get multiple url" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/mrp.py:0 -#, python-format -msgid "No address defined for the supplier" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HOME" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "Cannot create invoice without a partner." -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "There is no default default debit account defined \n' \\n" -" 'on journal \"%s\"" -msgstr "" - -#. module: base -#: field:ir.model,name:0 -#: field:ir.model.fields,model:0 -#: field:ir.model.grid,name:0 -#: field:ir.values,model:0 -msgid "Object Name" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "You must first cancel all invoices attached to this sale order." -msgstr "" - -#. module: base -#: help:ir.actions.server,srcmodel_id:0 -msgid "Object in which you want to create / write the object. If it is empty then refer to the Object field." -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -#: selection:ir.module.module.dependency,state:0 -msgid "Not Installed" -msgstr "" - -#. module: base -#: field:workflow.activity,out_transitions:0 -msgid "Outgoing Transitions" -msgstr "" - -#. module: base -#: field:ir.ui.menu,icon:0 -msgid "Icon" -msgstr "" - -#. module: base -#: wizard_button:module.lang.import,init,finish:0 -#: wizard_button:module.lang.install,start,end:0 -#: wizard_button:module.module.update,update,open_window:0 -msgid "Ok" -msgstr "" - -#. module: base -#: model:res.country,name:base.mq -msgid "Martinique (French)" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request-act -#: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 -#: view:res.request:0 -msgid "Requests" -msgstr "" - -#. module: base -#: model:res.country,name:base.ye -msgid "Yemen" -msgstr "" - -#. module: base -#: selection:workflow.activity,split_mode:0 -msgid "Or" -msgstr "" - -#. module: base -#: model:res.country,name:base.pk -msgid "Pakistan" -msgstr "" - -#. module: base -#: model:res.country,name:base.al -msgid "Albania" -msgstr "" - -#. module: base -#: model:res.country,name:base.ws -msgid "Samoa" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_be/wizard/account_vat_declaration.py:0 -#: code:addons/addons/l10n_be/wizard/partner_vat_listing.py:0 -#, python-format -msgid "No VAT Number Associated with Main Company!" -msgstr "" - -#. module: base -#: field:ir.ui.menu,child_id:0 -msgid "Child IDs" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Problem in configuration `Record Id` in Server Action!" -msgstr "" - -#. module: base -#: code:addons/addons/document/document.py:0 -#: code:addons/addons/hr_timesheet/hr_timesheet.py:0 -#: code:addons/osv/orm.py:0 -#, python-format -msgid "ValidateError" -msgstr "" - -#. module: base -#: code:addons/addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "This error occurs on database %s" -msgstr "" - -#. module: base -#: code:addons/addons/base_report_creator/base_report_creator.py:0 -#, python-format -msgid "No Related Models!!" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_base_module_import -msgid "Import module" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "Modify line failed !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DISCONNECT" -msgstr "" - -#. module: base -#: model:res.country,name:base.la -msgid "Laos" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Email" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Resynchronise Terms" -msgstr "" - -#. module: base -#: model:res.country,name:base.tg -msgid "Togo" -msgstr "" - -#. module: base -#: code:addons/addons/base_module_publish/wizard/base_module_publish.py:0 -#, python-format -msgid "Failed to upload the file" -msgstr "" - -#. module: base -#: selection:workflow.activity,kind:0 -msgid "Stop All" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "3. %x ,%X ==> 12/05/08, 18:25:20" -msgstr "" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Cascade" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Field %d should be a figure" -msgstr "" - -#. module: base -#: code:addons/addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "No product defined on the related employee.\nFill in the timesheet tab of the employee form." -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - -#. module: base -#: field:res.groups,comment:0 -msgid "Comment" -msgstr "" - -#. module: base -#: model:res.country,name:base.ro -msgid "Romania" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PREFERENCES" -msgstr "" - -#. module: base -#: field:res.country.state,name:0 -msgid "State Name" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_bank_statement.py:0 -#, python-format -msgid "The expected balance (%.2f) is different than the computed one. (%.2f)" -msgstr "" - -#. module: base -#: field:workflow.activity,join_mode:0 -msgid "Join Mode" -msgstr "" - -#. module: base -#: field:res.users,context_tz:0 -msgid "Timezone" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_LAST" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_xml -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.xml" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "Historize" -msgstr "" - -#. module: base -#: code:addons/addons/account_report/wizard/wizard_print_indicators.py:0 -#: code:addons/addons/board/wizard/board_wizard.py:0 -#, python-format -msgid "User Error!" -msgstr "" - -#. module: base -#: wizard_button:module.lang.install,init,start:0 -msgid "Start installation" -msgstr "" - -#. module: base -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_2 -msgid "OpenERP Partners" -msgstr "" - -#. module: base -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Operation is already finished !" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Installation of your instance(s)" -msgstr "" - -#. module: base -#: model:res.country,name:base.by -msgid "Belarus" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,name:0 -#: field:ir.actions.act_window_close,name:0 -#: field:ir.actions.actions,name:0 -#: field:ir.actions.server,name:0 -#: field:ir.actions.url,name:0 -msgid "Action Name" -msgstr "" - -#. module: base -#: selection:res.request,priority:0 -msgid "Normal" -msgstr "" - -#. module: base -#: code:addons/addons/odms/wizard/host_status.py:0 -#, python-format -msgid "The %(obj)s %(name)s has been created automatically but its architecture is unknown and has been set to the default one. Please check manually this %(obj)s." -msgstr "" - -#. module: base -#: field:res.bank,street2:0 -#: field:res.partner.address,street2:0 -msgid "Street2" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You cannot modify an entry in a confirmed timesheet !" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "The journal must have default credit and debit account" -msgstr "" - -#. module: base -#: model:res.country,name:base.pr -msgid "Puerto Rico" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "No E-Mail ID Found for your Company address!" -msgstr "" - -#. module: base -#: code:addons/addons/base/res/res_currency.py:0 -#, python-format -msgid "No rate found \n' \\n" -" 'for the currency: %s \n' \\n" -" 'at the date: %s" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/hr_timesheet.py:0 -#, python-format -msgid "No analytic account defined on the project.\nPlease set one or we can not automatically fill the timesheet." -msgstr "" - -#. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "Can not send mail with empty body,you should have description in the body" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "Closing of fiscal year cancelled, please check the box !" -msgstr "" - -#. module: base -#: field:ir.module.repository,filter:0 -msgid "Filter" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Bad account !" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "Sales Journal" +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" msgstr "" #. module: base @@ -7955,8 +6617,14 @@ msgid "Grenada" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a5" msgstr "" #. module: base @@ -7970,36 +6638,110 @@ msgid "Rounding factor" msgstr "" #. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "No piece number !" +#: selection:ir.translation,type:0 +msgid "Wizard Field" msgstr "" #. module: base -#: code:addons/addons/account/wizard/wizard_central_journal.py:0 -#: code:addons/addons/account/wizard/wizard_general_journal.py:0 -#: code:addons/addons/account/wizard/wizard_print_journal.py:0 -#: code:addons/addons/account/wizard/wizard_third_party_ledger.py:0 -#: code:addons/addons/hr_attendance/wizard/print_attendance_error.py:0 -#, python-format -msgid "No records found for your selection!" +#: model:res.country,name:base.bz +msgid "Belize" msgstr "" #. module: base -#: code:addons/addons/stock/wizard/wizard_return.py:0 -#, python-format -msgid "to be invoiced" +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Registration on the monitoring servers" +#: field:ir.model.fields,select_level:0 +msgid "Searchable" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_company -msgid "res.company" +#: model:res.country,name:base.uy +msgid "Uruguay" +msgstr "" + +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "" + +#. module: base +#: view:res.partner.som:0 +msgid "Partner State of Mind" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank +#: view:res.partner.bank:0 +msgid "Bank Accounts" +msgstr "" + +#. module: base +#: selection:ir.ui.view,type:0 +msgid "mdx" +msgstr "" + +#. module: base +#: model:res.country,name:base.sl +msgid "Sierra Leone" +msgstr "" + +#. module: base +#: model:res.country,name:base.eg +msgid "Egypt" +msgstr "" + +#. module: base +#: field:ir.sequence,prefix:0 +msgid "Prefix" +msgstr "" + +#. module: base +#: model:res.country,name:base.rw +msgid "Rwanda" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "German / Deutsch" +msgstr "" + +#. module: base +#: help:ir.actions.server,trigger_name:0 +msgid "Select the Signal name that is to be used as the trigger." +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Fields Mapping" +msgstr "" + +#. module: base +#: model:res.country,name:base.bi +msgid "Burundi" +msgstr "" + +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:module.upgrade,end,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:server.action.create,step_1,end:0 +#: view:wizard.module.lang.export:0 +msgid "Close" +msgstr "" + +#. module: base +#: field:ir.sequence,name:0 +#: field:ir.sequence.type,name:0 +msgid "Sequence Name" +msgstr "" + +#. module: base +#: model:res.country,name:base.tc +msgid "Turks and Caicos Islands" msgstr "" #. module: base @@ -8009,8 +6751,14 @@ msgid "System upgrade done" msgstr "" #. module: base -#: model:res.country,name:base.so -msgid "Somalia" +#: model:res.country,name:base.sc +msgid "Seychelles" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" msgstr "" #. module: base @@ -8019,14 +6767,45 @@ msgid "Configure Simple View" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_13 -msgid "Important customers" +#: wizard_button:module.upgrade,next,start:0 +msgid "Start Upgrade" msgstr "" #. module: base -#: code:addons/addons/account_followup/wizard/wizard_followup_print.py:0 -#, python-format -msgid "Mail not sent to following Partners, Email not available !\n\n" +#: model:res.country,name:base.bt +msgid "Bhutan" +msgstr "" + +#. module: base +#: field:ir.default,ref_id:0 +msgid "ID Ref." +msgstr "" + +#. module: base +#: field:res.partner.bank,owner_name:0 +msgid "Account Owner" +msgstr "" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,fc1_condition:0 +#: field:ir.report.custom.fields,fc2_condition:0 +#: field:ir.report.custom.fields,fc3_condition:0 +msgid "condition" +msgstr "" + +#. module: base +#: model:res.country,name:base.sg +msgid "Singapore" +msgstr "" + +#. module: base +#: model:res.country,name:base.mt +msgid "Malta" msgstr "" #. module: base @@ -8035,33 +6814,99 @@ msgstr "" msgid "Custom Report" msgstr "" +#. module: base +#: field:ir.actions.server,fields_lines:0 +msgid "Field Mappings." +msgstr "" + +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: field:ir.cron,args:0 msgid "Arguments" msgstr "" +#. module: base +#: field:workflow,osv:0 +#: field:workflow.instance,res_type:0 +msgid "Resource Object" +msgstr "" + #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "sxw" msgstr "" #. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "Could not cancel this purchase order !" +#: field:ir.module.module,shortdesc:0 +msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "May" +#: model:res.country,name:base.gf +msgid "French Guyana" msgstr "" #. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The value \"%s\" for the field \"%s\" is not in the selection" +#: selection:ir.actions.url,target:0 +msgid "This Window" +msgstr "" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "" + +#. module: base +#: field:ir.model,state:0 +#: field:ir.model.fields,state:0 +#: field:ir.model.grid,state:0 +msgid "Manually Created" +msgstr "" + +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "" + +#. module: base +#: field:ir.attachment,description:0 +#: field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 +#: view:res.partner.event:0 +#: field:res.partner.event,description:0 +#: view:res.request:0 +msgid "Description" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,name:0 +msgid "Wizard Info" +msgstr "" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + +#. module: base +#: field:res.bank,street:0 +#: field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" msgstr "" #. module: base @@ -8069,18 +6914,62 @@ msgstr "" msgid "Automatic XSL:RML" msgstr "" +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" + +#. module: base +#: view:workflow.workitem:0 +msgid "Workflow Workitems" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "" + +#. module: base +#: model:res.country,name:base.vc +msgid "Saint Vincent & Grenadines" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_pvt_ltd +msgid "Corp." +msgstr "" + #. module: base #: view:ir.rule:0 msgid "Manual domain setup" msgstr "" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "" + #. module: base #: field:res.partner,customer:0 -#: model:res.partner.category,name:base.res_partner_category_0 #: selection:res.partner.event,partner_type:0 msgid "Customer" msgstr "" +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Unvalidated" +msgstr "" + +#. module: base +#: model:res.country,name:base.gw +msgid "Guinea Bissau" +msgstr "" + #. module: base #: field:ir.actions.report.custom,name:0 #: field:ir.report.custom,name:0 @@ -8088,15 +6977,50 @@ msgid "Report Name" msgstr "" #. module: base -#: field:ir.module.module,shortdesc:0 -msgid "Short Description" +#: view:workflow.instance:0 +msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +#: wizard_view:res.partner.spam_send,init:0 +msgid "Mass Mailing" +msgstr "" + +#. module: base +#: model:res.country,name:base.io +msgid "British Indian Ocean Territory" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_country +#: field:res.bank,country:0 +#: view:res.country:0 +#: field:res.country.state,country_id:0 +#: field:res.partner,country:0 +#: field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 +msgid "Country" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" msgstr "" #. module: base @@ -8109,21 +7033,82 @@ msgstr "" msgid "Context Value" msgstr "" +#. module: base +#: model:res.country,name:base.kp +msgid "North Korea" +msgstr "" + +#. module: base +#: view:ir.report.custom:0 +msgid "Unsubscribe Report" +msgstr "" + #. module: base #: view:ir.sequence:0 msgid "Hour 00->24: %(h24)s" msgstr "" +#. module: base +#: model:res.country,name:base.zw +msgid "Zimbabwe" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Create Object" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "" + +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "" + +#. module: base +#: field:res.request.history,name:0 +msgid "Summary" +msgstr "" + #. module: base #: field:res.request.history,date_sent:0 msgid "Date sent" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_partner_function +msgid "Function of the contact" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_upgrade +#: model:ir.ui.menu,name:base.menu_module_tree_upgrade +msgid "Modules to be installed, upgraded or removed" +msgstr "" + #. module: base #: view:ir.sequence:0 msgid "Month: %(month)s" msgstr "" +#. module: base +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_partner_address_form +msgid "Addresses" +msgstr "" + +#. module: base +#: model:res.country,name:base.mm +msgid "Myanmar" +msgstr "" + #. module: base #: field:ir.actions.act_window.view,sequence:0 #: field:ir.actions.server,sequence:0 @@ -8139,13 +7124,18 @@ msgid "Sequence" msgstr "" #. module: base -#: model:res.country,name:base.tn -msgid "Tunisia" +#: view:res.lang:0 +msgid "11. %U or %W ==> 48 (49th week)" msgstr "" #. module: base -#: field:ir.actions.wizard,name:0 -msgid "Wizard Info" +#: selection:module.lang.install,init,lang:0 +msgid "Russian / русский язык" +msgstr "" + +#. module: base +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" #. module: base @@ -8155,213 +7145,38 @@ msgid "Number of time the function is called,\n" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_16 -msgid "Telecom sector" +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (CN) / 简体中文" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Cancel Install" +#: view:ir.rule.group:0 +msgid "The rule is satisfied if all test are True (AND)" msgstr "" #. module: base -#: code:addons/addons/hr_holidays/hr.py:0 -#, python-format -msgid "You Cannot Validate leaves while available leaves are less than asked leaves." -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "Legends for Date and Time Formats" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Monthly" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 -#, python-format -msgid "Analytic account incomplete" -msgstr "" - -#. module: base -#: code:addons/addons/base_report_creator/base_report_creator.py:0 -#, python-format -msgid "These is/are model(s) (%s) in selection which is/are not related to any other model" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_som-act -#: model:ir.ui.menu,name:base.menu_res_partner_som-act -msgid "States of mind" +#: field:ir.report.custom,footer:0 +msgid "Report Footer" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_ASCENDING" +msgid "STOCK_MEDIA_NEXT" msgstr "" #. module: base -#: view:ir.model:0 -#: view:res.groups:0 -msgid "Access Rules" +#: selection:res.lang,direction:0 +msgid "Right-to-Left" msgstr "" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." +#: model:res.country,name:base.yu +msgid "Yugoslavia" msgstr "" #. module: base -#: field:res.roles,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.report.custom,model:0 -#: field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 -#: field:ir.actions.wizard,model:0 -#: field:ir.cron,model:0 -#: field:ir.default,field_tbl:0 -#: view:ir.model:0 -#: field:ir.model,model:0 -#: field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 -#: field:ir.model.grid,model:0 -#: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 -#: field:ir.ui.view,model:0 -#: field:ir.values,model_id:0 -#: field:res.request.link,object:0 -#: field:wizard.ir.model.menu.create,model_id:0 -#: field:workflow.triggers,model:0 -msgid "Object" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "You must define a responsible user for this case in order to use this action!" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_default -msgid "ir.default" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Minute: %(min)s" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%w - Weekday as a decimal number [0(Sunday),6]." -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to find your last subscription" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "You can not modify a posted entry of this journal !\nYou should set the journal to allow cancelling entries if you want to do that." -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export translation file" -msgstr "" - -#. module: base -#: code:addons/addons/stock/report_stock.py:0 -#, python-format -msgid "You cannot delete any record!" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Missing info: Production Instance" -msgstr "" - -#. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Futur Productions" -msgstr "" - -#. module: base -#: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/crm/crm.py:0 -#: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 -#: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 -#: code:addons/addons/document_ics/document.py:0 -#: code:addons/addons/hr_holidays/hr.py:0 -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 -#: code:addons/addons/product/pricelist.py:0 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_base_config -#: model:ir.ui.menu,name:base.menu_config -#: view:res.company:0 -msgid "Configuration" -msgstr "" - -#. module: base -#: code:addons/addons/project/project.py:0 -#, python-format -msgid "A new project has been created !\nWe suggest you to close this one and work on this new project." -msgstr "" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" -msgstr "" - -#. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Futur Receptions" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "There is no income '\\n" -" 'account defined for this product: \"%s\" (id:%d)" -msgstr "" - -#. module: base -#: field:ir.actions.todo,start_on:0 -msgid "Start On" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_5 -msgid "Gold Partner" +#: wizard_view:module.lang.install,init:0 +msgid "Choose a language to install:" msgstr "" #. module: base @@ -8374,2486 +7189,28 @@ msgstr "" msgid "Partner" msgstr "" -#. module: base -#: code:addons/addons/hr_attendance/wizard/sign_in_out.py:0 -#, python-format -msgid "A sign-in must be right after a sign-out !" -msgstr "" - -#. module: base -#: model:res.country,name:base.tr -msgid "Turkey" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "Cannot delete a sale order line which is %s !" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_refund.py:0 -#, python-format -msgid "Can not %s draft/proforma/cancel invoice." -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "odt" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,type:0 -#: field:ir.actions.report.xml,type:0 -#: field:ir.report.custom,type:0 -msgid "Report Type" -msgstr "" - -#. module: base -#: field:ir.actions.todo,state:0 -#: field:ir.module.module,state:0 -#: field:ir.module.module.dependency,state:0 -#: field:ir.report.custom,state:0 -#: field:maintenance.contract,state:0 -#: field:res.bank,state:0 -#: view:res.country.state:0 -#: field:res.partner.bank,state_id:0 -#: field:res.request,state:0 -#: field:workflow.instance,state:0 -#: field:workflow.workitem,state:0 -msgid "State" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "Other proprietary" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation -#: model:ir.ui.menu,name:base.menu_action_translation -msgid "All terms" -msgstr "" - -#. module: base -#: model:res.country,name:base.no -msgid "Norway" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "4. %b, %B ==> Dec, December" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Load an Official Translation" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_bank_statement.py:0 -#, python-format -msgid "The account entries lines are not in valid state." -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_10 -msgid "Open Source Service Company" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "waiting" -msgstr "" - -#. module: base -#: field:ir.attachment,link:0 -msgid "Link" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_triggers -msgid "workflow.triggers" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,report_id:0 -msgid "Report Ref" -msgstr "" - -#. module: base -#: code:addons/addons/base_report_designer/wizard/base_report_designer_modify.py:0 -#, python-format -msgid "Report does not contain the sxw content!" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "No Default Debit Account !" -msgstr "" - -#. module: base -#: help:ir.actions.wizard,multi:0 -msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND" -msgstr "" - -#. module: base -#: model:res.country,name:base.hm -msgid "Heard and McDonald Islands" -msgstr "" - -#. module: base -#: code:addons/addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "No employee defined for this user. You must create one." -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "No valid pricelist line found !" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_id:0 -msgid "View Ref." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch (Belgium) / Nederlands (Belgïe)" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_repository_tree -#: view:ir.module.repository:0 -msgid "Repository list" -msgstr "" - -#. module: base -#: field:res.company,rml_header1:0 -msgid "Report Header" -msgstr "" - -#. module: base -#: field:res.roles,child_id:0 -msgid "Children" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete connected server" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,type:0 -#: field:ir.actions.act_window_close,type:0 -#: field:ir.actions.actions,type:0 -#: field:ir.actions.server,state:0 -#: field:ir.actions.server,type:0 -#: field:ir.actions.url,type:0 -#: field:ir.actions.wizard,type:0 -msgid "Action Type" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "products" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "You cannot cancel a sale order line that has already been invoiced !" -msgstr "" - -#. module: base -#: field:res.partner.bank.type,field_ids:0 -msgid "Type fields" -msgstr "" - -#. module: base -#: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "You must first select a partner !" -msgstr "" - -#. module: base -#: field:ir.module.module,category_id:0 -msgid "Category" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FLOPPY" -msgstr "" - -#. module: base -#: field:ir.actions.server,sms:0 -#: selection:ir.actions.server,state:0 -msgid "SMS" -msgstr "" - -#. module: base -#: model:res.country,name:base.cr -msgid "Costa Rica" -msgstr "" - -#. module: base -#: code:addons/addons/base/maintenance/maintenance.py:0 -#, python-format -msgid "Your can't submit bug reports due to uncovered modules: %s" -msgstr "" - -#. module: base -#: view:ir.model:0 -#: view:res.request:0 -msgid "Status" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form -#: view:res.currency:0 -msgid "Currencies" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "EAN: " -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "Escalate" -msgstr "" - -#. module: base -#: code:addons/addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "Bad Configuration !" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Hour 00->12: %(h12)s" -msgstr "" - -#. module: base -#: help:res.partner.address,active:0 -msgid "Uncheck the active field to hide the contact." -msgstr "" - -#. module: base -#: model:res.country,name:base.dk -msgid "Denmark" -msgstr "" - -#. module: base -#: field:res.country,code:0 -msgid "Country Code" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_instance -msgid "workflow.instance" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "10. %S ==> 20" -msgstr "" - -#. module: base -#: code:addons/osv/fields.py:0 -#, python-format -msgid "undefined get method !" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_madam -msgid "Madam" -msgstr "" - -#. module: base -#: model:res.country,name:base.ee -msgid "Estonia" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "You can not validate a non-balanced entry !" -msgstr "" - -#. module: base -#: model:res.country,name:base.nl -msgid "Netherlands" -msgstr "" - -#. module: base -#: code:addons/addons/project/project.py:0 -#, python-format -msgid "You can not delete a project with tasks. I suggest you to deactivate it." -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_4 -msgid "Low Level Objects" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom -msgid "ir.report.custom" -msgstr "" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Purchase Offer" -msgstr "" - -#. module: base -#: code:addons/addons/odms/wizard/host_status.py:0 -#, python-format -msgid "The Host type must be Amazon to perform this action." -msgstr "" - -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Product Standard Price" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_values -msgid "ir.values" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You can not duplicate a timesheet !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_FIT" -msgstr "" - -#. module: base -#: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 -#, python-format -msgid "Opportunity" -msgstr "" - -#. module: base -#: model:res.country,name:base.cd -msgid "Congo, The Democratic Republic of the" -msgstr "" - -#. module: base -#: code:addons/addons/auction/auction.py:0 -#, python-format -msgid "The object \"%s\" has no buyer assigned." -msgstr "" - -#. module: base -#: view:res.request:0 -#: field:res.request,body:0 -#: field:res.request.history,req_id:0 -msgid "Request" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Days" -msgstr "" - -#. module: base -#: code:addons/addons/account_payment/account_move_line.py:0 -#, python-format -msgid "Partner '+ line.partner_id.name+ ' has no bank account defined" -msgstr "" - -#. module: base -#: model:res.country,name:base.jp -msgid "Japan" -msgstr "" - -#. module: base -#: field:ir.cron,numbercall:0 -msgid "Number of Calls" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Language file loaded." -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_info:0 -msgid "Modules to update" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "" - -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_BOTTOM" -msgstr "" - -#. module: base -#: help:ir.actions.server,sequence:0 -msgid "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority." -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,header:0 -msgid "Add RML header" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Missing info: Partner" -msgstr "" - -#. module: base -#: model:res.country,name:base.gr -msgid "Greece" -msgstr "" - -#. module: base -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "Cannot create invoice move on centralised journal" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Croatian / hrvatski jezik" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_reconcile_select.py:0 -#, python-format -msgid "Reconciliation" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_FORWARD" -msgstr "" - -#. module: base -#: help:ir.actions.server,code:0 -msgid "Python code to be executed" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_analytic_line.py:0 -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Entries: " -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - -#. module: base -#: view:res.partner.category:0 -msgid "Partner Category" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -#: selection:ir.actions.server,state:0 -msgid "Trigger" -msgstr "" - -#. module: base -#: field:ir.model.fields,translate:0 -msgid "Translate" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" -msgstr "" - -#. module: base -#: field:res.request.history,body:0 -msgid "Body" -msgstr "" - -#. module: base -#: wizard_button:res.partner.spam_send,init,send:0 -msgid "Send Email" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_FONT" -msgstr "" - -#. module: base -#: field:res.users,menu_id:0 -msgid "Menu Action" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "Purchase Journal" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "choose" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Graph" -msgstr "" - -#. module: base -#: field:res.partner,child_ids:0 -#: field:res.request,ref_partner_id:0 -msgid "Partner Ref." -msgstr "" - -#. module: base -#: code:addons/addons/mrp/mrp.py:0 -#, python-format -msgid "from stock and no minimum orderpoint rule defined" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Production instance" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "Html from html" -msgstr "" - -#. module: base -#: code:addons/addons/sale/sale.py:0 -#, python-format -msgid "Cannot delete Sale Order(s) which are already confirmed !" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_low_workflow -msgid "Workflow Items" -msgstr "" - -#. module: base -#: field:res.request,ref_doc2:0 -msgid "Document Ref 2" -msgstr "" - -#. module: base -#: field:res.request,ref_doc1:0 -msgid "Document Ref 1" -msgstr "" - -#. module: base -#: model:res.country,name:base.ga -msgid "Gabon" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_pay_invoice.py:0 -#, python-format -msgid "Can not pay draft/proforma/cancel invoice." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_data -msgid "ir.model.data" -msgstr "" - -#. module: base -#: view:ir.model:0 -#: view:res.groups:0 -msgid "Access Rights" -msgstr "" - -#. module: base -#: model:res.country,name:base.gl -msgid "Greenland" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,report_rml:0 -msgid "The .rml path of the file or NULL if the content is in report_rml_content" -msgstr "" - -#. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account Number" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "1. %c ==> Fri Dec 5 18:25:20 2008" -msgstr "" - -#. module: base -#: help:ir.ui.menu,groups_id:0 -msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." -msgstr "" - -#. module: base -#: model:res.country,name:base.nc -msgid "New Caledonia (French)" -msgstr "" - -#. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "You can only delete draft moves." -msgstr "" - -#. module: base -#: field:res.partner.function,name:0 -msgid "Function Name" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Cancel" -msgstr "" - -#. module: base -#: field:res.partner.category,name:0 -msgid "Category Name" -msgstr "" - -#. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "" - -#. module: base -#: field:res.request,act_from:0 -#: field:res.request.history,act_from:0 -msgid "From" -msgstr "" - -#. module: base -#: wizard_button:server.action.create,init,step_1:0 -msgid "Next" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-report" -msgstr "" - -#. module: base -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "You cannot finish the operation without Starting/Resuming it !" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_rml_content:0 -#: field:ir.actions.report.xml,report_rml_content_data:0 -msgid "RML content" -msgstr "" - -#. module: base -#: view:workflow.activity:0 -msgid "Incoming transitions" -msgstr "" - -#. module: base -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "There is no Operation to be cancelled !" -msgstr "" - -#. module: base -#: model:res.country,name:base.cn -msgid "China" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password empty !" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Tue" -msgstr "" - -#. module: base -#: model:res.country,name:base.eh -msgid "Western Sahara" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow -msgid "workflow" -msgstr "" - -#. module: base -#: model:res.country,name:base.id -msgid "Indonesia" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "At Once" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/report/price.py:0 -#, python-format -msgid "Hours Cost" -msgstr "" - -#. module: base -#: help:ir.actions.server,condition:0 -msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" -msgstr "" - -#. module: base -#: model:res.country,name:base.bg -msgid "Bulgaria" -msgstr "" - -#. module: base -#: model:res.country,name:base.ao -msgid "Angola" -msgstr "" - -#. module: base -#: model:res.country,name:base.tf -msgid "French Southern Territories" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HELP" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_currency -#: field:res.company,currency_id:0 -#: view:res.currency:0 -#: field:res.currency,name:0 -#: field:res.currency.rate,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: base -#: field:res.partner.canal,name:0 -msgid "Channel Name" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "5. %y, %Y ==> 08, 2008" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "module,type,name,res_id,src,value" -msgstr "" - -#. module: base -#: field:ir.model.fields,model_id:0 -#: field:ir.values,res_id:0 -msgid "Object ID" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Landscape" -msgstr "" - -#. module: base -#: code:addons/addons/project_gtd/wizard/project_gtd_daily.py:0 -#, python-format -msgid "No timebox of the type \"%s\" defined !" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" - -#. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "Wrong Product UOM !" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_administration -msgid "Administration" -msgstr "" - -#. module: base -#: code:addons/addons/delivery/wizard/delivery_sale_order.py:0 -#, python-format -msgid "Order not in draft state !" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Configration Error !" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "You must provide a BVR number\n'\n" -" 'for the bank account: %s' \\n" -" 'on line: %s" -msgstr "" - -#. module: base -#: code:addons/addons/auction/auction.py:0 -#, python-format -msgid "No Invoice Address" -msgstr "" - -#. module: base -#: model:res.country,name:base.ir -msgid "Iran" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,operation:0 -#: field:ir.ui.menu,icon_pict:0 -#: field:wizard.module.lang.export,state:0 -msgid "unknown" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "No bank account defined\n' \\n" -" 'on line: %s" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,res_id:0 -msgid "Resource Ref." -msgstr "" - -#. module: base -#: model:res.country,name:base.ki -msgid "Kiribati" -msgstr "" - -#. module: base -#: model:res.country,name:base.iq -msgid "Iraq" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Action to Launch" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_supplier_form -#: model:ir.ui.menu,name:base.menu_partner_supplier_form -msgid "Suppliers Partners" -msgstr "" - -#. module: base -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Operation is not started yet !" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "CSV File" -msgstr "" - -#. module: base -#: selection:ir.model,state:0 -#: selection:ir.model.grid,state:0 -msgid "Base Object" -msgstr "" - -#. module: base -#: code:addons/addons/odms/portal.py:0 -#, python-format -msgid "This instance is already running the latest version of %s" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_STRIKETHROUGH" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "(year)=" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Dependencies :" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-partner" -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "Bad query." -msgstr "" - -#. module: base -#: field:ir.model.fields,field_description:0 -msgid "Field Label" -msgstr "" - -#. module: base -#: code:addons/addons/odms/portal.py:0 -#, python-format -msgid "unable to find a server with a newer version" -msgstr "" - -#. module: base -#: model:res.country,name:base.dj -msgid "Djibouti" -msgstr "" - -#. module: base -#: field:ir.translation,value:0 -msgid "Translation Value" -msgstr "" - -#. module: base -#: model:res.country,name:base.ag -msgid "Antigua and Barbuda" -msgstr "" - -#. module: base -#: field:ir.actions.server,condition:0 -#: field:ir.report.custom.fields,fc0_condition:0 -#: field:workflow.transition,condition:0 -msgid "Condition" -msgstr "" - -#. module: base -#: code:addons/addons/event_project/wizard/event_task.py:0 -#, python-format -msgid "No project defined for this event.\nYou can create one with the retro-planning button !" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_management -msgid "Modules Management" -msgstr "" - -#. module: base -#: field:ir.model.data,res_id:0 -#: field:ir.translation,res_id:0 -#: field:workflow.instance,res_id:0 -#: field:workflow.triggers,res_id:0 -msgid "Resource ID" -msgstr "" - -#. module: base -#: view:ir.cron:0 -#: field:ir.model,info:0 -#: field:ir.model.grid,info:0 -#: view:maintenance.contract:0 -msgid "Information" -msgstr "" - -#. module: base -#: code:addons/addons/wiki/wizard/open_page.py:0 -#, python-format -msgid "Open Page" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_rml:0 -msgid "RML path" -msgstr "" - -#. module: base -#: field:ir.actions.configuration.wizard,item_id:0 -msgid "Next Configuration Wizard" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Already Reconciled" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,type:0 -#: selection:res.partner.address,type:0 -msgid "Other" -msgstr "" - -#. module: base -#: code:addons/addons/membership/wizard/invoice_membership.py:0 -#, python-format -msgid "No Address defined for this partner" -msgstr "" - -#. module: base -#: selection:ir.server.object.lines,type:0 -msgid "Formula" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Turkish / Türkçe" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import New Language" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_activity_form -#: model:ir.ui.menu,name:base.menu_workflow_activity -#: view:workflow:0 -#: field:workflow,activities:0 -msgid "Activities" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -#: selection:ir.rule,operator:0 -msgid "=" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Second field should be figures" -msgstr "" - -#. module: base -#: code:addons/addons/product/pricelist.py:0 -#, python-format -msgid "No active version for the selected pricelist !\n' \\n" -" 'Please create or activate one." -msgstr "" - -#. module: base -#: field:res.request,trigger_date:0 -msgid "Trigger Date" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_grid_security -#: model:ir.ui.menu,name:base.menu_ir_access_grid -msgid "Access Controls Grid" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_actions -#: model:ir.ui.menu,name:base.menu_custom_action -#: model:ir.ui.menu,name:base.menu_ir_sequence_actions -#: model:ir.ui.menu,name:base.next_id_6 -msgid "Actions" -msgstr "" - -#. module: base -#: selection:res.request,priority:0 -msgid "High" -msgstr "" - -#. module: base -#: field:ir.exports.line,export_id:0 -msgid "Export" -msgstr "" - -#. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Futur Qty" -msgstr "" - -#. module: base -#: help:res.bank,bic:0 -msgid "Bank Identifier Code" -msgstr "" - -#. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#: code:addons/addons/account/account_move_line.py:0 -#: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/account/wizard/wizard_open_closed_fiscalyear.py:0 -#: code:addons/addons/account_analytic_plans/account_analytic_plans.py:0 -#: code:addons/addons/account_analytic_plans/wizard/create_model.py:0 -#: code:addons/addons/account_date_check/account_date_check.py:0 -#: code:addons/addons/auction/wizard/wizard_aie_send.py:0 -#: code:addons/addons/auction/wizard/wizard_aie_send_result.py:0 -#: code:addons/addons/base/ir/ir_actions.py:0 -#: code:addons/addons/base/ir/ir_model.py:0 -#: code:addons/addons/base/maintenance/maintenance.py:0 -#: code:addons/addons/base/module/module.py:0 -#: code:addons/addons/base/res/res_currency.py:0 -#: code:addons/addons/base/res/res_user.py:0 -#: code:addons/addons/base_module_merge/wizard/base_module_merge.py:0 -#: code:addons/addons/base_module_publish/wizard/base_module_publish.py:0 -#: code:addons/addons/base_module_publish/wizard/base_module_publish_all.py:0 -#: code:addons/addons/base_module_publish/wizard/module_zip.py:0 -#: code:addons/addons/base_report_designer/wizard/base_report_designer_modify.py:0 -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#: code:addons/addons/l10n_ch/wizard/bvr_import.py:0 -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#: code:addons/addons/mrp/mrp.py:0 -#: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 -#: code:addons/addons/odms/odms.py:0 -#: code:addons/addons/odms/portal.py:0 -#: code:addons/addons/point_of_sale/pos.py:0 -#: code:addons/addons/point_of_sale/wizard/wizard_pos_payment.py:0 -#: code:addons/addons/proforma_followup/proforma.py:0 -#: code:addons/addons/project/wizard/close_task.py:0 -#: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 -#: code:addons/addons/stock/stock.py:0 -#: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 -#: code:addons/addons/use_control/module.py:0 -#: code:addons/report/custom.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "EXJ" -msgstr "" - -#. module: base -#: model:res.country,name:base.pm -msgid "Saint Pierre and Miquelon" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the field '%s' !" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Programming Error" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/mrp.py:0 -#, python-format -msgid "No supplier defined for this product !" -msgstr "" - -#. module: base -#: field:res.partner.event,document:0 -msgid "Document" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REFRESH" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_STOP" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "No Pricelist !" -msgstr "" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Mon" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "No available server for this offer.\nPlease contact us." -msgstr "" - -#. module: base -#: model:ir.actions.report.xml,name:base.ir_module_reference_print -msgid "Technical guide" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONVERT" -msgstr "" - -#. module: base -#: model:res.country,name:base.tz -msgid "Tanzania" -msgstr "" - -#. module: base -#: code:addons/addons/board/wizard/board_wizard.py:0 -#, python-format -msgid "Please Insert Dashboard View(s) !" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_automatic_reconcile.py:0 -#, python-format -msgid "You must select accounts to reconcile" -msgstr "" - -#. module: base -#: model:res.country,name:base.cx -msgid "Christmas Island" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Other Actions Configuration" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EXECUTE" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_canal-act -#: model:ir.model,name:base.model_res_partner_canal -#: model:ir.ui.menu,name:base.menu_res_partner_canal-act -msgid "Channels" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Schedule for Installation" -msgstr "" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - -#. module: base -#: code:addons/addons/purchase/purchase.py:0 -#, python-format -msgid "You have to select a pricelist in the purchase form !\nPlease set one before choosing a product." -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#: view:res.request:0 -#, python-format -msgid "Send" -msgstr "" - -#. module: base -#: field:ir.translation,src:0 -msgid "Source" -msgstr "" - -#. module: base -#: help:res.partner.address,partner_id:0 -msgid "Keep empty for a private address, not related to partner." -msgstr "" - -#. module: base -#: model:res.country,name:base.vu -msgid "Vanuatu" -msgstr "" - -#. module: base -#: view:res.company:0 -msgid "Internal Header/Footer" -msgstr "" - -#. module: base -#: code:addons/addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." -msgstr "" - -#. module: base -#: code:addons/addons/auction/auction.py:0 -#, python-format -msgid "The Buyer has no Invoice Address." -msgstr "" - -#. module: base -#: wizard_button:module.upgrade,end,config:0 -#: wizard_button:module.upgrade,start,config:0 -msgid "Start configuration" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Catalan / Català" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Partner incomplete" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "July" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COLOR_PICKER" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "You must provide the bank city '\n" -" 'or the bic code for the partner bank: \n %d\n' + \\n" -" 'on line: %s" -msgstr "" - -#. module: base -#: model:res.country,name:base.sa -msgid "Saudi Arabia" -msgstr "" - -#. module: base -#: code:addons/addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "" - -#. module: base -#: help:res.partner,supplier:0 -msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." -msgstr "" - -#. module: base -#: field:ir.model.fields,relation_field:0 -msgid "Relation Field" -msgstr "" - -#. module: base -#: code:addons/addons/project/project.py:0 -#, python-format -msgid "Task '%s' set in progress" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "You must provide ' \\n" -" 'a valid BVR reference number \n' \\n" -" 'for the line: %s" -msgstr "" - -#. module: base -#: field:workflow.triggers,instance_id:0 -msgid "Destination Instance" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,multi:0 -msgid "Action on Multiple Doc." -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "https://translations.launchpad.net/openobject" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "You have to select a pricelist in the sale form !\n' \\n" -" 'Please set one before choosing a product." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title -msgid "Titles" -msgstr "" - -#. module: base -#: code:addons/addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Operation has already started !' 'You can either Pause /Finish/Cancel the operation" -msgstr "" - -#. module: base -#: field:ir.actions.todo,start_date:0 -msgid "Start Date" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_xml:0 -msgid "XML path" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/bvr_import.py:0 -#, python-format -msgid "Recursive mod10 is invalid for reference: %s" -msgstr "" - -#. module: base -#: model:res.country,name:base.gn -msgid "Guinea" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#: code:addons/addons/point_of_sale/wizard/wizard_pos_payment.py:0 -#, python-format -msgid "No order lines defined for this sale." -msgstr "" - -#. module: base -#: code:addons/addons/account/invoice.py:0 -#, python-format -msgid "Bad total !" -msgstr "" - -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_step_user -msgid "Create your users.\n" -"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" -" " -msgstr "" - -#. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "tree_but_action, client_print_multi" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "Pending" -msgstr "" - -#. module: base -#: model:res.country,name:base.sv -msgid "El Salvador" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete a connected backup configuration" -msgstr "" - -#. module: base -#: field:res.bank,phone:0 -#: field:res.partner.address,phone:0 -msgid "Phone" -msgstr "" - -#. module: base -#: code:addons/addons/account/account.py:0 -#, python-format -msgid "\"\"Couldn't create move with currency different from the secondary currency of the account \"%s - %s\". Clear the secondary currency field of the account definition if you want to accept all currencies.\"\"\" % (line.account_id.code, line.account_id.name)))\n" -"\n" -" if abs(amount) < 0.0001:\n" -" if not len(line_draft_ids):\n" -" continue\n" -" self.pool.get('account.move.line" -msgstr "" - -#. module: base -#: field:res.groups,menu_access:0 -msgid "Access Menu" -msgstr "" - -#. module: base -#: model:res.country,name:base.th -msgid "Thailand" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid ">" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "" - -#. module: base -#: code:addons/addons/account_budget/wizard/wizard_budget_report.py:0 -#, python-format -msgid "No Dotations or Master Budget Expenses Found on Budget %s!" -msgstr "" - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "And" -msgstr "" - -#. module: base -#: field:ir.model.fields,relation:0 -msgid "Object Relation" -msgstr "" - -#. module: base -#: code:addons/addons/auction/auction.py:0 -#, python-format -msgid "Missed buyer !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "<" -msgstr "" - -#. module: base -#: model:res.country,name:base.uz -msgid "Uzbekistan" -msgstr "" - -#. module: base -#: code:addons/addons/point_of_sale/pos.py:0 -#, python-format -msgid "Couldn't find a pricelist line matching this product\" \\n" -" \" and quantity.\nYou have to change either the product,\" \\n" -" \" the quantity or the pricelist." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_window" -msgstr "" - -#. module: base -#: model:res.country,name:base.vi -msgid "Virgin Islands (USA)" -msgstr "" - -#. module: base -#: code:addons/addons/crm_profiling/crm_profiling.py:0 -#, python-format -msgid "Questionnaire" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "An account already exists for this email address." -msgstr "" - -#. module: base -#: field:ir.report.custom,field_parent:0 -#: field:ir.ui.view,field_parent:0 -msgid "Child Field" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,usage:0 -#: field:ir.actions.act_window_close,usage:0 -#: field:ir.actions.actions,usage:0 -#: field:ir.actions.report.custom,usage:0 -#: field:ir.actions.report.xml,usage:0 -#: field:ir.actions.server,usage:0 -#: field:ir.actions.wizard,usage:0 -msgid "Action Usage" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_workitem -msgid "workflow.workitem" -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -msgid "Not Installable" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "View :" -msgstr "" - -#. module: base -#: field:ir.model.fields,view_load:0 -msgid "View Auto-Load" -msgstr "" - -#. module: base -#: field:ir.module.module,installed_version:0 -msgid "Latest version" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the Associate Partner and Sale Pricelist fields in the Analytic Account:\n%s" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Write Object" -msgstr "" - -#. module: base -#: field:ir.report.custom,print_format:0 -msgid "Print format" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUMP_TO" -msgstr "" - -#. module: base -#: field:ir.actions.todo,end_date:0 -msgid "End Date" -msgstr "" - -#. module: base -#: field:ir.exports,resource:0 -#: field:ir.property,res_id:0 -msgid "Resource" -msgstr "" - -#. module: base -#: field:maintenance.contract,name:0 -#: field:maintenance.contract.wizard,name:0 -msgid "Contract ID" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "center" -msgstr "" - -#. module: base -#: code:addons/osv/fields.py:0 -#, python-format -msgid "The second argument of the many2many field %s must be a SQL table !'\\n" -" 'You used %s, which is not a valid SQL table name." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_country_state -#: model:ir.ui.menu,name:base.menu_country_state_partner -#: field:maintenance.contract.wizard,state:0 -msgid "States" -msgstr "" - -#. module: base -#: field:ir.actions.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "" - -#. module: base -#: field:ir.attachment,datas_fname:0 -#: field:wizard.module.lang.export,name:0 -msgid "Filename" -msgstr "" - -#. module: base -#: field:ir.model,access_ids:0 -#: field:ir.model.grid,access_ids:0 -msgid "Access" -msgstr "" - -#. module: base -#: model:res.country,name:base.sk -msgid "Slovak Republic" -msgstr "" - -#. module: base -#: model:res.country,name:base.aw -msgid "Aruba" -msgstr "" - -#. module: base -#: model:res.country,name:base.ar -msgid "Argentina" -msgstr "" - -#. module: base -#: field:res.groups,name:0 -msgid "Group Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.bh -msgid "Bahrain" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_12 -msgid "Segmentation" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND" -msgstr "" - -#. module: base -#: code:addons/addons/product/pricelist.py:0 -#, python-format -msgid "Partner section of the product form" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_maintenance_contract_add -#: view:maintenance.contract.wizard:0 -msgid "Add Maintenance Contract" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -#: field:maintenance.contract.module,version:0 -msgid "Version" -msgstr "" - -#. module: base -#: code:addons/addons/mrp/mrp.py:0 -#, python-format -msgid "No BoM defined for this product !" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,limit:0 -#: field:ir.report.custom,limitt:0 -msgid "Limit" -msgstr "" - -#. module: base -#: help:ir.actions.server,wkf_model_id:0 -msgid "Workflow to be executed on this model." -msgstr "" - -#. module: base -#: code:addons/osv/orm.py:0 -#, python-format -msgid "The search method is not implemented on this object !" -msgstr "" - -#. module: base -#: model:res.country,name:base.jm -msgid "Jamaica" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms_invoice.py:0 -#, python-format -msgid "This invoice is not linked to a OnDemand Subscription" -msgstr "" - -#. module: base -#: model:res.country,name:base.az -msgid "Azerbaijan" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#: code:addons/addons/account/wizard/wizard_state_open.py:0 -#: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 -#: code:addons/addons/base/res/partner/partner.py:0 -#: code:addons/addons/delivery/stock.py:0 -#: code:addons/addons/hr_attendance/hr_attendance.py:0 -#: code:addons/addons/odms/wizard/host_status.py:0 -#: code:addons/addons/stock/wizard/inventory_merge.py:0 -#: code:addons/addons/stock/wizard/inventory_merge_zero.py:0 -#: code:addons/addons/wiki/wizard/show_diff.py:0 -#, python-format -msgid "Warning" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Arabic / الْعَرَبيّة" -msgstr "" - -#. module: base -#: code:addons/addons/hr_attendance/wizard/sign_in_out.py:0 -#, python-format -msgid "The Sign-in date must be in the past" -msgstr "" - -#. module: base -#: selection:ir.report.custom,state:0 -msgid "Unsubscribed" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "You must provide ' \\n" -" 'a post number \n' \\n" -" 'for the partner bank: %s\n' \\n" -" 'on line: %s" -msgstr "" - -#. module: base -#: model:res.country,name:base.vg -msgid "Virgin Islands (British)" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PREVIOUS" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sun" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Czech / Čeština" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "" - -#. module: base -#: model:res.country,name:base.rw -msgid "Rwanda" -msgstr "" - -#. module: base -#: constraint:res.partner:0 -msgid "The VAT doesn't seem to be correct." -msgstr "" - -#. module: base -#: code:addons/addons/account/account_analytic_line.py:0 -#, python-format -msgid "There is no expense account defined ' \\n" -" 'for this product: \"%s\" (id:%d)" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Sum" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Day of the week (0:Monday): %(weekday)s" -msgstr "" - -#. module: base -#: model:res.country,name:base.ck -msgid "Cook Islands" -msgstr "" - -#. module: base -#: help:ir.actions.server,mobile:0 -msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" -msgstr "" - -#. module: base -#: field:ir.model.data,noupdate:0 -msgid "Non Updatable" -msgstr "" - -#. module: base -#: model:res.country,name:base.sg -msgid "Singapore" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,target:0 -msgid "Current Window" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Action Source" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NETWORK" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_country -#: field:res.bank,country:0 -#: view:res.country:0 -#: field:res.country.state,country_id:0 -#: field:res.partner,country:0 -#: field:res.partner.address,country_id:0 -#: field:res.partner.bank,country_id:0 -msgid "Country" -msgstr "" - -#. module: base -#: field:ir.model.fields,complete_name:0 -#: field:ir.ui.menu,complete_name:0 -msgid "Complete Name" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "Entry is already reconciled" -msgstr "" - -#. module: base -#: view:ir.report.custom:0 -msgid "Subscribe Report" -msgstr "" - -#. module: base -#: field:ir.values,object:0 -msgid "Is Object" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_15 -msgid "IT sector" -msgstr "" - -#. module: base -#: view:ir.report.custom:0 -msgid "Unsubscribe Report" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "December" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%X - Appropriate time representation." -msgstr "" - -#. module: base -#: view:res.company:0 -msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "" - -#. module: base -#: help:res.lang,grouping:0 -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 "" - -#. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Portrait" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" - -#. module: base -#: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 -#, python-format -msgid "This period is already closed !" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Button" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIRECTORY" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form_new -#: model:ir.ui.menu,name:base.menu_partner_customer_form_new -msgid "New Partner" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_server -msgid "ir.actions.server" -msgstr "" - -#. module: base -#: code:addons/addons/hr_attendance/hr_attendance.py:0 -#, python-format -msgid "You tried to sign in with a date anterior to another event !\nTry to contact the administrator to correct attendances." -msgstr "" - -#. module: base -#: view:ir.actions.report.custom:0 -msgid "Report custom" -msgstr "" - -#. module: base -#: field:ir.actions.configuration.wizard,progress:0 -msgid "Configuration Progress" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_11 -msgid "Configuration Wizards" -msgstr "" - -#. module: base -#: code:addons/addons/crm/crm.py:0 -#, python-format -msgid "You must put a Partner eMail to use this action!" -msgstr "" - -#. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_localisation -msgid "Localisation" -msgstr "" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Simplified Interface" -msgstr "" - -#. module: base -#: model:res.country,name:base.cl -msgid "Chile" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REVERT_TO_SAVED" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "November" -msgstr "" - -#. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Unplanned Qty" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You can not modify an entry in a confirmed timesheet !" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_import -#: model:ir.ui.menu,name:base.menu_wizard_lang_import -msgid "Import a Translation File" -msgstr "" - -#. module: base -#: help:ir.values,model_id:0 -msgid "This field is not used, it only helps you to select a good model." -msgstr "" - -#. module: base -#: field:ir.ui.view,name:0 -msgid "View Name" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Italian / Italiano" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" -msgstr "" - -#. module: base -#: model:res.country,name:base.hr -msgid "Croatia" -msgstr "" - -#. module: base -#: field:ir.actions.server,mobile:0 -msgid "Mobile No" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_by_category -#: model:ir.actions.act_window,name:base.action_partner_category_form -#: model:ir.model,name:base.model_res_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_form -#: view:res.partner.category:0 -msgid "Partner Categories" -msgstr "" - -#. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a5" -msgstr "" - -#. module: base -#: code:addons/addons/hr_attendance/hr_attendance.py:0 -#, python-format -msgid "You tried to sign out with a date anterior to another event !\nTry to contact the administrator to correct attendances." -msgstr "" - -#. module: base -#: model:res.country,name:base.sc -msgid "Seychelles" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank -#: view:res.partner.bank:0 -msgid "Bank Accounts" -msgstr "" - -#. module: base -#: model:res.country,name:base.sl -msgid "Sierra Leone" -msgstr "" - -#. module: base -#: view:res.company:0 -#: view:res.partner:0 -msgid "General Information" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-product" -msgstr "" - -#. module: base -#: model:res.country,name:base.tc -msgid "Turks and Caicos Islands" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "Cannot delete Sheet(s) which are already confirmed !" -msgstr "" - -#. module: base -#: field:res.partner.bank,owner_name:0 -msgid "Account Owner" -msgstr "" - -#. module: base -#: field:workflow,osv:0 -#: field:workflow.instance,res_type:0 -msgid "Resource Object" -msgstr "" - -#. module: base -#: field:ir.cron,function:0 -#: field:res.partner.address,function:0 -#: selection:workflow.activity,kind:0 -msgid "Function" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 -#, python-format -msgid "No address defined \n' \\n" -" 'for the partner: %s\n' \\n" -" 'on line: %s" -msgstr "" - -#. module: base -#: field:ir.attachment,preview:0 -msgid "Image Preview" -msgstr "" - -#. module: base -#: code:addons/addons/stock/product.py:0 -#, python-format -msgid "Produced Qty" -msgstr "" - -#. module: base -#: model:res.country,name:base.yu -msgid "Yugoslavia" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_pvt_ltd -msgid "Corp." -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Choose a language to install:" -msgstr "" - -#. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Cannot modify a captcha" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "February" -msgstr "" - -#. module: base -#: model:res.country,name:base.gw -msgid "Guinea Bissau" -msgstr "" - -#. module: base -#: view:workflow.instance:0 -msgid "Workflow Instances" -msgstr "" - -#. module: base -#: code:addons/addons/base/res/partner/partner.py:0 -#, python-format -msgid "Partners: " -msgstr "" - -#. module: base -#: model:res.country,name:base.kp -msgid "North Korea" -msgstr "" - -#. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "April" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Create Object" -msgstr "" - -#. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "" - -#. module: base -#: code:addons/addons/l10n_be/wizard/account_vat_declaration.py:0 -#: code:addons/addons/l10n_be/wizard/partner_vat_listing.py:0 -#, python-format -msgid "Data Insufficient" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_1 -msgid "Prospect" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Polish / Język polski" -msgstr "" - -#. module: base -#: code:addons/addons/account/account_move_line.py:0 -#, python-format -msgid "No analytic journal !" -msgstr "" - -#. module: base -#: field:ir.exports,name:0 -msgid "Export Name" -msgstr "" - -#. module: base -#: help:res.partner.address,type:0 -msgid "Used to select automatically the right address according to the context in sales and purchases documents." -msgstr "" - -#. module: base -#: code:addons/addons/mrp/mrp.py:0 -#, python-format -msgid "Cannot delete Procurement Order(s) which are in %s State!' % s['state']))\n" -" return osv.osv.unlink(self, cr, uid, unlink_ids, context=context)\n" -"\n" -" def onchange_product_id(self, cr, uid, ids, product_id, context={}):\n" -" if product_id:\n" -" w=self.pool.get('product.product" -msgstr "" - #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Russian / русский язык" +#: view:ir.module.module:0 +msgid "Cancel Install" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Note that this operation my take a few minutes." +msgstr "" + +#. module: base +#: field:ir.model.data,name:0 +msgid "XML Identifier" msgstr "" From b6d53bf08c5a0c7c134b60329ce3c7daec74a26e Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 14 Aug 2009 10:39:00 +0300 Subject: [PATCH 178/251] Merge el_GR translation with template. bzr revid: p_christ@hol.gr-20090814073900-w16qx1rtrer1tktp --- bin/addons/base/i18n/el_GR.po | 153 +++++++++++++++++++--------------- 1 file changed, 88 insertions(+), 65 deletions(-) diff --git a/bin/addons/base/i18n/el_GR.po b/bin/addons/base/i18n/el_GR.po index e39bd5f6042..df2ae02bd34 100644 --- a/bin/addons/base/i18n/el_GR.po +++ b/bin/addons/base/i18n/el_GR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-06-08 21:23:39+0000\n" +"POT-Creation-Date: 2009-08-13 19:05:35+0000\n" "PO-Revision-Date: 2009-07-24 00:40+0300\n" "Last-Translator: P. Christeas \n" "Language-Team: Greek \n" @@ -150,9 +150,11 @@ msgid "Burkina Faso" msgstr "Burkina Faso" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_ASCENDING" -msgstr "STOCK_SORT_ASCENDING" +#: model:ir.actions.act_window,name:base.action_country_state +#: model:ir.ui.menu,name:base.menu_country_state_partner +#, fuzzy +msgid "Fed. States" +msgstr "Νομός" #. module: base #: view:ir.model:0 view:res.groups:0 @@ -189,6 +191,11 @@ msgstr "Ανήκει" msgid "Togo" msgstr "Togo" +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "Τύπος Συμβάντος" + #. module: base #: field:ir.actions.act_window,res_model:0 #: field:ir.actions.report.custom,model:0 field:ir.actions.report.xml,model:0 @@ -216,9 +223,15 @@ msgid "Categories of Modules" msgstr "Κατηγορίες Αρθρωμάτων" #. module: base -#: view:ir.actions.server:0 -msgid "Email Configuration" -msgstr "Ρυθμίσεις Email " +#: help:ir.actions.server,expression:0 +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 "" +"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`." #. module: base #: model:res.country,name:base.cc @@ -256,8 +269,8 @@ msgstr "Header/Footer" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" -msgstr "STOCK_ZOOM_100" +msgid "STOCK_MEDIA_PAUSE" +msgstr "STOCK_MEDIA_PAUSE" #. module: base #: model:res.country,name:base.ru @@ -700,9 +713,9 @@ msgid "Connect Events to Actions" msgstr "Σύνδεση Συνβάντων με Ενέργειες" #. module: base -#: field:res.partner.event,type:0 -msgid "Type of Event" -msgstr "Τύπος Συμβάντος" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_ASCENDING" +msgstr "STOCK_SORT_ASCENDING" #. module: base #: selection:maintenance.contract,state:0 @@ -1031,6 +1044,11 @@ msgstr "" "κενό αν δεν επιθυμείτε να αποθηκεύετε τις εκτυπώσεις αναφορών. Μπορείτε να " "χρησιμοποιήσετε μια έκφραση python με τις παραμέτρους object και time." +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "Χρονοδιάγραμμα" + #. module: base #: constraint:ir.model:0 msgid "" @@ -1095,9 +1113,10 @@ msgid "Menu :" msgstr "Menu :" #. module: base -#: field:ir.actions.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Επόμενος Αυτόματος Οδηγός" +#: help:ir.rule.group,global:0 +#, fuzzy +msgid "Make the rule global, otherwise it needs to be put on a group" +msgstr "Θέστε τον κανόνα ως γενικό αλλιώς ορίστε τον σε μια ομάδα ή χρήστη" #. module: base #: view:ir.values:0 @@ -1175,9 +1194,9 @@ msgid "Action to Trigger" msgstr "Ενέργεια προς Εκκίνηση" #. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" -msgstr "Χρονοδιάγραμμα" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" +msgstr "STOCK_ZOOM_100" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2151,9 +2170,9 @@ msgid "Work Days" msgstr "Ημέρες Εργασίας" #. module: base -#: model:ir.model,name:base.model_res_roles -msgid "res.roles" -msgstr "res.roles" +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "Εξάρτηση Αρθρωμάτων" #. module: base #: help:ir.cron,priority:0 @@ -2938,7 +2957,7 @@ msgid "Iraq" msgstr "Iraq" #. module: base -#: view:ir.attachment:0 field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" msgstr "Δεδομένα" @@ -3210,9 +3229,8 @@ msgid "Source Activity" msgstr "Πηγή Δράσης" #. module: base -#: field:ir.attachment,res_id:0 field:ir.model.data,res_id:0 -#: field:ir.translation,res_id:0 field:workflow.instance,res_id:0 -#: field:workflow.triggers,res_id:0 +#: field:ir.model.data,res_id:0 field:ir.translation,res_id:0 +#: field:workflow.instance,res_id:0 field:workflow.triggers,res_id:0 msgid "Resource ID" msgstr "Αριθμός Πόρου" @@ -3774,6 +3792,11 @@ msgstr "ΤΚ" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "Συνημμένη ID" + #. module: base #: model:res.country,name:base.uz msgid "Uzbekistan" @@ -4063,9 +4086,9 @@ msgstr "" "αντικειμένου, π.χ. 'Αγαπητέ [[ object.partner_id.name ]]'" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "STOCK_MEDIA_PAUSE" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "Συνδεδεμένο Μοντέλο" #. module: base #: field:res.partner.bank,state:0 @@ -4073,6 +4096,11 @@ msgstr "STOCK_MEDIA_PAUSE" msgid "Bank Type" msgstr "Τύπος Τράπεζας" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "fi_FI" +msgstr "" + #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -4471,7 +4499,6 @@ msgstr "Ημερ/νία Εκκίνησης" #. module: base #: model:ir.actions.act_window,name:base.action_partner_address_form #: model:ir.model,name:base.model_res_partner_address -#: model:ir.ui.menu,name:base.menu_partner_address_form #: view:res.partner.address:0 msgid "Partner Addresses" msgstr "Διευθύνσεις Συνεργάτη" @@ -4498,6 +4525,11 @@ msgstr "STOCK_PROPERTIES" msgid "Somalia" msgstr "Somalia" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "Περιεχόμενα Φακέλου" + #. module: base #: model:res.partner.title,name:base.res_partner_title_sir msgid "Sir" @@ -4518,6 +4550,11 @@ msgstr "Guinea" msgid "Panama" msgstr "Panama" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Indonesian / Bahasa Indonesia" +msgstr "" + #. module: base #: model:res.country,name:base.lu msgid "Luxembourg" @@ -4815,15 +4852,9 @@ msgid "Force Domain" msgstr "Επιβολή Τομέα" #. module: base -#: help:ir.actions.server,expression:0 -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 "" -"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`." +#: view:ir.actions.server:0 +msgid "Email Configuration" +msgstr "Ρυθμίσεις Email " #. module: base #: model:ir.model,name:base.model_ir_cron @@ -5018,11 +5049,6 @@ msgstr "Estonian / Eesti keel" msgid "Menus" msgstr "Μενού" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group or user" -msgstr "Θέστε τον κανόνα ως γενικό αλλιώς ορίστε τον σε μια ομάδα ή χρήστη" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GO_UP" @@ -5350,8 +5376,6 @@ msgid "The rate of the currency to the currency of rate 1" msgstr "Ισοτιμία νομίσματος" #. module: base -#: model:ir.actions.act_window,name:base.action_country_state -#: model:ir.ui.menu,name:base.menu_country_state_partner #: field:maintenance.contract.wizard,state:0 msgid "States" msgstr "Καταστάσεις" @@ -5455,6 +5479,11 @@ msgstr "Κατάσταση" msgid "Report Xml" msgstr "Αναφορά Xml" +#. module: base +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "Επόμενος Αυτόματος Οδηγός" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_partner #: model:ir.ui.menu,name:base.menu_partner_title_partner @@ -5756,6 +5785,11 @@ msgstr "Kazakhstan" msgid "Azerbaijan" msgstr "Azerbaijan" +#. module: base +#: model:ir.model,name:base.model_res_roles +msgid "res.roles" +msgstr "res.roles" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -6299,9 +6333,9 @@ msgid "closed" msgstr "κλειστά" #. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -msgid "Module dependency" -msgstr "Εξάρτηση Αρθρωμάτων" +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." +msgstr "Σφάλμα! Υπάρχει ήδη ίδια περιγραφή συνδεδεμένου μέλους." #. module: base #: selection:ir.report.custom.fields,alignment:0 @@ -6798,8 +6832,7 @@ msgid "Arguments" msgstr "Arguments" #. module: base -#: field:ir.attachment,res_model:0 field:workflow,osv:0 -#: field:workflow.instance,res_type:0 +#: field:workflow,osv:0 field:workflow.instance,res_type:0 msgid "Resource Object" msgstr "Αντικείμενο-Πόρος" @@ -7057,6 +7090,11 @@ msgstr "Μήνας: %(month)s" msgid "Sales & Purchases" msgstr "Πωλήσεις & Αγορές" +#. module: base +#: model:ir.ui.menu,name:base.menu_partner_address_form +msgid "Addresses" +msgstr "Διευθύνσεις" + #. module: base #: model:res.country,name:base.mm msgid "Myanmar" @@ -7226,9 +7264,6 @@ msgstr "XML Identifier" #~ msgid "The search method is not implemented on this object !" #~ msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" -#~ msgid "Attached ID" -#~ msgstr "Συνημμένη ID" - #~ msgid "You can not read this document! (%s)" #~ msgstr "Δεν μπορείτε να διαβάσετε αυτό το έγγραφο! (%s)" @@ -7240,9 +7275,6 @@ msgstr "XML Identifier" #~ "απεγκαταστήσετε:\n" #~ " %s" -#~ msgid "Attached Model" -#~ msgstr "Συνδεδεμένο Μοντέλο" - #~ msgid "Can not remove root user!" #~ msgstr "Can not remove root user!" @@ -7389,9 +7421,6 @@ msgstr "XML Identifier" #~ msgid "Macedonia" #~ msgstr "F.Y.R.O.M." -#~ msgid "Addresses" -#~ msgstr "Διευθύνσεις" - #~ msgid "Records were modified in the meanwhile" #~ msgstr "Οι εγγραφές έχουν τροποποιηθεί στο μεταξύ" @@ -7447,9 +7476,6 @@ msgstr "XML Identifier" #~ msgid "This method does not exist anymore" #~ msgstr "Αυτή η μέθοδος δε χρησιμοποιείται πια" -#~ msgid "File Content" -#~ msgstr "Περιεχόμενα Φακέλου" - #~ msgid "%A - Full weekday name." #~ msgstr "%A - Πλήρες όνομα ημέρας εβδομάδας" @@ -7465,9 +7491,6 @@ msgstr "XML Identifier" #~ msgid "Field %d should be a figure" #~ msgstr "Το πεδίο %d πρέπει να έιναι αριθμός" -#~ msgid "Error ! You can not create recursive associated members." -#~ msgstr "Σφάλμα! Υπάρχει ήδη ίδια περιγραφή συνδεδεμένου μέλους." - #~ msgid "OpenERP Partners" #~ msgstr "Συνεργάτες OpenERP " From 0ff75639d8fe261723e19b2080c36aeaf9826f68 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 14 Aug 2009 10:44:55 +0300 Subject: [PATCH 179/251] Remove base_setup/i18n/el_GR.po, module is moved to addons repo. bzr revid: p_christ@hol.gr-20090814074455-ml6zmuqvkdy3mn7o --- bin/addons/base_setup/i18n/el_GR.po | 284 ---------------------------- 1 file changed, 284 deletions(-) delete mode 100644 bin/addons/base_setup/i18n/el_GR.po diff --git a/bin/addons/base_setup/i18n/el_GR.po b/bin/addons/base_setup/i18n/el_GR.po deleted file mode 100644 index 49b75785f99..00000000000 --- a/bin/addons/base_setup/i18n/el_GR.po +++ /dev/null @@ -1,284 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_setup -# -# P. Christeas , 2009. -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:20:38+0000\n" -"PO-Revision-Date: 2009-06-09 02:47+0300\n" -"Last-Translator: P. Christeas \n" -"Language-Team: Greek \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" -"X-Generator: Lokalize 0.3\n" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,city:0 -#: wizard_field:base_setup.base_setup,init,city:0 -#: wizard_field:base_setup.base_setup,update,city:0 -msgid "City" -msgstr "Πόλη" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,finish:0 -msgid "" -"You can start configuring the system or connect directly to the database " -"using the default setup." -msgstr "" -"Μπορείτε να ξεκινήσετε τις ρυθμίσεις του συστήματος ή να συνδεθείτε απ' " -"ευθείας με τη βάση δεδομένων χρησιμοποιώντας προεπιλεγμένες ρυθμίσεις." - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,zip:0 -#: wizard_field:base_setup.base_setup,init,zip:0 -#: wizard_field:base_setup.base_setup,update,zip:0 -msgid "Zip code" -msgstr "Ταχ. Κώδικας" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,init:0 -msgid "Select a Profile" -msgstr "Επιλογή Προφίλ" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -msgid "Report header" -msgstr "Κεφαλίδα Αναφορών" - -#. module: base_setup -#: wizard_button:base_setup.base_setup,finish,config:0 -msgid "Start Configuration" -msgstr "Εκκίνηση Ρυθμίσεων" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,init:0 -msgid "" -"You'll be able to install more modules later through the Administration menu." -msgstr "" -"θα μπορέσετε να εγκαταστήσετε περισσότερα αρθρώματα του προγράμματος " -"αργότερα, από το μενού της Διαχείρισης." - -#. module: base_setup -#: wizard_view:base_setup.base_setup,init:0 -msgid "" -"A profile sets a pre-selection of modules for specific needs. These profiles " -"have been setup to help you discover the different aspects of OpenERP. This " -"is just an overview, we have 300+ available modules." -msgstr "" -"Το προφίλ ορίζει μια προεπιλογή αρθρωμάτων για συγκεκριμένες ανάγκες. Αυτά " -"τα προφίλ έχουν δημιουργηθεί για να σας βοηθήσουν να ανακαλύψετε διαφορετικά " -"κομμάτια του OpenERP. Αυτό είναι μόνο μια γενική επισκόπηση, υπάρχουν πάνω " -"από 300 αρθρώματα του προγράμματος. " - -#. module: base_setup -#: wizard_button:base_setup.base_setup,company,update:0 -#: wizard_button:base_setup.base_setup,init,company:0 -msgid "Next" -msgstr "Επόμενο" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,email:0 -#: wizard_field:base_setup.base_setup,init,email:0 -#: wizard_field:base_setup.base_setup,update,email:0 -msgid "E-mail" -msgstr "E-mail" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,state_id:0 -#: wizard_field:base_setup.base_setup,init,state_id:0 -#: wizard_field:base_setup.base_setup,update,state_id:0 -msgid "State" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,finish:0 -msgid "Your new database is now fully installed." -msgstr "Η νέα βάση δεδομένων σας εγκαταστάθηκε πλήρως." - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,profile:0 -#: wizard_field:base_setup.base_setup,init,profile:0 -#: wizard_field:base_setup.base_setup,update,profile:0 -msgid "Profile" -msgstr "Προφίλ" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,rml_footer1:0 -#: wizard_field:base_setup.base_setup,init,rml_footer1:0 -#: wizard_field:base_setup.base_setup,update,rml_footer1:0 -msgid "Report Footer 1" -msgstr "Υποσέλιδο Αναφορών 1" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,rml_footer2:0 -#: wizard_field:base_setup.base_setup,init,rml_footer2:0 -#: wizard_field:base_setup.base_setup,update,rml_footer2:0 -msgid "Report Footer 2" -msgstr "Υποσέλιδο Αναφορών 2" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -msgid "General Information" -msgstr "Γενικές Πληροφορίες" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,street2:0 -#: wizard_field:base_setup.base_setup,init,street2:0 -#: wizard_field:base_setup.base_setup,update,street2:0 -msgid "Street2" -msgstr "Οδός 2" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "Ορισμός Κύριας Εταιρείας" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,phone:0 -#: wizard_field:base_setup.base_setup,init,phone:0 -#: wizard_field:base_setup.base_setup,update,phone:0 -msgid "Phone" -msgstr "Τηλέφωνο" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "Πληροφορίες Αναφορών" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,name:0 -#: wizard_field:base_setup.base_setup,init,name:0 -#: wizard_field:base_setup.base_setup,update,name:0 -msgid "Company Name" -msgstr "Όνομα Εταιρείας" - -#. module: base_setup -#: help:base_setup.base_setup,company,rml_footer2:0 -#: help:base_setup.base_setup,init,rml_footer2:0 -#: help:base_setup.base_setup,update,rml_footer2:0 -msgid "" -"This sentence will appear at the bottom of your reports.\n" -"We suggest you to put bank information here:\n" -"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" -msgstr "" -"Αυτή η πρόταση θα εμφανίζεται στο κάτω μέρος των αναφορών σας.\n" -"Σας προτείνουμε να βάλετε εδώ τις οικονομικές πληροφορίες:\n" -"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - ΑΦΜ: BE0477.472.701" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,country_id:0 -#: wizard_field:base_setup.base_setup,init,country_id:0 -#: wizard_field:base_setup.base_setup,update,country_id:0 -msgid "Country" -msgstr "Χώρα" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -#: wizard_view:base_setup.base_setup,finish:0 -#: wizard_view:base_setup.base_setup,init:0 -#: wizard_view:base_setup.base_setup,update:0 -#: model:ir.actions.wizard,name:base_setup.action_wizard_setup -#: model:ir.actions.wizard,name:base_setup.wizard_base_setup -msgid "Setup" -msgstr "Εγκατάσταση" - -#. module: base_setup -#: help:base_setup.base_setup,company,rml_footer1:0 -#: help:base_setup.base_setup,init,rml_footer1:0 -#: help:base_setup.base_setup,update,rml_footer1:0 -msgid "" -"This sentence will appear at the bottom of your reports.\n" -"We suggest you to write legal sentences here:\n" -"Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" -msgstr "" -"Αυτή η πρόταση θα εμφανίζεται στο κάτω μέρος των αναφορών σας.\n" -"Σας προτείνουμε να βάλετε εδώ νομικές πληροφορίες:\n" -"Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,update:0 -msgid "Summary" -msgstr "Περίληψη" - -#. module: base_setup -#: wizard_button:base_setup.base_setup,update,finish:0 -msgid "Install" -msgstr "Εγκατάσταση" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,finish:0 -msgid "Installation Done" -msgstr "Η Εγκατάσταση ολοκληρώθηκε" - -#. module: base_setup -#: help:base_setup.base_setup,company,rml_header1:0 -#: help:base_setup.base_setup,init,rml_header1:0 -#: help:base_setup.base_setup,update,rml_header1:0 -msgid "" -"This sentence will appear at the top right corner of your reports.\n" -"We suggest you to put a slogan here:\n" -"\"Open Source Business Solutions\"." -msgstr "" -"Αυτή η πρόταση θα εμφανίζεται στο πάνω δεξιά μέρος των αναφορών σας.\n" -"Σας προτείνουμε να βάλετε ένα σλόγκαν εδώ:\n" -"\"Open Source Business Solutions\"." - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,rml_header1:0 -#: wizard_field:base_setup.base_setup,init,rml_header1:0 -#: wizard_field:base_setup.base_setup,update,rml_header1:0 -msgid "Report Header" -msgstr "Κεφαλίδα Αναφοράς" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "Το λογότυπό σας: αρχείο μεγέθους 450x150 pixels." - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,currency:0 -#: wizard_field:base_setup.base_setup,init,currency:0 -#: wizard_field:base_setup.base_setup,update,currency:0 -msgid "Currency" -msgstr "Νόμισμα" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,street:0 -#: wizard_field:base_setup.base_setup,init,street:0 -#: wizard_field:base_setup.base_setup,update,street:0 -msgid "Street" -msgstr "Οδός" - -#. module: base_setup -#: wizard_button:base_setup.base_setup,finish,menu:0 -msgid "Use Directly" -msgstr "Άμεση Χρήση " - -#. module: base_setup -#: wizard_button:base_setup.base_setup,init,menu:0 -msgid "Cancel" -msgstr "Ακύρωση" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,logo:0 -#: wizard_field:base_setup.base_setup,init,logo:0 -#: wizard_field:base_setup.base_setup,update,logo:0 -msgid "Logo" -msgstr "Λογότυπο" - -#. module: base_setup -#: model:ir.module.module,shortdesc:base_setup.module_meta_information -msgid "Base Setup" -msgstr "Εγκατάσταση Βασικών Ρυθμίσεων" - -#. module: base_setup -#: wizard_button:base_setup.base_setup,company,init:0 -#: wizard_button:base_setup.base_setup,update,company:0 -msgid "Previous" -msgstr "Προηγούμενο" - From 75e9560f9c7fb4e00cf9858d8964729a17d01d30 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 14 Aug 2009 12:21:06 +0300 Subject: [PATCH 180/251] Config: misc options. Logger: option to turn env_info off. With this patch, config manager will parse the other sections of the config file and store them, so that modules can use arbitrary options. This is useful for modules that need to be globally configured before any db is used. (eg. WebDAV server host/port) Usage: param = tools.config.get_misc('section','opt_name'[,"default"]) bzr revid: p_christ@hol.gr-20090814092106-px46tg15g3vcsf2g --- bin/netsvc.py | 2 +- bin/tools/config.py | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 8123db83d47..6894ea7d1da 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -173,7 +173,7 @@ class Logger(object): msg = tools.exception_to_unicode(msg) try: - if level in (LOG_ERROR,LOG_CRITICAL): + if level in (LOG_ERROR,LOG_CRITICAL) and tools.config.get_misc('debug','env_info',True): msg = common().get_server_environment() + msg result = tools.ustr(msg).strip().split('\n') diff --git a/bin/tools/config.py b/bin/tools/config.py index 2c83a3c464f..3e9bcf2f7eb 100644 --- a/bin/tools/config.py +++ b/bin/tools/config.py @@ -81,6 +81,8 @@ class configmanager(object): 'cache_timeout': 100000, 'login_message': False, } + + self.misc = {} hasSSL = check_ssl() @@ -337,6 +339,18 @@ class configmanager(object): if value=='False' or value=='false': value = False self.options[name] = value + #parse the other sections, as well + for sec in p.sections(): + if sec == 'options': + continue + if not self.misc.has_key(sec): + self.misc[sec]= {} + for (name, value) in p.items(sec): + if value=='True' or value=='true': + value = True + if value=='False' or value=='false': + value = False + self.misc[sec][name] = value except IOError: pass except ConfigParser.NoSectionError: @@ -353,6 +367,10 @@ class configmanager(object): p.set('options', opt, loglevelnames.get(self.options[opt], self.options[opt])) else: p.set('options', opt, self.options[opt]) + + for sec in self.misc.keys(): + for opt in self.misc[sec].keys(): + p.set(sec,opt,self.misc[sec][opt]) # try to create the directories and write the file try: @@ -371,6 +389,9 @@ class configmanager(object): def get(self, key, default=None): return self.options.get(key, default) + def get_misc(self, sect, key, default=None): + return self.misc.get(sect,{}).get(key, default) + def __setitem__(self, key, value): self.options[key] = value From 00d15e79fe6a6fe5fd2e3949584a7f4e3d8ede4d Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 14 Aug 2009 13:18:22 +0300 Subject: [PATCH 181/251] [IMP]: allow Log level to be changed in runtime. Export an RPC method and let a simple client change the log level. This helps when we want to debug the server without restarting it. bzr revid: p_christ@hol.gr-20090814101822-pu2ed3249b6m30v8 --- bin/netsvc.py | 6 ++++++ bin/service/web_services.py | 7 +++++++ change-loglevel.sh | 24 ++++++++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100755 change-loglevel.sh diff --git a/bin/netsvc.py b/bin/netsvc.py index 6894ea7d1da..b60546ce054 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -193,6 +193,12 @@ class Logger(object): # better ignore the exception and carry on.. pass + def set_loglevel(self, level): + log = logging.getLogger() + log.setLevel(logging.INFO) # make sure next msg is printed + log.info("Log level changed to %s" % logging.getLevelName(level)) + log.setLevel(level) + def shutdown(self): logging.shutdown() diff --git a/bin/service/web_services.py b/bin/service/web_services.py index 46a66594162..6bb6989ef8e 100644 --- a/bin/service/web_services.py +++ b/bin/service/web_services.py @@ -375,6 +375,7 @@ class common(netsvc.Service): self.exportMethod(self.get_migration_scripts) self.exportMethod(self.get_server_environment) self.exportMethod(self.login_message) + self.exportMethod(self.set_loglevel) def ir_set(self, db, uid, password, keys, args, name, value, replace=True, isobject=False): security.check(db, uid, password) @@ -561,6 +562,12 @@ GNU Public Licence. def login_message(self): return tools.config.get('login_message', False) + def set_loglevel(self, password, loglevel): + security.check_super(password) + l = netsvc.Logger() + l.set_loglevel(int(loglevel)) + return True + common() class objects_proxy(netsvc.Service): diff --git a/change-loglevel.sh b/change-loglevel.sh new file mode 100755 index 00000000000..cb325435a1a --- /dev/null +++ b/change-loglevel.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +ADMIN_PASSWD='admin' +method_1() { + cat '-' << EOF + + + set_loglevel + + $ADMIN_PASSWD + + + $1 + + + +EOF +} +LEVEL=10 + +if [ -n "$1" ] ; then LEVEL=$1 ; fi + +method_1 $LEVEL | POST -c 'text/xml' http://localhost:8069/xmlrpc/common +#eof From e571324ab33939ce9f4fc2e02108d6ae36438315 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 14 Aug 2009 19:01:11 +0300 Subject: [PATCH 182/251] Introduce 'debug2' loglevel, use it for SQL Sometimes we want to debug SQL, not always though. bzr revid: p_christ@hol.gr-20090814160111-fhw1j4jmx94t2hjv --- bin/netsvc.py | 9 ++++++++- bin/sql_db.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index b60546ce054..ab8fcec4bc8 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -78,13 +78,15 @@ def service_exist(name): LOG_NOTSET = 'notset' LOG_DEBUG_RPC = 'debug_rpc' LOG_DEBUG = 'debug' +LOG_DEBUG2 = 'debug2' LOG_INFO = 'info' LOG_WARNING = 'warn' LOG_ERROR = 'error' LOG_CRITICAL = 'critical' # add new log level below DEBUG -logging.DEBUG_RPC = logging.DEBUG - 1 +logging.DEBUG2 = logging.DEBUG - 1 +logging.DEBUG_RPC = logging.DEBUG2 - 1 def init_logger(): import os @@ -144,6 +146,7 @@ def init_logger(): mapping = { 'DEBUG_RPC': ('blue', 'white'), + 'DEBUG2': ('green', 'white'), 'DEBUG': ('blue', 'default'), 'INFO': ('green', 'default'), 'WARNING': ('yellow', 'default'), @@ -163,6 +166,10 @@ class Logger(object): log = logging.getLogger(tools.ustr(name)) + if level == LOG_DEBUG2 and not hasattr(log, level): + fct = lambda msg, *args, **kwargs: log.log(logging.DEBUG2, msg, *args, **kwargs) + setattr(log, LOG_DEBUG2, fct) + if level == LOG_DEBUG_RPC and not hasattr(log, level): fct = lambda msg, *args, **kwargs: log.log(logging.DEBUG_RPC, msg, *args, **kwargs) setattr(log, LOG_DEBUG_RPC, fct) diff --git a/bin/sql_db.py b/bin/sql_db.py index edf9a2aeaec..85bd6fc88d9 100644 --- a/bin/sql_db.py +++ b/bin/sql_db.py @@ -55,7 +55,7 @@ from mx import DateTime as mdt re_from = re.compile('.* from "?([a-zA-Z_0-9]+)"? .*$'); re_into = re.compile('.* into "?([a-zA-Z_0-9]+)"? .*$'); -def log(msg, lvl=netsvc.LOG_DEBUG): +def log(msg, lvl=netsvc.LOG_DEBUG2): logger = netsvc.Logger() logger.notifyChannel('sql', lvl, msg) From 969ea54ee67ed6f5fd5171db46b8b9b52ee634d9 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 14 Aug 2009 20:41:51 +0300 Subject: [PATCH 183/251] Update debian/changelog bzr revid: p_christ@hol.gr-20090814174151-8pp8a4v9331dlfm3 --- debian/changelog | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/debian/changelog b/debian/changelog index d4f63d124cf..91bb6923ed7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,21 @@ +openerp-server (5.0.3-0-1ubuntu1) intrepid; urgency=low + + [ P. Christeas ] + * Introduce 'debug2' loglevel, use it for SQL + + [ Christophe Simonis ] + * [IMP] change version number + + [ P. Christeas ] + * [IMP]: allow Log level to be changed in runtime. + * Config: misc options. Logger: option to turn env_info off. + * Remove base_setup/i18n/el_GR.po, module is moved to addons repo. + * Merge el_GR translation with template. + * Update translation template. + * Fix +x permission of openerp-server.py + + -- Panos Christeas Fri, 14 Aug 2009 20:40:29 +0300 + openerp-server (5.0.2-0-1ubuntu2) intrepid; urgency=critical [ P. Christeas ] From 1e0de079ac4783434cb82158336a9cd3eb901363 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 23 Aug 2009 20:46:49 +0300 Subject: [PATCH 184/251] Minor improvement in poolJobs debug string. bzr revid: p_christ@hol.gr-20090823174649-inkws3li8qiben21 --- bin/netsvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index dfaabe4d362..c4194e3024e 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -220,7 +220,7 @@ class Agent(object): def setAlarm(self, fn, dt, db_name, *args, **kwargs): wait = dt - time.time() if wait > 0: - self._logger.notifyChannel('timers', LOG_DEBUG, "Job scheduled in %s seconds for %s.%s" % (wait, fn.im_class.__name__, fn.func_name)) + self._logger.notifyChannel('timers', LOG_DEBUG, "Job scheduled in %.3g seconds for %s.%s" % (wait, fn.im_class.__name__, fn.func_name)) timer = threading.Timer(wait, fn, args, kwargs) timer.start() self._timers.setdefault(db_name, []).append(timer) From ba695ae69bcf71b9ddf3ee2254eb7eccd52b7788 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:04 +0300 Subject: [PATCH 185/251] Rediffing autobuild.patch (Closes: #538625). bzr revid: p_christ@hol.gr-20090824180204-rolra3isj5bi54im --- debian/patches/01-autobuild.patch | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/debian/patches/01-autobuild.patch b/debian/patches/01-autobuild.patch index eb1fb1e2d79..abdd197247b 100644 --- a/debian/patches/01-autobuild.patch +++ b/debian/patches/01-autobuild.patch @@ -2,14 +2,14 @@ Author: Daniel Baumann Description: Disable modules check to make it buildable without X11. diff -Naurp openerp-server.orig/setup.py openerp-server/setup.py ---- openerp-server.orig/setup.py 2008-11-03 21:33:56.000000000 +0000 -+++ openerp-server/setup.py 2008-11-09 09:00:02.000000000 +0000 -@@ -133,7 +133,7 @@ def data_files(): - files.append(('.', [('bin/import_xml.rng')])) +--- openerp-server.orig/setup.py 2009-06-08 15:51:20.000000000 +0000 ++++ openerp-server/setup.py 2009-07-26 10:27:49.000000000 +0000 +@@ -121,7 +121,7 @@ def data_files(): + return files -check_modules() +#check_modules() - # create startup script - start_script = \ + f = file('openerp-server','w') + start_script = """#!/bin/sh\necho "OpenERP Setup - The content of this file is generated at the install stage\n" """ From 4aca0707bda557c5e9113b026ed2cc21cc63a1b6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:04 +0300 Subject: [PATCH 186/251] Upgrading package to standards version 3.8.2. bzr revid: p_christ@hol.gr-20090824180204-1gh7s84i7mhcoh9e --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 062da5bbff2..410967e2873 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Daniel Baumann Build-Depends: debhelper (>= 7), quilt, python-dev Build-Depends-Indep: python-lxml, python-xml, python-libxslt1, python-psycopg2 -Standards-Version: 3.8.1 +Standards-Version: 3.8.2 Homepage: http://www.openerp.com/ Vcs-Browser: http://git.debian.net/?p=debian/openerp-server.git Vcs-Git: git://git.debian.net/git/debian/openerp-server.git From 1b08b512c3e63a7ce78fd72a99a83d1439028785 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:04 +0300 Subject: [PATCH 187/251] Managing setup of unprivileged user account with debconf. bzr revid: p_christ@hol.gr-20090824180204-xko5qa7welktg9gs --- debian/control | 2 +- debian/openerp-server.config | 10 ++++++++ debian/openerp-server.examples | 1 + debian/openerp-server.postinst | 28 ++++++++++++++++------ debian/openerp-server.postrm | 36 +++++++++++++++++++++++++---- debian/openerp-server.preseed | 5 ++++ debian/openerp-server.templates | 9 ++++++++ debian/po/POTFILES.in | 1 + debian/po/cs.po | 39 +++++++++++++++++++++++++++++++ debian/po/de.po | 39 +++++++++++++++++++++++++++++++ debian/po/es.po | 40 ++++++++++++++++++++++++++++++++ debian/po/fi.po | 40 ++++++++++++++++++++++++++++++++ debian/po/fr.po | 37 +++++++++++++++++++++++++++++ debian/po/gl.po | 40 ++++++++++++++++++++++++++++++++ debian/po/it.po | 39 +++++++++++++++++++++++++++++++ debian/po/ja.po | 37 +++++++++++++++++++++++++++++ debian/po/pt.po | 39 +++++++++++++++++++++++++++++++ debian/po/ru.po | 41 +++++++++++++++++++++++++++++++++ debian/po/sv.po | 39 +++++++++++++++++++++++++++++++ debian/po/templates.pot | 37 +++++++++++++++++++++++++++++ debian/po/zh_CN.po | 37 +++++++++++++++++++++++++++++ debian/rules | 20 +++++++++++++++- 22 files changed, 602 insertions(+), 14 deletions(-) create mode 100644 debian/openerp-server.config create mode 100644 debian/openerp-server.examples create mode 100644 debian/openerp-server.preseed create mode 100644 debian/openerp-server.templates create mode 100644 debian/po/POTFILES.in create mode 100644 debian/po/cs.po create mode 100644 debian/po/de.po create mode 100644 debian/po/es.po create mode 100644 debian/po/fi.po create mode 100644 debian/po/fr.po create mode 100644 debian/po/gl.po create mode 100644 debian/po/it.po create mode 100644 debian/po/ja.po create mode 100644 debian/po/pt.po create mode 100644 debian/po/ru.po create mode 100644 debian/po/sv.po create mode 100644 debian/po/templates.pot create mode 100644 debian/po/zh_CN.po diff --git a/debian/control b/debian/control index 410967e2873..cfce70f261b 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: openerp-server Section: net Priority: optional Maintainer: Daniel Baumann -Build-Depends: debhelper (>= 7), quilt, python-dev +Build-Depends: debhelper (>= 7), quilt, po-debconf, python-dev Build-Depends-Indep: python-lxml, python-xml, python-libxslt1, python-psycopg2 Standards-Version: 3.8.2 Homepage: http://www.openerp.com/ diff --git a/debian/openerp-server.config b/debian/openerp-server.config new file mode 100644 index 00000000000..cf081ab3861 --- /dev/null +++ b/debian/openerp-server.config @@ -0,0 +1,10 @@ +#!/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.examples b/debian/openerp-server.examples new file mode 100644 index 00000000000..c7f075ec127 --- /dev/null +++ b/debian/openerp-server.examples @@ -0,0 +1 @@ +debian/openerp-server.preseed diff --git a/debian/openerp-server.postinst b/debian/openerp-server.postinst index a7854521e5b..0a4047d7ef8 100644 --- a/debian/openerp-server.postinst +++ b/debian/openerp-server.postinst @@ -2,25 +2,39 @@ set -e -USER="openerp" +. /usr/share/debconf/confmodule + CONFFILE="/etc/openerp-server.conf" LOGFILE="/var/log/openerp.log" case "${1}" in configure) - # Creating system user - adduser --no-create-home --quiet --system ${USER} + 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 'OpenERP server' --group ${_USERNAME} + else + echo "OpenERP user (${_USERNAME}) already exists, doing nothing." + fi + + sed -i -e "s|^process_user.*$|process_user = ${_USERNAME}|" ${CONFFILE} # Creating log file touch ${LOGFILE} - chown ${USER}:adm ${LOGFILE} + chown ${_USERNAME}:adm ${LOGFILE} chmod 0640 ${LOGFILE} - # Setting ownership - chown ${USER} /usr/lib/openerp-server/addons -R + # Setting ownership and permissions + chown ${_USERNAME} /usr/lib/openerp-server/addons -R chmod 0640 ${CONFFILE} - chown ${USER} ${CONFFILE} + chown ${_USERNAME}:${_USERNAME} ${CONFFILE} echo echo "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *" diff --git a/debian/openerp-server.postrm b/debian/openerp-server.postrm index 820cd0c3665..a98dbe9dfd8 100644 --- a/debian/openerp-server.postrm +++ b/debian/openerp-server.postrm @@ -2,18 +2,44 @@ set -e -USER="openerp" +if [ -e /usr/share/debconf/confmodule ] +then + _DEBCONF="true" + + . /usr/share/debconf/confmodule +fi case "${1}" in - purge) - # Removing system user + remove) + if [ "${_DEBCONF}" = "true" ] + then + db_version 2.0 + + db_get openerp-server/username + _USERNAME="${RET}" + + db_stop + fi + + if [ -z "${_USERNAME}" ] + then + _USERNAME="openerp" + fi + + _GROUPNAME="${_USERNAME}" + if [ -x /usr/sbin/deluser ] then - deluser --quiet --system ${USER} + deluser --quiet --system ${_USERNAME} + fi + + if [ -x /usr/sbin/delgroup ] + then + delgroup --quiet --system --only-if-empty ${_GROUPNAME} || true fi ;; - remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; diff --git a/debian/openerp-server.preseed b/debian/openerp-server.preseed new file mode 100644 index 00000000000..66d1a4ab95d --- /dev/null +++ b/debian/openerp-server.preseed @@ -0,0 +1,5 @@ +################################################################################ +## openerp-server + +#openerp-server openerp-server/username string openerp +################################################################################ diff --git a/debian/openerp-server.templates b/debian/openerp-server.templates new file mode 100644 index 00000000000..c161b8c73f4 --- /dev/null +++ b/debian/openerp-server.templates @@ -0,0 +1,9 @@ +Template: openerp-server/username +Type: string +Default: openerp +_Description: Dedicated system account for the OpenERP server: + The OpenERP 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/po/POTFILES.in b/debian/po/POTFILES.in new file mode 100644 index 00000000000..eb66b9be4c0 --- /dev/null +++ b/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] openerp-server.templates diff --git a/debian/po/cs.po b/debian/po/cs.po new file mode 100644 index 00000000000..d311388ccc0 --- /dev/null +++ b/debian/po/cs.po @@ -0,0 +1,39 @@ +# Czech translation of openerp-server debconf templates. +# Copyright (C) 2009 Vítězslav Kotrla +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-05-30 08:24+0000\n" +"PO-Revision-Date: 2009-06-21 08:20+0200\n" +"Last-Translator: Vítězslav Kotrla \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:1001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "Vyhrazený systémový účet, pod kterým bude běžet OpenERP server:" + +#. Type: string +#. Description +#: ../openerp-server.templates:1001 +msgid "" +"The OpenERP 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 "" +"Pokud by byl OpenERP server spuštěn se superuživatelskými oprávněními, mohlo by dojít " +"ke kompromitaci zabezpečení systému. Proto musí OpenERP server pro svoji činnost používat " +"vyhrazený neprivilegovaný účet." + +#. Type: string +#. Description +#: ../openerp-server.templates:1001 +msgid "Please choose that account's username." +msgstr "Zvolte prosím název totoho účtu." diff --git a/debian/po/de.po b/debian/po/de.po new file mode 100644 index 00000000000..74edd5f094b --- /dev/null +++ b/debian/po/de.po @@ -0,0 +1,39 @@ +# German translation of openerp-server debconf templates. +# Copyright (C) 2009 Kai Wasserbäch +# Copyright (C) 2009 Helge Kreutzmann +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-server 5.0.1-0-2\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-04-06 19:01+0200\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "Eigenes Systemkonto für den OpenERP-Server:" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" +"Der OpenERP-Server muss ein eigenes Konto für den Betrieb verwenden, um die " +"Sicherheit des Systems nicht durch das Betreiben mit Superuser-Rechten zu " +"kompromittieren." + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "Bitte wählen Sie den Benutzernamen dieses Kontos." diff --git a/debian/po/es.po b/debian/po/es.po new file mode 100644 index 00000000000..ea83b6f5e88 --- /dev/null +++ b/debian/po/es.po @@ -0,0 +1,40 @@ +# Spanish translation of openerp-server debconf templates. +# Copyright (C) 2009 Software in the Public Interest +# 2009 Fernando González de Requena +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-server 5.0.1-0-2\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-03-30 22:35+0200\n" +"Last-Translator: Fernando González de Requena \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "Cuenta del sistema dedicada para el servidor OpenERP:" + +#. Type: string +#. Description +#: ../openerp-server:2001 +msgid "" +"The OpenERP 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 "" +"El servidor de 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:2001 +msgid "Please choose that account's username." +msgstr "Elija un nombre de usuario para esa cuenta." diff --git a/debian/po/fi.po b/debian/po/fi.po new file mode 100644 index 00000000000..f2b056ae85f --- /dev/null +++ b/debian/po/fi.po @@ -0,0 +1,40 @@ +# Finnish translation of openerp-server debconf templates. +# Copyright (C) 2009 Esko Arajärvi +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-server\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-04-07 22:19+0300\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 0.3\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "Dedikoitu järjestelmätunnus OpenERP-taustaohjelman ajamiseen:" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" +"OpenERP-palvelimen tulee käyttää dedikoitua tunnusta toiminnoissaan, jotta " +"järjestelmän turvallisuus ei vaarannu kuten käytettäessä " +"pääkäyttäjäoikeuksia." + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "Valitse kyseisen tunnuksen nimi." diff --git a/debian/po/fr.po b/debian/po/fr.po new file mode 100644 index 00000000000..132ab88ee99 --- /dev/null +++ b/debian/po/fr.po @@ -0,0 +1,37 @@ +# French translation of openerp-server debconf templates. +# Copyright (C) 2009 Steve Petruzzello +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: 5.0.1-0-2\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-03-26 01:12+0100\n" +"Last-Translator: Steve Petruzzello \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "Identifiant dédié pour le serveur OpenERP:" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" +"Le serveur OpenERP doit être exécuté avec un identifiant spécifique, différent " +"du superutilisateur, afin de ne pas compromettre la sécurité du système." + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "Veuillez choisir cet identifiant." diff --git a/debian/po/gl.po b/debian/po/gl.po new file mode 100644 index 00000000000..98267a3e746 --- /dev/null +++ b/debian/po/gl.po @@ -0,0 +1,40 @@ +# Galizian translation of openerp-server debconf templates. +# Copyright (C) 2009 Marce Villarino +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-04-15 21:32+0200\n" +"Last-Translator: marce villarino \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 0.2\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "Conta de usuario do sistema adicada ao servidor OpenERP:" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" +"O servidor OpenERP debe empregar unha conta adicada a el para que a " +"seguridade do sistema non se poña en perigo ao executalo con privilexios de " +"administrador." + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "Escolla o nome de usuario desa conta." diff --git a/debian/po/it.po b/debian/po/it.po new file mode 100644 index 00000000000..0a19612e16f --- /dev/null +++ b/debian/po/it.po @@ -0,0 +1,39 @@ +# Italian translation of openerp-server debconf templates. +# Copyright (C) 2009 Vincenzo Campanella +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-server 5.0.1-0-2\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-03-26 08:52+0100\n" +"Last-Translator: Vincenzo Campanella \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "Account di sistema dedicato per il server di OpenERP:" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" +"Il server OpenERP deve utilizzare un account dedicato per eseguire le proprie " +"operazioni, in modo che la sicurezza del sistema non rischi di essere compromessa " +"eseguendolo con privilegi di superutente." + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "Scegliere il nome utente di tale account." diff --git a/debian/po/ja.po b/debian/po/ja.po new file mode 100644 index 00000000000..2f1abd4b56b --- /dev/null +++ b/debian/po/ja.po @@ -0,0 +1,37 @@ +# Japanese translation of openerp-server debconf templates. +# Copyright (C) 2009 Hideki Yamane +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-server 5.0.1-0-2\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-04-09 19:20+0900\n" +"Last-Translator: Hideki Yamane (Debian-JP) \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../openerp-servera.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "OpenERP デーモン専用のシステムアカウント:" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" +"OpenERP サーバはその動作について専用のアカウントを使うようになっているため、管理" +"者特権で動作していてもシステムのセキュリティは侵害されません。" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "アカウントのユーザ名を選んでください。" diff --git a/debian/po/pt.po b/debian/po/pt.po new file mode 100644 index 00000000000..12961877e75 --- /dev/null +++ b/debian/po/pt.po @@ -0,0 +1,39 @@ +# Portuguese translation of openerp-server debconf templates. +# Copyright (C) 2009 Américo Monteiro +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-server 5.0.1-0-2\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-03-26 19:12+0000\n" +"Last-Translator: Américo Monteiro \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: string +#. Description +#: ../openerp-servera.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "Conta dedicada do sistema para o servidor OpenERP:" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" +"O servidor OpenERP tem que usar uma conta dedicada para as suas operações, isto " +"para que a segurança do sistema não seja comprometida ao corrê-lo com " +"privilégios de superutilizador." + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "Por favor escolha o nome dessa conta." diff --git a/debian/po/ru.po b/debian/po/ru.po new file mode 100644 index 00000000000..55e29d26d81 --- /dev/null +++ b/debian/po/ru.po @@ -0,0 +1,41 @@ +# German translation of openerp-server debconf templates. +# Copyright (C) 2009 Sergey Alyoshin +# Copyright (C) 2009 Yuri Kozlov +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-server 5.0.1-0-2\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-04-08 21:08+0400\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "Специально выделенная системная учётная запись для OpenERP службы:" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" +"Для улучшения безопасности системы OpenERP сервер должен использовать специально " +"выделенную учётную запись, а не запускаться с правами суперпользователя." + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "Укажите имя такой учётной записи." diff --git a/debian/po/sv.po b/debian/po/sv.po new file mode 100644 index 00000000000..845d9d8c62a --- /dev/null +++ b/debian/po/sv.po @@ -0,0 +1,39 @@ +# Swedish translation of openerp-server debconf templates. +# Copyright (C) 2009 Martin Bagge +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-server\n" +"Report-Msgid-Bugs-To: openerp-serverpackages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-04-07 18:36+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"X-Poedit-Language: Swedish\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "Dedikerat systemkonto för OpenERP server:" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" +"OpenERP servern måste ha ett dedikerat konto för att fungera på ett säkert sätt, " +"att använda privilegier från en superanvändare är inte säkert." + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "Ange kontots användarnamn." diff --git a/debian/po/templates.pot b/debian/po/templates.pot new file mode 100644 index 00000000000..6f92489ff63 --- /dev/null +++ b/debian/po/templates.pot @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "" diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po new file mode 100644 index 00000000000..49cc85f88dd --- /dev/null +++ b/debian/po/zh_CN.po @@ -0,0 +1,37 @@ +# Simplified Chinese translation of openerp-server debconf templates. +# Copyright (C) 2009 Deng Xiyue +# This file is distributed under the same license as the openerp-server package. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-server\n" +"Report-Msgid-Bugs-To: openerp-server@packages.debian.org\n" +"POT-Creation-Date: 2009-03-26 07:45+0100\n" +"PO-Revision-Date: 2009-03-26 16:48+0800\n" +"Last-Translator: Deng Xiyue \n" +"Language-Team: Debian Chinese GB \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Dedicated system account for the OpenERP server:" +msgstr "指定操作 OpenERP 守护进程的专用系统帐户:" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "" +"The OpenERP 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 "" +"OpenERP 服务器必须使用一个专用的账户来进行操作,这样就不会因为使用超级用户权限运" +"行而破坏系统的安全。" + +#. Type: string +#. Description +#: ../openerp-server.templates:2001 +msgid "Please choose that account's username." +msgstr "请选择账户的用户名。" diff --git a/debian/rules b/debian/rules index 83d9bfa54fe..d974a63b2d1 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,22 @@ #!/usr/bin/make -f +SHELL := sh -e + include /usr/share/quilt/quilt.make +update: + # Needs: shell-helper + + cd debian; \ + debconf-create-preseed *.config; \ + + for FILE in debian/*.preseed; \ + do \ + grep -v preseed $$FILE > $$FILE.tmp; \ + mv $$FILE.tmp $$FILE; \ + echo $$FILE >> debian/`basename $$FILE .preseed`.examples; \ + done + clean: clean-patched unpatch clean-patched: patch dh_testdir @@ -9,10 +24,11 @@ clean-patched: patch rm -f build-stamp python setup.py clean - rm -rf build openerp-server -find $(CURDIR) -type f -name "*.pyc" | xargs rm -f + debconf-updatepo + dh_clean build: @@ -45,8 +61,10 @@ binary-indep: install dh_testroot dh_installchangelogs doc/Changelog dh_installdocs + dh_installexamples dh_install dh_installinit --update-rcd-params='defaults 21' + dh_installdebconf dh_lintian dh_link dh_compress From d7dae818d1531afe3e10f6d28fb37a910f32453b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:04 +0300 Subject: [PATCH 188/251] Using more common directory name to store local debian additions. bzr revid: p_christ@hol.gr-20090824180204-84p290cqpqtwnhlz --- debian/{config => local}/openerp-server.conf | 0 debian/openerp-server.install | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename debian/{config => local}/openerp-server.conf (100%) diff --git a/debian/config/openerp-server.conf b/debian/local/openerp-server.conf similarity index 100% rename from debian/config/openerp-server.conf rename to debian/local/openerp-server.conf diff --git a/debian/openerp-server.install b/debian/openerp-server.install index 28c56bcbac8..ccfbbb27fd6 100644 --- a/debian/openerp-server.install +++ b/debian/openerp-server.install @@ -1 +1 @@ -debian/config/* /etc/ +debian/local/openerp-server.conf /etc From 8b86b7868ff73fd61c255f35738dffba6094f4fd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:05 +0300 Subject: [PATCH 189/251] Updating README.Debian to reflect that the database has to be initialized through the client (Closes: #518675). bzr revid: p_christ@hol.gr-20090824180205-k8lx35yo0xz8uv6e --- debian/openerp-server.README.Debian | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/debian/openerp-server.README.Debian b/debian/openerp-server.README.Debian index 2e05f6d1a28..630c0fc9e7c 100644 --- a/debian/openerp-server.README.Debian +++ b/debian/openerp-server.README.Debian @@ -13,27 +13,23 @@ explanation how to achieve this (you need to execute all commands as root): the above syvinit script could also be named postgresql-VERSION (whereas 'VERSION' needs to be replace with a version number). - 1. Creating the database + 1. Creating the database user - # su - postgres -c "createdb -q --encoding=UNICODE openerp" - - 2. Creating the database user - - # su - postgres -c "createuser -q --createdb --adduser openerp" + # su - postgres -c "createuser -q --createdb --no-createrole --pwprompt openerp" Note: If you want to run the database as another user than 'openerp', you need to replace 'openerp' above with the user you want instead, and you need to adjust 'db_user = openerp' in /etc/openerp-server.conf too. - 4. Initializing the database - - # su - postgres -c "/usr/bin/openerp-server --init=all \ - --config=/etc/openerp-server.conf --stop-after-init" - - 5. Restarting openerp-server + 3. Restarting openerp-server # /etc/init.d/openerp-server restart + + 4. Initializing the database + + Now you can connect with OpenERP client to the database and initialize it. + Now, you're finish. Please be aware of the following things: * openerp-server has by default two accounts: From aca60fa6e46f8b123bccec601c258c196dc60019 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:05 +0300 Subject: [PATCH 190/251] Removing package leftovers in postrm script. bzr revid: p_christ@hol.gr-20090824180205-2t7z33hz900pwmmz --- debian/openerp-server.postrm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian/openerp-server.postrm b/debian/openerp-server.postrm index a98dbe9dfd8..e9effaa8351 100644 --- a/debian/openerp-server.postrm +++ b/debian/openerp-server.postrm @@ -37,6 +37,10 @@ case "${1}" in 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 + rmdir --ignore-fail-on-non-empty /usr/lib/openerp-server ;; purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) From 55ea6ef713dbd924a6420abe74268e9c79f6971c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:05 +0300 Subject: [PATCH 191/251] Releasing debian version 5.0.2-0-1. bzr revid: p_christ@hol.gr-20090824180205-03gv7laf8ifjcgg2 --- debian/changelog | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/debian/changelog b/debian/changelog index 27cd6862afa..46bbd245dd9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +openerp-server (5.0.2-0-1) unstable; urgency=low + + * Updating standards to 3.8.1. + * Rediffing autobuild.patch (Closes: #538625). + * Upgrading package to standards version 3.8.2. + * Managing setup of unprivileged user account with debconf. + * Using more common directory name to store local debian additions. + * Updating README.Debian to reflect that the database has to be + initialized through the client (Closes: #518675). + * Removing package leftovers in postrm script. + * Merging upstream version 5.0.2-0. + + -- Daniel Baumann Thu, 13 Aug 2009 11:24:59 +0200 + openerp-server (5.0.1-0-1) unstable; urgency=low * Merging upstream version 5.0.1-0. From 16c26b72578cedf3de4ed959a952984c4f5ebda5 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:05 +0300 Subject: [PATCH 192/251] Releasing debian version 5.0.2-0-2. bzr revid: p_christ@hol.gr-20090824180205-iv5iu47oalevgbt5 --- debian/changelog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/debian/changelog b/debian/changelog index 46bbd245dd9..547d5b3c533 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +openerp-server (5.0.2-0-2) unstable; urgency=high + + * Adding patch from Panos Christeas to forbid RPC + calls without credentials. All versions of openerp-server affected. + + -- Daniel Baumann Thu, 13 Aug 2009 14:45:17 +0200 + openerp-server (5.0.2-0-1) unstable; urgency=low * Updating standards to 3.8.1. From 7f93ae0ba9acee0f781bdcce548b6e16343d0149 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:06 +0300 Subject: [PATCH 193/251] Wrapping and sorting depends. bzr revid: p_christ@hol.gr-20090824180206-ghklmy7fteobffmt --- debian/control | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/debian/control b/debian/control index cfce70f261b..b53c821f5db 100644 --- a/debian/control +++ b/debian/control @@ -2,8 +2,8 @@ Source: openerp-server Section: net Priority: optional Maintainer: Daniel Baumann -Build-Depends: debhelper (>= 7), quilt, po-debconf, python-dev -Build-Depends-Indep: python-lxml, python-xml, python-libxslt1, python-psycopg2 +Build-Depends: debhelper (>= 7), po-debconf, python-dev, quilt +Build-Depends-Indep: python-libxslt1, python-lxml, python-psycopg2, python-xml, Standards-Version: 3.8.2 Homepage: http://www.openerp.com/ Vcs-Browser: http://git.debian.net/?p=debian/openerp-server.git @@ -12,10 +12,15 @@ Vcs-Git: git://git.debian.net/git/debian/openerp-server.git Package: openerp-server Section: net Architecture: all -Depends: ${misc:Depends}, adduser, python, python-lxml, python-xml, python-libxslt1, python-psycopg2, python-reportlab, python-pychart, python-pydot, python-tz +Depends: + ${misc:Depends}, adduser, python, python-libxslt1, python-lxml, + python-psycopg2, python-pydot, python-pychart, python-reportlab, python-tz, + python-xml Conflicts: tinyerp-server Replaces: tinyerp-server -Recommends: graphviz, ghostscript, postgresql, postgresql-client, python-imaging, python-matplotlib, python-openssl, python-pyparsing +Recommends: + graphviz, ghostscript, postgresql, postgresql-client, python-imaging, + python-matplotlib, python-openssl, python-pyparsing Suggests: openerp-client Description: Enterprise Resource Management (server) OpenERP, previously known as TinyERP, is a complete ERP and CRM. The main From 3552bc5934e5537619e99954ac16e70e00dfde1e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:06 +0300 Subject: [PATCH 194/251] Correcting spelling of Open ERP. bzr revid: p_christ@hol.gr-20090824180206-o3fs59qiex62juol --- debian/control | 4 ++-- debian/openerp-server.README.Debian | 4 ++-- debian/openerp-server.init | 2 +- debian/openerp-server.postinst | 6 +++--- debian/openerp-server.templates | 4 ++-- debian/po/cs.po | 10 +++++----- debian/po/de.po | 8 ++++---- debian/po/es.po | 8 ++++---- debian/po/fi.po | 8 ++++---- debian/po/fr.po | 8 ++++---- debian/po/gl.po | 8 ++++---- debian/po/it.po | 8 ++++---- debian/po/ja.po | 8 ++++---- debian/po/pt.po | 8 ++++---- debian/po/ru.po | 8 ++++---- debian/po/sv.po | 8 ++++---- debian/po/templates.pot | 4 ++-- debian/po/zh_CN.po | 8 ++++---- 18 files changed, 61 insertions(+), 61 deletions(-) diff --git a/debian/control b/debian/control index b53c821f5db..6e6bf7dddc4 100644 --- a/debian/control +++ b/debian/control @@ -23,12 +23,12 @@ Recommends: python-matplotlib, python-openssl, python-pyparsing Suggests: openerp-client Description: Enterprise Resource Management (server) - OpenERP, previously known as TinyERP, is a complete ERP and CRM. The main + Open ERP, 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 OpenERP server, install openerp-client package for + This package contains the Open ERP server, install openerp-client package for the client. diff --git a/debian/openerp-server.README.Debian b/debian/openerp-server.README.Debian index 630c0fc9e7c..39dede87780 100644 --- a/debian/openerp-server.README.Debian +++ b/debian/openerp-server.README.Debian @@ -1,7 +1,7 @@ openerp-server for Debian ------------------------- -OpenERP uses a PostgreSQL database to store its data. With the first generation +Open ERP uses a PostgreSQL database to store its data. With the first generation of packages, you have to setup this database manually. Here is a short explanation how to achieve this (you need to execute all commands as root): @@ -28,7 +28,7 @@ explanation how to achieve this (you need to execute all commands as root): 4. Initializing the database - Now you can connect with OpenERP client to the database and initialize it. + Now you can connect with Open ERP client to the database and initialize it. Now, you're finish. Please be aware of the following things: diff --git a/debian/openerp-server.init b/debian/openerp-server.init index fbf38d0c49d..e981d2cffe8 100644 --- a/debian/openerp-server.init +++ b/debian/openerp-server.init @@ -9,7 +9,7 @@ # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Enterprise Resource Management software -# Description: OpenERP is a complete ERP and CRM software. +# Description: Open ERP is a complete ERP and CRM software. ### END INIT INFO PATH=/sbin:/bin:/usr/sbin:/usr/bin diff --git a/debian/openerp-server.postinst b/debian/openerp-server.postinst index 0a4047d7ef8..d4dea03812a 100644 --- a/debian/openerp-server.postinst +++ b/debian/openerp-server.postinst @@ -18,9 +18,9 @@ case "${1}" in if ! getent passwd | grep -q "^${_USERNAME}" then - adduser --system --no-create-home --quiet --gecos 'OpenERP server' --group ${_USERNAME} + adduser --system --no-create-home --quiet --gecos 'Open ERP server' --group ${_USERNAME} else - echo "OpenERP user (${_USERNAME}) already exists, doing nothing." + echo "Open ERP user (${_USERNAME}) already exists, doing nothing." fi sed -i -e "s|^process_user.*$|process_user = ${_USERNAME}|" ${CONFFILE} @@ -38,7 +38,7 @@ case "${1}" in echo echo "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *" - echo "* OpenERP uses a PostgreSQL database to store its data. With the first *" + 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 "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *" diff --git a/debian/openerp-server.templates b/debian/openerp-server.templates index c161b8c73f4..985bd24abd9 100644 --- a/debian/openerp-server.templates +++ b/debian/openerp-server.templates @@ -1,8 +1,8 @@ Template: openerp-server/username Type: string Default: openerp -_Description: Dedicated system account for the OpenERP server: - The OpenERP server must use a dedicated account for its operation so that +_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. . diff --git a/debian/po/cs.po b/debian/po/cs.po index d311388ccc0..02c16082449 100644 --- a/debian/po/cs.po +++ b/debian/po/cs.po @@ -18,18 +18,18 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:1001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "Vyhrazený systémový účet, pod kterým bude běžet OpenERP server:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Vyhrazený systémový účet, pod kterým bude běžet Open ERP server:" #. Type: string #. Description #: ../openerp-server.templates:1001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"Pokud by byl OpenERP server spuštěn se superuživatelskými oprávněními, mohlo by dojít " -"ke kompromitaci zabezpečení systému. Proto musí OpenERP server pro svoji činnost používat " +"Pokud by byl Open ERP server spuštěn se superuživatelskými oprávněními, mohlo by dojít " +"ke kompromitaci zabezpečení systému. Proto musí Open ERP server pro svoji činnost používat " "vyhrazený neprivilegovaný účet." #. Type: string diff --git a/debian/po/de.po b/debian/po/de.po index 74edd5f094b..9b41a553763 100644 --- a/debian/po/de.po +++ b/debian/po/de.po @@ -18,17 +18,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "Eigenes Systemkonto für den OpenERP-Server:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Eigenes Systemkonto für den Open ERP-Server:" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"Der OpenERP-Server muss ein eigenes Konto für den Betrieb verwenden, um die " +"Der Open ERP-Server muss ein eigenes Konto für den Betrieb verwenden, um die " "Sicherheit des Systems nicht durch das Betreiben mit Superuser-Rechten zu " "kompromittieren." diff --git a/debian/po/es.po b/debian/po/es.po index ea83b6f5e88..3dfaeddae26 100644 --- a/debian/po/es.po +++ b/debian/po/es.po @@ -19,17 +19,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "Cuenta del sistema dedicada para el servidor OpenERP:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Cuenta del sistema dedicada para el servidor Open ERP:" #. Type: string #. Description #: ../openerp-server:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"El servidor de OpenERP debe utilizar una cuenta dedicada para su funcionamiento, " +"El servidor de Open ERP 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." diff --git a/debian/po/fi.po b/debian/po/fi.po index f2b056ae85f..e85c1df517c 100644 --- a/debian/po/fi.po +++ b/debian/po/fi.po @@ -19,17 +19,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "Dedikoitu järjestelmätunnus OpenERP-taustaohjelman ajamiseen:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Dedikoitu järjestelmätunnus Open ERP-taustaohjelman ajamiseen:" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"OpenERP-palvelimen tulee käyttää dedikoitua tunnusta toiminnoissaan, jotta " +"Open ERP-palvelimen tulee käyttää dedikoitua tunnusta toiminnoissaan, jotta " "järjestelmän turvallisuus ei vaarannu kuten käytettäessä " "pääkäyttäjäoikeuksia." diff --git a/debian/po/fr.po b/debian/po/fr.po index 132ab88ee99..afcbbf34fb8 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po @@ -17,17 +17,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "Identifiant dédié pour le serveur OpenERP:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Identifiant dédié pour le serveur Open ERP:" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"Le serveur OpenERP doit être exécuté avec un identifiant spécifique, différent " +"Le serveur Open ERP doit être exécuté avec un identifiant spécifique, différent " "du superutilisateur, afin de ne pas compromettre la sécurité du système." #. Type: string diff --git a/debian/po/gl.po b/debian/po/gl.po index 98267a3e746..e83c049c07c 100644 --- a/debian/po/gl.po +++ b/debian/po/gl.po @@ -19,17 +19,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "Conta de usuario do sistema adicada ao servidor OpenERP:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Conta de usuario do sistema adicada ao servidor Open ERP:" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"O servidor OpenERP debe empregar unha conta adicada a el para que a " +"O servidor Open ERP debe empregar unha conta adicada a el para que a " "seguridade do sistema non se poña en perigo ao executalo con privilexios de " "administrador." diff --git a/debian/po/it.po b/debian/po/it.po index 0a19612e16f..05059caa73f 100644 --- a/debian/po/it.po +++ b/debian/po/it.po @@ -18,17 +18,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "Account di sistema dedicato per il server di OpenERP:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Account di sistema dedicato per il server di Open ERP:" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"Il server OpenERP deve utilizzare un account dedicato per eseguire le proprie " +"Il server Open ERP deve utilizzare un account dedicato per eseguire le proprie " "operazioni, in modo che la sicurezza del sistema non rischi di essere compromessa " "eseguendolo con privilegi di superutente." diff --git a/debian/po/ja.po b/debian/po/ja.po index 2f1abd4b56b..647c6381a8f 100644 --- a/debian/po/ja.po +++ b/debian/po/ja.po @@ -17,17 +17,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-servera.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "OpenERP デーモン専用のシステムアカウント:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Open ERP デーモン専用のシステムアカウント:" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"OpenERP サーバはその動作について専用のアカウントを使うようになっているため、管理" +"Open ERP サーバはその動作について専用のアカウントを使うようになっているため、管理" "者特権で動作していてもシステムのセキュリティは侵害されません。" #. Type: string diff --git a/debian/po/pt.po b/debian/po/pt.po index 12961877e75..a6d26f7ba26 100644 --- a/debian/po/pt.po +++ b/debian/po/pt.po @@ -18,17 +18,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-servera.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "Conta dedicada do sistema para o servidor OpenERP:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Conta dedicada do sistema para o servidor Open ERP:" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"O servidor OpenERP tem que usar uma conta dedicada para as suas operações, isto " +"O servidor Open ERP tem que usar uma conta dedicada para as suas operações, isto " "para que a segurança do sistema não seja comprometida ao corrê-lo com " "privilégios de superutilizador." diff --git a/debian/po/ru.po b/debian/po/ru.po index 55e29d26d81..811f7e31e47 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po @@ -21,17 +21,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "Специально выделенная системная учётная запись для OpenERP службы:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Специально выделенная системная учётная запись для Open ERP службы:" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"Для улучшения безопасности системы OpenERP сервер должен использовать специально " +"Для улучшения безопасности системы Open ERP сервер должен использовать специально " "выделенную учётную запись, а не запускаться с правами суперпользователя." #. Type: string diff --git a/debian/po/sv.po b/debian/po/sv.po index 845d9d8c62a..cb69412b65a 100644 --- a/debian/po/sv.po +++ b/debian/po/sv.po @@ -19,17 +19,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "Dedikerat systemkonto för OpenERP server:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "Dedikerat systemkonto för Open ERP server:" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"OpenERP servern måste ha ett dedikerat konto för att fungera på ett säkert sätt, " +"Open ERP servern måste ha ett dedikerat konto för att fungera på ett säkert sätt, " "att använda privilegier från en superanvändare är inte säkert." #. Type: string diff --git a/debian/po/templates.pot b/debian/po/templates.pot index 6f92489ff63..68587d7fc22 100644 --- a/debian/po/templates.pot +++ b/debian/po/templates.pot @@ -19,14 +19,14 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 -msgid "Dedicated system account for the OpenERP server:" +msgid "Dedicated system account for the Open ERP server:" msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po index 49cc85f88dd..4ce5a3d4a12 100644 --- a/debian/po/zh_CN.po +++ b/debian/po/zh_CN.po @@ -17,17 +17,17 @@ msgstr "" #. Type: string #. Description #: ../openerp-server.templates:2001 -msgid "Dedicated system account for the OpenERP server:" -msgstr "指定操作 OpenERP 守护进程的专用系统帐户:" +msgid "Dedicated system account for the Open ERP server:" +msgstr "指定操作 Open ERP 守护进程的专用系统帐户:" #. Type: string #. Description #: ../openerp-server.templates:2001 msgid "" -"The OpenERP server must use a dedicated account for its operation so that the " +"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 "" -"OpenERP 服务器必须使用一个专用的账户来进行操作,这样就不会因为使用超级用户权限运" +"Open ERP 服务器必须使用一个专用的账户来进行操作,这样就不会因为使用超级用户权限运" "行而破坏系统的安全。" #. Type: string From c20e872943d0a9b1acdbf3843fd127aabd97df8a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:06 +0300 Subject: [PATCH 195/251] Updating maintainer field. bzr revid: p_christ@hol.gr-20090824180206-c8yrjmh44n3hcz9s --- debian/control | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 6e6bf7dddc4..5cd92192b8f 100644 --- a/debian/control +++ b/debian/control @@ -1,7 +1,8 @@ Source: openerp-server Section: net Priority: optional -Maintainer: Daniel Baumann +Maintainer: Debian Open Object Maintainers +Uploaders: Daniel Baumann Build-Depends: debhelper (>= 7), po-debconf, python-dev, quilt Build-Depends-Indep: python-libxslt1, python-lxml, python-psycopg2, python-xml, Standards-Version: 3.8.2 From 2f9b384a6a2cc18f687cd622631198f1dbf7b00d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:07 +0300 Subject: [PATCH 196/251] Updating vcs fields. bzr revid: p_christ@hol.gr-20090824180207-dqb7ypi1eicvcsvu --- debian/control | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index 5cd92192b8f..4ca074e7e4c 100644 --- a/debian/control +++ b/debian/control @@ -7,8 +7,8 @@ Build-Depends: debhelper (>= 7), po-debconf, python-dev, quilt Build-Depends-Indep: python-libxslt1, python-lxml, python-psycopg2, python-xml, Standards-Version: 3.8.2 Homepage: http://www.openerp.com/ -Vcs-Browser: http://git.debian.net/?p=debian/openerp-server.git -Vcs-Git: git://git.debian.net/git/debian/openerp-server.git +Vcs-Browser: http://git.debian-maintainers.org/?p=open-object/openerp-server.git +Vcs-Git: git://git.debian-maintainers.org/git/open-object/openerp-server.git Package: openerp-server Section: net From 606f4e1141179eb9f84eef50c8c77aa6e2f4bcc7 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:07 +0300 Subject: [PATCH 197/251] Updating to standards version 3.8.3. bzr revid: p_christ@hol.gr-20090824180207-olwniyonjvx6rx7j --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 4ca074e7e4c..fdf028ed30f 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Maintainer: Debian Open Object Maintainers Build-Depends: debhelper (>= 7), po-debconf, python-dev, quilt Build-Depends-Indep: python-libxslt1, python-lxml, python-psycopg2, python-xml, -Standards-Version: 3.8.2 +Standards-Version: 3.8.3 Homepage: http://www.openerp.com/ Vcs-Browser: http://git.debian-maintainers.org/?p=open-object/openerp-server.git Vcs-Git: git://git.debian-maintainers.org/git/open-object/openerp-server.git From 35d27cccd5ea39f8289eebb24c34d4c116c89b3d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:07 +0300 Subject: [PATCH 198/251] Dropping old depends on python-xml (Closes: #543127). bzr revid: p_christ@hol.gr-20090824180207-961ohuxpyf1363ma --- debian/control | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/debian/control b/debian/control index fdf028ed30f..a7bb7cdea7f 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Debian Open Object Maintainers Uploaders: Daniel Baumann Build-Depends: debhelper (>= 7), po-debconf, python-dev, quilt -Build-Depends-Indep: python-libxslt1, python-lxml, python-psycopg2, python-xml, +Build-Depends-Indep: python-libxslt1, python-lxml, python-psycopg2 Standards-Version: 3.8.3 Homepage: http://www.openerp.com/ Vcs-Browser: http://git.debian-maintainers.org/?p=open-object/openerp-server.git @@ -15,8 +15,7 @@ Section: net Architecture: all Depends: ${misc:Depends}, adduser, python, python-libxslt1, python-lxml, - python-psycopg2, python-pydot, python-pychart, python-reportlab, python-tz, - python-xml + python-psycopg2, python-pydot, python-pychart, python-reportlab, python-tz Conflicts: tinyerp-server Replaces: tinyerp-server Recommends: From 6315251b4ab97e20b4d268babe868f067889cdab Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:07 +0300 Subject: [PATCH 199/251] Adding maintainer homepage field to control. bzr revid: p_christ@hol.gr-20090824180207-4m17fxi8a198sxjj --- debian/control | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/control b/debian/control index a7bb7cdea7f..717bde163d5 100644 --- a/debian/control +++ b/debian/control @@ -9,6 +9,7 @@ Standards-Version: 3.8.3 Homepage: http://www.openerp.com/ Vcs-Browser: http://git.debian-maintainers.org/?p=open-object/openerp-server.git Vcs-Git: git://git.debian-maintainers.org/git/open-object/openerp-server.git +XS-Maintainer-Homepage: http://open-object.debian-maintainers.org/ Package: openerp-server Section: net From a8e7e55a148f128bdbaa662fd4ee1aae71889721 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:08 +0300 Subject: [PATCH 200/251] Marking maintainer homepage field to be also included in binary packages and changelog. bzr revid: p_christ@hol.gr-20090824180208-5l010kt1gi2ja67d --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 717bde163d5..f866107f2b0 100644 --- a/debian/control +++ b/debian/control @@ -9,7 +9,7 @@ Standards-Version: 3.8.3 Homepage: http://www.openerp.com/ Vcs-Browser: http://git.debian-maintainers.org/?p=open-object/openerp-server.git Vcs-Git: git://git.debian-maintainers.org/git/open-object/openerp-server.git -XS-Maintainer-Homepage: http://open-object.debian-maintainers.org/ +XSBC-Maintainer-Homepage: http://open-object.debian-maintainers.org/ Package: openerp-server Section: net From df7e728cf5fb0368770534c6d18204c99e3811bb Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:08 +0300 Subject: [PATCH 201/251] Releasing debian version 5.0.2-0-3. bzr revid: p_christ@hol.gr-20090824180208-52n7sq3l69t81eey --- debian/changelog | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/debian/changelog b/debian/changelog index 547d5b3c533..8f273a33260 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +openerp-server (5.0.2-0-3) unstable; urgency=low + + * Wrapping and sorting depends. + * Correcting spelling of Open ERP. + * Updating maintainer field. + * Updating vcs fields. + * Updating to standards version 3.8.3. + * Dropping old depends on python-xml (Closes: #543127). + * Adding maintainer homepage field to control. + * Marking maintainer homepage field to be also included in binary + packages and changelog. + + -- Daniel Baumann Mon, 24 Aug 2009 18:23:54 +0200 + openerp-server (5.0.2-0-2) unstable; urgency=high * Adding patch from Panos Christeas to forbid RPC From 2cbba15f7f72d898a6a4897b303c1ba1d0ba447e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 21:02:08 +0300 Subject: [PATCH 202/251] Using dedicated storage directory in /var/lib/openerp-server, that way the addons directory can stay read-only for the unprivileged user. bzr revid: p_christ@hol.gr-20090824180208-g9rdat4tkxfbrdj6 --- debian/openerp-server.links | 1 + debian/openerp-server.postinst | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/openerp-server.links b/debian/openerp-server.links index 609d00a2036..67620d22397 100644 --- a/debian/openerp-server.links +++ b/debian/openerp-server.links @@ -1 +1,2 @@ /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.postinst b/debian/openerp-server.postinst index d4dea03812a..48c984d6176 100644 --- a/debian/openerp-server.postinst +++ b/debian/openerp-server.postinst @@ -30,11 +30,13 @@ case "${1}" in chown ${_USERNAME}:adm ${LOGFILE} chmod 0640 ${LOGFILE} - # Setting ownership and permissions - chown ${_USERNAME} /usr/lib/openerp-server/addons -R + # 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 "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *" From 27ee6bea10420691d5beaf217971f4d16cae9e54 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 22:00:54 +0300 Subject: [PATCH 203/251] Commenting out db_name in config (Closes: #542391). bzr revid: p_christ@hol.gr-20090824190054-gua89un8e82d49e4 --- debian/local/openerp-server.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/local/openerp-server.conf b/debian/local/openerp-server.conf index b6891d2646a..33519ed5e43 100644 --- a/debian/local/openerp-server.conf +++ b/debian/local/openerp-server.conf @@ -37,7 +37,7 @@ smtp_user = False smtp_password = False # Specify the database name. -db_name = openerp +#db_name = openerp # Specify the database user name (default None). db_user = openerp From 100da0cccd7a2b67014822ffeb4d7d14f5e9ee27 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 22:00:54 +0300 Subject: [PATCH 204/251] Commenting out port in config (Closes: #542406). bzr revid: p_christ@hol.gr-20090824190054-o6qfcnx2mwq53gxb --- debian/local/openerp-server.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/local/openerp-server.conf b/debian/local/openerp-server.conf index 33519ed5e43..4b54cbd7bc2 100644 --- a/debian/local/openerp-server.conf +++ b/debian/local/openerp-server.conf @@ -19,7 +19,7 @@ process_user = openerp interface = localhost # The TCP port on which the server will listen (default 8069). -port = 8070 +#port = 8070 # Enable debug mode (default False). debug_mode = False From 2c6f63a873367b2f612451695b4b329e5b479190 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 22:00:54 +0300 Subject: [PATCH 205/251] Renaming logfile to openerp-server.log for consistency. bzr revid: p_christ@hol.gr-20090824190054-vt2w73bgpi4aknt1 --- debian/local/openerp-server.conf | 2 +- debian/openerp-server.postinst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/local/openerp-server.conf b/debian/local/openerp-server.conf index 4b54cbd7bc2..5ee9a132252 100644 --- a/debian/local/openerp-server.conf +++ b/debian/local/openerp-server.conf @@ -9,7 +9,7 @@ debug_mode = False pidfile = /var/run/openerp.pid # The file where the server log will be stored (default False). -logfile = /var/log/openerp.log +logfile = /var/log/openerp-server.log # The unix account on behalf openerp is running. process_user = openerp diff --git a/debian/openerp-server.postinst b/debian/openerp-server.postinst index 48c984d6176..a1e5317b8fc 100644 --- a/debian/openerp-server.postinst +++ b/debian/openerp-server.postinst @@ -5,7 +5,7 @@ set -e . /usr/share/debconf/confmodule CONFFILE="/etc/openerp-server.conf" -LOGFILE="/var/log/openerp.log" +LOGFILE="/var/log/openerp-server.log" case "${1}" in configure) From 2d243a0204a64d94a1be27d603c47fd8b6fa44c6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 22:00:55 +0300 Subject: [PATCH 206/251] Commenting out pidfile in config (Closes: #542427). bzr revid: p_christ@hol.gr-20090824190055-3fjun6gbs220schj --- debian/local/openerp-server.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/local/openerp-server.conf b/debian/local/openerp-server.conf index 5ee9a132252..ffb6ed49db3 100644 --- a/debian/local/openerp-server.conf +++ b/debian/local/openerp-server.conf @@ -6,7 +6,7 @@ verbose = False debug_mode = False # The file where the server pid will be stored (default False). -pidfile = /var/run/openerp.pid +#pidfile = /var/run/openerp.pid # The file where the server log will be stored (default False). logfile = /var/log/openerp-server.log From f15322c6da9dd71ad07f17d116b597a75402cbd3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 22:00:55 +0300 Subject: [PATCH 207/251] Removing debconf handling in postrm, not possible to do that. bzr revid: p_christ@hol.gr-20090824190055-4gtvdxnr90jyjvta --- debian/openerp-server.postrm | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) diff --git a/debian/openerp-server.postrm b/debian/openerp-server.postrm index e9effaa8351..136975d147d 100644 --- a/debian/openerp-server.postrm +++ b/debian/openerp-server.postrm @@ -2,31 +2,10 @@ set -e -if [ -e /usr/share/debconf/confmodule ] -then - _DEBCONF="true" - - . /usr/share/debconf/confmodule -fi - case "${1}" in remove) - if [ "${_DEBCONF}" = "true" ] - then - db_version 2.0 - - db_get openerp-server/username - _USERNAME="${RET}" - - db_stop - fi - - if [ -z "${_USERNAME}" ] - then - _USERNAME="openerp" - fi - - _GROUPNAME="${_USERNAME}" + _USERNAME="openerp" + _GROUPNAME="openerp" if [ -x /usr/sbin/deluser ] then @@ -39,8 +18,8 @@ case "${1}" in fi rm -f /usr/lib/openerp-server/addons/__init__.pyc - rmdir --ignore-fail-on-non-empty /usr/lib/openerp-server/addons - rmdir --ignore-fail-on-non-empty /usr/lib/openerp-server + rmdir --ignore-fail-on-non-empty /usr/lib/openerp-server/addons || true + rmdir --ignore-fail-on-non-empty /usr/lib/openerp-server || true ;; purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) From f7a7469d392db62f1aaee08037083c3c42a28814 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 22:00:55 +0300 Subject: [PATCH 208/251] Removing local storage directory on purge. bzr revid: p_christ@hol.gr-20090824190055-1qiw25c8t98dw1h5 --- debian/openerp-server.postrm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/openerp-server.postrm b/debian/openerp-server.postrm index 136975d147d..02b3d0a6817 100644 --- a/debian/openerp-server.postrm +++ b/debian/openerp-server.postrm @@ -22,7 +22,11 @@ case "${1}" in rmdir --ignore-fail-on-non-empty /usr/lib/openerp-server || true ;; - purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + purge) + rm -rf /var/lib/openerp-server + ;; + + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; From b8f073632d520190cae704aacf3dd536bb33b0c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 24 Aug 2009 22:00:56 +0300 Subject: [PATCH 209/251] Releasing debian version 5.0.3-0-1. bzr revid: p_christ@hol.gr-20090824190056-mwxzroeyvsnv66wf --- debian/changelog | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/debian/changelog b/debian/changelog index 8f273a33260..0735d998cec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +openerp-server (5.0.3-0-1) unstable; urgency=low + + * Merging upstream version 5.0.3-0. + * Removing xmlrpc.patch, went upstream. + * Using dedicated storage directory in /var/lib/openerp-server, that + way the addons directory can stay read-only for the unprivileged + user. + * Commenting out db_name in config (Closes: #542391). + * Commenting out port in config (Closes: #542406). + * Renaming logfile to openerp-server.log for consistency. + * Commenting out pidfile in config (Closes: #542427). + * Removing debconf handling in postrm, not possible to do that. + * Removing local storage directory on purge. + + -- Daniel Baumann Mon, 24 Aug 2009 20:16:55 +0200 + openerp-server (5.0.2-0-3) unstable; urgency=low * Wrapping and sorting depends. From 2e77de275a114554c25190c7e217f230fedd7173 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 28 Aug 2009 17:20:11 +0300 Subject: [PATCH 210/251] [IMP] remove irritating call to bzr. bzr revid: p_christ@hol.gr-20090828142011-9ree0qumovrx9wt6 --- bin/service/web_services.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/bin/service/web_services.py b/bin/service/web_services.py index 6bb6989ef8e..5710b7ffe09 100644 --- a/bin/service/web_services.py +++ b/bin/service/web_services.py @@ -529,11 +529,6 @@ GNU Public Licence. raise def get_server_environment(self): - try: - rev_id = os.popen('bzr revision-info').read() - except Exception,e: - rev_id = 'Exception: %s\n' % (tools.ustr(e)) - os_lang = '.'.join( [x for x in locale.getdefaultlocale() if x] ) if not os_lang: os_lang = 'NOT SET' @@ -552,10 +547,9 @@ GNU Public Licence. 'Operating System Architecture : %s\n' \ 'Operating System Locale : %s\n'\ 'Python Version : %s\n'\ - 'OpenERP-Server Version : %s\n'\ - 'Last revision No. & ID : %s'\ + 'OpenERP-Server Version : %s'\ %(platform.release(), platform.version(), platform.architecture()[0], - os_lang, platform.python_version(),release.version,rev_id) + os_lang, platform.python_version(),release.version) return environment From 4abaf2763e89ba069ab42bd8207dc6fdc0079133 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 29 Aug 2009 18:23:46 +0300 Subject: [PATCH 211/251] [MAJOR IMP] Rewrite the http/RPC engine and let HTTP/1.1 features. This patch attempts a major change in the structure of the XML-RPC framework. There is one http server, capable of multiple services (except XML-RPC). That server could handle authentication, and is also HTTP/1.1 capable, which means it supports **persistent connections** ! At this commit, the old behaviour of the XML-RPC protocol is merely working. The netsvc.Service is split, so expect wizard/report breakages. External modules (koo) also break with this API. The net-svc code is crippled and gone FTM. bzr revid: p_christ@hol.gr-20090829152346-7i1iiqs8skdddamq --- bin/netsvc.py | 302 ++++++++++-------------------- bin/openerp-server.py | 50 ++--- bin/osv/osv.py | 1 - bin/report/interface.py | 7 +- bin/service/http_server.py | 211 +++++++++++++++++++++ bin/service/web_services.py | 259 ++++++++++++++------------ bin/service/websrv_lib.py | 357 ++++++++++++++++++++++++++++++++++++ bin/tools/translate.py | 4 +- bin/wizard/__init__.py | 2 +- 9 files changed, 831 insertions(+), 362 deletions(-) create mode 100644 bin/service/http_server.py create mode 100644 bin/service/websrv_lib.py diff --git a/bin/netsvc.py b/bin/netsvc.py index c4194e3024e..e9c9fc21728 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -37,17 +37,23 @@ import time import xmlrpclib import release -SERVICES = {} -GROUPS = {} - class Service(object): + """ Base class for *Local* services + + Functionality here is trusted, no authentication. + """ + _services = {} def __init__(self, name, audience=''): - SERVICES[name] = self + Service._services[name] = self self.__name = name self._methods = {} def joinGroup(self, name): - GROUPS.setdefault(name, {})[self.__name] = self + raise Exception("No group for local services") + #GROUPS.setdefault(name, {})[self.__name] = self + + def service_exist(self,name): + return Service._services.has_key(name) def exportMethod(self, method): if callable(method): @@ -59,11 +65,16 @@ class Service(object): else: raise -class LocalService(Service): +class LocalService(object): + """ Proxy for local services. + + Any instance of this class will behave like the single instance + of Service(name) + """ def __init__(self, name): self.__name = name try: - self._service = SERVICES[name] + self._service = Service._services[name] for method_name, method_definition in self._service._methods.items(): setattr(self, method_name, method_definition) except KeyError, keyError: @@ -72,8 +83,42 @@ class LocalService(Service): def __call__(self, method, *params): return getattr(self, method)(*params) -def service_exist(name): - return SERVICES.get(name, False) +class ExportService(object): + """ Proxy for exported services. + + All methods here should take an AuthProxy as their first parameter. It + will be appended by the calling framework. + + Note that this class has no direct proxy, capable of calling + eservice.method(). Rather, the proxy should call + dispatch(method,auth,params) + """ + + _services = {} + _groups = {} + + def __init__(self, name, audience=''): + ExportService._services[name] = self + self.__name = name + + def joinGroup(self, name): + ExportService._groups.setdefault(name, {})[self.__name] = self + + @classmethod + def getService(cls,name): + return cls._services[name] + + def dispatch(self, method, auth, params): + pass + + def new_dispatch(self,method,auth,params): + pass + + def abortResponse(self, error, description, origin, details): + if not tools.config['debug_mode']: + raise Exception("%s -- %s\n\n%s"%(origin, description, details)) + else: + raise LOG_NOTSET = 'notset' LOG_DEBUG_RPC = 'debug_rpc' @@ -244,10 +289,46 @@ class Agent(object): import traceback -class xmlrpc(object): - class RpcGateway(object): - def __init__(self, name): - self.name = name +class Server: + """ Generic interface for all servers with an event loop etc. + Override this to impement http, net-rpc etc. servers. + + Servers here must have threaded behaviour. start() must not block, + there is no run(). + """ + __is_started = False + __servers = [] + + def __init__(self): + if Server.__is_started: + raise Exception('All instances of servers must be inited before the startAll()') + Server.__servers.append(self) + + def start(self): + print "called stub Server.start" + pass + + def stop(self): + print "called stub Server.stop" + pass + + @classmethod + def startAll(cls): + if cls.__is_started: + return + print "Starting %d services" % len(cls.__servers) + for srv in cls.__servers: + srv.start() + cls.__is_started = True + + @classmethod + def quitAll(cls): + if not cls.__is_started: + return + for srv in cls.__servers: + srv.stop() + cls.__is_started = False + class OpenERPDispatcherException(Exception): def __init__(self, exception, traceback): @@ -264,7 +345,11 @@ class OpenERPDispatcher: self.log('service', service_name) self.log('method', method) self.log('params', params) - result = LocalService(service_name)(method, *params) + if hasattr(self,'auth_provider'): + auth = self.auth_provider + else: + auth = None + result = ExportService.getService(service_name).dispatch(method, auth, params) self.log('result', result) return result except Exception, e: @@ -279,193 +364,4 @@ class OpenERPDispatcher: pdb.post_mortem(tb[2]) raise OpenERPDispatcherException(e, tb_s) -class GenericXMLRPCRequestHandler(OpenERPDispatcher): - def _dispatch(self, method, params): - try: - service_name = self.path.split("/")[-1] - return self.dispatch(service_name, method, params) - except OpenERPDispatcherException, e: - raise xmlrpclib.Fault(tools.exception_to_unicode(e.exception), e.traceback) - -class SSLSocket(object): - def __init__(self, socket): - if not hasattr(socket, 'sock_shutdown'): - from OpenSSL import SSL - ctx = SSL.Context(SSL.SSLv23_METHOD) - ctx.use_privatekey_file(tools.config['secure_pkey_file']) - ctx.use_certificate_file(tools.config['secure_cert_file']) - - self.socket = SSL.Connection(ctx, socket) - else: - self.socket = socket - - def shutdown(self, how): - return self.socket.sock_shutdown(how) - - def __getattr__(self, name): - return getattr(self.socket, name) - -class SimpleXMLRPCRequestHandler(GenericXMLRPCRequestHandler, SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): - rpc_paths = map(lambda s: '/xmlrpc/%s' % s, SERVICES.keys()) - -class SecureXMLRPCRequestHandler(SimpleXMLRPCRequestHandler): - def setup(self): - self.connection = SSLSocket(self.request) - self.rfile = socket._fileobject(self.request, "rb", self.rbufsize) - self.wfile = socket._fileobject(self.request, "wb", self.wbufsize) - -class SimpleThreadedXMLRPCServer(SocketServer.ThreadingMixIn, SimpleXMLRPCServer.SimpleXMLRPCServer): - encoding = None - allow_none = False - - def server_bind(self): - self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) - SimpleXMLRPCServer.SimpleXMLRPCServer.server_bind(self) - - def handle_error(self, request, client_address): - """ Override the error handler - """ - import traceback - Logger().notifyChannel("init", LOG_ERROR,"Server error in request from %s:\n%s" % - (client_address,traceback.format_exc())) - -class SecureThreadedXMLRPCServer(SimpleThreadedXMLRPCServer): - def __init__(self, server_address, HandlerClass, logRequests=1): - SimpleThreadedXMLRPCServer.__init__(self, server_address, HandlerClass, logRequests) - self.socket = SSLSocket(socket.socket(self.address_family, self.socket_type)) - self.server_bind() - self.server_activate() - - def handle_error(self, request, client_address): - """ Override the error handler - """ - import traceback - e_type, e_value, e_traceback = sys.exc_info() - Logger().notifyChannel("init", LOG_ERROR,"SSL Request handler error in request from %s: %s\n%s" % - (client_address,str(e_type),traceback.format_exc())) - -class HttpDaemon(threading.Thread): - def __init__(self, interface, port, secure=False): - threading.Thread.__init__(self) - self.__port = port - self.__interface = interface - self.secure = bool(secure) - handler_class = (SimpleXMLRPCRequestHandler, SecureXMLRPCRequestHandler)[self.secure] - server_class = (SimpleThreadedXMLRPCServer, SecureThreadedXMLRPCServer)[self.secure] - - if self.secure: - from OpenSSL.SSL import Error as SSLError - else: - class SSLError(Exception): pass - try: - self.server = server_class((interface, port), handler_class, 0) - except SSLError, e: - Logger().notifyChannel('xml-rpc-ssl', LOG_CRITICAL, "Can not load the certificate and/or the private key files") - sys.exit(1) - except Exception, e: - Logger().notifyChannel('xml-rpc', LOG_CRITICAL, "Error occur when starting the server daemon: %s" % (e,)) - sys.exit(1) - - - def attach(self, path, gw): - pass - - def stop(self): - self.running = False - if os.name != 'nt': - self.server.socket.shutdown( hasattr(socket, 'SHUT_RDWR') and socket.SHUT_RDWR or 2 ) - self.server.socket.close() - - def run(self): - self.server.register_introspection_functions() - - self.running = True - while self.running: - self.server.handle_request() - return True - - # If the server need to be run recursively - # - #signal.signal(signal.SIGALRM, self.my_handler) - #signal.alarm(6) - #while True: - # self.server.handle_request() - #signal.alarm(0) # Disable the alarm - -import tiny_socket -class TinySocketClientThread(threading.Thread, OpenERPDispatcher): - def __init__(self, sock, threads): - threading.Thread.__init__(self) - self.sock = sock - self.threads = threads - - def run(self): - import select - self.running = True - try: - ts = tiny_socket.mysocket(self.sock) - except: - self.sock.close() - self.threads.remove(self) - return False - while self.running: - try: - msg = ts.myreceive() - except: - self.sock.close() - self.threads.remove(self) - return False - try: - result = self.dispatch(msg[0], msg[1], msg[2:]) - ts.mysend(result) - except OpenERPDispatcherException, e: - new_e = Exception(tools.exception_to_unicode(e.exception)) # avoid problems of pickeling - ts.mysend(new_e, exception=True, traceback=e.traceback) - - self.sock.close() - self.threads.remove(self) - return True - - def stop(self): - self.running = False - - -class TinySocketServerThread(threading.Thread): - def __init__(self, interface, port, secure=False): - threading.Thread.__init__(self) - self.__port = port - self.__interface = interface - self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) - self.socket.bind((self.__interface, self.__port)) - self.socket.listen(5) - self.threads = [] - - def run(self): - import select - try: - self.running = True - while self.running: - (clientsocket, address) = self.socket.accept() - ct = TinySocketClientThread(clientsocket, self.threads) - self.threads.append(ct) - ct.start() - self.socket.close() - except Exception, e: - self.socket.close() - return False - - def stop(self): - self.running = False - for t in self.threads: - t.stop() - try: - if hasattr(socket, 'SHUT_RDWR'): - self.socket.shutdown(socket.SHUT_RDWR) - else: - self.socket.shutdown(2) - self.socket.close() - except: - return False - # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/bin/openerp-server.py b/bin/openerp-server.py index e095f4ed629..f783ba4f666 100755 --- a/bin/openerp-server.py +++ b/bin/openerp-server.py @@ -152,35 +152,22 @@ if tools.config["stop_after_init"]: #---------------------------------------------------------- -# Launch Server +# Launch Servers #---------------------------------------------------------- -if tools.config['xmlrpc']: - port = int(tools.config['port']) - interface = tools.config["interface"] - secure = tools.config["secure"] +import service.http_server - httpd = netsvc.HttpDaemon(interface, port, secure) +service.http_server.init_servers() +service.http_server.init_xmlrpc() - xml_gw = netsvc.xmlrpc.RpcGateway('web-services') - httpd.attach("/xmlrpc", xml_gw) - logger.notifyChannel("web-services", netsvc.LOG_INFO, - "starting XML-RPC%s services, port %s" % - ((tools.config['secure'] and ' Secure' or ''), port)) -# -#if tools.config["soap"]: -# soap_gw = netsvc.xmlrpc.RpcGateway('web-services') -# httpd.attach("/soap", soap_gw ) -# logger.notifyChannel("web-services", netsvc.LOG_INFO, 'starting SOAP services, port '+str(port)) -# - -if tools.config['netrpc']: - netport = int(tools.config['netport']) - netinterface = tools.config["netinterface"] - tinySocket = netsvc.TinySocketServerThread(netinterface, netport, False) - logger.notifyChannel("web-services", netsvc.LOG_INFO, - "starting NET-RPC service, port %d" % (netport,)) +# *-* TODO +#if tools.config['netrpc']: + #netport = int(tools.config['netport']) + #netinterface = tools.config["netinterface"] + #tinySocket = netsvc.TinySocketServerThread(netinterface, netport, False) + #logger.notifyChannel("web-services", netsvc.LOG_INFO, + #"starting NET-RPC service, port %d" % (netport,)) LST_SIGNALS = ['SIGINT', 'SIGTERM'] if os.name == 'posix': @@ -196,11 +183,8 @@ def handler(signum, _): :param signum: the signal number :param _: """ - if tools.config['netrpc']: - tinySocket.stop() - if tools.config['xmlrpc']: - httpd.stop() netsvc.Agent.quit() + netsvc.Server.quitAll() if tools.config['pidfile']: os.unlink(tools.config['pidfile']) logger.notifyChannel('shutdown', netsvc.LOG_INFO, @@ -217,16 +201,14 @@ if tools.config['pidfile']: fd.write(pidtext) fd.close() + +netsvc.Server.startAll() + logger.notifyChannel("web-services", netsvc.LOG_INFO, 'the server is running, waiting for connections...') -if tools.config['netrpc']: - tinySocket.start() -if tools.config['xmlrpc']: - httpd.start() - while True: - time.sleep(1) + time.sleep(60) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/bin/osv/osv.py b/bin/osv/osv.py index f6a364b7891..807ecad566d 100644 --- a/bin/osv/osv.py +++ b/bin/osv/osv.py @@ -86,7 +86,6 @@ class osv_pool(netsvc.Service): self._init = True self._init_parent = {} netsvc.Service.__init__(self, 'object_proxy', audience='') - self.joinGroup('web-services') self.exportMethod(self.obj_list) self.exportMethod(self.exec_workflow) self.exportMethod(self.execute) diff --git a/bin/report/interface.py b/bin/report/interface.py index bcbcd0f53fb..17fd771ad49 100644 --- a/bin/report/interface.py +++ b/bin/report/interface.py @@ -49,7 +49,7 @@ def toxml(val): class report_int(netsvc.Service): def __init__(self, name, audience='*'): - assert not netsvc.service_exist(name), 'The report "%s" already exist!' % name + assert not self.service_exist(name), 'The report "%s" already exist!' % name super(report_int, self).__init__(name, audience) if name[0:7]<>'report.': raise Exception, 'ConceptionError, bad report name, should start with "report."' @@ -57,7 +57,7 @@ class report_int(netsvc.Service): self.id = 0 self.name2 = '.'.join(name.split('.')[1:]) self.title = None - self.joinGroup('report') + #self.joinGroup('report') self.exportMethod(self.create) def create(self, cr, uid, ids, datas, context=None): @@ -239,8 +239,9 @@ def register_all(db): cr.execute("SELECT * FROM ir_act_report_xml WHERE auto=%s ORDER BY id", (True,)) result = cr.dictfetchall() cr.close() + svcs = netsvc.Service._services for r in result: - if netsvc.service_exist('report.'+r['report_name']): + if svcs.has_key('report.'+r['report_name']): continue if r['report_rml'] or r['report_rml_content_data']: report_sxw('report.'+r['report_name'], r['model'], diff --git a/bin/service/http_server.py b/bin/service/http_server.py new file mode 100644 index 00000000000..76cf5b2fc91 --- /dev/null +++ b/bin/service/http_server.py @@ -0,0 +1,211 @@ +# -*- encoding: utf-8 -*- + +# +# Copyright P. Christeas 2008,2009 +# +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +############################################################################### + +""" This file contains instance of the http server. + + +""" +from websrv_lib import * +import netsvc +import threading +import tools +import os +import socket +import xmlrpclib + +from SimpleXMLRPCServer import SimpleXMLRPCDispatcher + +try: + import fcntl +except ImportError: + fcntl = None + +class ThreadedHTTPServer(ConnThreadingMixIn, SimpleXMLRPCDispatcher, HTTPServer): + """ A threaded httpd server, with all the necessary functionality for us. + + It also inherits the xml-rpc dispatcher, so that some xml-rpc functions + will be available to the request handler + """ + encoding = None + allow_none = False + allow_reuse_address = 1 + _send_traceback_header = False + i = 0 + + def __init__(self, addr, requestHandler, + logRequests=True, allow_none=False, encoding=None, bind_and_activate=True): + self.logRequests = logRequests + + SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding) + HTTPServer.__init__(self, addr, requestHandler, bind_and_activate) + + # [Bug #1222790] If possible, set close-on-exec flag; if a + # method spawns a subprocess, the subprocess shouldn't have + # the listening socket open. + if fcntl is not None and hasattr(fcntl, 'FD_CLOEXEC'): + flags = fcntl.fcntl(self.fileno(), fcntl.F_GETFD) + flags |= fcntl.FD_CLOEXEC + fcntl.fcntl(self.fileno(), fcntl.F_SETFD, flags) + + def handle_error(self, request, client_address): + """ Override the error handler + """ + import traceback + netsvc.Logger().notifyChannel("init", netsvc.LOG_ERROR,"Server error in request from %s:\n%s" % + (client_address,traceback.format_exc())) + +class MultiHandler2(MultiHTTPHandler): + def log_message(self, format, *args): + netsvc.Logger().notifyChannel('http',netsvc.LOG_DEBUG,format % args) + + +class SecureMultiHandler2(SecureMultiHTTPHandler): + def log_message(self, format, *args): + netsvc.Logger().notifyChannel('https',netsvc.LOG_DEBUG,format % args) + +class HttpDaemon(threading.Thread, netsvc.Server): + def __init__(self, interface, port): + threading.Thread.__init__(self) + netsvc.Server.__init__(self) + self.__port = port + self.__interface = interface + + try: + self.server = ThreadedHTTPServer((interface, port), MultiHandler2) + self.server.vdirs = [] + self.server.logRequests = True + except Exception, e: + netsvc.Logger().notifyChannel('httpd', netsvc.LOG_CRITICAL, "Error occur when starting the server daemon: %s" % (e,)) + raise + + + def attach(self, path, gw): + pass + + def stop(self): + self.running = False + if os.name != 'nt': + self.server.socket.shutdown( hasattr(socket, 'SHUT_RDWR') and socket.SHUT_RDWR or 2 ) + self.server.socket.close() + + def run(self): + #self.server.register_introspection_functions() + + self.running = True + while self.running: + self.server.handle_request() + return True + +class HttpSDaemon(threading.Thread, netsvc.Server): + def __init__(self, interface, port): + threading.Thread.__init__(self) + netsvc.Server.__init__(self) + self.__port = port + self.__interface = interface + + from ssl import SSLError + + try: + self.server = ThreadedHTTPServer((interface, port), SecureMultiHandler2) + self.server.vdirs = [] + self.server.logRequests = True + except SSLError, e: + netsvc.Logger().notifyChannel('httpd-ssl', netsvc.LOG_CRITICAL, "Can not load the certificate and/or the private key files") + raise + except Exception, e: + netsvc.Logger().notifyChannel('httpd-ssl', netsvc.LOG_CRITICAL, "Error occur when starting the server daemon: %s" % (e,)) + raise + +httpd = None +httpsd = None + +def init_servers(): + global httpd, httpsd + if tools.config.get_misc('httpd','enable', True): + print "creating a httpd" + httpd = HttpDaemon(tools.config.get_misc('httpd','interface', ''), \ + tools.config.get_misc('httpd','port', 8069)) + + if tools.config.get_misc('httpsd','enable', False): + print "creating a httpsd" + httpsd = HttpSDaemon(tools.config.get_misc('httpsd','interface', ''), \ + tools.config.get_misc('httpsd','port', 8071)) + +def reg_http_service(hts, secure_only = False): + """ Register some handler to httpd. + hts must be an HTTPDir + """ + global httpd, httpsd + if not isinstance(hts, HTTPDir): + raise Exception("Wrong class for http service") + + if httpd and not secure_only: + httpd.server.vdirs.append(hts) + + if httpsd: + httpsd.server.vdirs.append(hts) + + if (not httpd) and (not httpsd): + netsvc.Logger().notifyChannel('httpd',netsvc.LOG_WARNING,"No httpd available to register service %s",hts.path) + return + +import SimpleXMLRPCServer +class XMLRPCRequestHandler(netsvc.OpenERPDispatcher,SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): + rpc_paths = [] + protocol_version = 'HTTP/1.1' + def _dispatch(self, method, params): + try: + service_name = self.path.split("/")[-1] + return self.dispatch(service_name, method, params) + except netsvc.OpenERPDispatcherException, e: + raise xmlrpclib.Fault(tools.exception_to_unicode(e.exception), e.traceback) + + def log_message(self, format, *args): + netsvc.Logger().notifyChannel('xmlrpc',netsvc.LOG_DEBUG_RPC,format % args) + + def handle(self): + pass + + def finish(self): + pass + + def setup(self): + self.connection = dummyconn() + if not len(XMLRPCRequestHandler.rpc_paths): + XMLRPCRequestHandler.rpc_paths = map(lambda s: '/%s' % s, netsvc.ExportService._services.keys()) + pass + + +def init_xmlrpc(): + if not tools.config.get_misc('xmlrpc','enable', True): + return + reg_http_service(HTTPDir('/xmlrpc/',XMLRPCRequestHandler)) + # Example of http file serving: + # reg_http_service(HTTPDir('/test/',HTTPHandler)) + print "Started XML-RPC" +#eof diff --git a/bin/service/web_services.py b/bin/service/web_services.py index 5710b7ffe09..c2d68cadbe2 100644 --- a/bin/service/web_services.py +++ b/bin/service/web_services.py @@ -41,28 +41,36 @@ import tools import locale logging.basicConfig() -class db(netsvc.Service): +class db(netsvc.ExportService): def __init__(self, name="db"): - netsvc.Service.__init__(self, name) + netsvc.ExportService.__init__(self, name) self.joinGroup("web-services") - self.exportMethod(self.create) - self.exportMethod(self.get_progress) - self.exportMethod(self.drop) - self.exportMethod(self.dump) - self.exportMethod(self.restore) - self.exportMethod(self.rename) - self.exportMethod(self.list) - self.exportMethod(self.list_lang) - self.exportMethod(self.change_admin_password) - self.exportMethod(self.server_version) - self.exportMethod(self.migrate_databases) self.actions = {} self.id = 0 self.id_protect = threading.Semaphore() self._pg_psw_env_var_is_set = False # on win32, pg_dump need the PGPASSWORD env var - def create(self, password, db_name, demo, lang, user_password='admin'): + def dispatch(self, method, auth, params): + if method in [ 'create', 'get_progress', 'drop', 'dump', + 'restore', 'rename', + 'change_admin_password', 'migrate_databases' ]: + passwd = params[0] + params = params[1:] + security.check_super(password) + elif method in [ 'db_exist', 'list', 'list_lang', 'server_version' ]: + # params = params + # No security check for these methods + pass + else: + raise KeyError("Method not found: %s" % method) + fn = getattr(self, 'exp_'+method) + return fn(*params) + + def new_dispatch(self,method,auth,params): + pass + + def exp_create(self, db_name, demo, lang, user_password='admin'): security.check_super(password) self.id_protect.acquire() self.id += 1 @@ -131,8 +139,7 @@ class db(netsvc.Service): self.actions[id]['thread'] = create_thread return id - def get_progress(self, password, id): - security.check_super(password) + def exp_get_progress(self, id): if self.actions[id]['thread'].isAlive(): # return addons.init_progress[db_name] return (min(self.actions[id].get('progress', 0),0.95), []) @@ -147,8 +154,7 @@ class db(netsvc.Service): del self.actions[id] raise Exception, e - def drop(self, password, db_name): - security.check_super(password) + def exp_drop(self, db_name): sql_db.close_db(db_name) logger = netsvc.Logger() @@ -180,8 +186,7 @@ class db(netsvc.Service): if os.name == 'nt' and self._pg_psw_env_var_is_set: os.environ['PGPASSWORD'] = '' - def dump(self, password, db_name): - security.check_super(password) + def exp_dump(self, db_name): logger = netsvc.Logger() self._set_pg_psw_env_var() @@ -210,7 +215,7 @@ class db(netsvc.Service): return base64.encodestring(data) - def restore(self, password, db_name, data): + def exp_restore(self, db_name, data): security.check_super(password) logger = netsvc.Logger() @@ -261,8 +266,7 @@ class db(netsvc.Service): return True - def rename(self, password, old_name, new_name): - security.check_super(password) + def exp_rename(self, old_name, new_name): sql_db.close_db(old_name) logger = netsvc.Logger() @@ -288,14 +292,14 @@ class db(netsvc.Service): sql_db.close_db('template1') return True - def db_exist(self, db_name): + def exp_db_exist(self, db_name): try: db = sql_db.db_connect(db_name) return True except: return False - def list(self): + def exp_list(self): db = sql_db.db_connect('template1') cr = db.cursor() try: @@ -321,27 +325,25 @@ class db(netsvc.Service): res.sort() return res - def change_admin_password(self, old_password, new_password): - security.check_super(old_password) + def exp_change_admin_password(self, new_password): tools.config['admin_passwd'] = new_password tools.config.save() return True - def list_lang(self): + def exp_list_lang(self): return tools.scan_languages() - def server_version(self): + def exp_server_version(self): """ Return the version of the server Used by the client to verify the compatibility with its own version """ return release.version - def migrate_databases(self, password, databases): + def exp_migrate_databases(self,databases): from osv.orm import except_orm from osv.osv import except_osv - security.check_super(password) l = netsvc.Logger() for db in databases: try: @@ -360,64 +362,74 @@ class db(netsvc.Service): return True db() -class common(netsvc.Service): +class _ObjectService(netsvc.ExportService): + "A common base class for those who have fn(db, uid, password,...) " + + def common_dispatch(self, method, auth, params): + (db, uid, passwd ) = params[0:3] + params = params[3:] + security.check(db,uid,passwd) + cr = pooler.get_db(db).cursor() + fn = getattr(self, 'exp_'+method) + res = fn(cr, uid, *params) + cr.commit() + cr.close() + return res + +class common(_ObjectService): def __init__(self,name="common"): - netsvc.Service.__init__(self,name) + _ObjectService.__init__(self,name) self.joinGroup("web-services") - self.exportMethod(self.ir_get) - self.exportMethod(self.ir_set) - self.exportMethod(self.ir_del) - self.exportMethod(self.about) - self.exportMethod(self.login) - self.exportMethod(self.logout) - self.exportMethod(self.timezone_get) - self.exportMethod(self.get_available_updates) - self.exportMethod(self.get_migration_scripts) - self.exportMethod(self.get_server_environment) - self.exportMethod(self.login_message) - self.exportMethod(self.set_loglevel) - def ir_set(self, db, uid, password, keys, args, name, value, replace=True, isobject=False): - security.check(db, uid, password) - cr = pooler.get_db(db).cursor() + def dispatch(self, method, auth, params): + logger = netsvc.Logger() + if method in [ 'ir_set','ir_del', 'ir_get' ]: + return self.common_dispatch(method,auth,params) + if method == 'login': + # At this old dispatcher, we do NOT update the auth proxy + res = security.login(params[0], params[1], params[2]) + msg = res and 'successful login' or 'bad login or password' + # TODO log the client ip address.. + logger.notifyChannel("web-service", netsvc.LOG_INFO, "%s from '%s' using database '%s'" % (msg, params[1], params[0].lower())) + return res or False + elif method == 'logout': + if auth: + auth.logout(params[1]) + logger.notifyChannel("web-service", netsvc.LOG_INFO,'Logout %s from database %s'%(login,db)) + return True + elif method in ['about', 'timezone_get', 'get_server_environment', 'login_message']: + pass + elif method in ['get_available_updates', 'get_migration_scripts', 'set_loglevel']: + passwd = params[0] + params = params[1:] + security.check_super(passwd) + else: + raise Exception("Method not found: %s" % method) + + fn = getattr(self, 'exp_'+method) + return fn(*params) + + + def new_dispatch(self,method,auth,params): + pass + + def exp_ir_set(self, cr, uid, keys, args, name, value, replace=True, isobject=False): res = ir.ir_set(cr,uid, keys, args, name, value, replace, isobject) - cr.commit() - cr.close() return res - def ir_del(self, db, uid, password, id): - security.check(db, uid, password) - cr = pooler.get_db(db).cursor() + def exp_ir_del(self, cr, uid, id): res = ir.ir_del(cr,uid, id) - cr.commit() - cr.close() return res - def ir_get(self, db, uid, password, keys, args=None, meta=None, context=None): + def exp_ir_get(self, cr, uid, keys, args=None, meta=None, context=None): if not args: args=[] if not context: context={} - security.check(db, uid, password) - cr = pooler.get_db(db).cursor() res = ir.ir_get(cr,uid, keys, args, meta, context) - cr.commit() - cr.close() return res - def login(self, db, login, password): - res = security.login(db, login, password) - logger = netsvc.Logger() - msg = res and 'successful login' or 'bad login or password' - logger.notifyChannel("web-service", netsvc.LOG_INFO, "%s from '%s' using database '%s'" % (msg, login, db.lower())) - return res or False - - def logout(self, db, login, password): - logger = netsvc.Logger() - logger.notifyChannel("web-service", netsvc.LOG_INFO,'Logout %s from database %s'%(login,db)) - return True - - def about(self, extended=False): + def exp_about(self, extended=False): """Return information about the OpenERP Server. @param extended: if True then return version info @@ -437,12 +449,11 @@ GNU Public Licence. return info, release.version return info - def timezone_get(self, db, login, password): + def exp_timezone_get(self, db, login, password): return time.tzname[0] - def get_available_updates(self, password, contract_id, contract_password): - security.check_super(password) + def exp_get_available_updates(self, contract_id, contract_password): import tools.maintenance as tm try: rc = tm.remote_contract(contract_id, contract_password) @@ -455,8 +466,7 @@ GNU Public Licence. self.abortResponse(1, 'Migration Error', 'warning', str(e)) - def get_migration_scripts(self, password, contract_id, contract_password): - security.check_super(password) + def exp_get_migration_scripts(self, contract_id, contract_password): l = netsvc.Logger() import tools.maintenance as tm try: @@ -528,7 +538,7 @@ GNU Public Licence. l.notifyChannel('migration', netsvc.LOG_ERROR, tb_s) raise - def get_server_environment(self): + def exp_get_server_environment(self): os_lang = '.'.join( [x for x in locale.getdefaultlocale() if x] ) if not os_lang: os_lang = 'NOT SET' @@ -553,42 +563,36 @@ GNU Public Licence. return environment - def login_message(self): + def exp_login_message(self): return tools.config.get('login_message', False) - def set_loglevel(self, password, loglevel): - security.check_super(password) + def exp_set_loglevel(self,loglevel): l = netsvc.Logger() l.set_loglevel(int(loglevel)) return True common() -class objects_proxy(netsvc.Service): +class objects_proxy(netsvc.ExportService): def __init__(self, name="object"): - netsvc.Service.__init__(self,name) + netsvc.ExportService.__init__(self,name) self.joinGroup('web-services') - self.exportMethod(self.execute) - self.exportMethod(self.exec_workflow) - self.exportMethod(self.obj_list) - def exec_workflow(self, db, uid, passwd, object, method, id): - security.check(db, uid, passwd) - service = netsvc.LocalService("object_proxy") - res = service.exec_workflow(db, uid, object, method, id) - return res + def dispatch(self, method, auth, params): + (db, uid, passwd ) = params[0:3] + params = params[3:] + if method not in ['execute','exec_workflow','obj_list']: + raise KeyError("Method not supported %s" % method) + security.check(db,uid,passwd) + ls = netsvc.LocalService('object_proxy') + fn = getattr(ls, method) + res = fn(db, uid, *params) + return res - def execute(self, db, uid, passwd, object, method, *args): - security.check(db, uid, passwd) - service = netsvc.LocalService("object_proxy") - res = service.execute(db, uid, object, method, *args) - return res + + def new_dispatch(self,method,auth,params): + pass - def obj_list(self, db, uid, passwd): - security.check(db, uid, passwd) - service = netsvc.LocalService("object_proxy") - res = service.obj_list() - return res objects_proxy() @@ -603,26 +607,36 @@ objects_proxy() # Wizard datas: {} # TODO: change local request to OSE request/reply pattern # -class wizard(netsvc.Service): +class wizard(netsvc.ExportService): def __init__(self, name='wizard'): - netsvc.Service.__init__(self,name) + netsvc.ExportService.__init__(self,name) self.joinGroup('web-services') - self.exportMethod(self.execute) - self.exportMethod(self.create) self.id = 0 self.wiz_datas = {} self.wiz_name = {} self.wiz_uid = {} + def dispatch(self, method, auth, params): + (db, uid, passwd ) = params[0:3] + params = params[3:] + if method not in ['execute','create']: + raise KeyError("Method not supported %s" % method) + security.check(db,uid,passwd) + fn = getattr(self, 'exp_'+method) + res = fn(ls, db, uid, *params) + return res + + def new_dispatch(self,method,auth,params): + pass + def _execute(self, db, uid, wiz_id, datas, action, context): self.wiz_datas[wiz_id].update(datas) wiz = netsvc.LocalService('wizard.'+self.wiz_name[wiz_id]) return wiz.execute(db, uid, self.wiz_datas[wiz_id], action, context) - def create(self, db, uid, passwd, wiz_name, datas=None): + def exp_create(self, db, uid, wiz_name, datas=None): if not datas: datas={} - security.check(db, uid, passwd) #FIXME: this is not thread-safe self.id += 1 self.wiz_datas[self.id] = {} @@ -630,10 +644,9 @@ class wizard(netsvc.Service): self.wiz_uid[self.id] = uid return self.id - def execute(self, db, uid, passwd, wiz_id, datas, action='init', context=None): + def exp_execute(self, db, uid, wiz_id, datas, action='init', context=None): if not context: context={} - security.check(db, uid, passwd) if wiz_id in self.wiz_uid: if self.wiz_uid[wiz_id] == uid: @@ -657,22 +670,33 @@ class ExceptionWithTraceback(Exception): self.traceback = tb self.args = (msg, tb) -class report_spool(netsvc.Service): +class report_spool(netsvc.ExportService): def __init__(self, name='report'): - netsvc.Service.__init__(self, name) + netsvc.ExportService.__init__(self, name) self.joinGroup('web-services') - self.exportMethod(self.report) - self.exportMethod(self.report_get) self._reports = {} self.id = 0 self.id_protect = threading.Semaphore() - def report(self, db, uid, passwd, object, ids, datas=None, context=None): + def dispatch(self, method, auth, params): + (db, uid, passwd ) = params[0:3] + params = params[3:] + if method not in ['report','report_get']: + raise KeyError("Method not supported %s" % method) + security.check(db,uid,passwd) + fn = getattr(self, 'exp_' + method) + res = fn(db, uid, *params) + return res + + + def new_dispatch(self,method,auth,params): + pass + + def exp_report(self, db, uid, object, ids, datas=None, context=None): if not datas: datas={} if not context: context={} - security.check(db, uid, passwd) self.id_protect.acquire() self.id += 1 @@ -728,8 +752,7 @@ class report_spool(netsvc.Service): del self._reports[report_id] return res - def report_get(self, db, uid, passwd, report_id): - security.check(db, uid, passwd) + def exp_report_get(self, db, uid, report_id): if report_id in self._reports: if self._reports[report_id]['uid'] == uid: diff --git a/bin/service/websrv_lib.py b/bin/service/websrv_lib.py new file mode 100644 index 00000000000..d5c39473e54 --- /dev/null +++ b/bin/service/websrv_lib.py @@ -0,0 +1,357 @@ +# -*- encoding: utf-8 -*- + +# +# Copyright P. Christeas 2008,2009 +# +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +############################################################################### + +""" Framework for generic http servers + +""" + + +class AuthRequiredExc(Exception): + def __init__(self,atype,realm): + Exception.__init__(self) + self.atype = atype + self.realm = realm + +class AuthRejectedExc(Exception): + pass + +class AuthProvider: + def __init__(self,realm): + self.realm = realm + + def setupAuth(self, multi,handler): + """ Attach an AuthProxy object to handler + """ + pass + + def authenticate(self, user, passwd, client_address): + #if user == 'user' and passwd == 'password': + # return (user, passwd) + #else: + return False + +class BasicAuthProvider(AuthProvider): + def setupAuth(self, multi, handler): + if not multi.sec_realms.has_key(self.realm): + multi.sec_realms[self.realm] = BasicAuthProxy(self) + + +class AuthProxy: + """ This class will hold authentication information for a handler, + i.e. a connection + """ + def __init__(self, provider): + self.provider = provider + + def checkRequest(self,handler,path = '/'): + """ Check if we are allowed to process that request + """ + pass + +import base64 +class BasicAuthProxy(AuthProxy): + """ Require basic authentication.. + """ + def __init__(self,provider): + AuthProxy.__init__(self,provider) + self.auth_creds = None + self.auth_tries = 0 + + def checkRequest(self,handler,path = '/'): + if self.auth_creds: + return True + auth_str = handler.headers.get('Authorization',False) + if auth_str and auth_str.startswith('Basic '): + auth_str=auth_str[len('Basic '):] + (user,passwd) = base64.decodestring(auth_str).split(':') + print "Found user=\"%s\", passwd=\"%s\"" %(user,passwd) + self.auth_creds = self.provider.authenticate(user,passwd,handler.client_address) + if self.auth_creds: + return True + if self.auth_tries > 5: + raise AuthRejectedExc("Authorization failed.") + self.auth_tries += 1 + raise AuthRequiredExc(atype = 'Basic', realm=self.provider.realm) + + +from BaseHTTPServer import * + +from SimpleHTTPServer import SimpleHTTPRequestHandler +class HTTPHandler(SimpleHTTPRequestHandler): + def __init__(self,request, client_address, server): + SimpleHTTPRequestHandler.__init__(self,request,client_address,server) + # print "Handler for %s inited" % str(client_address) + self.protocol_version = 'HTTP/1.1' + self.connection = dummyconn() + + def handle(self): + """ Classes here should NOT handle inside their constructor + """ + pass + + def finish(self): + pass + + def setup(self): + pass + +class HTTPDir: + """ A dispatcher class, like a virtual folder in httpd + """ + def __init__(self,path,handler, auth_provider = None): + self.path = path + self.handler = handler + self.auth_provider = auth_provider + + def matches(self, request): + """ Test if some request matches us. If so, return + the matched path. """ + if request.startswith(self.path): + return self.path + return False + +class noconnection: + """ a class to use instead of the real connection + """ + def makefile(self, mode, bufsize): + return None + +class dummyconn: + def shutdown(self, tru): + pass + +import SocketServer +class MultiHTTPHandler(BaseHTTPRequestHandler): + """ this is a multiple handler, that will dispatch each request + to a nested handler, iff it matches + + The handler will also have *one* dict of authentication proxies, + groupped by their realm. + """ + + protocol_version = "HTTP/1.1" + + def __init__(self, request, client_address, server): + self.in_handlers = {} + self.sec_realms = {} + SocketServer.StreamRequestHandler.__init__(self,request,client_address,server) + self.log_message("MultiHttpHandler init for %s" %(str(client_address))) + + def _handle_one_foreign(self,fore, path, auth_provider): + """ This method overrides the handle_one_request for *children* + handlers. It is required, since the first line should not be + read again.. + + """ + fore.raw_requestline = "%s %s %s\n" % (self.command, path, self.version) + if not fore.parse_request(): # An error code has been sent, just exit + return + self.request_version = fore.request_version + if auth_provider and auth_provider.realm: + try: + self.sec_realms[auth_provider.realm].checkRequest(fore,path) + except AuthRequiredExc,ae: + if self.request_version != 'HTTP/1.1': + self.log_error("Cannot require auth at %s",self.request_version) + self.send_error(401) + return + self.send_response(401,'Authorization required') + self.send_header('WWW-Authenticate','%s realm="%s"' % (ae.atype,ae.realm)) + self.send_header('Content-Type','text/html') + self.send_header('Content-Length','0') + self.end_headers() + #self.wfile.write("\r\n") + return + except AuthRejectedExc,e: + self.send_error(401,e.args[0]) + self.close_connection = 1 + return + mname = 'do_' + fore.command + if not hasattr(fore, mname): + fore.send_error(501, "Unsupported method (%r)" % fore.command) + return + fore.close_connection = 0 + method = getattr(fore, mname) + method() + if fore.close_connection: + # print "Closing connection because of handler" + self.close_connection = fore.close_connection + + def parse_rawline(self): + """Parse a request (internal). + + The request should be stored in self.raw_requestline; the results + are in self.command, self.path, self.request_version and + self.headers. + + Return True for success, False for failure; on failure, an + error is sent back. + + """ + self.command = None # set in case of error on the first line + self.request_version = version = self.default_request_version + self.close_connection = 1 + requestline = self.raw_requestline + if requestline[-2:] == '\r\n': + requestline = requestline[:-2] + elif requestline[-1:] == '\n': + requestline = requestline[:-1] + self.requestline = requestline + words = requestline.split() + if len(words) == 3: + [command, path, version] = words + if version[:5] != 'HTTP/': + self.send_error(400, "Bad request version (%r)" % version) + return False + try: + base_version_number = version.split('/', 1)[1] + version_number = base_version_number.split(".") + # RFC 2145 section 3.1 says there can be only one "." and + # - major and minor numbers MUST be treated as + # separate integers; + # - HTTP/2.4 is a lower version than HTTP/2.13, which in + # turn is lower than HTTP/12.3; + # - Leading zeros MUST be ignored by recipients. + if len(version_number) != 2: + raise ValueError + version_number = int(version_number[0]), int(version_number[1]) + except (ValueError, IndexError): + self.send_error(400, "Bad request version (%r)" % version) + return False + if version_number >= (1, 1): + self.close_connection = 0 + if version_number >= (2, 0): + self.send_error(505, + "Invalid HTTP Version (%s)" % base_version_number) + return False + elif len(words) == 2: + [command, path] = words + self.close_connection = 1 + if command != 'GET': + self.send_error(400, + "Bad HTTP/0.9 request type (%r)" % command) + return False + elif not words: + return False + else: + self.send_error(400, "Bad request syntax (%r)" % requestline) + return False + self.request_version = version + self.command, self.path, self.version = command, path, version + return True + + def handle_one_request(self): + """Handle a single HTTP request. + Dispatch to the correct handler. + """ + self.request.setblocking(True) + self.raw_requestline = self.rfile.readline() + if not self.raw_requestline: + self.close_connection = 1 + # self.log_message("no requestline, connection closed?") + return + if not self.parse_rawline(): + self.log_message("Could not parse rawline.") + return + # self.parse_request(): # Do NOT parse here. the first line should be the only + for vdir in self.server.vdirs: + p = vdir.matches(self.path) + if p == False: + continue + npath = self.path[len(p):] + if not npath.startswith('/'): + npath = '/' + npath + + if not self.in_handlers.has_key(p): + self.in_handlers[p] = vdir.handler(noconnection(),self.client_address,self.server) + if vdir.auth_provider: + vdir.auth_provider.setupAuth(self, self.in_handlers[p]) + hnd = self.in_handlers[p] + hnd.rfile = self.rfile + hnd.wfile = self.wfile + self.rlpath = self.raw_requestline + self._handle_one_foreign(hnd,npath, vdir.auth_provider) + # print "Handled, closing = ", self.close_connection + return + # if no match: + self.send_error(404, "Path not found: %s" % self.path) + return + + +class SecureMultiHTTPHandler(MultiHTTPHandler): + def setup(self): + import ssl + self.connection = ssl.wrap_socket(self.request, + server_side=True, + certfile="server.cert", + keyfile="server.key", + ssl_version=ssl.PROTOCOL_SSLv23) + self.rfile = self.connection.makefile('rb', self.rbufsize) + self.wfile = self.connection.makefile('wb', self.wbufsize) + self.log_message("Secure %s connection from %s",self.connection.cipher(),self.client_address) + +import threading +class ConnThreadingMixIn: + """Mix-in class to handle each _connection_ in a new thread. + + This is necessary for persistent connections, where multiple + requests should be handled synchronously at each connection, but + multiple connections can run in parallel. + """ + + # Decides how threads will act upon termination of the + # main process + daemon_threads = False + + def _handle_request_noblock(self): + """Start a new thread to process the request.""" + t = threading.Thread(target = self._handle_request2) + print "request came, handling in new thread",t + if self.daemon_threads: + t.setDaemon (1) + t.start() + + def _handle_request2(self): + """Handle one request, without blocking. + + I assume that select.select has returned that the socket is + readable before this function was called, so there should be + no risk of blocking in get_request(). + """ + try: + request, client_address = self.get_request() + except socket.error: + return + if self.verify_request(request, client_address): + try: + self.process_request(request, client_address) + except: + self.handle_error(request, client_address) + self.close_request(request) + +#eof diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 01789857a94..378c5994555 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -473,8 +473,8 @@ def trans_generate(lang, modules, dbname=None): push_translation(module, 'view', encode(obj.model), 0, t) elif model=='ir.actions.wizard': service_name = 'wizard.'+encode(obj.wiz_name) - if netsvc.SERVICES.get(service_name): - obj2 = netsvc.SERVICES[service_name] + if netsvc.Service._services.get(service_name): + obj2 = netsvc.Service._services[service_name] for state_name, state_def in obj2.states.iteritems(): if 'result' in state_def: result = state_def['result'] diff --git a/bin/wizard/__init__.py b/bin/wizard/__init__.py index 1621559c628..88a2c2470bf 100644 --- a/bin/wizard/__init__.py +++ b/bin/wizard/__init__.py @@ -44,7 +44,7 @@ class interface(netsvc.Service): states = {} def __init__(self, name): - assert not netsvc.service_exist('wizard.'+name), 'The wizard "%s" already exists!'%name + assert not self.service_exist('wizard.'+name), 'The wizard "%s" already exists!'%name super(interface, self).__init__('wizard.'+name) self.exportMethod(self.execute) self.wiz_name = name From 483e133ee8d0d38a6504723b322265a84fb232d0 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 30 Aug 2009 17:53:31 +0300 Subject: [PATCH 212/251] Fix dispatching of reports after API change. bzr revid: p_christ@hol.gr-20090830145331-29ffrhf228defnl2 --- bin/service/web_services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/service/web_services.py b/bin/service/web_services.py index c2d68cadbe2..bbb5c686f42 100644 --- a/bin/service/web_services.py +++ b/bin/service/web_services.py @@ -623,7 +623,7 @@ class wizard(netsvc.ExportService): raise KeyError("Method not supported %s" % method) security.check(db,uid,passwd) fn = getattr(self, 'exp_'+method) - res = fn(ls, db, uid, *params) + res = fn(db, uid, *params) return res def new_dispatch(self,method,auth,params): From a267ef5d05e952df01e7f74c321ce77ae33a76ff Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 31 Aug 2009 12:37:03 +0300 Subject: [PATCH 213/251] [IMP] reorder the imports in websrv_lib. bzr revid: p_christ@hol.gr-20090831093703-vysodh51eczb1hcd --- bin/service/websrv_lib.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/service/websrv_lib.py b/bin/service/websrv_lib.py index d5c39473e54..762cb9d8f2a 100644 --- a/bin/service/websrv_lib.py +++ b/bin/service/websrv_lib.py @@ -30,6 +30,11 @@ """ +import socket +import base64 +import SocketServer +from BaseHTTPServer import * +from SimpleHTTPServer import SimpleHTTPRequestHandler class AuthRequiredExc(Exception): def __init__(self,atype,realm): @@ -73,7 +78,6 @@ class AuthProxy: """ pass -import base64 class BasicAuthProxy(AuthProxy): """ Require basic authentication.. """ @@ -99,9 +103,6 @@ class BasicAuthProxy(AuthProxy): raise AuthRequiredExc(atype = 'Basic', realm=self.provider.realm) -from BaseHTTPServer import * - -from SimpleHTTPServer import SimpleHTTPRequestHandler class HTTPHandler(SimpleHTTPRequestHandler): def __init__(self,request, client_address, server): SimpleHTTPRequestHandler.__init__(self,request,client_address,server) @@ -145,7 +146,6 @@ class dummyconn: def shutdown(self, tru): pass -import SocketServer class MultiHTTPHandler(BaseHTTPRequestHandler): """ this is a multiple handler, that will dispatch each request to a nested handler, iff it matches From 0a838fba3aab924cdac524d27fcc22dee9e91c20 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 31 Aug 2009 16:29:56 +0300 Subject: [PATCH 214/251] Fix https transports, certificates etc. Now we can serve https: the send_error() must be fixed so that content-lenth is specified, certificates are configurable and connections get properly shutdown so that the client won't wait forever. bzr revid: p_christ@hol.gr-20090831132956-00atxsfcy3qkdw4j --- bin/service/http_server.py | 25 ++++++++++++++++++++- bin/service/websrv_lib.py | 46 +++++++++++++++++++++++++++++++++++--- 2 files changed, 67 insertions(+), 4 deletions(-) diff --git a/bin/service/http_server.py b/bin/service/http_server.py index 76cf5b2fc91..74a0f572771 100644 --- a/bin/service/http_server.py +++ b/bin/service/http_server.py @@ -88,6 +88,12 @@ class SecureMultiHandler2(SecureMultiHTTPHandler): def log_message(self, format, *args): netsvc.Logger().notifyChannel('https',netsvc.LOG_DEBUG,format % args) + def getcert_fnames(self): + tc = tools.config + fcert = tc.get_misc('httpsd','sslcert', 'ssl/server.cert') + fkey = tc.get_misc('httpsd','sslkey', 'ssl/server.key') + return (fcert,fkey) + class HttpDaemon(threading.Thread, netsvc.Server): def __init__(self, interface, port): threading.Thread.__init__(self) @@ -141,6 +147,23 @@ class HttpSDaemon(threading.Thread, netsvc.Server): netsvc.Logger().notifyChannel('httpd-ssl', netsvc.LOG_CRITICAL, "Error occur when starting the server daemon: %s" % (e,)) raise + def attach(self, path, gw): + pass + + def stop(self): + self.running = False + if os.name != 'nt': + self.server.socket.shutdown( hasattr(socket, 'SHUT_RDWR') and socket.SHUT_RDWR or 2 ) + self.server.socket.close() + + def run(self): + #self.server.register_introspection_functions() + + self.running = True + while self.running: + self.server.handle_request() + return True + httpd = None httpsd = None @@ -175,7 +198,7 @@ def reg_http_service(hts, secure_only = False): return import SimpleXMLRPCServer -class XMLRPCRequestHandler(netsvc.OpenERPDispatcher,SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): +class XMLRPCRequestHandler(netsvc.OpenERPDispatcher,FixSendError,SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): rpc_paths = [] protocol_version = 'HTTP/1.1' def _dispatch(self, method, params): diff --git a/bin/service/websrv_lib.py b/bin/service/websrv_lib.py index 762cb9d8f2a..fe1db8f7bc9 100644 --- a/bin/service/websrv_lib.py +++ b/bin/service/websrv_lib.py @@ -146,7 +146,32 @@ class dummyconn: def shutdown(self, tru): pass -class MultiHTTPHandler(BaseHTTPRequestHandler): +def _quote_html(html): + return html.replace("&", "&").replace("<", "<").replace(">", ">") + +class FixSendError: + def send_error(self, code, message=None): + #overriden from BaseHTTPRequestHandler, we also send the content-length + try: + short, long = self.responses[code] + except KeyError: + short, long = '???', '???' + if message is None: + message = short + explain = long + self.log_error("code %d, message %s", code, message) + # using _quote_html to prevent Cross Site Scripting attacks (see bug #1100201) + content = (self.error_message_format % + {'code': code, 'message': _quote_html(message), 'explain': explain}) + self.send_response(code, message) + self.send_header("Content-Type", self.error_content_type) + self.send_header('Connection', 'close') + self.send_header('Content-Length', len(content) or 0) + self.end_headers() + if self.command != 'HEAD' and code >= 200 and code not in (204, 304): + self.wfile.write(content) + +class MultiHTTPHandler(FixSendError,BaseHTTPRequestHandler): """ this is a multiple handler, that will dispatch each request to a nested handler, iff it matches @@ -304,17 +329,32 @@ class MultiHTTPHandler(BaseHTTPRequestHandler): class SecureMultiHTTPHandler(MultiHTTPHandler): + def getcert_fnames(self): + """ Return a pair with the filenames of ssl cert,key + + Override this to direct to other filenames + """ + return ('server.cert','server.key') + def setup(self): import ssl + certfile, keyfile = self.getcert_fnames() self.connection = ssl.wrap_socket(self.request, server_side=True, - certfile="server.cert", - keyfile="server.key", + certfile=certfile, + keyfile=keyfile, ssl_version=ssl.PROTOCOL_SSLv23) self.rfile = self.connection.makefile('rb', self.rbufsize) self.wfile = self.connection.makefile('wb', self.wbufsize) self.log_message("Secure %s connection from %s",self.connection.cipher(),self.client_address) + def finish(self): + # With ssl connections, closing the filehandlers alone may not + # work because of ref counting. We explicitly tell the socket + # to shutdown. + MultiHTTPHandler.finish(self) + self.connection.shutdown(socket.SHUT_RDWR) + import threading class ConnThreadingMixIn: """Mix-in class to handle each _connection_ in a new thread. From d594e929ba6db5b920c0e8e6c089ffa5a0734f41 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Wed, 2 Sep 2009 00:04:16 +0300 Subject: [PATCH 215/251] [FIX] Security Loophole corrected [openobject-server @ jvo@tinyerp.com-20090901150136-tjpngpcfixg940b6] bzr revid: p_christ@hol.gr-20090901210416-x0euuqx22nchdyj7 --- bin/osv/orm.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 3752211df60..e5011f6d79e 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -2139,16 +2139,16 @@ class orm(orm_template): if d1: cr.execute('SELECT %s FROM \"%s\" WHERE id IN (%s) AND %s ORDER BY %s' % \ (','.join(fields_pre2 + ['id']), self._table, - ','.join([str(x) for x in sub_ids]), d1, - self._order), d2) + ','.join(['%s' for x in sub_ids]), d1, + self._order),sub_ids + d2) if not cr.rowcount == len({}.fromkeys(sub_ids)): raise except_orm(_('AccessError'), _('You try to bypass an access rule (Document type: %s).') % self._description) else: cr.execute('SELECT %s FROM \"%s\" WHERE id IN (%s) ORDER BY %s' % \ (','.join(fields_pre2 + ['id']), self._table, - ','.join([str(x) for x in sub_ids]), - self._order)) + ','.join(['%s' for x in sub_ids]), + self._order), sub_ids) res.extend(cr.dictfetchall()) else: res = map(lambda x: {'id': x}, ids) From 9e2d0586412159d5857fc37d5ae5b683c8ad8461 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 2 Sep 2009 01:24:55 +0300 Subject: [PATCH 216/251] Fix merging of 5.0.4 into API-changed netsvc. bzr revid: p_christ@hol.gr-20090901222455-y8yozw41ovizkne1 --- bin/netsvc.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 7b8ea93a567..e9c9fc21728 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -341,8 +341,6 @@ class OpenERPDispatcher: Logger().notifyChannel('%s' % title, LOG_DEBUG_RPC, pformat(msg)) def dispatch(self, service_name, method, params): - if service_name not in GROUPS['web-services']: - raise Exception('AccessDenied') try: self.log('service', service_name) self.log('method', method) From 0b5b67b33641a780c6d5413ed64afea1968288bc Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 3 Sep 2009 10:32:40 +0300 Subject: [PATCH 217/251] Fix quoting of ids when passed to sql. bzr revid: p_christ@hol.gr-20090903073240-cyydggro48990k2s --- bin/addons/base/ir/ir_values.py | 3 +-- bin/addons/base/res/ir_property.py | 2 +- bin/osv/expression.py | 4 ++-- bin/osv/fields.py | 7 +++---- bin/osv/orm.py | 16 +++++++--------- bin/tools/misc.py | 4 ++-- 6 files changed, 16 insertions(+), 20 deletions(-) diff --git a/bin/addons/base/ir/ir_values.py b/bin/addons/base/ir/ir_values.py index b2eb1aa24cd..cb99314c9ae 100644 --- a/bin/addons/base/ir/ir_values.py +++ b/bin/addons/base/ir/ir_values.py @@ -249,8 +249,7 @@ class ir_values(osv.osv): if r[2].has_key('groups_id'): groups = r[2]['groups_id'] if len(groups) > 0: - group_ids = ','.join([ str(x) for x in r[2]['groups_id']]) - cr.execute("select count(*) from res_groups_users_rel where gid in (%s) and uid='%s'" % (group_ids, uid)) + cr.execute("SELECT count(*) FROM res_groups_users_rel WHERE gid = ANY(%s) AND uid=%s",(groups, uid)) gr_ids = cr.fetchall() if not gr_ids[0][0] > 0: res2.remove(r) diff --git a/bin/addons/base/res/ir_property.py b/bin/addons/base/res/ir_property.py index f344beb7b14..a9d335a0243 100644 --- a/bin/addons/base/res/ir_property.py +++ b/bin/addons/base/res/ir_property.py @@ -59,7 +59,7 @@ class ir_property(osv.osv): } def unlink(self, cr, uid, ids, context={}): if ids: - cr.execute('delete from ir_model_fields where id in (select fields_id from ir_property where (fields_id is not null) and (id in ('+','.join(map(str,ids))+')))') + cr.execute('DELETE FROM ir_model_fields WHERE id IN (SELECT fields_id FROM ir_property WHERE (fields_id IS NOT NULL) AND (id = ANY (%s)))', (ids,)) res = super(ir_property, self).unlink(cr, uid, ids, context) return res diff --git a/bin/osv/expression.py b/bin/osv/expression.py index 8acc7d3a218..cabc98eaab9 100644 --- a/bin/osv/expression.py +++ b/bin/osv/expression.py @@ -45,13 +45,13 @@ class expression(object): or (internal and element[1] in INTERNAL_OPS)) def __execute_recursive_in(self, cr, s, f, w, ids): + # todo: merge into parent query as sub-query res = [] for i in range(0, len(ids), cr.IN_MAX): subids = ids[i:i+cr.IN_MAX] cr.execute('SELECT "%s"' \ ' FROM "%s"' \ - ' WHERE "%s" in (%s)' % (s, f, w, ','.join(['%s']*len(subids))), - subids) + ' WHERE "%s" = ANY (%%s)' % (s, f, w), (subids,)) res.extend([r[0] for r in cr.fetchall()]) return res diff --git a/bin/osv/fields.py b/bin/osv/fields.py index dbd37ec8a76..d6d23f7af9d 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -458,7 +458,7 @@ class one2many(_column): elif act[0] == 6: obj.write(cr, user, act[2], {self._fields_id:id}, context=context or {}) ids2 = act[2] or [0] - cr.execute('select id from '+_table+' where '+self._fields_id+'=%s and id not in ('+','.join(map(str, ids2))+')', (id,)) + cr.execute('select id from '+_table+' where '+self._fields_id+'=%s and id <> ALL (%s)', (id,ids2)) ids3 = map(lambda x:x[0], cr.fetchall()) obj.write(cr, user, ids3, {self._fields_id:False}, context=context or {}) return result @@ -503,7 +503,6 @@ class many2many(_column): return res for id in ids: res[id] = [] - ids_s = ','.join(map(str, ids)) limit_str = self._limit is not None and ' limit %d' % self._limit or '' obj = obj.pool.get(self._obj) @@ -513,10 +512,10 @@ class many2many(_column): cr.execute('SELECT '+self._rel+'.'+self._id2+','+self._rel+'.'+self._id1+' \ FROM '+self._rel+' , '+obj._table+' \ - WHERE '+self._rel+'.'+self._id1+' in ('+ids_s+') \ + WHERE '+self._rel+'.'+self._id1+' = ANY (%s) \ AND '+self._rel+'.'+self._id2+' = '+obj._table+'.id '+d1 +limit_str+' order by '+obj._table+'.'+obj._order+' offset %s', - d2+[offset]) + [ids,]+d2+[offset]) for r in cr.fetchall(): res[r[1]].append(r[0]) return res diff --git a/bin/osv/orm.py b/bin/osv/orm.py index f2e57ce379f..f27c1295321 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -1564,7 +1564,7 @@ class orm_memory(orm_template): if id in self.datas: del self.datas[id] if len(ids): - cr.execute('delete from wkf_instance where res_type=%s and res_id in ('+','.join(map(str, ids))+')', (self._name, )) + cr.execute('delete from wkf_instance where res_type=%s and res_id = ANY (%s)', (self._name,ids)) return True def perm_read(self, cr, user, ids, context=None, details=True): @@ -2140,18 +2140,16 @@ class orm(orm_template): for i in range(0, len(ids), cr.IN_MAX): sub_ids = ids[i:i+cr.IN_MAX] if d1: - cr.execute('SELECT %s FROM \"%s\" WHERE id IN (%s) AND %s ORDER BY %s' % \ - (','.join(fields_pre2 + ['id']), self._table, - ','.join(['%s' for x in sub_ids]), d1, - self._order),sub_ids + d2) + cr.execute('SELECT %s FROM \"%s\" WHERE id = ANY (%%s) AND %s ORDER BY %s' % \ + (','.join(fields_pre2 + ['id']), self._table, d1, + self._order),[sub_ids,]+d2) if not cr.rowcount == len({}.fromkeys(sub_ids)): raise except_orm(_('AccessError'), _('You try to bypass an access rule (Document type: %s).') % self._description) else: - cr.execute('SELECT %s FROM \"%s\" WHERE id IN (%s) ORDER BY %s' % \ + cr.execute('SELECT %s FROM \"%s\" WHERE id = ANY (%%s) ORDER BY %s' % \ (','.join(fields_pre2 + ['id']), self._table, - ','.join(['%s' for x in sub_ids]), - self._order), sub_ids) + self._order), (sub_ids,)) res.extend(cr.dictfetchall()) else: res = map(lambda x: {'id': x}, ids) @@ -2994,7 +2992,7 @@ class orm(orm_template): sub_ids_parent = ids_parent[i:i+cr.IN_MAX] cr.execute('SELECT distinct "'+parent+'"'+ ' FROM "'+self._table+'" ' \ - 'WHERE id in ('+','.join(map(str, sub_ids_parent))+')') + 'WHERE id = ANY(%s)',(sub_ids_parent,)) ids_parent2.extend(filter(None, map(lambda x: x[0], cr.fetchall()))) ids_parent = ids_parent2 for i in ids_parent: diff --git a/bin/tools/misc.py b/bin/tools/misc.py index edfa1be8c83..349085e13b6 100644 --- a/bin/tools/misc.py +++ b/bin/tools/misc.py @@ -837,11 +837,11 @@ def get_user_companies(cr, user): def _get_company_children(cr, ids): if not ids: return [] - cr.execute('SELECT id FROM res_company WHERE parent_id = any(array[%s])' %(','.join([str(x) for x in ids]),)) + cr.execute('SELECT id FROM res_company WHERE parent_id = ANY (%s)', (ids,)) res=[x[0] for x in cr.fetchall()] res.extend(_get_company_children(cr, res)) return res - cr.execute('SELECT comp.id FROM res_company AS comp, res_users AS u WHERE u.id = %s AND comp.id = u.company_id' % (user,)) + cr.execute('SELECT comp.id FROM res_company AS comp, res_users AS u WHERE u.id = %s AND comp.id = u.company_id', (user,)) compids=[cr.fetchone()[0]] compids.extend(_get_company_children(cr, compids)) return compids From 69b1313fbbc7f2fd5ca7f856eea85508dd343220 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 3 Sep 2009 16:00:38 +0300 Subject: [PATCH 218/251] Bring back net-rpc service. This commit re-enables net-rpc, using a port of the old code. bzr revid: p_christ@hol.gr-20090903130038-4a0jq10x6dhb9qxx --- bin/openerp-server.py | 10 +-- bin/service/netrpc_server.py | 119 +++++++++++++++++++++++++++++++++++ 2 files changed, 121 insertions(+), 8 deletions(-) create mode 100644 bin/service/netrpc_server.py diff --git a/bin/openerp-server.py b/bin/openerp-server.py index f783ba4f666..a84e50567d0 100755 --- a/bin/openerp-server.py +++ b/bin/openerp-server.py @@ -160,14 +160,8 @@ import service.http_server service.http_server.init_servers() service.http_server.init_xmlrpc() - -# *-* TODO -#if tools.config['netrpc']: - #netport = int(tools.config['netport']) - #netinterface = tools.config["netinterface"] - #tinySocket = netsvc.TinySocketServerThread(netinterface, netport, False) - #logger.notifyChannel("web-services", netsvc.LOG_INFO, - #"starting NET-RPC service, port %d" % (netport,)) +import service.netrpc_server +service.netrpc_server.init_servers() LST_SIGNALS = ['SIGINT', 'SIGTERM'] if os.name == 'posix': diff --git a/bin/service/netrpc_server.py b/bin/service/netrpc_server.py new file mode 100644 index 00000000000..878a3da3ba8 --- /dev/null +++ b/bin/service/netrpc_server.py @@ -0,0 +1,119 @@ +# -*- encoding: utf-8 -*- + +# +# Copyright P. Christeas 2008,2009 +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +""" This file contains instance of the net-rpc server + + +""" +import netsvc +import threading +import tools +import os +import socket + +import tiny_socket +class TinySocketClientThread(threading.Thread, netsvc.OpenERPDispatcher): + def __init__(self, sock, threads): + threading.Thread.__init__(self) + self.sock = sock + self.threads = threads + + def run(self): + import select + self.running = True + try: + ts = tiny_socket.mysocket(self.sock) + except: + self.sock.close() + self.threads.remove(self) + return False + while self.running: + try: + msg = ts.myreceive() + except: + self.sock.close() + self.threads.remove(self) + return False + try: + result = self.dispatch(msg[0], msg[1], msg[2:]) + ts.mysend(result) + except netsvc.OpenERPDispatcherException, e: + new_e = Exception(tools.exception_to_unicode(e.exception)) # avoid problems of pickeling + ts.mysend(new_e, exception=True, traceback=e.traceback) + + self.sock.close() + self.threads.remove(self) + return True + + def stop(self): + self.running = False + + +class TinySocketServerThread(threading.Thread,netsvc.Server): + def __init__(self, interface, port, secure=False): + threading.Thread.__init__(self) + netsvc.Server.__init__(self) + self.__port = port + self.__interface = interface + self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) + self.socket.bind((self.__interface, self.__port)) + self.socket.listen(5) + self.threads = [] + netsvc.Logger().notifyChannel("web-services", netsvc.LOG_INFO, + "starting NET-RPC service at %s port %d" % (interface or '0.0.0.0', port,)) + + def run(self): + # import select + try: + self.running = True + while self.running: + (clientsocket, address) = self.socket.accept() + ct = TinySocketClientThread(clientsocket, self.threads) + self.threads.append(ct) + ct.start() + self.socket.close() + except Exception, e: + self.socket.close() + return False + + def stop(self): + self.running = False + for t in self.threads: + t.stop() + try: + if hasattr(socket, 'SHUT_RDWR'): + self.socket.shutdown(socket.SHUT_RDWR) + else: + self.socket.shutdown(2) + self.socket.close() + except: + return False + + +netrpcd = None + +def init_servers(): + global netrpcd + if tools.config.get_misc('netrpcd','enable', True): + netrpcd = TinySocketServerThread(tools.config.get_misc('netrpcd','interface', ''), \ + tools.config.get_misc('netrpcd','port', 8070)) From 643b76682ad8635961fbd534213c50333ad8639d Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 3 Sep 2009 16:01:45 +0300 Subject: [PATCH 219/251] Don't print messages, log them.. bzr revid: p_christ@hol.gr-20090903130145-iybg1xtmxg6xylhk --- bin/netsvc.py | 5 ++++- bin/service/http_server.py | 9 ++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index e9c9fc21728..8b430c64ea4 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -316,7 +316,8 @@ class Server: def startAll(cls): if cls.__is_started: return - print "Starting %d services" % len(cls.__servers) + Logger().notifyChannel("services", LOG_INFO, + "Starting %d services" % len(cls.__servers)) for srv in cls.__servers: srv.start() cls.__is_started = True @@ -325,6 +326,8 @@ class Server: def quitAll(cls): if not cls.__is_started: return + Logger().notifyChannel("services", LOG_INFO, + "Stopping %d services" % len(cls.__servers)) for srv in cls.__servers: srv.stop() cls.__is_started = False diff --git a/bin/service/http_server.py b/bin/service/http_server.py index 74a0f572771..800268087aa 100644 --- a/bin/service/http_server.py +++ b/bin/service/http_server.py @@ -105,6 +105,8 @@ class HttpDaemon(threading.Thread, netsvc.Server): self.server = ThreadedHTTPServer((interface, port), MultiHandler2) self.server.vdirs = [] self.server.logRequests = True + netsvc.Logger().notifyChannel("web-services", netsvc.LOG_INFO, + "starting HTTP service at %s port %d" % (interface or '0.0.0.0', port,)) except Exception, e: netsvc.Logger().notifyChannel('httpd', netsvc.LOG_CRITICAL, "Error occur when starting the server daemon: %s" % (e,)) raise @@ -140,6 +142,8 @@ class HttpSDaemon(threading.Thread, netsvc.Server): self.server = ThreadedHTTPServer((interface, port), SecureMultiHandler2) self.server.vdirs = [] self.server.logRequests = True + netsvc.Logger().notifyChannel("web-services", netsvc.LOG_INFO, + "starting HTTPS service at %s port %d" % (interface or '0.0.0.0', port,)) except SSLError, e: netsvc.Logger().notifyChannel('httpd-ssl', netsvc.LOG_CRITICAL, "Can not load the certificate and/or the private key files") raise @@ -170,12 +174,10 @@ httpsd = None def init_servers(): global httpd, httpsd if tools.config.get_misc('httpd','enable', True): - print "creating a httpd" httpd = HttpDaemon(tools.config.get_misc('httpd','interface', ''), \ tools.config.get_misc('httpd','port', 8069)) if tools.config.get_misc('httpsd','enable', False): - print "creating a httpsd" httpsd = HttpSDaemon(tools.config.get_misc('httpsd','interface', ''), \ tools.config.get_misc('httpsd','port', 8071)) @@ -230,5 +232,6 @@ def init_xmlrpc(): reg_http_service(HTTPDir('/xmlrpc/',XMLRPCRequestHandler)) # Example of http file serving: # reg_http_service(HTTPDir('/test/',HTTPHandler)) - print "Started XML-RPC" + netsvc.Logger().notifyChannel("web-services", netsvc.LOG_INFO, + "Registered XML-RPC over HTTP") #eof From 77cf69258cddc6a7c82a444694df39f0f4270242 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 4 Sep 2009 00:06:47 +0300 Subject: [PATCH 220/251] Initialize services before databases. This will let modules register into services properly. bzr revid: p_christ@hol.gr-20090903210647-6xs4cco3pl9fo3o4 --- bin/openerp-server.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/bin/openerp-server.py b/bin/openerp-server.py index a84e50567d0..d3d77786781 100755 --- a/bin/openerp-server.py +++ b/bin/openerp-server.py @@ -112,6 +112,14 @@ import addons # Load and update databases if requested #---------------------------------------------------------- +import service.http_server + +service.http_server.init_servers() +service.http_server.init_xmlrpc() + +import service.netrpc_server +service.netrpc_server.init_servers() + if tools.config['db_name']: for db in tools.config['db_name'].split(','): pooler.get_db_and_pool(db, update_module=tools.config['init'] or tools.config['update']) @@ -155,14 +163,6 @@ if tools.config["stop_after_init"]: # Launch Servers #---------------------------------------------------------- -import service.http_server - -service.http_server.init_servers() -service.http_server.init_xmlrpc() - -import service.netrpc_server -service.netrpc_server.init_servers() - LST_SIGNALS = ['SIGINT', 'SIGTERM'] if os.name == 'posix': LST_SIGNALS.extend(['SIGUSR1','SIGQUIT']) From feca055dea8f166600e52021075435e9d4bffda9 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 4 Sep 2009 00:08:02 +0300 Subject: [PATCH 221/251] Implement basic-authenticated services. Log messages. bzr revid: p_christ@hol.gr-20090903210802-7bmexrzduofhhxm2 --- bin/service/http_server.py | 84 +++++++++++++++++++++++++++++++++++++- bin/service/security.py | 1 + bin/service/websrv_lib.py | 39 ++++++++++++++---- 3 files changed, 116 insertions(+), 8 deletions(-) diff --git a/bin/service/http_server.py b/bin/service/http_server.py index 800268087aa..a7cb22cebcd 100644 --- a/bin/service/http_server.py +++ b/bin/service/http_server.py @@ -83,6 +83,9 @@ class MultiHandler2(MultiHTTPHandler): def log_message(self, format, *args): netsvc.Logger().notifyChannel('http',netsvc.LOG_DEBUG,format % args) + def log_error(self, format, *args): + netsvc.Logger().notifyChannel('http',netsvc.LOG_ERROR,format % args) + class SecureMultiHandler2(SecureMultiHTTPHandler): def log_message(self, format, *args): @@ -94,6 +97,12 @@ class SecureMultiHandler2(SecureMultiHTTPHandler): fkey = tc.get_misc('httpsd','sslkey', 'ssl/server.key') return (fcert,fkey) + def log_message(self, format, *args): + netsvc.Logger().notifyChannel('http',netsvc.LOG_DEBUG,format % args) + + def log_error(self, format, *args): + netsvc.Logger().notifyChannel('http',netsvc.LOG_ERROR,format % args) + class HttpDaemon(threading.Thread, netsvc.Server): def __init__(self, interface, port): threading.Thread.__init__(self) @@ -196,7 +205,7 @@ def reg_http_service(hts, secure_only = False): httpsd.server.vdirs.append(hts) if (not httpd) and (not httpsd): - netsvc.Logger().notifyChannel('httpd',netsvc.LOG_WARNING,"No httpd available to register service %s",hts.path) + netsvc.Logger().notifyChannel('httpd',netsvc.LOG_WARNING,"No httpd available to register service %s" % hts.path) return import SimpleXMLRPCServer @@ -234,4 +243,77 @@ def init_xmlrpc(): # reg_http_service(HTTPDir('/test/',HTTPHandler)) netsvc.Logger().notifyChannel("web-services", netsvc.LOG_INFO, "Registered XML-RPC over HTTP") + + +class OerpAuthProxy(AuthProxy): + """ Require basic authentication.. + + This is a copy of the BasicAuthProxy, which however checks/caches the db + as well. + """ + def __init__(self,provider): + AuthProxy.__init__(self,provider) + self.auth_creds = {} + self.auth_tries = 0 + self.last_auth = None + + def checkRequest(self,handler,path = '/'): + if self.auth_creds: + print "found creds" + return True + auth_str = handler.headers.get('Authorization',False) + try: + print "Handler",handler + db = handler.get_db_from_path(path) + print "Got db:",db + except: + if path.startswith('/'): + path = path[1:] + psp= path.split('/') + print "Path \"%s\" split:" %path,psp + if len(psp)>1: + db = psp[0] + else: + #FIXME! + self.provider.log("Wrong path: %s, failing auth" %path) + raise AuthRejectedExc("Authorization failed. Wrong sub-path.") + + if auth_str and auth_str.startswith('Basic '): + auth_str=auth_str[len('Basic '):] + (user,passwd) = base64.decodestring(auth_str).split(':') + self.provider.log("Found user=\"%s\", passwd=\"%s\" for db=\"%s\"" %(user,passwd,db)) + acd = self.provider.authenticate(db,user,passwd,handler.client_address) + if acd != False: + self.auth_creds[db] = acd + self.last_auth=db + return True + if self.auth_tries > 5: + self.provider.log("Failing authorization after 5 requests w/o password") + raise AuthRejectedExc("Authorization failed.") + self.auth_tries += 1 + raise AuthRequiredExc(atype = 'Basic', realm=self.provider.realm) + +import security +class OpenERPAuthProvider(AuthProvider): + def __init__(self,realm = 'OpenERP User'): + self.realm = realm + + def setupAuth(self, multi, handler): + if not multi.sec_realms.has_key(self.realm): + multi.sec_realms[self.realm] = OerpAuthProxy(self) + handler.auth_proxy = multi.sec_realms[self.realm] + + def authenticate(self, db, user, passwd, client_address): + try: + uid = security.login(db,user,passwd) + if uid is False: + return False + return (user, passwd, db, uid) + except Exception,e: + netsvc.Logger().notifyChannel("auth",netsvc.LOG_DEBUG,"Fail auth:"+ str(e)) + return False + + def log(self, msg): + netsvc.Logger().notifyChannel("auth",netsvc.LOG_INFO,msg) + #eof diff --git a/bin/service/security.py b/bin/service/security.py index b956914a3dc..03f11a4d34c 100644 --- a/bin/service/security.py +++ b/bin/service/security.py @@ -84,5 +84,6 @@ def access(db, uid, passwd, sec_level, ids): raise ExceptionNoTb('Bad username or password') return res[0] + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/bin/service/websrv_lib.py b/bin/service/websrv_lib.py index fe1db8f7bc9..71348d2b61b 100644 --- a/bin/service/websrv_lib.py +++ b/bin/service/websrv_lib.py @@ -55,10 +55,10 @@ class AuthProvider: pass def authenticate(self, user, passwd, client_address): - #if user == 'user' and passwd == 'password': - # return (user, passwd) - #else: - return False + return False + + def log(self, msg): + print msg class BasicAuthProvider(AuthProvider): def setupAuth(self, multi, handler): @@ -93,11 +93,12 @@ class BasicAuthProxy(AuthProxy): if auth_str and auth_str.startswith('Basic '): auth_str=auth_str[len('Basic '):] (user,passwd) = base64.decodestring(auth_str).split(':') - print "Found user=\"%s\", passwd=\"%s\"" %(user,passwd) + self.provider.log("Found user=\"%s\", passwd=\"%s\"" %(user,passwd)) self.auth_creds = self.provider.authenticate(user,passwd,handler.client_address) if self.auth_creds: return True if self.auth_tries > 5: + self.provider.log("Failing authorization after 5 requests w/o password") raise AuthRejectedExc("Authorization failed.") self.auth_tries += 1 raise AuthRequiredExc(atype = 'Basic', realm=self.provider.realm) @@ -150,6 +151,7 @@ def _quote_html(html): return html.replace("&", "&").replace("<", "<").replace(">", ">") class FixSendError: + #error_message_format = """ """ def send_error(self, code, message=None): #overriden from BaseHTTPRequestHandler, we also send the content-length try: @@ -168,6 +170,7 @@ class FixSendError: self.send_header('Connection', 'close') self.send_header('Content-Length', len(content) or 0) self.end_headers() + print "Error content:", content if self.command != 'HEAD' and code >= 200 and code not in (204, 304): self.wfile.write(content) @@ -181,6 +184,9 @@ class MultiHTTPHandler(FixSendError,BaseHTTPRequestHandler): protocol_version = "HTTP/1.1" + auth_required_msg = """ Authorization required + You must authenticate to use this service\r\r""" + def __init__(self, request, client_address, server): self.in_handlers = {} self.sec_realms = {} @@ -205,14 +211,19 @@ class MultiHTTPHandler(FixSendError,BaseHTTPRequestHandler): self.log_error("Cannot require auth at %s",self.request_version) self.send_error(401) return + self._get_ignore_body(fore) # consume any body that came, not loose sync with input self.send_response(401,'Authorization required') self.send_header('WWW-Authenticate','%s realm="%s"' % (ae.atype,ae.realm)) + print 'sending WWW-Authenticate','%s realm="%s"' % (ae.atype,ae.realm) + self.send_header('Connection', 'keep-alive') self.send_header('Content-Type','text/html') - self.send_header('Content-Length','0') + self.send_header('Content-Length',len(self.auth_required_msg)) self.end_headers() - #self.wfile.write("\r\n") + self.wfile.write(self.auth_required_msg) return except AuthRejectedExc,e: + print "auth rejected!",e.args[0] + self.log_error("Rejected auth: %s" % e.args[0]) self.send_error(401,e.args[0]) self.close_connection = 1 return @@ -327,6 +338,20 @@ class MultiHTTPHandler(FixSendError,BaseHTTPRequestHandler): self.send_error(404, "Path not found: %s" % self.path) return + def _get_ignore_body(self,fore): + if not fore.headers.has_key("content-length"): + return + max_chunk_size = 10*1024*1024 + size_remaining = int(fore.headers["content-length"]) + got = '' + if size_remaining: + print "Must consume %d bytes",size_remaining + while size_remaining: + chunk_size = min(size_remaining, max_chunk_size) + got = fore.rfile.read(chunk_size) + print "c:",got + size_remaining -= len(got) + class SecureMultiHTTPHandler(MultiHTTPHandler): def getcert_fnames(self): From a17a31abe1af49fb0e6322f8816c79e433e39211 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 4 Sep 2009 00:53:38 +0300 Subject: [PATCH 222/251] Remove debuggint print's bzr revid: p_christ@hol.gr-20090903215338-0z39w3mp1iqxlwv8 --- bin/service/http_server.py | 5 +---- bin/service/websrv_lib.py | 7 ------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/bin/service/http_server.py b/bin/service/http_server.py index a7cb22cebcd..788497926bd 100644 --- a/bin/service/http_server.py +++ b/bin/service/http_server.py @@ -259,18 +259,15 @@ class OerpAuthProxy(AuthProxy): def checkRequest(self,handler,path = '/'): if self.auth_creds: - print "found creds" return True auth_str = handler.headers.get('Authorization',False) try: - print "Handler",handler db = handler.get_db_from_path(path) print "Got db:",db except: if path.startswith('/'): path = path[1:] psp= path.split('/') - print "Path \"%s\" split:" %path,psp if len(psp)>1: db = psp[0] else: @@ -281,7 +278,7 @@ class OerpAuthProxy(AuthProxy): if auth_str and auth_str.startswith('Basic '): auth_str=auth_str[len('Basic '):] (user,passwd) = base64.decodestring(auth_str).split(':') - self.provider.log("Found user=\"%s\", passwd=\"%s\" for db=\"%s\"" %(user,passwd,db)) + self.provider.log("Found user=\"%s\", passwd=\"***\" for db=\"%s\"" %(user,db)) acd = self.provider.authenticate(db,user,passwd,handler.client_address) if acd != False: self.auth_creds[db] = acd diff --git a/bin/service/websrv_lib.py b/bin/service/websrv_lib.py index 71348d2b61b..15ea2e0a8da 100644 --- a/bin/service/websrv_lib.py +++ b/bin/service/websrv_lib.py @@ -170,7 +170,6 @@ class FixSendError: self.send_header('Connection', 'close') self.send_header('Content-Length', len(content) or 0) self.end_headers() - print "Error content:", content if self.command != 'HEAD' and code >= 200 and code not in (204, 304): self.wfile.write(content) @@ -214,7 +213,6 @@ class MultiHTTPHandler(FixSendError,BaseHTTPRequestHandler): self._get_ignore_body(fore) # consume any body that came, not loose sync with input self.send_response(401,'Authorization required') self.send_header('WWW-Authenticate','%s realm="%s"' % (ae.atype,ae.realm)) - print 'sending WWW-Authenticate','%s realm="%s"' % (ae.atype,ae.realm) self.send_header('Connection', 'keep-alive') self.send_header('Content-Type','text/html') self.send_header('Content-Length',len(self.auth_required_msg)) @@ -222,7 +220,6 @@ class MultiHTTPHandler(FixSendError,BaseHTTPRequestHandler): self.wfile.write(self.auth_required_msg) return except AuthRejectedExc,e: - print "auth rejected!",e.args[0] self.log_error("Rejected auth: %s" % e.args[0]) self.send_error(401,e.args[0]) self.close_connection = 1 @@ -344,12 +341,9 @@ class MultiHTTPHandler(FixSendError,BaseHTTPRequestHandler): max_chunk_size = 10*1024*1024 size_remaining = int(fore.headers["content-length"]) got = '' - if size_remaining: - print "Must consume %d bytes",size_remaining while size_remaining: chunk_size = min(size_remaining, max_chunk_size) got = fore.rfile.read(chunk_size) - print "c:",got size_remaining -= len(got) @@ -396,7 +390,6 @@ class ConnThreadingMixIn: def _handle_request_noblock(self): """Start a new thread to process the request.""" t = threading.Thread(target = self._handle_request2) - print "request came, handling in new thread",t if self.daemon_threads: t.setDaemon (1) t.start() From 58323aa31adc1ff041d55f991ca520ad258d8dfd Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 5 Sep 2009 11:11:57 +0300 Subject: [PATCH 223/251] If the server is only translating, don't init the httpd. When the server is about to run normally, httpd must be created before the addons, so that they use it. However, if only translating, httpd may not exist at all. Sometimes it /cannnot/ exist, because another server may be running at the same port. bzr revid: p_christ@hol.gr-20090905081157-8943pfwve7b0g7xl --- bin/openerp-server.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/bin/openerp-server.py b/bin/openerp-server.py index d3d77786781..fd5efddba7b 100755 --- a/bin/openerp-server.py +++ b/bin/openerp-server.py @@ -114,11 +114,14 @@ import addons import service.http_server -service.http_server.init_servers() -service.http_server.init_xmlrpc() +if not ( tools.config["stop_after_init"] or \ + tools.config["translate_in"] or \ + tools.config["translate_out"] ): + service.http_server.init_servers() + service.http_server.init_xmlrpc() -import service.netrpc_server -service.netrpc_server.init_servers() + import service.netrpc_server + service.netrpc_server.init_servers() if tools.config['db_name']: for db in tools.config['db_name'].split(','): From 221e41381dd210116f70420bb6f056eac0418199 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 5 Sep 2009 11:13:50 +0300 Subject: [PATCH 224/251] Translating: skip buggy wizard states. bzr revid: p_christ@hol.gr-20090905081350-33ysuupopqj49onq --- bin/tools/translate.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 378c5994555..05c44ab6bc3 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -489,6 +489,9 @@ def trans_generate(lang, modules, dbname=None): } # export fields + if not result.has_key('fields'): + logger.notifyChannel("db",netsvc.LOG_WARNING,"res has no fields: %r" % result) + continue for field_name, field_def in result['fields'].iteritems(): res_name = name + ',' + field_name From b098c935e9401773c0b24680c089349afd6d2e04 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 8 Sep 2009 11:14:56 +0300 Subject: [PATCH 225/251] Fix raising of exception. bzr revid: p_christ@hol.gr-20090908081456-kk89t2imfe1a6b7i --- bin/netsvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 8b430c64ea4..5254d3ceb80 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -227,7 +227,7 @@ class Logger(object): try: msg = tools.ustr(msg).strip() if level in (LOG_ERROR,LOG_CRITICAL) and tools.config.get_misc('debug','env_info',True): - msg = common().get_server_environment() + msg + msg = common().exp_get_server_environment() + msg result = msg.split('\n') except UnicodeDecodeError: From 214eb96758d6aa3922d98d13b84485a8ffa77f33 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 8 Sep 2009 11:15:16 +0300 Subject: [PATCH 226/251] HTTPSd: fix crash of server when no ssl available. bzr revid: p_christ@hol.gr-20090908081516-hnbdn0mvqfy06qws --- bin/service/http_server.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/service/http_server.py b/bin/service/http_server.py index 788497926bd..5caca912dbe 100644 --- a/bin/service/http_server.py +++ b/bin/service/http_server.py @@ -44,6 +44,11 @@ try: import fcntl except ImportError: fcntl = None + +try: + from ssl import SSLError +except ImportError: + class SSLError(Exception): pass class ThreadedHTTPServer(ConnThreadingMixIn, SimpleXMLRPCDispatcher, HTTPServer): """ A threaded httpd server, with all the necessary functionality for us. @@ -145,8 +150,6 @@ class HttpSDaemon(threading.Thread, netsvc.Server): self.__port = port self.__interface = interface - from ssl import SSLError - try: self.server = ThreadedHTTPServer((interface, port), SecureMultiHandler2) self.server.vdirs = [] From 768ec7b32011261f92e64b3526c1fb25aa0d1801 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 8 Sep 2009 11:16:00 +0300 Subject: [PATCH 227/251] Debian changelog for testing version. bzr revid: p_christ@hol.gr-20090908081600-5d9e3wm020yiro7e --- debian/changelog | 54 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/debian/changelog b/debian/changelog index eb2f31bc364..cf02ea0e5ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,57 @@ +openerp-server (5.0.4-0-1test3) intrepid; urgency=high + + [ Panos Christeas ] + * Testing release, with HTTP/1.1 features + + [ P. Christeas ] + * Translating: skip buggy wizard states. + * If the server is only translating, don't init the httpd. + * Remove debuggint print's + * Implement basic-authenticated services. Log messages. + * Initialize services before databases. + * Don't print messages, log them.. + * Bring back net-rpc service. + * Fix quoting of ids when passed to sql. + * Fix merging of 5.0.4 into API-changed netsvc. + + [ Jay (Open ERP) ] + * [FIX] Security Loophole corrected + + [ P. Christeas ] + * Fix https transports, certificates etc. + * [IMP] reorder the imports in websrv_lib. + * Fix dispatching of reports after API change. + * [MAJOR IMP] Rewrite the http/RPC engine and let HTTP/1.1 features. + + [ Christophe Simonis ] + * [REL] 5.0.4 + * [MERGE] + * [MERGE] + * [IMP] replace partner name and address in demo + * [IMP] add translation names + * [IMP] update translations files + + [ Jay (Open ERP) ] + * [FIX] Functional fields with M2O relation can be printed on print + screen now + + [ HDA (OpenERP) ] + * [FIX] Pagecount probelm while all objects print on same page and + printing special character on xsl report + + [ Harry (Open ERP) ] + * [FIX] import: support ":db_id" , better warning message + + [ Jay (Open ERP) ] + * [FIX] ir_cron :function and its arguements are now editable + + [ HDA (OpenERP) ] + * [Merge] + + [ Panos Christeas ] + + -- Panos Christeas Tue, 08 Sep 2009 10:06:51 +0300 + openerp-server (5.0.3-0-1ubuntu2) intrepid; urgency=low * Merge packaging work from Debian official From 0e20fddb08e411de92cde6be4f68c029c7aac863 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 8 Sep 2009 12:03:43 +0300 Subject: [PATCH 228/251] Debian changelog for 5.0.4 bzr revid: p_christ@hol.gr-20090908090343-bmb9jarkggrk4riq --- debian/changelog | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/debian/changelog b/debian/changelog index eb2f31bc364..d46c5aa06bf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,43 @@ +openerp-server (5.0.4-0-1ubuntu3) intrepid; urgency=high + + [ Panos Christeas ] + * UNRELEASED + + [ Jay (Open ERP) ] + * [FIX] Security Loophole corrected + + [ Christophe Simonis ] + * [REL] 5.0.4 + * [MERGE] + * [MERGE] + * [IMP] replace partner name and address in demo + * [IMP] add translation names + * [IMP] update translations files + + [ P. Christeas ] + * [IMP] remove irritating call to bzr. + + [ Jay (Open ERP) ] + * [FIX] Functional fields with M2O relation can be printed on print + screen now + + [ HDA (OpenERP) ] + * [FIX] Pagecount probelm while all objects print on same page and + printing special character on xsl report + + [ Harry (Open ERP) ] + * [FIX] import: support ":db_id" , better warning message + + [ Jay (Open ERP) ] + * [FIX] ir_cron :function and its arguements are now editable + + [ HDA (OpenERP) ] + * [Merge] + + [ Panos Christeas ] + + -- Panos Christeas Tue, 08 Sep 2009 11:19:37 +0300 + openerp-server (5.0.3-0-1ubuntu2) intrepid; urgency=low * Merge packaging work from Debian official From be011d4302f8b364a7d3affa9d3b1372a09c3340 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 8 Sep 2009 19:39:14 +0300 Subject: [PATCH 229/251] Two hacks to make it python2.5 compatible.. .. but still, the http server lib in 2.5 is broken and won't respond right. bzr revid: p_christ@hol.gr-20090908163914-xb3i1ojwrl53bv29 --- bin/service/http_server.py | 2 +- bin/service/websrv_lib.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/service/http_server.py b/bin/service/http_server.py index 5caca912dbe..9c63bec907b 100644 --- a/bin/service/http_server.py +++ b/bin/service/http_server.py @@ -67,7 +67,7 @@ class ThreadedHTTPServer(ConnThreadingMixIn, SimpleXMLRPCDispatcher, HTTPServer) self.logRequests = logRequests SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding) - HTTPServer.__init__(self, addr, requestHandler, bind_and_activate) + HTTPServer.__init__(self, addr, requestHandler) # [Bug #1222790] If possible, set close-on-exec flag; if a # method spawns a subprocess, the subprocess shouldn't have diff --git a/bin/service/websrv_lib.py b/bin/service/websrv_lib.py index 15ea2e0a8da..84d27627e3c 100644 --- a/bin/service/websrv_lib.py +++ b/bin/service/websrv_lib.py @@ -182,6 +182,7 @@ class MultiHTTPHandler(FixSendError,BaseHTTPRequestHandler): """ protocol_version = "HTTP/1.1" + default_request_version = "HTTP/0.9" # compatibility with py2.5 auth_required_msg = """ Authorization required You must authenticate to use this service\r\r""" From 5f7735346897f3b0bf8259f6c8737fcb5494cdd2 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 9 Sep 2009 22:43:25 +0300 Subject: [PATCH 230/251] Implement safe_eval() in order to armour eval() bzr revid: p_christ@hol.gr-20090909194325-hpn4cfhwehxg9dzk --- bin/tools/safe_eval.py | 63 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 bin/tools/safe_eval.py diff --git a/bin/tools/safe_eval.py b/bin/tools/safe_eval.py new file mode 100644 index 00000000000..6f0a9b88fde --- /dev/null +++ b/bin/tools/safe_eval.py @@ -0,0 +1,63 @@ +# -*- encoding: utf-8 -*- +# +# Copyright P. Christeas 2008,2009 +# +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +############################################################################### + +__export_bis = {} + +def __init_ebis(): + global __export_bis + + _evars = [ 'abs', 'all', 'any', 'basestring' , 'bin', 'bool', + 'chr', 'cmp','complex', 'dict', 'divmod', 'enumerate', + 'float','format', 'frozenset', 'getattr', 'hasattr', 'hash', + 'hex', 'id','int', 'iter', 'len', 'list', 'long', 'map', 'max', + 'min','next', 'oct', 'ord','pow', 'range', 'reduce', 'repr', + 'reversed', 'round', 'set', 'setattr', 'slice','sorted', 'str', + 'sum', 'tuple','type', 'unichr','unicode', 'xrange', + 'True','False', 'None', 'NotImplemented', 'Ellipsis', ] + + for v in _evars: + __export_bis[v] = __builtins__[v] + + +__init_ebis() + + +def safe_eval(expr,sglobals,slocals = None): + """ A little safer version of eval(). + This one, will use fewer builtin functions, so that only + arithmetic and logic expressions can really work """ + + global __export_bis + + if not sglobals.has_key('__builtins__'): + # we copy, because we wouldn't want successive calls to safe_eval + # to be able to alter the builtins. + sglobals['__builtins__'] = __export_bis.copy() + + return eval(expr,sglobals,slocals) + +#eof \ No newline at end of file From 2a16b998922d901a33dc0859ebf5afe7382cca47 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 9 Sep 2009 23:35:17 +0300 Subject: [PATCH 231/251] [Feature]: add condition to ir.sequence, let it be partitioned. With this feature, multiple sequences may be defined per type. A weight parameter will primarily order them. Then, the one whose condition is true will be used. This would let us write modules (calls to get() must be upgraded), where the sequence numbering will depend on the data. Note that this is not straghtforward, as the context passed must be carefully constructed. One problem is that not all object data (eg category) may exist when the sequence is called for a /new/ object (as a call for 'default'). The current code should be backwards compatible with old calls to get() without a context. bzr revid: p_christ@hol.gr-20090909203517-qahww8hika9t3zl8 --- bin/addons/base/ir/ir.xml | 2 ++ bin/addons/base/ir/ir_sequence.py | 33 ++++++++++++++++++++++++++----- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/bin/addons/base/ir/ir.xml b/bin/addons/base/ir/ir.xml index 9c94c8179f9..2e8ff31af99 100644 --- a/bin/addons/base/ir/ir.xml +++ b/bin/addons/base/ir/ir.xml @@ -114,6 +114,8 @@ + + diff --git a/bin/addons/base/ir/ir_sequence.py b/bin/addons/base/ir/ir_sequence.py index f48ea0f25c4..71675f5b6ae 100644 --- a/bin/addons/base/ir/ir_sequence.py +++ b/bin/addons/base/ir/ir_sequence.py @@ -22,6 +22,7 @@ import time from osv import fields,osv +from tools.safe_eval import safe_eval import pooler class ir_sequence_type(osv.osv): @@ -47,12 +48,15 @@ class ir_sequence(osv.osv): 'number_next': fields.integer('Next Number', required=True), 'number_increment': fields.integer('Increment Number', required=True), 'padding' : fields.integer('Number padding', required=True), + 'condition': fields.char('Condition', size=250, help="If set, sequence will only be used in case this python expression matches, and will precede other sequences."), + 'weight': fields.integer('Weight',required=True, help="If two sequences match, the highest weight will be used.") } _defaults = { 'active': lambda *a: True, 'number_increment': lambda *a: 1, 'number_next': lambda *a: 1, 'padding' : lambda *a : 0, + 'weight' : lambda *a: 10, } def _process(self, s): @@ -71,10 +75,29 @@ class ir_sequence(osv.osv): } def get_id(self, cr, uid, sequence_id, test='id=%s', context=None): + if not context: + context = {} try: - cr.execute('SELECT id, number_next, prefix, suffix, padding FROM ir_sequence WHERE '+test+' AND active=%s FOR UPDATE', (sequence_id, True)) - res = cr.dictfetchone() - if res: + cr.execute('SELECT id, number_next, prefix, suffix, padding, condition \ + FROM ir_sequence \ + WHERE '+test+' AND active=%s ORDER BY weight DESC, length(COALESCE(condition,\'\')) DESC \ + FOR UPDATE', (sequence_id, True)) + for res in cr.dictfetchall(): + if res['condition']: + print "ir_seq: %s has condition:" %res['id'], res['condition'], + try: + bo = safe_eval(res['condition'],context) + if not bo: + print "not matched" + continue + except Exception,e: + # it would be normal to have exceptions, because + # the domain may contain errors + print "Exception.\ne:",e + print "Context:", context + continue + print "Matched!" + cr.execute('UPDATE ir_sequence SET number_next=number_next+number_increment WHERE id=%s AND active=%s', (res['id'], True)) if res['number_next']: return self._process(res['prefix']) + '%%0%sd' % res['padding'] % res['number_next'] + self._process(res['suffix']) @@ -84,8 +107,8 @@ class ir_sequence(osv.osv): cr.commit() return False - def get(self, cr, uid, code): - return self.get_id(cr, uid, code, test='code=%s') + def get(self, cr, uid, code, context = None): + return self.get_id(cr, uid, code, test='code=%s',context=context) ir_sequence() From c65b07debb024771e38cc45b68f9363f4f8d6f63 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 10 Sep 2009 02:48:00 +0300 Subject: [PATCH 232/251] safe_eval: make python 2.5 compatible. bzr revid: p_christ@hol.gr-20090909234800-3u0a2fyi6673js4z --- bin/tools/safe_eval.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/bin/tools/safe_eval.py b/bin/tools/safe_eval.py index 6f0a9b88fde..7c4da78375c 100644 --- a/bin/tools/safe_eval.py +++ b/bin/tools/safe_eval.py @@ -26,19 +26,22 @@ ############################################################################### __export_bis = {} +import sys def __init_ebis(): global __export_bis - _evars = [ 'abs', 'all', 'any', 'basestring' , 'bin', 'bool', + _evars = [ 'abs', 'all', 'any', 'basestring' , 'bool', 'chr', 'cmp','complex', 'dict', 'divmod', 'enumerate', - 'float','format', 'frozenset', 'getattr', 'hasattr', 'hash', + 'float', 'frozenset', 'getattr', 'hasattr', 'hash', 'hex', 'id','int', 'iter', 'len', 'list', 'long', 'map', 'max', - 'min','next', 'oct', 'ord','pow', 'range', 'reduce', 'repr', + 'min', 'oct', 'ord','pow', 'range', 'reduce', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice','sorted', 'str', 'sum', 'tuple','type', 'unichr','unicode', 'xrange', 'True','False', 'None', 'NotImplemented', 'Ellipsis', ] + if sys.version_info[0:2] >= (2,6): + _evars.extend(['bin', 'format', 'next']) for v in _evars: __export_bis[v] = __builtins__[v] From 210196117c3decd448ff91cdb42413fb94631660 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 10 Sep 2009 03:02:41 +0300 Subject: [PATCH 233/251] Backport the HTTP server code from python 2.6 to 2.5 bzr revid: p_christ@hol.gr-20090910000241-3o1o5hcll10efa2y --- python25-compat/BaseHTTPServer.py | 587 ++++++++++++++++++++++ python25-compat/SimpleXMLRPCServer.py | 611 +++++++++++++++++++++++ python25-compat/SocketServer.py | 681 ++++++++++++++++++++++++++ setup.py | 5 + 4 files changed, 1884 insertions(+) create mode 100644 python25-compat/BaseHTTPServer.py create mode 100644 python25-compat/SimpleXMLRPCServer.py create mode 100644 python25-compat/SocketServer.py diff --git a/python25-compat/BaseHTTPServer.py b/python25-compat/BaseHTTPServer.py new file mode 100644 index 00000000000..5f2d558b689 --- /dev/null +++ b/python25-compat/BaseHTTPServer.py @@ -0,0 +1,587 @@ +"""HTTP server base class. + +Note: the class in this module doesn't implement any HTTP request; see +SimpleHTTPServer for simple implementations of GET, HEAD and POST +(including CGI scripts). It does, however, optionally implement HTTP/1.1 +persistent connections, as of version 0.3. + +Contents: + +- BaseHTTPRequestHandler: HTTP request handler base class +- test: test function + +XXX To do: + +- log requests even later (to capture byte count) +- log user-agent header and other interesting goodies +- send error log to separate file +""" + + +# See also: +# +# HTTP Working Group T. Berners-Lee +# INTERNET-DRAFT R. T. Fielding +# H. Frystyk Nielsen +# Expires September 8, 1995 March 8, 1995 +# +# URL: http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-v10-spec-00.txt +# +# and +# +# Network Working Group R. Fielding +# Request for Comments: 2616 et al +# Obsoletes: 2068 June 1999 +# Category: Standards Track +# +# URL: http://www.faqs.org/rfcs/rfc2616.html + +# Log files +# --------- +# +# Here's a quote from the NCSA httpd docs about log file format. +# +# | The logfile format is as follows. Each line consists of: +# | +# | host rfc931 authuser [DD/Mon/YYYY:hh:mm:ss] "request" ddd bbbb +# | +# | host: Either the DNS name or the IP number of the remote client +# | rfc931: Any information returned by identd for this person, +# | - otherwise. +# | authuser: If user sent a userid for authentication, the user name, +# | - otherwise. +# | DD: Day +# | Mon: Month (calendar name) +# | YYYY: Year +# | hh: hour (24-hour format, the machine's timezone) +# | mm: minutes +# | ss: seconds +# | request: The first line of the HTTP request as sent by the client. +# | ddd: the status code returned by the server, - if not available. +# | bbbb: the total number of bytes sent, +# | *not including the HTTP/1.0 header*, - if not available +# | +# | You can determine the name of the file accessed through request. +# +# (Actually, the latter is only true if you know the server configuration +# at the time the request was made!) + +__version__ = "0.3" + +__all__ = ["HTTPServer", "BaseHTTPRequestHandler"] + +import sys +import time +import socket # For gethostbyaddr() +import mimetools +import SocketServer + +# Default error message template +DEFAULT_ERROR_MESSAGE = """\ + +Error response + + +

Error response

+

Error code %(code)d. +

Message: %(message)s. +

Error code explanation: %(code)s = %(explain)s. + +""" + +DEFAULT_ERROR_CONTENT_TYPE = "text/html" + +def _quote_html(html): + return html.replace("&", "&").replace("<", "<").replace(">", ">") + +class HTTPServer(SocketServer.TCPServer): + + allow_reuse_address = 1 # Seems to make sense in testing environment + + def server_bind(self): + """Override server_bind to store the server name.""" + SocketServer.TCPServer.server_bind(self) + host, port = self.socket.getsockname()[:2] + self.server_name = socket.getfqdn(host) + self.server_port = port + + +class BaseHTTPRequestHandler(SocketServer.StreamRequestHandler): + + """HTTP request handler base class. + + The following explanation of HTTP serves to guide you through the + code as well as to expose any misunderstandings I may have about + HTTP (so you don't need to read the code to figure out I'm wrong + :-). + + HTTP (HyperText Transfer Protocol) is an extensible protocol on + top of a reliable stream transport (e.g. TCP/IP). The protocol + recognizes three parts to a request: + + 1. One line identifying the request type and path + 2. An optional set of RFC-822-style headers + 3. An optional data part + + The headers and data are separated by a blank line. + + The first line of the request has the form + + + + where is a (case-sensitive) keyword such as GET or POST, + is a string containing path information for the request, + and should be the string "HTTP/1.0" or "HTTP/1.1". + is encoded using the URL encoding scheme (using %xx to signify + the ASCII character with hex code xx). + + The specification specifies that lines are separated by CRLF but + for compatibility with the widest range of clients recommends + servers also handle LF. Similarly, whitespace in the request line + is treated sensibly (allowing multiple spaces between components + and allowing trailing whitespace). + + Similarly, for output, lines ought to be separated by CRLF pairs + but most clients grok LF characters just fine. + + If the first line of the request has the form + + + + (i.e. is left out) then this is assumed to be an HTTP + 0.9 request; this form has no optional headers and data part and + the reply consists of just the data. + + The reply form of the HTTP 1.x protocol again has three parts: + + 1. One line giving the response code + 2. An optional set of RFC-822-style headers + 3. The data + + Again, the headers and data are separated by a blank line. + + The response code line has the form + + + + where is the protocol version ("HTTP/1.0" or "HTTP/1.1"), + is a 3-digit response code indicating success or + failure of the request, and is an optional + human-readable string explaining what the response code means. + + This server parses the request and the headers, and then calls a + function specific to the request type (). Specifically, + a request SPAM will be handled by a method do_SPAM(). If no + such method exists the server sends an error response to the + client. If it exists, it is called with no arguments: + + do_SPAM() + + Note that the request name is case sensitive (i.e. SPAM and spam + are different requests). + + The various request details are stored in instance variables: + + - client_address is the client IP address in the form (host, + port); + + - command, path and version are the broken-down request line; + + - headers is an instance of mimetools.Message (or a derived + class) containing the header information; + + - rfile is a file object open for reading positioned at the + start of the optional input data part; + + - wfile is a file object open for writing. + + IT IS IMPORTANT TO ADHERE TO THE PROTOCOL FOR WRITING! + + The first thing to be written must be the response line. Then + follow 0 or more header lines, then a blank line, and then the + actual data (if any). The meaning of the header lines depends on + the command executed by the server; in most cases, when data is + returned, there should be at least one header line of the form + + Content-type: / + + where and should be registered MIME types, + e.g. "text/html" or "text/plain". + + """ + + # The Python system version, truncated to its first component. + sys_version = "Python/" + sys.version.split()[0] + + # The server software version. You may want to override this. + # The format is multiple whitespace-separated strings, + # where each string is of the form name[/version]. + server_version = "BaseHTTP/" + __version__ + + # The default request version. This only affects responses up until + # the point where the request line is parsed, so it mainly decides what + # the client gets back when sending a malformed request line. + # Most web servers default to HTTP 0.9, i.e. don't send a status line. + default_request_version = "HTTP/0.9" + + def parse_request(self): + """Parse a request (internal). + + The request should be stored in self.raw_requestline; the results + are in self.command, self.path, self.request_version and + self.headers. + + Return True for success, False for failure; on failure, an + error is sent back. + + """ + self.command = None # set in case of error on the first line + self.request_version = version = self.default_request_version + self.close_connection = 1 + requestline = self.raw_requestline + if requestline[-2:] == '\r\n': + requestline = requestline[:-2] + elif requestline[-1:] == '\n': + requestline = requestline[:-1] + self.requestline = requestline + words = requestline.split() + if len(words) == 3: + [command, path, version] = words + if version[:5] != 'HTTP/': + self.send_error(400, "Bad request version (%r)" % version) + return False + try: + base_version_number = version.split('/', 1)[1] + version_number = base_version_number.split(".") + # RFC 2145 section 3.1 says there can be only one "." and + # - major and minor numbers MUST be treated as + # separate integers; + # - HTTP/2.4 is a lower version than HTTP/2.13, which in + # turn is lower than HTTP/12.3; + # - Leading zeros MUST be ignored by recipients. + if len(version_number) != 2: + raise ValueError + version_number = int(version_number[0]), int(version_number[1]) + except (ValueError, IndexError): + self.send_error(400, "Bad request version (%r)" % version) + return False + if version_number >= (1, 1) and self.protocol_version >= "HTTP/1.1": + self.close_connection = 0 + if version_number >= (2, 0): + self.send_error(505, + "Invalid HTTP Version (%s)" % base_version_number) + return False + elif len(words) == 2: + [command, path] = words + self.close_connection = 1 + if command != 'GET': + self.send_error(400, + "Bad HTTP/0.9 request type (%r)" % command) + return False + elif not words: + return False + else: + self.send_error(400, "Bad request syntax (%r)" % requestline) + return False + self.command, self.path, self.request_version = command, path, version + + # Examine the headers and look for a Connection directive + self.headers = self.MessageClass(self.rfile, 0) + + conntype = self.headers.get('Connection', "") + if conntype.lower() == 'close': + self.close_connection = 1 + elif (conntype.lower() == 'keep-alive' and + self.protocol_version >= "HTTP/1.1"): + self.close_connection = 0 + return True + + def handle_one_request(self): + """Handle a single HTTP request. + + You normally don't need to override this method; see the class + __doc__ string for information on how to handle specific HTTP + commands such as GET and POST. + + """ + self.raw_requestline = self.rfile.readline() + if not self.raw_requestline: + self.close_connection = 1 + return + if not self.parse_request(): # An error code has been sent, just exit + return + mname = 'do_' + self.command + if not hasattr(self, mname): + self.send_error(501, "Unsupported method (%r)" % self.command) + return + method = getattr(self, mname) + method() + + def handle(self): + """Handle multiple requests if necessary.""" + self.close_connection = 1 + + self.handle_one_request() + while not self.close_connection: + self.handle_one_request() + + def send_error(self, code, message=None): + """Send and log an error reply. + + Arguments are the error code, and a detailed message. + The detailed message defaults to the short entry matching the + response code. + + This sends an error response (so it must be called before any + output has been generated), logs the error, and finally sends + a piece of HTML explaining the error to the user. + + """ + + try: + short, long = self.responses[code] + except KeyError: + short, long = '???', '???' + if message is None: + message = short + explain = long + self.log_error("code %d, message %s", code, message) + # using _quote_html to prevent Cross Site Scripting attacks (see bug #1100201) + content = (self.error_message_format % + {'code': code, 'message': _quote_html(message), 'explain': explain}) + self.send_response(code, message) + self.send_header("Content-Type", self.error_content_type) + self.send_header('Connection', 'close') + self.end_headers() + if self.command != 'HEAD' and code >= 200 and code not in (204, 304): + self.wfile.write(content) + + error_message_format = DEFAULT_ERROR_MESSAGE + error_content_type = DEFAULT_ERROR_CONTENT_TYPE + + def send_response(self, code, message=None): + """Send the response header and log the response code. + + Also send two standard headers with the server software + version and the current date. + + """ + self.log_request(code) + if message is None: + if code in self.responses: + message = self.responses[code][0] + else: + message = '' + if self.request_version != 'HTTP/0.9': + self.wfile.write("%s %d %s\r\n" % + (self.protocol_version, code, message)) + # print (self.protocol_version, code, message) + self.send_header('Server', self.version_string()) + self.send_header('Date', self.date_time_string()) + + def send_header(self, keyword, value): + """Send a MIME header.""" + if self.request_version != 'HTTP/0.9': + self.wfile.write("%s: %s\r\n" % (keyword, value)) + + if keyword.lower() == 'connection': + if value.lower() == 'close': + self.close_connection = 1 + elif value.lower() == 'keep-alive': + self.close_connection = 0 + + def end_headers(self): + """Send the blank line ending the MIME headers.""" + if self.request_version != 'HTTP/0.9': + self.wfile.write("\r\n") + + def log_request(self, code='-', size='-'): + """Log an accepted request. + + This is called by send_response(). + + """ + + self.log_message('"%s" %s %s', + self.requestline, str(code), str(size)) + + def log_error(self, format, *args): + """Log an error. + + This is called when a request cannot be fulfilled. By + default it passes the message on to log_message(). + + Arguments are the same as for log_message(). + + XXX This should go to the separate error log. + + """ + + self.log_message(format, *args) + + def log_message(self, format, *args): + """Log an arbitrary message. + + This is used by all other logging functions. Override + it if you have specific logging wishes. + + The first argument, FORMAT, is a format string for the + message to be logged. If the format string contains + any % escapes requiring parameters, they should be + specified as subsequent arguments (it's just like + printf!). + + The client host and current date/time are prefixed to + every message. + + """ + + sys.stderr.write("%s - - [%s] %s\n" % + (self.address_string(), + self.log_date_time_string(), + format%args)) + + def version_string(self): + """Return the server software version string.""" + return self.server_version + ' ' + self.sys_version + + def date_time_string(self, timestamp=None): + """Return the current date and time formatted for a message header.""" + if timestamp is None: + timestamp = time.time() + year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp) + s = "%s, %02d %3s %4d %02d:%02d:%02d GMT" % ( + self.weekdayname[wd], + day, self.monthname[month], year, + hh, mm, ss) + return s + + def log_date_time_string(self): + """Return the current time formatted for logging.""" + now = time.time() + year, month, day, hh, mm, ss, x, y, z = time.localtime(now) + s = "%02d/%3s/%04d %02d:%02d:%02d" % ( + day, self.monthname[month], year, hh, mm, ss) + return s + + weekdayname = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] + + monthname = [None, + 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', + 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] + + def address_string(self): + """Return the client address formatted for logging. + + This version looks up the full hostname using gethostbyaddr(), + and tries to find a name that contains at least one dot. + + """ + + host, port = self.client_address[:2] + return socket.getfqdn(host) + + # Essentially static class variables + + # The version of the HTTP protocol we support. + # Set this to HTTP/1.1 to enable automatic keepalive + protocol_version = "HTTP/1.0" + + # The Message-like class used to parse headers + MessageClass = mimetools.Message + + # Table mapping response codes to messages; entries have the + # form {code: (shortmessage, longmessage)}. + # See RFC 2616. + responses = { + 100: ('Continue', 'Request received, please continue'), + 101: ('Switching Protocols', + 'Switching to new protocol; obey Upgrade header'), + + 200: ('OK', 'Request fulfilled, document follows'), + 201: ('Created', 'Document created, URL follows'), + 202: ('Accepted', + 'Request accepted, processing continues off-line'), + 203: ('Non-Authoritative Information', 'Request fulfilled from cache'), + 204: ('No Content', 'Request fulfilled, nothing follows'), + 205: ('Reset Content', 'Clear input form for further input.'), + 206: ('Partial Content', 'Partial content follows.'), + + 300: ('Multiple Choices', + 'Object has several resources -- see URI list'), + 301: ('Moved Permanently', 'Object moved permanently -- see URI list'), + 302: ('Found', 'Object moved temporarily -- see URI list'), + 303: ('See Other', 'Object moved -- see Method and URL list'), + 304: ('Not Modified', + 'Document has not changed since given time'), + 305: ('Use Proxy', + 'You must use proxy specified in Location to access this ' + 'resource.'), + 307: ('Temporary Redirect', + 'Object moved temporarily -- see URI list'), + + 400: ('Bad Request', + 'Bad request syntax or unsupported method'), + 401: ('Unauthorized', + 'No permission -- see authorization schemes'), + 402: ('Payment Required', + 'No payment -- see charging schemes'), + 403: ('Forbidden', + 'Request forbidden -- authorization will not help'), + 404: ('Not Found', 'Nothing matches the given URI'), + 405: ('Method Not Allowed', + 'Specified method is invalid for this server.'), + 406: ('Not Acceptable', 'URI not available in preferred format.'), + 407: ('Proxy Authentication Required', 'You must authenticate with ' + 'this proxy before proceeding.'), + 408: ('Request Timeout', 'Request timed out; try again later.'), + 409: ('Conflict', 'Request conflict.'), + 410: ('Gone', + 'URI no longer exists and has been permanently removed.'), + 411: ('Length Required', 'Client must specify Content-Length.'), + 412: ('Precondition Failed', 'Precondition in headers is false.'), + 413: ('Request Entity Too Large', 'Entity is too large.'), + 414: ('Request-URI Too Long', 'URI is too long.'), + 415: ('Unsupported Media Type', 'Entity body in unsupported format.'), + 416: ('Requested Range Not Satisfiable', + 'Cannot satisfy request range.'), + 417: ('Expectation Failed', + 'Expect condition could not be satisfied.'), + + 500: ('Internal Server Error', 'Server got itself in trouble'), + 501: ('Not Implemented', + 'Server does not support this operation'), + 502: ('Bad Gateway', 'Invalid responses from another server/proxy.'), + 503: ('Service Unavailable', + 'The server cannot process the request due to a high load'), + 504: ('Gateway Timeout', + 'The gateway server did not receive a timely response'), + 505: ('HTTP Version Not Supported', 'Cannot fulfill request.'), + } + + +def test(HandlerClass = BaseHTTPRequestHandler, + ServerClass = HTTPServer, protocol="HTTP/1.0"): + """Test the HTTP request handler class. + + This runs an HTTP server on port 8000 (or the first command line + argument). + + """ + + if sys.argv[1:]: + port = int(sys.argv[1]) + else: + port = 8000 + server_address = ('', port) + + HandlerClass.protocol_version = protocol + httpd = ServerClass(server_address, HandlerClass) + + sa = httpd.socket.getsockname() + print "Serving HTTP on", sa[0], "port", sa[1], "..." + httpd.serve_forever() + + +if __name__ == '__main__': + test() diff --git a/python25-compat/SimpleXMLRPCServer.py b/python25-compat/SimpleXMLRPCServer.py new file mode 100644 index 00000000000..43757a03dda --- /dev/null +++ b/python25-compat/SimpleXMLRPCServer.py @@ -0,0 +1,611 @@ +"""Simple XML-RPC Server. + +This module can be used to create simple XML-RPC servers +by creating a server and either installing functions, a +class instance, or by extending the SimpleXMLRPCServer +class. + +It can also be used to handle XML-RPC requests in a CGI +environment using CGIXMLRPCRequestHandler. + +A list of possible usage patterns follows: + +1. Install functions: + +server = SimpleXMLRPCServer(("localhost", 8000)) +server.register_function(pow) +server.register_function(lambda x,y: x+y, 'add') +server.serve_forever() + +2. Install an instance: + +class MyFuncs: + def __init__(self): + # make all of the string functions available through + # string.func_name + import string + self.string = string + def _listMethods(self): + # implement this method so that system.listMethods + # knows to advertise the strings methods + return list_public_methods(self) + \ + ['string.' + method for method in list_public_methods(self.string)] + def pow(self, x, y): return pow(x, y) + def add(self, x, y) : return x + y + +server = SimpleXMLRPCServer(("localhost", 8000)) +server.register_introspection_functions() +server.register_instance(MyFuncs()) +server.serve_forever() + +3. Install an instance with custom dispatch method: + +class Math: + def _listMethods(self): + # this method must be present for system.listMethods + # to work + return ['add', 'pow'] + def _methodHelp(self, method): + # this method must be present for system.methodHelp + # to work + if method == 'add': + return "add(2,3) => 5" + elif method == 'pow': + return "pow(x, y[, z]) => number" + else: + # By convention, return empty + # string if no help is available + return "" + def _dispatch(self, method, params): + if method == 'pow': + return pow(*params) + elif method == 'add': + return params[0] + params[1] + else: + raise 'bad method' + +server = SimpleXMLRPCServer(("localhost", 8000)) +server.register_introspection_functions() +server.register_instance(Math()) +server.serve_forever() + +4. Subclass SimpleXMLRPCServer: + +class MathServer(SimpleXMLRPCServer): + def _dispatch(self, method, params): + try: + # We are forcing the 'export_' prefix on methods that are + # callable through XML-RPC to prevent potential security + # problems + func = getattr(self, 'export_' + method) + except AttributeError: + raise Exception('method "%s" is not supported' % method) + else: + return func(*params) + + def export_add(self, x, y): + return x + y + +server = MathServer(("localhost", 8000)) +server.serve_forever() + +5. CGI script: + +server = CGIXMLRPCRequestHandler() +server.register_function(pow) +server.handle_request() +""" + +# Written by Brian Quinlan (brian@sweetapp.com). +# Based on code written by Fredrik Lundh. + +import xmlrpclib +from xmlrpclib import Fault +import SocketServer +import BaseHTTPServer +import sys +import os +import traceback +try: + import fcntl +except ImportError: + fcntl = None + +def resolve_dotted_attribute(obj, attr, allow_dotted_names=True): + """resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d + + Resolves a dotted attribute name to an object. Raises + an AttributeError if any attribute in the chain starts with a '_'. + + If the optional allow_dotted_names argument is false, dots are not + supported and this function operates similar to getattr(obj, attr). + """ + + if allow_dotted_names: + attrs = attr.split('.') + else: + attrs = [attr] + + for i in attrs: + if i.startswith('_'): + raise AttributeError( + 'attempt to access private attribute "%s"' % i + ) + else: + obj = getattr(obj,i) + return obj + +def list_public_methods(obj): + """Returns a list of attribute strings, found in the specified + object, which represent callable attributes""" + + return [member for member in dir(obj) + if not member.startswith('_') and + hasattr(getattr(obj, member), '__call__')] + +def remove_duplicates(lst): + """remove_duplicates([2,2,2,1,3,3]) => [3,1,2] + + Returns a copy of a list without duplicates. Every list + item must be hashable and the order of the items in the + resulting list is not defined. + """ + u = {} + for x in lst: + u[x] = 1 + + return u.keys() + +class SimpleXMLRPCDispatcher: + """Mix-in class that dispatches XML-RPC requests. + + This class is used to register XML-RPC method handlers + and then to dispatch them. There should never be any + reason to instantiate this class directly. + """ + + def __init__(self, allow_none, encoding): + self.funcs = {} + self.instance = None + self.allow_none = allow_none + self.encoding = encoding + + def register_instance(self, instance, allow_dotted_names=False): + """Registers an instance to respond to XML-RPC requests. + + Only one instance can be installed at a time. + + If the registered instance has a _dispatch method then that + method will be called with the name of the XML-RPC method and + its parameters as a tuple + e.g. instance._dispatch('add',(2,3)) + + If the registered instance does not have a _dispatch method + then the instance will be searched to find a matching method + and, if found, will be called. Methods beginning with an '_' + are considered private and will not be called by + SimpleXMLRPCServer. + + If a registered function matches a XML-RPC request, then it + will be called instead of the registered instance. + + If the optional allow_dotted_names argument is true and the + instance does not have a _dispatch method, method names + containing dots are supported and resolved, as long as none of + the name segments start with an '_'. + + *** SECURITY WARNING: *** + + Enabling the allow_dotted_names options allows intruders + to access your module's global variables and may allow + intruders to execute arbitrary code on your machine. Only + use this option on a secure, closed network. + + """ + + self.instance = instance + self.allow_dotted_names = allow_dotted_names + + def register_function(self, function, name = None): + """Registers a function to respond to XML-RPC requests. + + The optional name argument can be used to set a Unicode name + for the function. + """ + + if name is None: + name = function.__name__ + self.funcs[name] = function + + def register_introspection_functions(self): + """Registers the XML-RPC introspection methods in the system + namespace. + + see http://xmlrpc.usefulinc.com/doc/reserved.html + """ + + self.funcs.update({'system.listMethods' : self.system_listMethods, + 'system.methodSignature' : self.system_methodSignature, + 'system.methodHelp' : self.system_methodHelp}) + + def register_multicall_functions(self): + """Registers the XML-RPC multicall method in the system + namespace. + + see http://www.xmlrpc.com/discuss/msgReader$1208""" + + self.funcs.update({'system.multicall' : self.system_multicall}) + + def _marshaled_dispatch(self, data, dispatch_method = None): + """Dispatches an XML-RPC method from marshalled (XML) data. + + XML-RPC methods are dispatched from the marshalled (XML) data + using the _dispatch method and the result is returned as + marshalled data. For backwards compatibility, a dispatch + function can be provided as an argument (see comment in + SimpleXMLRPCRequestHandler.do_POST) but overriding the + existing method through subclassing is the prefered means + of changing method dispatch behavior. + """ + + try: + params, method = xmlrpclib.loads(data) + + # generate response + if dispatch_method is not None: + response = dispatch_method(method, params) + else: + response = self._dispatch(method, params) + # wrap response in a singleton tuple + response = (response,) + response = xmlrpclib.dumps(response, methodresponse=1, + allow_none=self.allow_none, encoding=self.encoding) + except Fault, fault: + response = xmlrpclib.dumps(fault, allow_none=self.allow_none, + encoding=self.encoding) + except: + # report exception back to server + exc_type, exc_value, exc_tb = sys.exc_info() + response = xmlrpclib.dumps( + xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)), + encoding=self.encoding, allow_none=self.allow_none, + ) + + return response + + def system_listMethods(self): + """system.listMethods() => ['add', 'subtract', 'multiple'] + + Returns a list of the methods supported by the server.""" + + methods = self.funcs.keys() + if self.instance is not None: + # Instance can implement _listMethod to return a list of + # methods + if hasattr(self.instance, '_listMethods'): + methods = remove_duplicates( + methods + self.instance._listMethods() + ) + # if the instance has a _dispatch method then we + # don't have enough information to provide a list + # of methods + elif not hasattr(self.instance, '_dispatch'): + methods = remove_duplicates( + methods + list_public_methods(self.instance) + ) + methods.sort() + return methods + + def system_methodSignature(self, method_name): + """system.methodSignature('add') => [double, int, int] + + Returns a list describing the signature of the method. In the + above example, the add method takes two integers as arguments + and returns a double result. + + This server does NOT support system.methodSignature.""" + + # See http://xmlrpc.usefulinc.com/doc/sysmethodsig.html + + return 'signatures not supported' + + def system_methodHelp(self, method_name): + """system.methodHelp('add') => "Adds two integers together" + + Returns a string containing documentation for the specified method.""" + + method = None + if method_name in self.funcs: + method = self.funcs[method_name] + elif self.instance is not None: + # Instance can implement _methodHelp to return help for a method + if hasattr(self.instance, '_methodHelp'): + return self.instance._methodHelp(method_name) + # if the instance has a _dispatch method then we + # don't have enough information to provide help + elif not hasattr(self.instance, '_dispatch'): + try: + method = resolve_dotted_attribute( + self.instance, + method_name, + self.allow_dotted_names + ) + except AttributeError: + pass + + # Note that we aren't checking that the method actually + # be a callable object of some kind + if method is None: + return "" + else: + import pydoc + return pydoc.getdoc(method) + + def system_multicall(self, call_list): + """system.multicall([{'methodName': 'add', 'params': [2, 2]}, ...]) => \ +[[4], ...] + + Allows the caller to package multiple XML-RPC calls into a single + request. + + See http://www.xmlrpc.com/discuss/msgReader$1208 + """ + + results = [] + for call in call_list: + method_name = call['methodName'] + params = call['params'] + + try: + # XXX A marshalling error in any response will fail the entire + # multicall. If someone cares they should fix this. + results.append([self._dispatch(method_name, params)]) + except Fault, fault: + results.append( + {'faultCode' : fault.faultCode, + 'faultString' : fault.faultString} + ) + except: + exc_type, exc_value, exc_tb = sys.exc_info() + results.append( + {'faultCode' : 1, + 'faultString' : "%s:%s" % (exc_type, exc_value)} + ) + return results + + def _dispatch(self, method, params): + """Dispatches the XML-RPC method. + + XML-RPC calls are forwarded to a registered function that + matches the called XML-RPC method name. If no such function + exists then the call is forwarded to the registered instance, + if available. + + If the registered instance has a _dispatch method then that + method will be called with the name of the XML-RPC method and + its parameters as a tuple + e.g. instance._dispatch('add',(2,3)) + + If the registered instance does not have a _dispatch method + then the instance will be searched to find a matching method + and, if found, will be called. + + Methods beginning with an '_' are considered private and will + not be called. + """ + + func = None + try: + # check to see if a matching function has been registered + func = self.funcs[method] + except KeyError: + if self.instance is not None: + # check for a _dispatch method + if hasattr(self.instance, '_dispatch'): + return self.instance._dispatch(method, params) + else: + # call instance method directly + try: + func = resolve_dotted_attribute( + self.instance, + method, + self.allow_dotted_names + ) + except AttributeError: + pass + + if func is not None: + return func(*params) + else: + raise Exception('method "%s" is not supported' % method) + +class SimpleXMLRPCRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler): + """Simple XML-RPC request handler class. + + Handles all HTTP POST requests and attempts to decode them as + XML-RPC requests. + """ + + # Class attribute listing the accessible path components; + # paths not on this list will result in a 404 error. + rpc_paths = ('/', '/RPC2') + + def is_rpc_path_valid(self): + if self.rpc_paths: + return self.path in self.rpc_paths + else: + # If .rpc_paths is empty, just assume all paths are legal + return True + + def do_POST(self): + """Handles the HTTP POST request. + + Attempts to interpret all HTTP POST requests as XML-RPC calls, + which are forwarded to the server's _dispatch method for handling. + """ + + # Check that the path is legal + if not self.is_rpc_path_valid(): + self.report_404() + return + + try: + # Get arguments by reading body of request. + # We read this in chunks to avoid straining + # socket.read(); around the 10 or 15Mb mark, some platforms + # begin to have problems (bug #792570). + max_chunk_size = 10*1024*1024 + size_remaining = int(self.headers["content-length"]) + L = [] + while size_remaining: + chunk_size = min(size_remaining, max_chunk_size) + L.append(self.rfile.read(chunk_size)) + size_remaining -= len(L[-1]) + data = ''.join(L) + + # In previous versions of SimpleXMLRPCServer, _dispatch + # could be overridden in this class, instead of in + # SimpleXMLRPCDispatcher. To maintain backwards compatibility, + # check to see if a subclass implements _dispatch and dispatch + # using that method if present. + response = self.server._marshaled_dispatch( + data, getattr(self, '_dispatch', None) + ) + except Exception, e: # This should only happen if the module is buggy + # internal error, report as HTTP server error + self.send_response(500) + + # Send information about the exception if requested + if hasattr(self.server, '_send_traceback_header') and \ + self.server._send_traceback_header: + self.send_header("X-exception", str(e)) + self.send_header("X-traceback", traceback.format_exc()) + + self.end_headers() + else: + # got a valid XML RPC response + self.send_response(200) + self.send_header("Content-type", "text/xml") + self.send_header("Content-length", str(len(response))) + self.end_headers() + self.wfile.write(response) + + # shut down the connection + self.wfile.flush() + self.connection.shutdown(1) + + def report_404 (self): + # Report a 404 error + self.send_response(404) + response = 'No such page' + self.send_header("Content-type", "text/plain") + self.send_header("Content-length", str(len(response))) + self.end_headers() + self.wfile.write(response) + # shut down the connection + self.wfile.flush() + self.connection.shutdown(1) + + def log_request(self, code='-', size='-'): + """Selectively log an accepted request.""" + + if self.server.logRequests: + BaseHTTPServer.BaseHTTPRequestHandler.log_request(self, code, size) + +class SimpleXMLRPCServer(SocketServer.TCPServer, + SimpleXMLRPCDispatcher): + """Simple XML-RPC server. + + Simple XML-RPC server that allows functions and a single instance + to be installed to handle requests. The default implementation + attempts to dispatch XML-RPC calls to the functions or instance + installed in the server. Override the _dispatch method inhereted + from SimpleXMLRPCDispatcher to change this behavior. + """ + + allow_reuse_address = True + + # Warning: this is for debugging purposes only! Never set this to True in + # production code, as will be sending out sensitive information (exception + # and stack trace details) when exceptions are raised inside + # SimpleXMLRPCRequestHandler.do_POST + _send_traceback_header = False + + def __init__(self, addr, requestHandler=SimpleXMLRPCRequestHandler, + logRequests=True, allow_none=False, encoding=None, bind_and_activate=True): + self.logRequests = logRequests + + SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding) + SocketServer.TCPServer.__init__(self, addr, requestHandler, bind_and_activate) + + # [Bug #1222790] If possible, set close-on-exec flag; if a + # method spawns a subprocess, the subprocess shouldn't have + # the listening socket open. + if fcntl is not None and hasattr(fcntl, 'FD_CLOEXEC'): + flags = fcntl.fcntl(self.fileno(), fcntl.F_GETFD) + flags |= fcntl.FD_CLOEXEC + fcntl.fcntl(self.fileno(), fcntl.F_SETFD, flags) + +class CGIXMLRPCRequestHandler(SimpleXMLRPCDispatcher): + """Simple handler for XML-RPC data passed through CGI.""" + + def __init__(self, allow_none=False, encoding=None): + SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding) + + def handle_xmlrpc(self, request_text): + """Handle a single XML-RPC request""" + + response = self._marshaled_dispatch(request_text) + + print 'Content-Type: text/xml' + print 'Content-Length: %d' % len(response) + print + sys.stdout.write(response) + + def handle_get(self): + """Handle a single HTTP GET request. + + Default implementation indicates an error because + XML-RPC uses the POST method. + """ + + code = 400 + message, explain = \ + BaseHTTPServer.BaseHTTPRequestHandler.responses[code] + + response = BaseHTTPServer.DEFAULT_ERROR_MESSAGE % \ + { + 'code' : code, + 'message' : message, + 'explain' : explain + } + print 'Status: %d %s' % (code, message) + print 'Content-Type: text/html' + print 'Content-Length: %d' % len(response) + print + sys.stdout.write(response) + + def handle_request(self, request_text = None): + """Handle a single XML-RPC request passed through a CGI post method. + + If no XML data is given then it is read from stdin. The resulting + XML-RPC response is printed to stdout along with the correct HTTP + headers. + """ + + if request_text is None and \ + os.environ.get('REQUEST_METHOD', None) == 'GET': + self.handle_get() + else: + # POST data is normally available through stdin + if request_text is None: + request_text = sys.stdin.read() + + self.handle_xmlrpc(request_text) + +if __name__ == '__main__': + print 'Running XML-RPC server on port 8000' + server = SimpleXMLRPCServer(("localhost", 8000)) + server.register_function(pow) + server.register_function(lambda x,y: x+y, 'add') + server.serve_forever() diff --git a/python25-compat/SocketServer.py b/python25-compat/SocketServer.py new file mode 100644 index 00000000000..2c41fbb6dc0 --- /dev/null +++ b/python25-compat/SocketServer.py @@ -0,0 +1,681 @@ +"""Generic socket server classes. + +This module tries to capture the various aspects of defining a server: + +For socket-based servers: + +- address family: + - AF_INET{,6}: IP (Internet Protocol) sockets (default) + - AF_UNIX: Unix domain sockets + - others, e.g. AF_DECNET are conceivable (see +- socket type: + - SOCK_STREAM (reliable stream, e.g. TCP) + - SOCK_DGRAM (datagrams, e.g. UDP) + +For request-based servers (including socket-based): + +- client address verification before further looking at the request + (This is actually a hook for any processing that needs to look + at the request before anything else, e.g. logging) +- how to handle multiple requests: + - synchronous (one request is handled at a time) + - forking (each request is handled by a new process) + - threading (each request is handled by a new thread) + +The classes in this module favor the server type that is simplest to +write: a synchronous TCP/IP server. This is bad class design, but +save some typing. (There's also the issue that a deep class hierarchy +slows down method lookups.) + +There are five classes in an inheritance diagram, four of which represent +synchronous servers of four types: + + +------------+ + | BaseServer | + +------------+ + | + v + +-----------+ +------------------+ + | TCPServer |------->| UnixStreamServer | + +-----------+ +------------------+ + | + v + +-----------+ +--------------------+ + | UDPServer |------->| UnixDatagramServer | + +-----------+ +--------------------+ + +Note that UnixDatagramServer derives from UDPServer, not from +UnixStreamServer -- the only difference between an IP and a Unix +stream server is the address family, which is simply repeated in both +unix server classes. + +Forking and threading versions of each type of server can be created +using the ForkingMixIn and ThreadingMixIn mix-in classes. For +instance, a threading UDP server class is created as follows: + + class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass + +The Mix-in class must come first, since it overrides a method defined +in UDPServer! Setting the various member variables also changes +the behavior of the underlying server mechanism. + +To implement a service, you must derive a class from +BaseRequestHandler and redefine its handle() method. You can then run +various versions of the service by combining one of the server classes +with your request handler class. + +The request handler class must be different for datagram or stream +services. This can be hidden by using the request handler +subclasses StreamRequestHandler or DatagramRequestHandler. + +Of course, you still have to use your head! + +For instance, it makes no sense to use a forking server if the service +contains state in memory that can be modified by requests (since the +modifications in the child process would never reach the initial state +kept in the parent process and passed to each child). In this case, +you can use a threading server, but you will probably have to use +locks to avoid two requests that come in nearly simultaneous to apply +conflicting changes to the server state. + +On the other hand, if you are building e.g. an HTTP server, where all +data is stored externally (e.g. in the file system), a synchronous +class will essentially render the service "deaf" while one request is +being handled -- which may be for a very long time if a client is slow +to reqd all the data it has requested. Here a threading or forking +server is appropriate. + +In some cases, it may be appropriate to process part of a request +synchronously, but to finish processing in a forked child depending on +the request data. This can be implemented by using a synchronous +server and doing an explicit fork in the request handler class +handle() method. + +Another approach to handling multiple simultaneous requests in an +environment that supports neither threads nor fork (or where these are +too expensive or inappropriate for the service) is to maintain an +explicit table of partially finished requests and to use select() to +decide which request to work on next (or whether to handle a new +incoming request). This is particularly important for stream services +where each client can potentially be connected for a long time (if +threads or subprocesses cannot be used). + +Future work: +- Standard classes for Sun RPC (which uses either UDP or TCP) +- Standard mix-in classes to implement various authentication + and encryption schemes +- Standard framework for select-based multiplexing + +XXX Open problems: +- What to do with out-of-band data? + +BaseServer: +- split generic "request" functionality out into BaseServer class. + Copyright (C) 2000 Luke Kenneth Casson Leighton + + example: read entries from a SQL database (requires overriding + get_request() to return a table entry from the database). + entry is processed by a RequestHandlerClass. + +""" + +# Author of the BaseServer patch: Luke Kenneth Casson Leighton + +# XXX Warning! +# There is a test suite for this module, but it cannot be run by the +# standard regression test. +# To run it manually, run Lib/test/test_socketserver.py. + +__version__ = "0.4" + + +import socket +import select +import sys +import os +try: + import threading +except ImportError: + import dummy_threading as threading + +__all__ = ["TCPServer","UDPServer","ForkingUDPServer","ForkingTCPServer", + "ThreadingUDPServer","ThreadingTCPServer","BaseRequestHandler", + "StreamRequestHandler","DatagramRequestHandler", + "ThreadingMixIn", "ForkingMixIn"] +if hasattr(socket, "AF_UNIX"): + __all__.extend(["UnixStreamServer","UnixDatagramServer", + "ThreadingUnixStreamServer", + "ThreadingUnixDatagramServer"]) + +class BaseServer: + + """Base class for server classes. + + Methods for the caller: + + - __init__(server_address, RequestHandlerClass) + - serve_forever(poll_interval=0.5) + - shutdown() + - handle_request() # if you do not use serve_forever() + - fileno() -> int # for select() + + Methods that may be overridden: + + - server_bind() + - server_activate() + - get_request() -> request, client_address + - handle_timeout() + - verify_request(request, client_address) + - server_close() + - process_request(request, client_address) + - close_request(request) + - handle_error() + + Methods for derived classes: + + - finish_request(request, client_address) + + Class variables that may be overridden by derived classes or + instances: + + - timeout + - address_family + - socket_type + - allow_reuse_address + + Instance variables: + + - RequestHandlerClass + - socket + + """ + + timeout = None + + def __init__(self, server_address, RequestHandlerClass): + """Constructor. May be extended, do not override.""" + self.server_address = server_address + self.RequestHandlerClass = RequestHandlerClass + self.__is_shut_down = threading.Event() + self.__serving = False + + def server_activate(self): + """Called by constructor to activate the server. + + May be overridden. + + """ + pass + + def serve_forever(self, poll_interval=0.5): + """Handle one request at a time until shutdown. + + Polls for shutdown every poll_interval seconds. Ignores + self.timeout. If you need to do periodic tasks, do them in + another thread. + """ + self.__serving = True + self.__is_shut_down.clear() + while self.__serving: + # XXX: Consider using another file descriptor or + # connecting to the socket to wake this up instead of + # polling. Polling reduces our responsiveness to a + # shutdown request and wastes cpu at all other times. + r, w, e = select.select([self], [], [], poll_interval) + if r: + self._handle_request_noblock() + self.__is_shut_down.set() + + def shutdown(self): + """Stops the serve_forever loop. + + Blocks until the loop has finished. This must be called while + serve_forever() is running in another thread, or it will + deadlock. + """ + self.__serving = False + self.__is_shut_down.wait() + + # The distinction between handling, getting, processing and + # finishing a request is fairly arbitrary. Remember: + # + # - handle_request() is the top-level call. It calls + # select, get_request(), verify_request() and process_request() + # - get_request() is different for stream or datagram sockets + # - process_request() is the place that may fork a new process + # or create a new thread to finish the request + # - finish_request() instantiates the request handler class; + # this constructor will handle the request all by itself + + def handle_request(self): + """Handle one request, possibly blocking. + + Respects self.timeout. + """ + # Support people who used socket.settimeout() to escape + # handle_request before self.timeout was available. + timeout = self.socket.gettimeout() + if timeout is None: + timeout = self.timeout + elif self.timeout is not None: + timeout = min(timeout, self.timeout) + fd_sets = select.select([self], [], [], timeout) + if not fd_sets[0]: + self.handle_timeout() + return + self._handle_request_noblock() + + def _handle_request_noblock(self): + """Handle one request, without blocking. + + I assume that select.select has returned that the socket is + readable before this function was called, so there should be + no risk of blocking in get_request(). + """ + try: + request, client_address = self.get_request() + except socket.error: + return + if self.verify_request(request, client_address): + try: + self.process_request(request, client_address) + except: + self.handle_error(request, client_address) + self.close_request(request) + + def handle_timeout(self): + """Called if no new request arrives within self.timeout. + + Overridden by ForkingMixIn. + """ + pass + + def verify_request(self, request, client_address): + """Verify the request. May be overridden. + + Return True if we should proceed with this request. + + """ + return True + + def process_request(self, request, client_address): + """Call finish_request. + + Overridden by ForkingMixIn and ThreadingMixIn. + + """ + self.finish_request(request, client_address) + self.close_request(request) + + def server_close(self): + """Called to clean-up the server. + + May be overridden. + + """ + pass + + def finish_request(self, request, client_address): + """Finish one request by instantiating RequestHandlerClass.""" + self.RequestHandlerClass(request, client_address, self) + + def close_request(self, request): + """Called to clean up an individual request.""" + pass + + def handle_error(self, request, client_address): + """Handle an error gracefully. May be overridden. + + The default is to print a traceback and continue. + + """ + print '-'*40 + print 'Exception happened during processing of request from', + print client_address + import traceback + traceback.print_exc() # XXX But this goes to stderr! + print '-'*40 + + +class TCPServer(BaseServer): + + """Base class for various socket-based server classes. + + Defaults to synchronous IP stream (i.e., TCP). + + Methods for the caller: + + - __init__(server_address, RequestHandlerClass, bind_and_activate=True) + - serve_forever(poll_interval=0.5) + - shutdown() + - handle_request() # if you don't use serve_forever() + - fileno() -> int # for select() + + Methods that may be overridden: + + - server_bind() + - server_activate() + - get_request() -> request, client_address + - handle_timeout() + - verify_request(request, client_address) + - process_request(request, client_address) + - close_request(request) + - handle_error() + + Methods for derived classes: + + - finish_request(request, client_address) + + Class variables that may be overridden by derived classes or + instances: + + - timeout + - address_family + - socket_type + - request_queue_size (only for stream sockets) + - allow_reuse_address + + Instance variables: + + - server_address + - RequestHandlerClass + - socket + + """ + + address_family = socket.AF_INET + + socket_type = socket.SOCK_STREAM + + request_queue_size = 5 + + allow_reuse_address = False + + def __init__(self, server_address, RequestHandlerClass, bind_and_activate=True): + """Constructor. May be extended, do not override.""" + BaseServer.__init__(self, server_address, RequestHandlerClass) + self.socket = socket.socket(self.address_family, + self.socket_type) + if bind_and_activate: + self.server_bind() + self.server_activate() + + def server_bind(self): + """Called by constructor to bind the socket. + + May be overridden. + + """ + if self.allow_reuse_address: + self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) + self.socket.bind(self.server_address) + self.server_address = self.socket.getsockname() + + def server_activate(self): + """Called by constructor to activate the server. + + May be overridden. + + """ + self.socket.listen(self.request_queue_size) + + def server_close(self): + """Called to clean-up the server. + + May be overridden. + + """ + self.socket.close() + + def fileno(self): + """Return socket file number. + + Interface required by select(). + + """ + return self.socket.fileno() + + def get_request(self): + """Get the request and client address from the socket. + + May be overridden. + + """ + return self.socket.accept() + + def close_request(self, request): + """Called to clean up an individual request.""" + request.close() + + +class UDPServer(TCPServer): + + """UDP server class.""" + + allow_reuse_address = False + + socket_type = socket.SOCK_DGRAM + + max_packet_size = 8192 + + def get_request(self): + data, client_addr = self.socket.recvfrom(self.max_packet_size) + return (data, self.socket), client_addr + + def server_activate(self): + # No need to call listen() for UDP. + pass + + def close_request(self, request): + # No need to close anything. + pass + +class ForkingMixIn: + + """Mix-in class to handle each request in a new process.""" + + timeout = 300 + active_children = None + max_children = 40 + + def collect_children(self): + """Internal routine to wait for children that have exited.""" + if self.active_children is None: return + while len(self.active_children) >= self.max_children: + # XXX: This will wait for any child process, not just ones + # spawned by this library. This could confuse other + # libraries that expect to be able to wait for their own + # children. + try: + pid, status = os.waitpid(0, options=0) + except os.error: + pid = None + if pid not in self.active_children: continue + self.active_children.remove(pid) + + # XXX: This loop runs more system calls than it ought + # to. There should be a way to put the active_children into a + # process group and then use os.waitpid(-pgid) to wait for any + # of that set, but I couldn't find a way to allocate pgids + # that couldn't collide. + for child in self.active_children: + try: + pid, status = os.waitpid(child, os.WNOHANG) + except os.error: + pid = None + if not pid: continue + try: + self.active_children.remove(pid) + except ValueError, e: + raise ValueError('%s. x=%d and list=%r' % (e.message, pid, + self.active_children)) + + def handle_timeout(self): + """Wait for zombies after self.timeout seconds of inactivity. + + May be extended, do not override. + """ + self.collect_children() + + def process_request(self, request, client_address): + """Fork a new subprocess to process the request.""" + self.collect_children() + pid = os.fork() + if pid: + # Parent process + if self.active_children is None: + self.active_children = [] + self.active_children.append(pid) + self.close_request(request) + return + else: + # Child process. + # This must never return, hence os._exit()! + try: + self.finish_request(request, client_address) + os._exit(0) + except: + try: + self.handle_error(request, client_address) + finally: + os._exit(1) + + +class ThreadingMixIn: + """Mix-in class to handle each request in a new thread.""" + + # Decides how threads will act upon termination of the + # main process + daemon_threads = False + + def process_request_thread(self, request, client_address): + """Same as in BaseServer but as a thread. + + In addition, exception handling is done here. + + """ + try: + self.finish_request(request, client_address) + self.close_request(request) + except: + self.handle_error(request, client_address) + self.close_request(request) + + def process_request(self, request, client_address): + """Start a new thread to process the request.""" + t = threading.Thread(target = self.process_request_thread, + args = (request, client_address)) + if self.daemon_threads: + t.setDaemon (1) + t.start() + + +class ForkingUDPServer(ForkingMixIn, UDPServer): pass +class ForkingTCPServer(ForkingMixIn, TCPServer): pass + +class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass +class ThreadingTCPServer(ThreadingMixIn, TCPServer): pass + +if hasattr(socket, 'AF_UNIX'): + + class UnixStreamServer(TCPServer): + address_family = socket.AF_UNIX + + class UnixDatagramServer(UDPServer): + address_family = socket.AF_UNIX + + class ThreadingUnixStreamServer(ThreadingMixIn, UnixStreamServer): pass + + class ThreadingUnixDatagramServer(ThreadingMixIn, UnixDatagramServer): pass + +class BaseRequestHandler: + + """Base class for request handler classes. + + This class is instantiated for each request to be handled. The + constructor sets the instance variables request, client_address + and server, and then calls the handle() method. To implement a + specific service, all you need to do is to derive a class which + defines a handle() method. + + The handle() method can find the request as self.request, the + client address as self.client_address, and the server (in case it + needs access to per-server information) as self.server. Since a + separate instance is created for each request, the handle() method + can define arbitrary other instance variariables. + + """ + + def __init__(self, request, client_address, server): + self.request = request + self.client_address = client_address + self.server = server + try: + self.setup() + self.handle() + self.finish() + finally: + sys.exc_traceback = None # Help garbage collection + + def setup(self): + pass + + def handle(self): + pass + + def finish(self): + pass + + +# The following two classes make it possible to use the same service +# class for stream or datagram servers. +# Each class sets up these instance variables: +# - rfile: a file object from which receives the request is read +# - wfile: a file object to which the reply is written +# When the handle() method returns, wfile is flushed properly + + +class StreamRequestHandler(BaseRequestHandler): + + """Define self.rfile and self.wfile for stream sockets.""" + + # Default buffer sizes for rfile, wfile. + # We default rfile to buffered because otherwise it could be + # really slow for large data (a getc() call per byte); we make + # wfile unbuffered because (a) often after a write() we want to + # read and we need to flush the line; (b) big writes to unbuffered + # files are typically optimized by stdio even when big reads + # aren't. + rbufsize = -1 + wbufsize = 0 + + def setup(self): + self.connection = self.request + self.rfile = self.connection.makefile('rb', self.rbufsize) + self.wfile = self.connection.makefile('wb', self.wbufsize) + + def finish(self): + if not self.wfile.closed: + self.wfile.flush() + self.wfile.close() + self.rfile.close() + + +class DatagramRequestHandler(BaseRequestHandler): + + # XXX Regrettably, I cannot get this working on Linux; + # s.recvfrom() doesn't return a meaningful client address. + + """Define self.rfile and self.wfile for datagram sockets.""" + + def setup(self): + try: + from cStringIO import StringIO + except ImportError: + from StringIO import StringIO + self.packet, self.socket = self.request + self.rfile = StringIO(self.packet) + self.wfile = StringIO() + + def finish(self): + self.socket.sendto(self.wfile.getvalue(), self.client_address) diff --git a/setup.py b/setup.py index 95ff3780965..637ee89b7a6 100755 --- a/setup.py +++ b/setup.py @@ -133,6 +133,11 @@ def data_files(): opj('bin', 'server.pkey'), opj('bin', 'server.cert')])) + if sys.version_info[0:2] == (2,5): + files.append((openerp_site_packages, [ opj('python25-compat','BaseHTTPServer.py'), + opj('python25-compat','SimpleXMLRPCServer.py'), + opj('python25-compat','SocketServer.py')])) + for (addonname, add_path) in find_addons(): addon_path = opj('lib', 'python%s' % py_short_version, 'site-packages', 'openerp-server','addons', addonname) pathfiles = [] From 56ec1212c60d405e60c71f621cb7aa6ca4d3aab5 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 12 Sep 2009 03:30:49 +0300 Subject: [PATCH 234/251] ORM feature: allow renaming of columns. Sometimes we may want to rename object attributes, aka. SQL columns. Provide a mechanism for that. bzr revid: p_christ@hol.gr-20090912003049-v5xe6eypp5u462vg --- bin/osv/orm.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index f27c1295321..029042adca2 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -1740,6 +1740,20 @@ class orm(orm_template): "AND c.oid=a.attrelid " \ "AND a.atttypid=t.oid", (self._table, k)) res = cr.dictfetchall() + if not res and hasattr(f,'oldname'): + cr.execute("SELECT c.relname,a.attname,a.attlen,a.atttypmod,a.attnotnull,a.atthasdef,t.typname,CASE WHEN a.attlen=-1 THEN a.atttypmod-4 ELSE a.attlen END as size " \ + "FROM pg_class c,pg_attribute a,pg_type t " \ + "WHERE c.relname=%s " \ + "AND a.attname=%s " \ + "AND c.oid=a.attrelid " \ + "AND a.atttypid=t.oid", (self._table, f.oldname)) + res_old = cr.dictfetchall() + logger.notifyChannel('orm', netsvc.LOG_DEBUG, 'trying to rename %s(%s) to %s'% (self._table, f.oldname, k)) + if res_old and len(res_old)==1: + cr.execute('ALTER TABLE "%s" RENAME "%s" TO "%s"' % ( self._table,f.oldname, k)) + res = res_old + res[0]['attname'] = k + if not res: if not isinstance(f, fields.function) or f.store: @@ -1887,7 +1901,7 @@ class orm(orm_template): cr.execute('ALTER TABLE "' + self._table + '" ADD FOREIGN KEY ("' + k + '") REFERENCES "' + ref + '" ON DELETE ' + f.ondelete) cr.commit() else: - logger.notifyChannel('orm', netsvc.LOG_ERROR, "Programming error !") + logger.notifyChannel('orm', netsvc.LOG_ERROR, "Programming error, column %s->%s has multiple instances !"%(self._table,k)) for order,f,k in todo_update_store: todo_end.append((order, self._update_store, (f, k))) From b64ee551baceda535d1315912c2187a5149dc36d Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 13 Sep 2009 17:29:42 +0300 Subject: [PATCH 235/251] Web services: fix database operations (create, drop etc.) for new API. bzr revid: p_christ@hol.gr-20090913142942-0h8qtnz9d47ktdco --- bin/service/web_services.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/service/web_services.py b/bin/service/web_services.py index bbb5c686f42..c2f5b6c4f77 100644 --- a/bin/service/web_services.py +++ b/bin/service/web_services.py @@ -57,7 +57,7 @@ class db(netsvc.ExportService): 'change_admin_password', 'migrate_databases' ]: passwd = params[0] params = params[1:] - security.check_super(password) + security.check_super(passwd) elif method in [ 'db_exist', 'list', 'list_lang', 'server_version' ]: # params = params # No security check for these methods @@ -71,7 +71,6 @@ class db(netsvc.ExportService): pass def exp_create(self, db_name, demo, lang, user_password='admin'): - security.check_super(password) self.id_protect.acquire() self.id += 1 id = self.id @@ -216,7 +215,6 @@ class db(netsvc.ExportService): return base64.encodestring(data) def exp_restore(self, db_name, data): - security.check_super(password) logger = netsvc.Logger() self._set_pg_psw_env_var() From 952615710687ab73a2afdf849f7d1f6c7832dfb2 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sun, 13 Sep 2009 17:30:21 +0300 Subject: [PATCH 236/251] ORM: Protect against dropping columns. When a column is converted to a function, by default the db column is dropped. Sometimes this is a bad idea, until the data is migrated. Let an attribute change this behaviour. bzr revid: p_christ@hol.gr-20090913143021-6tj3c16n4lli9rls --- bin/osv/orm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 029042adca2..5ee29ca2bdd 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -1801,7 +1801,7 @@ class orm(orm_template): f_pg_type = f_pg_def['typname'] f_pg_size = f_pg_def['size'] f_pg_notnull = f_pg_def['attnotnull'] - if isinstance(f, fields.function) and not f.store: + if isinstance(f, fields.function) and not f.store and (not hasattr(f,'nodrop') or not f.nodrop): logger.notifyChannel('orm', netsvc.LOG_INFO, 'column %s (%s) in table %s removed: converted to a function !\n' % (k, f.string, self._table)) cr.execute('ALTER TABLE %s DROP COLUMN %s'% (self._table, k)) cr.commit() From e3e4be1cfba8dc6e7d23142b7c95329fb7f5daa5 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 22 Sep 2009 12:30:46 +0300 Subject: [PATCH 237/251] [IMP]: allow binary function fields to directly return size. As used in document, function fields could have a shortcut method to return the size instead of the contents. If done so and return a number, use that instead. bzr revid: p_christ@hol.gr-20090922093046-9r0gsj0qenapi06o --- bin/osv/fields.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/bin/osv/fields.py b/bin/osv/fields.py index d6d23f7af9d..0ca657e0ce7 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -583,6 +583,16 @@ class many2many(_column): obj.datas[id][name] = act[2] +def get_nice_size(a): + (x,y) = a + if isinstance(y, (int,long)): + size = y + elif y: + y = len(y) + else: + y = 0 + return (x, tools.human_size(size)) + # --------------------------------------------------------- # Function fields # --------------------------------------------------------- @@ -653,7 +663,7 @@ class function(_column): if self._type == 'binary' and context.get('bin_size', False): # convert the data returned by the function with the size of that data... - res = dict(map(lambda (x, y): (x, tools.human_size(len(y or ''))), res.items())) + res = dict(map( get_nice_size, res.items())) return res get_memory = get From 6021b6dff3dd08748cf4744720c23407ce032680 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 22 Sep 2009 12:32:55 +0300 Subject: [PATCH 238/251] Ir.attachment: improve SQL for access checks. bzr revid: p_christ@hol.gr-20090922093255-f3iljq721pwbn9e0 --- bin/addons/base/ir/ir_attachment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/addons/base/ir/ir_attachment.py b/bin/addons/base/ir/ir_attachment.py index 1339ea284a3..dcd9011121b 100644 --- a/bin/addons/base/ir/ir_attachment.py +++ b/bin/addons/base/ir/ir_attachment.py @@ -31,7 +31,7 @@ class ir_attachment(osv.osv): ima = self.pool.get('ir.model.access') if isinstance(ids, (int, long)): ids = [ids] - cr.execute('select distinct res_model from ir_attachment where id in ('+','.join(map(str, ids))+')') + cr.execute('select distinct res_model from ir_attachment where id = ANY (%s)', (ids,)) for obj in cr.fetchall(): if obj[0]: ima.check(cr, uid, obj[0], mode, context=context) From 8afaffc8117f6f017fee9f76ce8ec1d047610839 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 25 Sep 2009 23:34:27 +0300 Subject: [PATCH 239/251] [Fix] Tolerate ids that came as strings. If the list of IDs contains strings with numeric values (like '123'), allow them to be used. If the strings cannot be parsed, the int() will raise an Exception itself. bzr revid: p_christ@hol.gr-20090925203427-3ckavo3w34dokwij --- bin/osv/orm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 5ee29ca2bdd..dabd28201b1 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -2108,9 +2108,10 @@ class orm(orm_template): self.pool.get('ir.model.access').check(cr, user, self._name, 'read', context=context) if not fields: fields = self._columns.keys() + self._inherit_fields.keys() - select = ids if isinstance(ids, (int, long)): select = [ids] + else: + select = map(int,ids) result = self._read_flat(cr, user, select, fields, context, load) for r in result: for key, v in r.items(): From 282cab24a02cae313e9090eee9e3f3eff0812961 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Fri, 25 Sep 2009 23:39:07 +0300 Subject: [PATCH 240/251] [FIX] Fields.function : Store value computation corrected [openobject-server @ jvo@tinyerp.com-20090922053703-14vmsvuxccsy0ntb] bzr revid: p_christ@hol.gr-20090925203907-93qtmx98khzb8oxo --- bin/osv/orm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index dabd28201b1..312bdc70fee 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -2736,6 +2736,8 @@ class orm(orm_template): for fnct in range(len(fncts)): if fncts[fnct][3]: ok = False + if not fields: + ok = True for f in (fields or []): if f in fncts[fnct][3]: ok = True From bb2722ed6420517284e8734177eca2f9441aa375 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 3 Oct 2009 12:00:03 +0300 Subject: [PATCH 241/251] New API: work better for bad ExportServices. Using the partially ported koo/subscription service, discovered that 'None' would be returned, which leads to an exception. bzr revid: p_christ@hol.gr-20091003090003-z9m8yyp08vxnor0s --- bin/netsvc.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index c45ed5c5d65..91e9c127b5a 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -109,10 +109,10 @@ class ExportService(object): return cls._services[name] def dispatch(self, method, auth, params): - pass - + raise Exception("stub dispatch at %s" % self.__name) + def new_dispatch(self,method,auth,params): - pass + raise Exception("stub dispatch at %s" % self.__name) def abortResponse(self, error, description, origin, details): if not tools.config['debug_mode']: @@ -354,6 +354,9 @@ class OpenERPDispatcher: auth = None result = ExportService.getService(service_name).dispatch(method, auth, params) self.log('result', result) + # We shouldn't marshall None, + if result == None: + result = False return result except Exception, e: self.log('exception', tools.exception_to_unicode(e)) From 5ad6ee522389f362bf9c940dc9b66eb494438f4e Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Thu, 8 Oct 2009 22:58:56 +0300 Subject: [PATCH 242/251] [Imp] Allow expressions: ".. child_of, 1" , not only list(1) bzr revid: p_christ@hol.gr-20091008195856-iyhz4abq51p871ip --- bin/osv/expression.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/osv/expression.py b/bin/osv/expression.py index cabc98eaab9..b488cea535c 100644 --- a/bin/osv/expression.py +++ b/bin/osv/expression.py @@ -189,6 +189,8 @@ class expression(object): if operator == 'child_of': if isinstance(right, basestring): ids2 = [x[0] for x in field_obj.name_search(cr, uid, right, [], 'like', limit=None)] + elif isinstance(right, (int, long)): + ids2 = list([right]) else: ids2 = list(right) From 78ac7ac76710ecb6337ecc599fdd2fbeba141923 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Sat, 10 Oct 2009 14:15:47 +0300 Subject: [PATCH 243/251] [FIX] Improved Previous bad commit for pagelayout error [openobject-server @ jvo@tinyerp.com-20091008053344-rkh1m6oaxw2kjlwd] bzr revid: p_christ@hol.gr-20091010111547-p5syr1cwu12f2kyh --- bin/report/render/rml2pdf/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/report/render/rml2pdf/utils.py b/bin/report/render/rml2pdf/utils.py index 8e747f5b02a..07bbbbcd05e 100644 --- a/bin/report/render/rml2pdf/utils.py +++ b/bin/report/render/rml2pdf/utils.py @@ -137,7 +137,7 @@ def unit_get(size): if size.find('.') == -1: decimal_point = '.' try: - decimal_point = locale.RADIXCHAR + decimal_point = locale.nl_langinfo(locale.RADIXCHAR) except: decimal_point = locale.localeconv()['decimal_point'] From c716ecb7319af022447d9685b61e92ab45cc0b80 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Sat, 24 Oct 2009 01:29:25 +0300 Subject: [PATCH 244/251] Mandriva: when server starts/stops, run scripts With this feature, server special initialization and/or preparation can be scripted. The same after stopping, too. bzr revid: p_christ@hol.gr-20091023222925-oph2bc6kr3u0ol7w --- doc/openerp-server.init | 47 ++++++++++++++++++++++++++--------------- 1 file changed, 30 insertions(+), 17 deletions(-) diff --git a/doc/openerp-server.init b/doc/openerp-server.init index d9cc35362f9..41efb5c35ce 100644 --- a/doc/openerp-server.init +++ b/doc/openerp-server.init @@ -50,6 +50,14 @@ fi RETVAL=0 start() { + if [ -d /etc/openerp/start.d ] ; then + echo -n $"Preparing $desc: " + run-parts --exit-on-error /etc/openerp/start.d + RETVAL=$? + echo + [ $RETVAL -ne 0 ] && return $RETVAL + fi + echo -n $"Starting $desc ($prog): " daemon --user openerp --check openerp-server \ "/usr/bin/setsid /usr/bin/openerp-server \ @@ -66,18 +74,23 @@ start() { stop() { echo -n $"Stopping $desc ($prog): " kill -TERM `cat $PIDFILE` > /dev/null 2>&1 - RETVAL=$? - if [ $RETVAL -eq 0 ] ; then - rm -f $LOCKFILE + RETVAL=$? + if [ $RETVAL -eq 0 ] ; then + rm -f $LOCKFILE - echo_success - echo - else - echo_failure - echo - fi - return $RETVAL -} + echo_success + echo + else + echo_failure + echo + fi + if [ -d /etc/openerp/stop.d ] ; then + echo -n $"Clearing $desc: " + run-parts /etc/openerp/stop.d + echo + fi + return $RETVAL +} restart() { stop @@ -91,14 +104,14 @@ condrestart() { status() { if [ -f $PIDFILE ] ; then checkpid `cat $PIDFILE` - RETVAL=$? + RETVAL=$? if [ $RETVAL -eq 0 ] ; then - echo $"$prog is running..." - else - echo $"$prog is stopped" - fi + echo $"$prog is running..." + else + echo $"$prog is stopped" + fi else - echo $"$prog is stopped" + echo $"$prog is stopped" fi return $RETVAL } From 870afd7445e7d1f1a382ba09ab35dbd4203f417a Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Mon, 26 Oct 2009 17:25:18 +0200 Subject: [PATCH 245/251] [IMP] If SSL connection fails, close the socket. Happened when a non-ssl client tried to connect to an ssl socket: the negotiation would fail and then the socket hanged open until the client would decide to disconnect. bzr revid: p_christ@hol.gr-20091026152518-xvi8zyk02iiwy460 --- bin/service/websrv_lib.py | 35 +++++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/bin/service/websrv_lib.py b/bin/service/websrv_lib.py index 84d27627e3c..759b7b6f3c3 100644 --- a/bin/service/websrv_lib.py +++ b/bin/service/websrv_lib.py @@ -357,23 +357,30 @@ class SecureMultiHTTPHandler(MultiHTTPHandler): return ('server.cert','server.key') def setup(self): - import ssl - certfile, keyfile = self.getcert_fnames() - self.connection = ssl.wrap_socket(self.request, - server_side=True, - certfile=certfile, - keyfile=keyfile, - ssl_version=ssl.PROTOCOL_SSLv23) - self.rfile = self.connection.makefile('rb', self.rbufsize) - self.wfile = self.connection.makefile('wb', self.wbufsize) - self.log_message("Secure %s connection from %s",self.connection.cipher(),self.client_address) + import ssl + certfile, keyfile = self.getcert_fnames() + try: + self.connection = ssl.wrap_socket(self.request, + server_side=True, + certfile=certfile, + keyfile=keyfile, + ssl_version=ssl.PROTOCOL_SSLv23) + self.rfile = self.connection.makefile('rb', self.rbufsize) + self.wfile = self.connection.makefile('wb', self.wbufsize) + self.log_message("Secure %s connection from %s",self.connection.cipher(),self.client_address) + except: + self.request.shutdown(socket.SHUT_RDWR) + raise def finish(self): # With ssl connections, closing the filehandlers alone may not - # work because of ref counting. We explicitly tell the socket - # to shutdown. - MultiHTTPHandler.finish(self) - self.connection.shutdown(socket.SHUT_RDWR) + # work because of ref counting. We explicitly tell the socket + # to shutdown. + MultiHTTPHandler.finish(self) + try: + self.connection.shutdown(socket.SHUT_RDWR) + except: + pass import threading class ConnThreadingMixIn: From 6affaee1abacc2f524ad2d89c55e0110b797bf77 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 27 Oct 2009 22:12:44 +0200 Subject: [PATCH 246/251] [IMP] Convert: two minor typos and tab expansion. bzr revid: p_christ@hol.gr-20091027201244-1qiwghq61o3a6cq8 --- bin/service/netrpc_server.py | 36 ++++++++++++++++++++++++++++-------- bin/tools/convert.py | 14 +++++++------- 2 files changed, 35 insertions(+), 15 deletions(-) diff --git a/bin/service/netrpc_server.py b/bin/service/netrpc_server.py index 878a3da3ba8..ae1f4e8a8c1 100644 --- a/bin/service/netrpc_server.py +++ b/bin/service/netrpc_server.py @@ -37,13 +37,16 @@ class TinySocketClientThread(threading.Thread, netsvc.OpenERPDispatcher): self.sock = sock self.threads = threads + def __del__(self): + if self.sock: + self.sock.close() + def run(self): import select self.running = True try: ts = tiny_socket.mysocket(self.sock) except: - self.sock.close() self.threads.remove(self) return False while self.running: @@ -51,18 +54,27 @@ class TinySocketClientThread(threading.Thread, netsvc.OpenERPDispatcher): msg = ts.myreceive() except: self.sock.close() + self.sock = None self.threads.remove(self) return False try: result = self.dispatch(msg[0], msg[1], msg[2:]) ts.mysend(result) except netsvc.OpenERPDispatcherException, e: - new_e = Exception(tools.exception_to_unicode(e.exception)) # avoid problems of pickeling - ts.mysend(new_e, exception=True, traceback=e.traceback) + try: + new_e = Exception(tools.exception_to_unicode(e.exception)) # avoid problems of pickeling + ts.mysend(new_e, exception=True, traceback=e.traceback) + except: + pass + except Exception, e: + # this code should not be reachable, therefore we warn + netsvc.Logger().notifyChannel("net-rpc", netsvc.LOG_WARNING, "exception: %" % str(e)) + break - self.sock.close() - self.threads.remove(self) - return True + self.sock.close() + self.sock = None + self.threads.remove(self) + return True def stop(self): self.running = False @@ -71,7 +83,7 @@ class TinySocketClientThread(threading.Thread, netsvc.OpenERPDispatcher): class TinySocketServerThread(threading.Thread,netsvc.Server): def __init__(self, interface, port, secure=False): threading.Thread.__init__(self) - netsvc.Server.__init__(self) + netsvc.Server.__init__(self) self.__port = port self.__interface = interface self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) @@ -79,7 +91,7 @@ class TinySocketServerThread(threading.Thread,netsvc.Server): self.socket.bind((self.__interface, self.__port)) self.socket.listen(5) self.threads = [] - netsvc.Logger().notifyChannel("web-services", netsvc.LOG_INFO, + netsvc.Logger().notifyChannel("web-services", netsvc.LOG_INFO, "starting NET-RPC service at %s port %d" % (interface or '0.0.0.0', port,)) def run(self): @@ -91,8 +103,16 @@ class TinySocketServerThread(threading.Thread,netsvc.Server): ct = TinySocketClientThread(clientsocket, self.threads) self.threads.append(ct) ct.start() + lt = len(self.threads) + if (lt > 10) and (lt % 10 == 0): + # Not many threads should be serving at the same time, so log + # their abuse. + netsvc.Logger().notifyChannel("web-services", netsvc.LOG_DEBUG, + "Netrpc: %d threads" % len(self.threads)) self.socket.close() except Exception, e: + netsvc.Logger().notifyChannel("web-services", netsvc.LOG_WARNING, + "Netrpc: closing because of exception %s" % str(e)) self.socket.close() return False diff --git a/bin/tools/convert.py b/bin/tools/convert.py index 6a8e8c9b094..93af5886320 100644 --- a/bin/tools/convert.py +++ b/bin/tools/convert.py @@ -108,12 +108,12 @@ def _eval_xml(self,node, pool, cr, uid, idref, context=None): all_timezones=[] pytz=pytzclass() idref2['pytz'] = pytz - try: + try: return eval(a_eval, idref2) - except: - logger = netsvc.Logger() - logger.notifyChannel("init", netsvc.LOG_WARNING, 'could eval(%s) for %s in %s, please get back and fix it!' % (a_eval,node.getAttribute('name'),context)) - return "" + except: + logger = netsvc.Logger() + logger.notifyChannel("init", netsvc.LOG_WARNING, 'could eval(%s) for %s in %s, please get back and fix it!' % (a_eval,node.getAttribute('name'),context)) + return "" if t == 'xml': def _process(s, idref): m = re.findall('[^%]%\((.*?)\)[ds]', s) @@ -243,12 +243,12 @@ class xml_import(object): id = xml_id if '.' in xml_id: module, id = xml_id.split('.', 1) - assert '.' not in id, """The ID reference "%s" must contains + assert '.' not in id, """The ID reference "%s" must contain maximum one dot. They are used to refer to other modules ID, in the form: module.record_id""" % (xml_id,) if module != self.module: modcnt = self.pool.get('ir.module.module').search_count(self.cr, self.uid, ['&', ('name', '=', module), ('state', 'in', ['installed'])]) - assert modcnt == 1, """The ID "%s" refer to an uninstalled module""" % (xml_id,) + assert modcnt == 1, """The ID "%s" refers to an uninstalled module""" % (xml_id,) if len(id) > 64: self.logger.notifyChannel('init', netsvc.LOG_ERROR, 'id: %s is to long (max: 64)'% (id,)) From cac0ce70e4d5d056f534fcbd310d401a1c014ba4 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 28 Oct 2009 00:39:37 +0200 Subject: [PATCH 247/251] Netsvc.Server: Expand tabs bzr revid: p_christ@hol.gr-20091027223937-ajgpml2uh2afe988 --- bin/netsvc.py | 78 +++++++++++++++++++++++++-------------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 91e9c127b5a..64f27a188c0 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -290,47 +290,47 @@ class Agent(object): import traceback class Server: - """ Generic interface for all servers with an event loop etc. - Override this to impement http, net-rpc etc. servers. - - Servers here must have threaded behaviour. start() must not block, - there is no run(). - """ - __is_started = False - __servers = [] - - def __init__(self): - if Server.__is_started: - raise Exception('All instances of servers must be inited before the startAll()') - Server.__servers.append(self) + """ Generic interface for all servers with an event loop etc. + Override this to impement http, net-rpc etc. servers. + + Servers here must have threaded behaviour. start() must not block, + there is no run(). + """ + __is_started = False + __servers = [] + + def __init__(self): + if Server.__is_started: + raise Exception('All instances of servers must be inited before the startAll()') + Server.__servers.append(self) - def start(self): - print "called stub Server.start" - pass - - def stop(self): - print "called stub Server.stop" - pass + def start(self): + print "called stub Server.start" + pass + + def stop(self): + print "called stub Server.stop" + pass - @classmethod - def startAll(cls): - if cls.__is_started: - return - Logger().notifyChannel("services", LOG_INFO, - "Starting %d services" % len(cls.__servers)) - for srv in cls.__servers: - srv.start() - cls.__is_started = True - - @classmethod - def quitAll(cls): - if not cls.__is_started: - return - Logger().notifyChannel("services", LOG_INFO, - "Stopping %d services" % len(cls.__servers)) - for srv in cls.__servers: - srv.stop() - cls.__is_started = False + @classmethod + def startAll(cls): + if cls.__is_started: + return + Logger().notifyChannel("services", LOG_INFO, + "Starting %d services" % len(cls.__servers)) + for srv in cls.__servers: + srv.start() + cls.__is_started = True + + @classmethod + def quitAll(cls): + if not cls.__is_started: + return + Logger().notifyChannel("services", LOG_INFO, + "Stopping %d services" % len(cls.__servers)) + for srv in cls.__servers: + srv.stop() + cls.__is_started = False class OpenERPDispatcherException(Exception): From 879199c6b7b3c126174814b627b6d33762c92cfd Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 28 Oct 2009 02:30:33 +0200 Subject: [PATCH 248/251] Server: get_stats() RPC call for any extended info. With this call, we can learn about the internals of the OpenObject server in runtime. At the moment, designed to give info on the running servers (RPC). bzr revid: p_christ@hol.gr-20091028003033-b5hzgcjy9kncyc0d --- bin/netsvc.py | 17 +++++++++++++++++ bin/service/web_services.py | 8 +++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 64f27a188c0..69ac6123aa8 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -312,6 +312,10 @@ class Server: print "called stub Server.stop" pass + def stats(self): + """ This function should return statistics about the server """ + return "%s: No statistics" % str(self.__class__) + @classmethod def startAll(cls): if cls.__is_started: @@ -332,6 +336,19 @@ class Server: srv.stop() cls.__is_started = False + @classmethod + def allStats(cls): + res = '' + if cls.__is_started: + res += "Servers started\n" + else: + res += "Servers stopped\n" + for srv in cls.__servers: + try: + res += srv.stats() + "\n" + except: + pass + return res class OpenERPDispatcherException(Exception): def __init__(self, exception, traceback): diff --git a/bin/service/web_services.py b/bin/service/web_services.py index c2f5b6c4f77..96bd7d49e04 100644 --- a/bin/service/web_services.py +++ b/bin/service/web_services.py @@ -395,7 +395,7 @@ class common(_ObjectService): auth.logout(params[1]) logger.notifyChannel("web-service", netsvc.LOG_INFO,'Logout %s from database %s'%(login,db)) return True - elif method in ['about', 'timezone_get', 'get_server_environment', 'login_message']: + elif method in ['about', 'timezone_get', 'get_server_environment', 'login_message', 'get_stats' ]: pass elif method in ['get_available_updates', 'get_migration_scripts', 'set_loglevel']: passwd = params[0] @@ -569,6 +569,12 @@ GNU Public Licence. l.set_loglevel(int(loglevel)) return True + def exp_get_stats(self): + import threading + res = "OpenERP server: %d threads\n" % threading.active_count() + res += netsvc.Server.allStats() + return res + common() class objects_proxy(netsvc.ExportService): From 51a2cf93d03efc54ca7dc7590c65ea147acc5f0e Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 28 Oct 2009 02:31:03 +0200 Subject: [PATCH 249/251] Client script for statistics. bzr revid: p_christ@hol.gr-20091028003103-1mxviwpnp52j22tw --- get-srvstats.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 get-srvstats.sh diff --git a/get-srvstats.sh b/get-srvstats.sh new file mode 100755 index 00000000000..4bb767ac18e --- /dev/null +++ b/get-srvstats.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# ADMIN_PASSWD='admin' +method_1() { + cat '-' << EOF + + + get_stats + + + +EOF +} +LEVEL=10 + +if [ -n "$1" ] ; then LEVEL=$1 ; fi + +method_1 $LEVEL | POST -c 'text/xml' http://localhost:8069/xmlrpc/common +#eof From 1956e79494ad8484bae58feb73b63922fe7809cf Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Wed, 28 Oct 2009 02:40:02 +0200 Subject: [PATCH 250/251] Net-RPC: armor the thread, provide stats and inf. timeout. This fixes near-persistent connections where the client will take long to respond. It is better to keep the connection open, than to launch more threads and use ports. bzr revid: p_christ@hol.gr-20091028004002-8y5iprfizzsktlkv --- bin/service/netrpc_server.py | 40 ++++++++++++++++++++++++++++-------- bin/tiny_socket.py | 16 ++++++++------- 2 files changed, 41 insertions(+), 15 deletions(-) diff --git a/bin/service/netrpc_server.py b/bin/service/netrpc_server.py index ae1f4e8a8c1..50679eed2db 100644 --- a/bin/service/netrpc_server.py +++ b/bin/service/netrpc_server.py @@ -35,27 +35,37 @@ class TinySocketClientThread(threading.Thread, netsvc.OpenERPDispatcher): def __init__(self, sock, threads): threading.Thread.__init__(self) self.sock = sock + # Only at the server side, use a big timeout: close the + # clients connection when they're idle for 20min. + self.sock.settimeout(1200) self.threads = threads def __del__(self): if self.sock: - self.sock.close() + try: + if hasattr(socket, 'SHUT_RDWR'): + self.socket.shutdown(socket.SHUT_RDWR) + else: + self.socket.shutdown(2) + except: pass + # That should garbage-collect and close it, too + self.sock = None def run(self): - import select + # import select self.running = True try: ts = tiny_socket.mysocket(self.sock) except: self.threads.remove(self) + self.running = False return False while self.running: try: msg = ts.myreceive() except: - self.sock.close() - self.sock = None self.threads.remove(self) + self.running = False return False try: result = self.dispatch(msg[0], msg[1], msg[2:]) @@ -65,15 +75,15 @@ class TinySocketClientThread(threading.Thread, netsvc.OpenERPDispatcher): new_e = Exception(tools.exception_to_unicode(e.exception)) # avoid problems of pickeling ts.mysend(new_e, exception=True, traceback=e.traceback) except: - pass + self.running = False + break except Exception, e: # this code should not be reachable, therefore we warn netsvc.Logger().notifyChannel("net-rpc", netsvc.LOG_WARNING, "exception: %" % str(e)) break - self.sock.close() - self.sock = None self.threads.remove(self) + self.running = False return True def stop(self): @@ -82,7 +92,7 @@ class TinySocketClientThread(threading.Thread, netsvc.OpenERPDispatcher): class TinySocketServerThread(threading.Thread,netsvc.Server): def __init__(self, interface, port, secure=False): - threading.Thread.__init__(self) + threading.Thread.__init__(self, name="Net-RPC socket") netsvc.Server.__init__(self) self.__port = port self.__interface = interface @@ -101,6 +111,7 @@ class TinySocketServerThread(threading.Thread,netsvc.Server): while self.running: (clientsocket, address) = self.socket.accept() ct = TinySocketClientThread(clientsocket, self.threads) + clientsocket = None self.threads.append(ct) ct.start() lt = len(self.threads) @@ -129,6 +140,19 @@ class TinySocketServerThread(threading.Thread,netsvc.Server): except: return False + def stats(self): + res = "Net-RPC: " + ( (self.running and "running") or "stopped") + i = 0 + for t in self.threads: + i += 1 + res += "\nNet-RPC #%d: %s " % (i, t.name) + if t.isAlive(): + res += "running" + else: + res += "finished" + if t.sock: + res += ", socket" + return res netrpcd = None diff --git a/bin/tiny_socket.py b/bin/tiny_socket.py index 9a4376891b7..387765da14b 100644 --- a/bin/tiny_socket.py +++ b/bin/tiny_socket.py @@ -33,11 +33,13 @@ class Myexception(Exception): class mysocket: def __init__(self, sock=None): if sock is None: - self.sock = socket.socket( - socket.AF_INET, socket.SOCK_STREAM) + self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) else: self.sock = sock - self.sock.settimeout(120) + # self.sock.settimeout(120) + # prepare this socket for long operations: it may block for infinite + # time, but should exit as soon as the net is down + self.sock.setsockopt(socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1) def connect(self, host, port=False): if not port: protocol, buf = host.split('//') @@ -61,8 +63,8 @@ class mysocket: buf='' while len(buf) < 8: chunk = self.sock.recv(8 - len(buf)) - if chunk == '': - raise RuntimeError, "socket connection broken" + if not chunk: + raise socket.timeout buf += chunk size = int(buf) buf = self.sock.recv(1) @@ -73,8 +75,8 @@ class mysocket: msg = '' while len(msg) < size: chunk = self.sock.recv(size-len(msg)) - if chunk == '': - raise RuntimeError, "socket connection broken" + if not chunk: + raise socket.timeout msg = msg + chunk msgio = cStringIO.StringIO(msg) unpickler = cPickle.Unpickler(msgio) From f566ea57a83bab87a8c7fa9743d190b4520c89e2 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Tue, 3 Nov 2009 01:33:03 +0200 Subject: [PATCH 251/251] Debian: changelog bzr revid: p_christ@hol.gr-20091102233303-01npfs2yt310vdxx --- debian/changelog | 203 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 203 insertions(+) diff --git a/debian/changelog b/debian/changelog index cf02ea0e5ca..2f1950b39d4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,206 @@ +openerp-server (5.0.6-0-1test4) unstable; urgency=low + + [ Christophe Simonis ] + * [IMP] cchange version number + + [ Jay (Open ERP) ] + * [FIX] Send mail : Non-English characters were throwing error. + * [IMP] Base : Rate for ARS Added + * [FIX] Base : 'Supplier Partners' menu will open new record with + supplier=1,customer=0 + * [FIX] Security Loophole corrected + * [FIX] Send Mail : Unicode error handled + * [FIX] Translation issue with cache: it needed to restart + server,SOLVED + + [ Harry (Open ERP) ] + * [IMP]quality_integration_server: put max_limit in server connection + * [IMP]quality_integration_server : quality html log + + [ Jay (Open ERP) ] + * [FIX] Export : Error solved while Exporting O2M records with None + value of any field + + [ Fabien Pinckaers ] + * merge + + [ P. Christeas ] + * Debian changelog for 5.0.4 + * Two hacks to make it python2.5 compatible.. + + [ Fabien Pinckaers ] + * [FIX] better log error, new line + + [ P. Christeas ] + * Implement safe_eval() in order to armour eval() + * [Feature]: add condition to ir.sequence, let it be partitioned. + * safe_eval: make python 2.5 compatible. + * Backport the HTTP server code from python 2.6 to 2.5 + + [ Jay (Open ERP) ] + * [FIX] Better translation exportation. + + [ P. Christeas ] + * ORM feature: allow renaming of columns. + * Web services: fix database operations (create, drop etc.) for new + API. + * ORM: Protect against dropping columns. + + [ Jay (Open ERP) ] + * [IMP] Rng : Accepting Groups under/after/replacing Buttons + + [ Fabien Pinckaers ] + * [FIX] regression in fields.function computation + + [ Harry (Open ERP) ] + * [IMP]quality_integration_server: get message from + base_quality_module if module can not success to reach minimun score + * [FIX]quality_integration_server: get message from + base_quality_module if module can not success to reach minimun score + + [ Mantavya Gajjar ] + * [REM]: remove the name search method, as this method was implemented + for the email address field + * [MERGE]: merging from the same branch + + [ Harry (Open ERP) ] + * [FIX]quality_integration_server : quality log : reduce overwrite + last test log in other test logs + * [FIX]quality_integration_server: fixe problem on make link of extra- + module in addons + + [ tailor ] + * [IMP] updated changelog file + * [MERGE] + * [IMP] updated changelog file + * [IMP] updated release.py to 5.0.5 + + [ Jay (Open ERP) ] + * [FIX] Price Accuracy : rounding made to be based on --price_accuracy + option + * [FIX] Fields.function : Store value computation corrected + + [ P. Christeas ] + * [IMP]: allow binary function fields to directly return size. + * Ir.attachment: improve SQL for access checks. + + [ tailor ] + * [REL] release.py: 5.0.6 + * [IMP] updated changelog file for 5.0.6 release + + [ Harry (Open ERP) ] + * [IMP]quality_integration_server: quality log : add new option to + specify qualitylog path to store html pages of log + + [ Jay (Open ERP) ] + * [FIX] Update Module : Float8 to float and numeric to float casting + made possible + + [ Harry (Open ERP) ] + * [FIX]quality_integration_server: ascci encoding problem in quality + html log + + [ P. Christeas ] + * [Fix] Tolerate ids that came as strings. + + [ Jay (Open ERP) ] + * [FIX] Fields.function : Store value computation corrected + * [FIX] Export Translation : Warning on Non-existing record instead of + breaking flow + + [ mra (Open ERP) ] + * [IMP] base_quality_interrrogation: put message if the score of + quality less then minimal and remove unit test condition + + [ Jay (Open ERP) ] + * [FIX] Allowing sql keywords as fields(don't use them in order by + clause) + + [ Christophe Simonis ] + * [IMP] cron: check the arguments to avoid security issues + + [ P. Christeas ] + * New API: work better for bad ExportServices. + + [ Jay (Open ERP) ] + * [FIX] Name_search() is having now record limit to be 80 instead of + None + * [FIX] Import : Context of the action/screen passed,taken into + consideration while importing + * [FIX] Improved Previous bad commit for pagelayout error + * [FIX] Domain was getting failed when trying to work upon M2M,O2M + field of object + * [FIX] Import made successful when field is O2M and it has relation + under that. + + [ Stephane Wirtel ] + * [MERGE] Backport: http://bazaar.launchpad.net/~openobject- + training/+junk/server/revision/1821 + * [MERGE] Backport: http://bazaar.launchpad.net/~openobject- + training/+junk/server/revision/1822 + + [ HDA (OpenERP) ] + * merged for report improvements + + [ Stephane Wirtel ] + * [FIX] Specify the name of the argument for the context, to avoir a + critical bug + + [ Christophe Simonis ] + * [FIX] allow to call write without ids on osv_memory objects + + [ Fabien Pinckaers ] + * [FIX] default context + + [ Stephane Wirtel ] + * [FIX] Use an alternative for the locale.RADIXCHAR if this one + doesn't exist + + [ P. Christeas ] + * [Imp] Allow expressions: ".. child_of, 1" , not only list(1) + + [ Jay (Open ERP) ] + * [FIX] Improved Previous bad commit for pagelayout error + + [ Fabien Pinckaers ] + * [IMP] default value for module + * [FIX] recursive child_of on one2many and many2many + * [FIX] recursive calls + + [ Jay (Open ERP) ] + * [FIX] Export : Selection field gets imported by its external name + if export is not import compatible + * [FIX] Expression : domain calculation failes, max. recursion error + protected + + [ P. Christeas ] + * Mandriva: when server starts/stops, run scripts + + [ Jay (Open ERP) ] + * [FIX] Config : wrong calculation if cached_timeout comes from config + file + + [ P. Christeas ] + * [IMP] If SSL connection fails, close the socket. + + [ Jay (Open ERP) ] + * [FIX] Ir_attachment : Context updation corrected on preview + * [FIX] Record rule : domain evaluation problem corrected + + [ P. Christeas ] + * [IMP] Convert: two minor typos and tab expansion. + * Netsvc.Server: Expand tabs + * Server: get_stats() RPC call for any extended info. + * Client script for statistics. + * Net-RPC: armor the thread, provide stats and inf. timeout. + + [ Jay (Open ERP) ] + * [REF] Partner : copy() improved + + [ panos ] + + -- panos Mon, 02 Nov 2009 18:28:44 -0500 + openerp-server (5.0.4-0-1test3) intrepid; urgency=high [ Panos Christeas ]