diff --git a/bin/PKG-INFO b/bin/PKG-INFO index cbfada25140..05aaf789106 100644 --- a/bin/PKG-INFO +++ b/bin/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: OpenERP -Version: 5.0.0-alpha +Version: 5.0.0-rc1 Author: Tiny.be Author-email: fp at tiny be Maintainer: Tiny.be diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index afd92ee26f8..7aa8a884f44 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -21,11 +21,13 @@ ############################################################################## import os, sys, imp +from os.path import join as opj import itertools from sets import Set import osv import tools +import tools.osutil import pooler @@ -33,11 +35,10 @@ import netsvc from osv import fields import zipfile +import release logger = netsvc.Logger() -opj = os.path.join - _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 @@ -137,10 +138,41 @@ def get_module_path(module): if os.path.exists(opj(_ad, module)) or os.path.exists(opj(_ad, '%s.zip' % module)): return opj(_ad, module) - logger.notifyChannel('init', netsvc.LOG_WARNING, 'addon:%s:module not found' % (module,)) + logger.notifyChannel('init', netsvc.LOG_WARNING, 'addon %s: module not found' % (module,)) return False raise IOError, 'Module not found : %s' % module + +def get_module_filetree(module, dir='.'): + path = get_module_path(module) + if not path: + return False + + dir = os.path.normpath(dir) + if dir == '.': dir = '' + if dir.startswith('..') or dir[0] == '/': + raise Exception('Cannot access file outside the module') + + if not os.path.isdir(path): + # zipmodule + zip = zipfile.ZipFile(path + ".zip") + files = ['/'.join(f.split('/')[1:]) for f in zip.namelist()] + else: + files = tools.osutil.listdir(path, True) + + tree = {} + for f in files: + if not f.startswith(dir): + continue + f = f[len(dir)+int(not dir.endswith('/')):] + lst = f.split(os.sep) + current = tree + while len(lst) != 1: + current = current.setdefault(lst.pop(0), {}) + current[lst.pop(0)] = None + + return tree + def get_module_resource(module, *args): """Return the full path of a resource of the given module. @@ -184,7 +216,7 @@ def create_graph(module_list, force=None): try: info = eval(tools.file_open(terp_file).read()) except: - logger.notifyChannel('init', netsvc.LOG_ERROR, 'addon:%s:eval file %s' % (module, terp_file)) + logger.notifyChannel('init', netsvc.LOG_ERROR, 'addon %s: eval file %s' % (module, terp_file)) raise if info.get('installable', True): packages.append((module, info.get('depends', []), info)) @@ -192,7 +224,7 @@ def create_graph(module_list, force=None): 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, datas = packages[0] + package, deps, data = packages[0] # if all dependencies of 'package' are already in the graph, add 'package' in the graph if reduce(lambda x,y: x and y in graph, deps, True): @@ -203,24 +235,24 @@ def create_graph(module_list, force=None): current.remove(package) graph.addNode(package, deps) node = Node(package, graph) - node.datas = datas + node.data = data for kind in ('init', 'demo', 'update'): if package in tools.config[kind] or 'all' in tools.config[kind] or kind in force: setattr(node, kind, True) else: later.add(package) - packages.append((package, deps, datas)) + packages.append((package, deps, data)) packages.pop(0) for package in later: unmet_deps = filter(lambda p: p not in graph, dependencies[package]) - logger.notifyChannel('init', netsvc.LOG_ERROR, 'addon:%s:Unmet dependencies: %s' % (package, ', '.join(unmet_deps))) + logger.notifyChannel('init', netsvc.LOG_ERROR, 'addon %s: Unmet dependencies: %s' % (package, ', '.join(unmet_deps))) return graph def init_module_objects(cr, module_name, obj_list): pool = pooler.get_pool(cr.dbname) - logger.notifyChannel('init', netsvc.LOG_INFO, 'addon:%s:creating or updating database tables' % module_name) + logger.notifyChannel('init', netsvc.LOG_INFO, 'addon %s: creating or updating database tables' % module_name) for obj in obj_list: if hasattr(obj, 'init'): obj.init(cr) @@ -234,12 +266,11 @@ def register_class(m): global loaded if m in loaded: return - logger.notifyChannel('init', netsvc.LOG_INFO, 'addon:%s:registering classes' % m) - sys.stdout.flush() + logger.notifyChannel('init', netsvc.LOG_INFO, 'addon %s: registering classes' % m) loaded.append(m) mod_path = get_module_path(m) if not os.path.isfile(mod_path+'.zip'): - imp.load_module(m, *imp.find_module(m)) + imp.load_module(m, *imp.find_module(m, [ad, _ad])) else: import zipimport try: @@ -248,14 +279,140 @@ def register_class(m): except zipimport.ZipImportError: logger.notifyChannel('init', netsvc.LOG_ERROR, 'Couldn\'t find module %s' % m) -def register_classes(): - return - module_list = get_modules() - for package in create_graph(module_list): - m = package.name - register_class(m) - logger.notifyChannel('init', netsvc.LOG_INFO, 'addon:%s:registering classes' % m) - sys.stdout.flush() + +class MigrationManager(object): + """ + This class manage the migration of modules + Migrations files must be python files containing a "migrate(cr, installed_version)" function. + Theses files must respect a directory tree structure: A 'migrations' folder which containt a + folder by version. Version can be 'module' version or 'server.module' version (in this case, + the files will only be processed by this version of the server). Python file names must start + by 'pre' or 'post' and will be executed, respectively, before and after the module initialisation + Example: + + + `-- migrations + |-- 1.0 + | |-- pre-update_table_x.py + | |-- pre-update_table_y.py + | |-- post-clean-data.py + | `-- README.txt # not processed + |-- 5.0.1.1 # files in this folder will be executed only on a 5.0 server + | |-- pre-delete_table_z.py + | `-- post-clean-data.py + `-- foo.py # not processed + + This similar structure is generated by the maintenance module with the migrations files get by + the maintenance contract + + """ + def __init__(self, cr, graph): + self.cr = cr + self.graph = graph + self.migrations = {} + self._get_files() + + def _get_files(self): + + """ + import addons.base.maintenance.utils as maintenance_utils + maintenance_utils.update_migrations_files(self.cr) + #""" + + for pkg in self.graph: + self.migrations[pkg.name] = {} + if not (hasattr(pkg, 'update') or pkg.state == 'to upgrade'): + continue + + self.migrations[pkg.name]['module'] = get_module_filetree(pkg.name, 'migrations') or {} + self.migrations[pkg.name]['maintenance'] = get_module_filetree('base', 'maintenance/migrations/' + pkg.name) or {} + + + def migrate_module(self, pkg, stage): + assert stage in ('pre', 'post') + stageformat = {'pre': '[>%s]', + 'post': '[%s>]', + } + + if not (hasattr(pkg, 'update') or pkg.state == 'to upgrade'): + return + + def convert_version(version): + if version.startswith(release.major_version) and version != release.major_version: + return version # the version number already containt the server version + return "%s.%s" % (release.major_version, version) + + def _get_migration_versions(pkg): + def __get_dir(tree): + return [d for d in tree if tree[d] is not None] + + versions = list(set( + __get_dir(self.migrations[pkg.name]['module']) + + __get_dir(self.migrations[pkg.name]['maintenance']) + )) + versions.sort(key=lambda k: parse_version(convert_version(k))) + return versions + + def _get_migration_files(pkg, version, stage): + """ return a list of tuple (module, file) + """ + m = self.migrations[pkg.name] + lst = [] + + mapping = {'module': {'module': pkg.name, 'rootdir': opj('migrations')}, + 'maintenance': {'module': 'base', 'rootdir': opj('maintenance', 'migrations', pkg.name)}, + } + + for x in mapping.keys(): + if version in m[x]: + for f in m[x][version]: + if m[x][version][f] is not None: + continue + if not f.startswith(stage + '-'): + continue + lst.append((mapping[x]['module'], opj(mapping[x]['rootdir'], version, f))) + return lst + + def mergedict(a,b): + a = a.copy() + a.update(b) + return a + + from tools.parse_version import parse_version + + parsed_installed_version = parse_version(pkg.latest_version) + current_version = parse_version(convert_version(pkg.data.get('version', '0'))) + + versions = _get_migration_versions(pkg) + + for version in versions: + if parsed_installed_version < parse_version(convert_version(version)) <= current_version: + + strfmt = {'addon': pkg.name, + 'stage': stage, + 'version': stageformat[stage] % version, + } + + for modulename, pyfile in _get_migration_files(pkg, version, stage): + name, ext = os.path.splitext(os.path.basename(pyfile)) + if ext.lower() != '.py': + continue + fp = tools.file_open(opj(modulename, pyfile)) + mod = None + try: + mod = imp.load_source(name, pyfile, fp) + logger.notifyChannel('migration', netsvc.LOG_INFO, 'addon %(addon)s: Running migration %(version)s %(name)s"' % mergedict({'name': mod.__name__},strfmt)) + mod.migrate(self.cr, pkg.latest_version) + except ImportError: + logger.notifyChannel('migration', netsvc.LOG_ERROR, 'addon %(addon)s: Unable to load %(stage)-migration file %(file)s' % mergedict({'file': opj(modulename,pyfile)}, strfmt)) + raise + except AttributeError: + logger.notifyChannel('migration', netsvc.LOG_ERROR, 'addon %(addon)s: Each %(stage)-migration file must have a "migrate(cr, installed_version)" function' % strfmt) + except: + raise + fp.close() + del mod + def load_module_graph(cr, graph, status=None, **kwargs): # **kwargs is passed directly to convert_xml_import @@ -265,67 +422,94 @@ def load_module_graph(cr, graph, status=None, **kwargs): status = status.copy() package_todo = [] statusi = 0 + pool = pooler.get_pool(cr.dbname) + + + # update the graph with values from the database (if exist) + ## First, we set the default values for each package in graph + additional_data = dict.fromkeys([p.name for p in graph], {'id': 0, 'state': 'uninstalled', 'dbdemo': False, 'latest_version': None}) + ## Then we get the values from the database + cr.execute('SELECT name, id, state, demo AS dbdemo, latest_version' + ' FROM ir_module_module' + ' WHERE name in (%s)' % (','.join(['%s'] * len(graph))), + additional_data.keys() + ) + ## and we update the default values with values from the database + additional_data.update(dict([(x.pop('name'), x) for x in cr.dictfetchall()])) + + for package in graph: + for k, v in additional_data[package.name].items(): + setattr(package, k, v) + + migrations = MigrationManager(cr, graph) + for package in graph: status['progress'] = (float(statusi)+0.1)/len(graph) m = package.name + mid = package.id + + migrations.migrate_module(package, 'pre') + register_class(m) - logger.notifyChannel('init', netsvc.LOG_INFO, 'addon:%s' % m) - sys.stdout.flush() - pool = pooler.get_pool(cr.dbname) + logger.notifyChannel('init', netsvc.LOG_INFO, 'addon %s' % m) modules = pool.instanciate(m, cr) - cr.execute('select id from ir_module_module where name=%s', (m,)) - mid = int(cr.rowcount and cr.fetchone()[0] or 0) - - cr.execute('select state, demo from ir_module_module where id=%d', (mid,)) - (package_state, package_demo) = (cr.rowcount and cr.fetchone()) or ('uninstalled', False) idref = {} status['progress'] = (float(statusi)+0.4)/len(graph) - if hasattr(package, 'init') or hasattr(package, 'update') or package_state in ('to install', 'to upgrade'): + if hasattr(package, 'init') or hasattr(package, 'update') or package.state in ('to install', 'to upgrade'): init_module_objects(cr, m, modules) for kind in ('init', 'update'): - for filename in package.datas.get('%s_xml' % kind, []): + for filename in package.data.get('%s_xml' % kind, []): mode = 'update' - if hasattr(package, 'init') or package_state=='to install': + if hasattr(package, 'init') or package.state=='to install': mode = 'init' - logger.notifyChannel('init', netsvc.LOG_INFO, 'addon:%s:loading %s' % (m, filename)) + logger.notifyChannel('init', netsvc.LOG_INFO, 'addon %s: loading %s' % (m, filename)) name, ext = os.path.splitext(filename) + fp = tools.file_open(opj(m, filename)) if ext == '.csv': - tools.convert_csv_import(cr, m, os.path.basename(filename), tools.file_open(opj(m, filename)).read(), idref, mode=mode) + tools.convert_csv_import(cr, m, os.path.basename(filename), fp.read(), idref, mode=mode) elif ext == '.sql': - queries = tools.file_open(opj(m, filename)).read().split(';') + queries = fp.read().split(';') for query in queries: new_query = ' '.join(query.split()) if new_query: cr.execute(new_query) else: - tools.convert_xml_import(cr, m, tools.file_open(opj(m, filename)), idref, mode=mode, **kwargs) - if hasattr(package, 'demo') or (package_demo and package_state != 'installed'): + tools.convert_xml_import(cr, m, fp, idref, mode=mode, **kwargs) + fp.close() + if hasattr(package, 'demo') or (package.dbdemo and package.state != 'installed'): status['progress'] = (float(statusi)+0.75)/len(graph) - for xml in package.datas.get('demo_xml', []): + for xml in package.data.get('demo_xml', []): name, ext = os.path.splitext(xml) - logger.notifyChannel('init', netsvc.LOG_INFO, 'addon:%s:loading %s' % (m, xml)) + logger.notifyChannel('init', netsvc.LOG_INFO, 'addon %s: loading %s' % (m, xml)) + fp = tools.file_open(opj(m, xml)) if ext == '.csv': - tools.convert_csv_import(cr, m, os.path.basename(xml), tools.file_open(opj(m, xml)).read(), idref, noupdate=True) + tools.convert_csv_import(cr, m, os.path.basename(xml), fp.read(), idref, noupdate=True) else: - tools.convert_xml_import(cr, m, tools.file_open(opj(m, xml)), idref, noupdate=True, **kwargs) + tools.convert_xml_import(cr, m, fp, idref, noupdate=True, **kwargs) + fp.close() cr.execute('update ir_module_module set demo=%s where id=%d', (True, mid)) package_todo.append(package.name) - cr.execute("update ir_module_module set state='installed' where state in ('to upgrade', 'to install') and id=%d", (mid,)) - + ver = release.major_version + '.' + package.data.get('version', '1.0') + cr.execute("update ir_module_module set state='installed', latest_version=%s where id=%d", (ver, mid,)) cr.commit() - # Update translations for all installed languages + # Set new modules and dependencies modobj = pool.get('ir.module.module') + + # Update translations for all installed languages if modobj: modobj.update_translations(cr, 1, [mid], None) cr.commit() + + + migrations.migrate_module(package, 'post') statusi+=1 cr.execute("""select model,name from ir_model where id not in (select model_id from ir_model_access)""") for (model,name) in cr.fetchall(): - logger.notifyChannel('init', netsvc.LOG_WARNING, 'addon:object %s (%s) has no access rules!' % (model,name)) + logger.notifyChannel('init', netsvc.LOG_WARNING, 'addon object %s (%s) has no access rules!' % (model,name)) pool = pooler.get_pool(cr.dbname) cr.execute('select * from ir_model where state=%s', ('manual',)) @@ -342,10 +526,23 @@ def load_modules(db, force_demo=False, status=None, update_module=False): force = [] if force_demo: force.append('demo') + pool = pooler.get_pool(cr.dbname) if update_module: for module in tools.config['init']: cr.execute('update ir_module_module set state=%s where state=%s and name=%s', ('to install', 'uninstalled', module)) cr.commit() + + register_class('base') + pool.instanciate('base', cr) + modobj = pool.get('ir.module.module') + modobj.update_list(cr, 1) + + mids = modobj.search(cr, 1, [('state','in',('installed','to install'))]) + for m in modobj.browse(cr, 1, mids): + for dep in m.dependencies_id: + if dep.state=='uninstalled': + modobj.button_install(cr, 1, [m.id]) + cr.execute("select name from ir_module_module where state in ('installed', 'to install', 'to upgrade','to remove')") else: cr.execute("select name from ir_module_module where state in ('installed', 'to upgrade', 'to remove')") @@ -354,7 +551,7 @@ def load_modules(db, force_demo=False, status=None, update_module=False): report = tools.assertion_report() load_module_graph(cr, graph, status, report=report) if report.get_report(): - logger.notifyChannel('init', netsvc.LOG_INFO, 'assert:%s' % report) + logger.notifyChannel('init', netsvc.LOG_INFO, 'assert: %s' % report) for kind in ('init', 'demo', 'update'): tools.config[kind]={} diff --git a/bin/addons/base/__init__.py b/bin/addons/base/__init__.py index 777f0f5a371..0349891aa55 100644 --- a/bin/addons/base/__init__.py +++ b/bin/addons/base/__init__.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution +# OpenERP, Open Source Management Solution # Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved # $Id$ # @@ -23,7 +23,7 @@ import ir import module import res - +import maintenance # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/bin/addons/base/__terp__.py b/bin/addons/base/__terp__.py index d1bd53f8252..380fb16c55c 100644 --- a/bin/addons/base/__terp__.py +++ b/bin/addons/base/__terp__.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution +# OpenERP, Open Source Management Solution # Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved # $Id$ # @@ -32,6 +32,7 @@ "base_menu.xml", "security/base_security.xml", "res/res_security.xml", + "maintenance/maintenance_security.xml", ], "demo_xml" : [ "base_demo.xml", @@ -59,6 +60,7 @@ "res/partner/partner_data.xml", "res/ir_property_view.xml", "security/base_security.xml", + "maintenance/maintenance_view.xml", "security/ir.model.access.csv", ], "active": True, diff --git a/bin/addons/base/base.sql b/bin/addons/base/base.sql index 02f6a6836dd..50d793b6dd5 100644 --- a/bin/addons/base/base.sql +++ b/bin/addons/base/base.sql @@ -27,6 +27,7 @@ CREATE TABLE ir_model ( id serial, model varchar(64) DEFAULT ''::varchar NOT NULL, name varchar(64), + state varchar(16), info text, primary key(id) ); @@ -196,7 +197,7 @@ create table wkf_activity signal_send varchar(32) default null, flow_start boolean default False, flow_stop boolean default False, - action varchar(64) default null, + action text default null, primary key(id) ); diff --git a/bin/addons/base/base_data.xml b/bin/addons/base/base_data.xml index 30b3464eb9a..e41fccfe682 100644 --- a/bin/addons/base/base_data.xml +++ b/bin/addons/base/base_data.xml @@ -1255,7 +1255,1393 @@ wy + + + + Al Baḩr al Aḩmar + aba + + + + + Al Buhayrat + bu + + + + + Al Jazirah + aj + + + + + Al Khartum + ak + + + + + Al Qadarif + aq + + + + + Al Wahdah + aw + + + + + An Nil + an + + + + + An Nil al Abyad + ana + + + + + An Nil al Azraq + ana + + + + + Ash Shamaliyah + as + + + + + A ali an Nil + aan + + + + + Baḩr al Jabal + baj + + + + + Gharb al Istiwaiyah + gai + + + + + Gharb Bahr al Ghazal + gbg + + + + + Gharb Darfur + gd + + + + + Janub Darfur + jd + + + + + Janub Kurdufan + jk + + + + + Junqali + ju + + + + + Kassala + kas + + + + + Shamal Bahr al Ghazal + sbg + + + + + Shamal Darfur + sd + + + + + Shamal Kurdufan + sk + + + + + Sharq al Istiwaiyah + si + + + + + Sinnar + sn + + + + + Warab + war + + + + + Aimeliik + aim + + + + + Airai + air + + + + + Angaur + ang + + + + + Hatobohei + hat + + + + + Kayangel + kay + + + + + Koror + kor + + + + + Melekeok + mel + + + + + Ngaraard + ng + + + + + Ngarchelong + ngr + + + + + Ngardmau + ngr + + + + + Ngatpang + ngt + + + + + Ngchesar + ngc + + + + + Ngeremlengui + ngr + + + + + Ngiwal + ngi + + + + + Peleliu + pel + + + + + Sonsorol + son + + + + + Abia + ab + + + + + Adamawa + ad + + + + + Akwa Ibom + AK + + + + + Anambra + AN + + + + + Bauchi + BA + + + + + Bayelsa + BY + + + + + Benue + BE + + + + + Borno + BO + + + + + Cross River + CR + + + + + Delta + DE + + + + + Ebonyi + EB + + + + + Edo + ED + + + + + Ekiti + EK + + + + + Enugu + EN + + + + + Gombe + GO + + + + + Imo + IM + + + + + Jigawa + JI + + + + + Kaduna + KD + + + + + Kano + KN + + + + + Katsina + KT + + + + + Kebbi + KE + + + + + Kogi + KO + + + + + Kwara + KW + + + + + Lagos + LA + + + + + Nassarawa + NA + + + + + Niger + NI + + + + + Ogun + OG + + + + + Ondo + ON + + + + + Osun + OS + + + + + Oyo + OY + + + + + Plateau + PL + + + + + Rivers + RI + + + + + Sokoto + SO + + + + + Taraba + TA + + + + + Yobe + YO + + + + + Zamfara + ZA + + + + + Johor + jo + + + + + Kedah + ke + + + + + Kelantan + kel + + + + + Melaka + mel + + + + + Negeri Sembilan + ns + + + + + Pahang + pah + + + + + Perak + per + + + + + Perlis + per + + + + + Pulau Pinang + pp + + + + + Sabah + sab + + + + + Sarawak + sar + + + + + Selangor + sel + + + + + Terengganu + ter + + + + + Aguascalientes + AGU + + + + + Baja California + BCN + + + + + Baja California Sur + BCS + + + + + Campeche + CAM + + + + + Coahuila + COA + + + + + Colima + COL + + + + + Chiapas + CHP + + + + + Chihuahua + CHH + + + + + Durango + DUR + + + + + Guanajuato + GUA + + + + + Guerrero + GRO + + + + + Hidalgo + HID + + + + + Jalisco + JAL + + + + + México + MEX + + + + + Michoacán + MIC + + + + + Morelos + MOR + + + + + Nayarit + NAY + + + + + Nuevo León + NLE + + + + + Oaxaca + OAX + + + + + Puebla + PUE + + + + + Querétaro + QUE + + + + + Quintana Roo + ROO + + + + + San Luis Potosí + SLP + + + + + Sinaloa + SIN + + + + + Sonora + SON + + + + + Tabasco + TAB + + + + + Tamaulipas + TAM + + + + + Tlaxcala + TLA + + + + + Veracruz + VER + + + + + Yucatán + YUC + + + + + Zacatecas + ZAC + + + + + + + Chin + ch + + + + + Kachin + kc + + + + + Kayah + kh + + + + + Kayin + ky + + + + + Mon + mon + + + + + Rakhine + rk + + + + + Shan + sh + + + + + + Saint Kitts + SK + + + + + Nevis + NE + + + + + + Andhra Pradesh + AP + + + + + Arunachal Pradesh + AR + + + + + Assam + AS + + + + + Bihar + BR + + + + + Chhattasgarh + CT + + + + + Goa + GA + + + + + Gujarat + GJ + + + + + Haryana + HR + + + + + Himachal Pradesh + HP + + + + + Jammu and Kashmir + JK + + + + + Jharkhand + JH + + + + + Karnataka + KA + + + + + Kerala + KL + + + + + Madhya Pradesh + MP + + + + + Maharashtra + MH + + + + + Manipur + MN + + + + + Meghalaya + ML + + + + + Mizoram + MZ + + + + + Nagaland + NL + + + + + Orissa + OR + + + + + Punjab + PB + + + + + Rajasthan + RJ + + + + + Sikkim + SK + + + + + Tamilnadu + TN + + + + + Tripura + TR + + + + + Uttaranchal + UL + + + + + Uttar Pradesh + UP + + + + + West Bengal + WB + + + + + + + Chuuk + TRK + + + + + Kosrae + KSA + + + + + Pohnpei + PNI + + + + + Yap + YAP + + + + + + Āfar + AF + + + + + Āmara + AM + + + + + Bīnshangul Gumuz + BE + + + + + Gambēla Hizboch + GA + + + + + Hārerī Hizb + HA + + + + + Oromīya + OR + + + + + Sumalē + SO + + + + + Tigray + TI + + + + + YeDebub Bihēroch Bihēreseboch na Hizboch + SN + + + + + + Baden-Württemberg + BW + + + + + Bayern + BY + + + + + Bremen + HB + + + + + Hamburg + HH + + + + + Hessen + HE + + + + + Niedersachsen + NI + + + + + Nordrhein-Westfalen + NW + + + + + Rheinland-Pfalz + RP + + + + + Saarland + SL + + + + + Schleswig-Holstein + SH + + + + + Berlin + BE + + + + + Brandenburg + BB + + + + + Mecklenburg-Vorpommern + MV + + + + + Sachsen + SN + + + + + Sachsen-Anhalt + ST + + + + + Thüringen + TH + + + + + + Acre + AC + + + + + Alagoas + AL + + + + + Amazonas + AM + + + + + Amapá + AP + + + + + Bahia + BA + + + + + Ceará + CE + + + + + Espírito Santo + ES + + + + + Fernando de Noronha + FN + + + + + Goiás + GO + + + + + Maranhão + MA + + + + + Minas Gerais + MG + + + + + Mato Grosso do Sul + MS + + + + + Mato Grosso + MT + + + + + Pará + PA + + + + + Paraíba + PB + + + + + Pernambuco + PE + + + + + Piauí + PI + + + + + Paraná + PR + + + + + Rio de Janeiro + RJ + + + + + Rio Grande do Norte + RN + + + + + Rondonia + RO + + + + + Roraima + RR + + + + + Rio Grande do Sul + RS + + + + + Santa Catarina + SC + + + + + Sergipe + SE + + + + + Sao Paulo + SP + + + + + Tocantins + TO + + + + Burgenland + bl + + + + + Karnten + ka + + + + + Niederosterreich + ni + + + + + Oberosterreich + ob + + + + + Salzburg + sa + + + + + Steiermark + st + + + + + Tirol + ti + + + + + Vorarlberg + vb + + + + + Wien + wi + + + + + New South Wales + NSW + + + + + Queensland + QLD + + + + + South Australia + SA + + + + + Tasmania + TAS + + + + + Victoria + VIC + + + + + Western Australia + WA + + + + + Tiny sprl diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index c6109903e71..0e4c344b1e1 100644 --- a/bin/addons/base/i18n/base.pot +++ b/bin/addons/base/i18n/base.pot @@ -1,21 +1,19 @@ -#, fuzzy +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base +# msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 4.3.0Report-Msgid-Bugs-To: " -"support@tinyerp.comPOT-Creation-Date: 2008-09-03 11:34:03+0000PO-Revision-" -"Date: 2008-09-03 11:34:03+0000Last-Translator: <>Language-Team: MIME-" -"Version: 1.0Content-Type: text/plain; charset=UTF-8Content-Transfer-" -"Encoding: Plural-Forms:\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:09:36+0000\n" +"PO-Revision-Date: 2008-11-28 17:09:36+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,16 +42,9 @@ msgstr "" msgid "Unknown" msgstr "" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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 @@ -72,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -112,6 +108,7 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "" @@ -127,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "" @@ -159,6 +156,7 @@ msgstr "" #: 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 @@ -177,14 +175,14 @@ msgid "Object" 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" +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " msgstr "" #. module: base -#: view:res.users:0 -msgid "Add New User" +#: 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 @@ -193,10 +191,15 @@ msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -228,8 +231,12 @@ msgid "Key" msgstr "" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" +#: 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 @@ -243,6 +250,16 @@ msgstr "" 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" @@ -264,6 +281,12 @@ msgstr "" 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 @@ -271,13 +294,6 @@ msgstr "" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -294,8 +310,8 @@ msgid "Suffix" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "" @@ -331,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -362,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -407,7 +428,7 @@ msgid "Report Type" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -433,13 +454,15 @@ msgid "Other proprietary" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "" @@ -450,6 +473,11 @@ msgstr "" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -474,16 +502,26 @@ msgid "Form" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -495,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "" @@ -521,8 +559,8 @@ msgid "Web:" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "" @@ -587,11 +625,9 @@ 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." +#: 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 "" #. module: base @@ -605,21 +641,8 @@ msgid "Repositories" 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "" @@ -630,8 +653,8 @@ msgid "Contact" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" msgstr "" @@ -654,8 +677,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "" @@ -665,8 +688,8 @@ msgid "View Ref." msgstr "" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" msgstr "" #. module: base @@ -701,6 +724,11 @@ msgstr "" msgid "Corp." msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -715,8 +743,8 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" msgstr "" #. module: base @@ -730,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -746,12 +775,23 @@ msgstr "" msgid "Group" 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 +#: 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 "" @@ -781,8 +821,7 @@ msgstr "" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "" #. module: base @@ -796,18 +835,15 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" +#: 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." +#: 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 "" #. module: base @@ -817,11 +853,14 @@ msgstr "" 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." +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 @@ -830,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -849,22 +888,15 @@ msgstr "" msgid "User ID" msgstr "" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -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, ...)" +#: 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 "" #. module: base @@ -883,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -907,11 +944,6 @@ msgstr "" msgid "Default" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -945,8 +977,8 @@ msgid "Bank type" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "" @@ -956,8 +988,8 @@ msgid "Header/Footer" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "" @@ -966,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -979,8 +1016,8 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1031,14 +1068,13 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" 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 "" @@ -1072,12 +1108,6 @@ msgstr "" msgid "System Upgrade" 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 "Reload Official Translations" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1105,8 +1135,9 @@ msgid "Parent Menu" msgstr "" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1132,12 +1163,8 @@ msgid "ir.report.custom" 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" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" msgstr "" #. module: base @@ -1155,6 +1182,11 @@ msgstr "" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1166,9 +1198,13 @@ msgid "Pie Chart" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1186,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1212,11 +1243,6 @@ msgstr "" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1267,18 +1293,15 @@ 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." 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" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" msgstr "" #. module: base @@ -1303,13 +1326,14 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" +#: 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" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" msgstr "" #. module: base @@ -1357,20 +1381,24 @@ msgid "Sequences" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" 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 -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1379,8 +1407,8 @@ msgid "Bank account" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" msgstr "" @@ -1429,14 +1457,26 @@ msgstr "" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1455,6 +1495,7 @@ 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 @@ -1466,14 +1507,19 @@ msgstr "" msgid "Send Email" 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 -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -1509,6 +1555,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1516,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1545,15 +1592,19 @@ msgstr "" 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 "" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1595,8 +1646,7 @@ msgstr "" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" msgstr "" @@ -1612,21 +1662,18 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" 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 -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1640,25 +1687,19 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" #. module: base -#: view:res.groups:0 -msgid "Menus" -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 "" @@ -1679,8 +1720,8 @@ msgid "Subject" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "" @@ -1701,9 +1742,8 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" msgstr "" #. module: base @@ -1733,6 +1773,7 @@ msgid "State of Mind" msgstr "" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1741,15 +1782,35 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" msgstr "" #. module: base @@ -1815,8 +1876,14 @@ msgid "STOCK_OK" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "" @@ -1837,8 +1904,8 @@ msgid "None" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "" @@ -1859,13 +1926,13 @@ msgid "Module Category" msgstr "" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1884,11 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1929,8 +1993,8 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "" @@ -1946,6 +2010,7 @@ 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" @@ -1984,7 +2049,7 @@ msgid "Channel Name" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1993,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2014,20 +2074,19 @@ msgstr "" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2047,14 +2106,18 @@ 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 -#: selection:ir.rule,operator:0 -msgid "child_of" +#: 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 @@ -2069,9 +2132,9 @@ msgid "STOCK_GO_BACK" msgstr "" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "" @@ -2119,8 +2182,8 @@ msgid "unknown" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "" @@ -2153,7 +2216,7 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" msgstr "" @@ -2199,11 +2262,6 @@ msgstr "" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2237,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2262,11 +2325,6 @@ msgstr "" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2301,14 +2359,24 @@ msgstr "" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "" @@ -2320,8 +2388,8 @@ msgid "Python Code" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "" @@ -2331,8 +2399,8 @@ msgid "Field Label" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "" @@ -2367,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2375,6 +2442,7 @@ msgstr "" #: 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 @@ -2382,8 +2450,8 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -2392,7 +2460,11 @@ msgid "Modules Management" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 +#: 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 @@ -2403,7 +2475,6 @@ msgstr "" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "" @@ -2438,7 +2509,7 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2454,9 +2525,8 @@ msgid "Meta Datas" 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" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" msgstr "" #. module: base @@ -2465,12 +2535,13 @@ msgid "raw" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, 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 "" @@ -2481,18 +2552,13 @@ msgid "Childs Field" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" +#: 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 -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "" @@ -2514,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2540,9 +2606,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 @@ -2556,14 +2620,14 @@ msgid "Cancel Upgrade" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2576,14 +2640,19 @@ msgstr "" msgid "Cumulate" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "" @@ -2605,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2631,11 +2700,22 @@ msgstr "" msgid "Name" 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 #: 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 msgid "On Create" @@ -2657,8 +2737,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "" @@ -2675,21 +2755,15 @@ 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 all the version number.\n" "- The last parenthesis must match the extension of the module." msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2737,6 +2811,16 @@ msgstr "" msgid "STOCK_COPY" msgstr "" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2753,8 +2837,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "" @@ -2788,6 +2872,11 @@ msgstr "" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2800,8 +2889,8 @@ msgid "Readonly" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "" @@ -2831,11 +2920,6 @@ msgstr "" msgid "Document" msgstr "" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2858,11 +2942,14 @@ msgid "STOCK_STOP" msgstr "" #. module: base -#: code: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" +#: code:addons/base/ir/ir_model.py:0 +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 +#: field:res.partner.bank,acc_number:0 +msgid "Account number" msgstr "" #. module: base @@ -2870,6 +2957,11 @@ msgstr "" 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" @@ -2892,8 +2984,8 @@ msgid "Day: %(day)s" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "" @@ -3012,9 +3104,16 @@ 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 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3065,6 +3164,11 @@ msgstr "" 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" @@ -3084,8 +3188,8 @@ msgid "Directory:" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" msgstr "" #. module: base @@ -3094,8 +3198,13 @@ msgid "Trigger Name" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "" @@ -3130,8 +3239,14 @@ msgid "Source" msgstr "" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" +#: 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 +msgid "Keep empty for a private address, not related to partner." msgstr "" #. module: base @@ -3180,11 +3295,9 @@ msgid "Resource Name" 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." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." msgstr "" #. module: base @@ -3203,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3229,8 +3348,8 @@ msgid "References" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "" @@ -3256,20 +3375,20 @@ msgid "Kind" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, 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.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3285,20 +3404,24 @@ msgstr "" msgid "Tree" 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_CLEAR" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base @@ -3317,13 +3440,19 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "" @@ -3366,6 +3495,12 @@ msgstr "" 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 @@ -3379,14 +3514,13 @@ msgid "Type of view" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3411,12 +3545,27 @@ msgstr "" msgid "STOCK_PROPERTIES" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 msgid "Uninstall (beta)" @@ -3429,8 +3578,8 @@ msgid "New Window" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "" @@ -3445,10 +3594,9 @@ msgid "Parent Action" 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 !" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" msgstr "" #. module: base @@ -3462,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3480,6 +3634,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3495,8 +3650,20 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3521,16 +3688,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." +msgstr "" + +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3548,6 +3725,7 @@ 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 @@ -3565,8 +3743,8 @@ msgid "Active" msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -3598,8 +3776,13 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" msgstr "" #. module: base @@ -3607,11 +3790,6 @@ msgstr "" 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" @@ -3630,15 +3808,15 @@ msgstr "" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3671,8 +3849,10 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" +#: 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 @@ -3724,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3742,9 +3922,7 @@ msgstr "" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -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 "" #. module: base @@ -3782,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3792,8 +3971,7 @@ 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 @@ -3802,8 +3980,8 @@ msgid "Module:" msgstr "" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3824,6 +4002,11 @@ msgstr "" msgid "<=" msgstr "" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3831,19 +4014,13 @@ 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 -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3865,11 +4042,26 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +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 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3885,8 +4077,8 @@ msgid "STOCK_HOME" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "" @@ -3897,8 +4089,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3973,8 +4166,8 @@ msgid "Child ids" msgstr "" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -3984,8 +4177,8 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" msgstr "" #. module: base @@ -4069,6 +4262,12 @@ msgstr "" msgid "Field Mappings" msgstr "" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4086,8 +4285,8 @@ msgid "center" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "" @@ -4102,8 +4301,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4133,10 +4333,8 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base @@ -4171,9 +4369,14 @@ msgid "Category" 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4182,8 +4385,8 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" +#: selection:ir.actions.todo,type:0 +msgid "Service" msgstr "" #. module: base @@ -4192,12 +4395,13 @@ msgid "Add an auto-refresh on the view" 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:0 +#: field:ir.model,access_ids:0 msgid "Access" msgstr "" @@ -4234,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4250,11 +4454,9 @@ msgid "STOCK_PRINT_PREVIEW" msgstr "" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4266,13 +4468,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4283,6 +4478,11 @@ msgstr "" msgid "Email / SMS" msgstr "" +#. 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" @@ -4306,7 +4506,6 @@ msgid "Icon" msgstr "" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4319,13 +4518,8 @@ msgid "Repeat missed" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "" @@ -4345,12 +4539,6 @@ msgstr "" msgid "Limit" msgstr "" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4364,6 +4552,11 @@ msgstr "" msgid "Or" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4388,6 +4581,11 @@ msgstr "" msgid "=" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4395,14 +4593,14 @@ msgid "Installed modules" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4411,8 +4609,8 @@ msgid "Operator" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "" @@ -4464,8 +4662,8 @@ msgid "Report Footer 1" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "" @@ -4475,14 +4673,20 @@ msgstr "" msgid "Custom Report" 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 -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" +#: 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 @@ -4507,14 +4711,15 @@ msgid "Printed:" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4527,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4557,12 +4757,12 @@ 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.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4583,6 +4783,11 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4609,22 +4814,34 @@ msgid "Cascade" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4637,8 +4854,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4660,10 +4877,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 @@ -4676,6 +4890,11 @@ msgstr "" msgid "Short description" msgstr "" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4686,6 +4905,11 @@ msgstr "" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4697,9 +4921,10 @@ msgid "a5" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" +#: 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 @@ -4713,11 +4938,20 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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.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 @@ -4734,8 +4968,8 @@ msgid "Graph" msgstr "" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" msgstr "" #. module: base @@ -4743,6 +4977,11 @@ msgstr "" msgid "ir.actions.server" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4759,8 +4998,8 @@ msgid "Module dependency" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "" @@ -4775,6 +5014,11 @@ msgstr "" msgid "STOCK_DND_MULTIPLE" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4792,13 +5036,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4811,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4822,10 +5061,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4841,6 +5084,11 @@ msgstr "" msgid "Localisation" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4879,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4892,8 +5146,8 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base @@ -4907,10 +5161,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4934,16 +5192,13 @@ msgid "res.partner.som" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "" @@ -4960,6 +5215,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5042,8 +5303,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5067,8 +5335,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5086,6 +5354,11 @@ msgstr "" msgid "Start Upgrade" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5108,7 +5381,6 @@ msgid "Arguments" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5153,13 +5425,12 @@ msgstr "" #: 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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "" @@ -5195,14 +5466,19 @@ msgid "ir.attachment" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" +#: 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 @@ -5230,6 +5506,7 @@ msgstr "" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "" @@ -5239,8 +5516,8 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" msgstr "" #. module: base @@ -5266,13 +5543,8 @@ 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5296,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5316,8 +5588,9 @@ msgid "a4" msgstr "" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" +#: 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 @@ -5330,6 +5603,11 @@ msgstr "" msgid "STOCK_JUSTIFY_RIGHT" 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" @@ -5352,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5364,10 +5642,14 @@ msgstr "" msgid "Sequence" 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" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -5402,8 +5684,8 @@ msgid "Cancel Install" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "" @@ -5416,3 +5698,4 @@ msgstr "" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "" + diff --git a/bin/addons/base/i18n/bg_BG.po b/bin/addons/base/i18n/bg_BG.po index 57698f6721e..7f20021d69a 100644 --- a/bin/addons/base/i18n/bg_BG.po +++ b/bin/addons/base/i18n/bg_BG.po @@ -1,21 +1,19 @@ -# Bulgarian translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-11-02 13:20+0000\n" -"Last-Translator: lem0na \n" -"Language-Team: Bulgarian \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:50:20+0000\n" +"PO-Revision-Date: 2008-11-28 16:50:20+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,19 +42,10 @@ msgstr "Месечно" msgid "Unknown" msgstr "Неизвестно" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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 @@ -74,6 +63,11 @@ msgstr "STOCK_SAVE" msgid "Change My Preferences" msgstr "Промени настройките ми" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Отвори прозорец" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -114,6 +108,7 @@ msgstr "STOCK_SORT_ASCENDING" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Правила за достъп" @@ -129,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "STOCK_MEDIA_FORWARD" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Прескочен" +msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "Не може да създадете този вид документ! (%s)" @@ -161,6 +156,7 @@ msgstr "Последователност от действия" #: 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 @@ -178,26 +174,31 @@ msgstr "Последователност от действия" 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:res.users:0 -msgid "Add New User" -msgstr "Добавяне на потребител" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "ir.default" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "Не е стартиран" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -230,9 +231,13 @@ msgid "Key" msgstr "Ключ" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "Изнасяне" +#: 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 @@ -245,6 +250,16 @@ msgstr "Държави" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. 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" @@ -266,6 +281,12 @@ msgstr "" 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 @@ -273,13 +294,6 @@ msgstr "Вмъкни нов език" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -296,8 +310,8 @@ msgid "Suffix" msgstr "Суфикс" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "Метода unlink не е реализиран за този обект !" @@ -333,9 +347,9 @@ msgid "Activites" msgstr "Дейности" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Текст" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -364,6 +378,11 @@ msgstr "Преходи" msgid "ir.ui.view.custom" msgstr "ir.ui.view.custom" +#. 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "Вид справка" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -435,13 +454,15 @@ msgid "Other proprietary" msgstr "Друг собственически" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Бележки" @@ -452,6 +473,11 @@ msgstr "Бележки" msgid "All terms" msgstr "Всички условия" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -476,16 +502,26 @@ msgid "Form" msgstr "Форма" #. module: base -#: code:osv/orm.py:0 #, 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "Резултатно действие" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -497,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "Метода name_search не е реализиран за този обект !" @@ -523,8 +559,8 @@ msgid "Web:" msgstr "Web страница:" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "нов" @@ -589,14 +625,10 @@ 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." +#: 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 @@ -609,29 +641,8 @@ msgid "Repositories" 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" -"Официалния пакет с преводи за всички модули на OpenERP/OpenObjects се " -"управляват през launchpad. Ние използваме техния онлайн интерфейс за да " -"бъдат синхронизирани всички усилия по превода. За да се подобрят термините в " -"официалните преводи на OpenERP, Вие трябва да промените термините директно " -"през launchpad. Ако сте направили много преводи на собствен модул може да " -"публикувате преводите си наведнъж. За да направите това е необходимо: Ако " -"сте направили собствен модул трябва да изпратите генерирания .pot файл по e-" -"mail на групата по преводи: .... Те ще го прегледат и интегрират." - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "Несъвпадащи пароли" @@ -642,8 +653,8 @@ msgid "Contact" msgstr "Контакт" #. module: base -#: code:addons/base/module/module.py:0 #, 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 модули." @@ -666,8 +677,8 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "Грешка при конкурентен достъп" @@ -677,9 +688,9 @@ msgid "View Ref." msgstr "Отпратка към изглед" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Отпратка към таблица" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" #. module: base #: field:res.partner,ean13:0 @@ -706,14 +717,18 @@ msgstr "Горен колонтитул на справка" #. module: base #: view:ir.rule:0 msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" -"Ако не укажете изрично домейн ще бъде използван домейна по подрабиране" +msgstr "Ако не укажете изрично домейн ще бъде използван домейна по подрабиране" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "Фирма" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -728,9 +743,9 @@ msgid "Default limit for the list view" msgstr "Ограничения по подразбиране за изгледа на списъка" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Обнови дата" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" #. module: base #: field:ir.actions.act_window,src_model:0 @@ -743,8 +758,9 @@ msgid "Type fields" msgstr "Видове полета" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Конфигуриране на стъпките на помощника" @@ -759,12 +775,23 @@ msgstr "ir.ui.view_sc" msgid "Group" 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 "STOCK_FLOPPY" #. 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 "смс" @@ -794,8 +821,7 @@ msgstr "Неисталирани модули" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "Активното поле позволя да се скрие категорията без да се премахне." #. module: base @@ -809,22 +835,16 @@ msgid "res.partner.event" msgstr "res.partner.event" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Състояние" +#: 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 файл и го отворете с предпочитаната програма " -"за електронни таблици. Кодировката на файла е UTF-8. Необходимо е да " -"преведете последната колона преди да го вмъкнете наново." +#: 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 файл и го отворете с предпочитаната програма за електронни таблици. Кодировката на файла е UTF-8. Необходимо е да преведете последната колона преди да го вмъкнете наново." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -834,13 +854,14 @@ msgid "Currencies" 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." +#: 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 @@ -848,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Следващ помощник" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "" #. module: base #: selection:ir.model.fields,select_level:0 @@ -867,25 +888,16 @@ msgstr "Основно поле" msgid "User ID" msgstr "Самоличност" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -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 (обновявания, инсталиране на модули, ...)" +#: 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 @@ -903,6 +915,11 @@ msgstr "SXW съдържание" msgid "ID Ref." msgstr "ID отпратка" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -927,11 +944,6 @@ msgstr "Ограничение" msgid "Default" msgstr "По подразбиране" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "По избор" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -965,8 +977,8 @@ msgid "Bank type" msgstr "Вид банка" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "непознат метод за вземане!" @@ -976,8 +988,8 @@ msgid "Header/Footer" msgstr "Горен/Долен колонтитул" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "Метода за четене не е дефиниран за този обект !" @@ -986,6 +998,11 @@ msgstr "Метода за четене не е дефиниран за този msgid "Request History" msgstr "Изтория на заявката" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -999,9 +1016,9 @@ msgid "Partner Events" msgstr "Партньорски събития" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1051,17 +1068,15 @@ msgid "Partner contacts" msgstr "Партньорски контакт" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Полета на справката" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +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 "" -"Кодът на държавата по ISO е от 2 символа\n" +msgstr "Кодът на държавата по ISO е от 2 символа\n" "Може да използвате това поле за бързо търсене." #. module: base @@ -1094,12 +1109,6 @@ msgstr "Помощник" msgid "System Upgrade" 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 "Reload Official Translations" -msgstr "Презареждане на официалните преводи" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1127,9 +1136,10 @@ msgid "Parent Menu" msgstr "Родителско меню" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Задаване на нов потребител" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Допълнителните полета трябва да имат име което започва с 'x_' !" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1154,13 +1164,9 @@ msgid "ir.report.custom" msgstr "ir.report.custom" #. 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 "Роли" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "Изнасяне" #. module: base #: view:ir.model:0 @@ -1177,6 +1183,11 @@ msgstr "Масирано изпращане на смс-и" msgid "get" msgstr "вземи" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Полета на справката" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1188,11 +1199,14 @@ msgid "Pie Chart" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" -"Грешен идентификатор за разглеждания запис, получено %s, очаквано цяло число." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1209,11 +1223,6 @@ msgstr "STOCK_ZOOM_FIT" msgid "Sequence Type" msgstr "Вид последователност" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Пропусни и продължи" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1235,11 +1244,6 @@ msgstr "Поле child0" msgid "Update Modules List" msgstr "Обнови списъка с модули" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Име на файла с данните" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1290,21 +1294,16 @@ 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -"Опитвате се да инсталирате модул който зависи от следния модул %s.\n" -"Но този модул не е наличен във вашата система." #. 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 "Календар" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Съобщение" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1328,14 +1327,15 @@ msgid "Modules to update" msgstr "Модули за обновяване" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Структура на фирмата" +#: 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 "Отвори в прозорец" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Дейност" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1382,21 +1382,25 @@ msgid "Sequences" msgstr "Последователност" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 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 msgid "Trigger Date" msgstr "Дата на изпълнение" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" -msgstr "Възникна грешка при проверка на полетата %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -1404,8 +1408,8 @@ msgid "Bank account" msgstr "Банкова сметка" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" msgstr "Внимание: използвате свързано поле което използва непознат обект" @@ -1454,14 +1458,26 @@ msgstr "Тригер" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Доставчик" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1480,6 +1496,7 @@ msgstr "wizard.module.update_translations" #. 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 @@ -1491,17 +1508,21 @@ msgstr "Изгледи" msgid "Send Email" msgstr "Изпращане на e-mail" +#. 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 "STOCK_SELECT_FONT" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" -msgstr "" -"Опитвате се да премахнете модул който е инсталиран или ще бъде инсталиран" +msgstr "Опитвате се да премахнете модул който е инсталиран или ще бъде инсталиран" #. module: base #: rml:ir.module.reference:0 @@ -1535,6 +1556,12 @@ msgstr "Oбекти" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1542,11 +1569,6 @@ msgstr "STOCK_GOTO_FIRST" msgid "Workflows" msgstr "Последователности от действия" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Вид тригер" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1571,16 +1593,20 @@ msgstr "Помощник на настройките" 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 -msgid "Manualy Created" -msgstr "Ръчно създаден" +#: rml:ir.module.reference:0 +msgid "Description :" +msgstr "" #. module: base #: field:ir.report.custom,print_format:0 @@ -1621,11 +1647,9 @@ msgstr "res.roles" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" -msgstr "" -"0=Много спешно\n" +msgstr "0=Много спешно\n" "10=Не е спешно" #. module: base @@ -1640,24 +1664,19 @@ msgstr "Потребителски интерфейс - Изгледи" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" 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 "Пътя към .rml файла или нищо ако съдържанието е в report_rml_content" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" -"Не може да бъде съждаден файла от модул:\n" -" %s" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1670,25 +1689,19 @@ msgstr "Създай меню" msgid "STOCK_MEDIA_RECORD" msgstr "STOCK_MEDIA_RECORD" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "child_of" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Адрес на партньора" #. module: base -#: view:res.groups:0 -msgid "Menus" -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 #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "Не може да премахнете модел '%s' !" @@ -1709,8 +1722,8 @@ msgid "Subject" msgstr "Относно" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "Метода write не е реализиран за този обект !" @@ -1731,10 +1744,9 @@ msgid "Retailer" msgstr "Търговец" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Код на последователност" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1763,6 +1775,7 @@ msgid "State of Mind" msgstr "Удовлетвореност" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1771,16 +1784,36 @@ msgstr "Удовлетвореност" msgid "Type" msgstr "Вид" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "Ръчно създаден" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Източник на действие" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "STOCK_FILE" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "Метода copy не е реализиран за този обект !" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -1845,8 +1878,14 @@ msgid "STOCK_OK" msgstr "STOCK_OK" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "Паролата е празна !" @@ -1867,8 +1906,8 @@ msgid "None" msgstr "Никаква" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "Не може да записвате в този документ! (%s)" @@ -1888,16 +1927,16 @@ msgstr "" msgid "Module Category" msgstr "Категория на модула" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Добави и продължи" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1914,14 +1953,9 @@ msgid "STOCK_UNINDENT" msgstr "STOCK_UNINDENT" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" -"Модула който се опитвате да премахнете зависи от инсталираните модули :\n" -" %s" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -1961,8 +1995,8 @@ msgid "Low" msgstr "Нисък" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "Рекурсивна грешка при зависимостите на модулите !" @@ -1978,6 +2012,7 @@ msgstr "XLS път" #. 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" @@ -2016,20 +2051,15 @@ msgid "Channel Name" msgstr "Име на канала" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Продължи" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Опростен интерфейс" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "Назначи групи за дефиниране на правата за достъп" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2046,21 +2076,20 @@ msgstr "Подравняване" msgid "STOCK_UNDO" msgstr "STOCK_UNDO" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "Известяване" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Дейност" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2079,17 +2108,19 @@ 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 "" -"Тази функция ще провери за нови модули в пътя за добавки и в хранилищата за " -"модули:" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "Тази функция ще провери за нови модули в пътя за добавки и в хранилищата за модули:" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "child_of" +#: 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 #: field:res.currency,rate_ids:0 @@ -2103,9 +2134,9 @@ msgid "STOCK_GO_BACK" msgstr "STOCK_GO_BACK" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "AccessError" @@ -2153,8 +2184,8 @@ msgid "unknown" msgstr "неизвестен" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "Метода create не е реализиран за този обект !" @@ -2187,9 +2218,9 @@ msgid "SXW path" msgstr "SXW път" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Данни" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2233,11 +2264,6 @@ msgstr "Демострационни данни" msgid "Module import" msgstr "Вмъкване на модул" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2271,6 +2297,11 @@ msgstr "CSV Файл" msgid "Parent Company" msgstr "Родителска компания" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2296,11 +2327,6 @@ msgstr "Инициализирай дата" msgid "RML Internal Header" msgstr "RML вътрешен колонтитул" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "Списък с клиенти по ДДС" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2335,14 +2361,24 @@ msgstr "(година)=" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "Методът get_memory не е реализиран !" @@ -2354,8 +2390,8 @@ msgid "Python Code" msgstr "Python код" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "Грешна заявка:" @@ -2365,8 +2401,8 @@ msgid "Field Label" msgstr "Етикет на полето" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "Опитвате се да прескочите правило за достъп (Документ тип: %s)." @@ -2401,7 +2437,6 @@ msgid "Customers Partners" msgstr "Партньори на клиента" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2409,6 +2444,7 @@ msgstr "Партньори на клиента" #: 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 @@ -2416,9 +2452,9 @@ msgid "Cancel" msgstr "Откажи" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2426,7 +2462,11 @@ msgid "Modules Management" msgstr "Управление на модули" #. module: base -#: field:ir.attachment,res_id:0 +#: 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 @@ -2437,7 +2477,6 @@ msgstr "Идентификатор на ресурса" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Информация" @@ -2472,9 +2511,9 @@ msgid "RML path" msgstr "RML път" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Следващ помощник за конфигурация" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2488,10 +2527,9 @@ msgid "Meta Datas" 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 "Курса на валутата относно валутен курс към единица (1)" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "По избор" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2499,12 +2537,13 @@ msgid "raw" msgstr "суров вид" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, 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 "Друго" @@ -2515,18 +2554,13 @@ msgid "Childs Field" msgstr "Подчинено поле" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "ir.module.module.configuration.step" +#: 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 "ir.module.module.configuration.wizard" - -#. module: base -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "Не мога да премахна потребителя root!" @@ -2548,10 +2582,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2574,12 +2608,8 @@ 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 "" -"Служителя на фирмата който е отговорен за комуникацията с партньора ако има " -"такъв" +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "Служителя на фирмата който е отговорен за комуникацията с партньора ако има такъв" #. module: base #: selection:ir.translation,type:0 @@ -2592,15 +2622,15 @@ msgid "Cancel Upgrade" msgstr "Прекъсни обновяването" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "Методът search не е реализиран в този обект!" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" -msgstr "Ел. поща от / СМС" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -2612,14 +2642,19 @@ msgstr "Следваща дата на изпълнение" msgid "Cumulate" msgstr "Събери" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_lang msgid "res.lang" msgstr "res.lang" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "" @@ -2641,12 +2676,12 @@ msgid "Create in Same Model" msgstr "Създай в рамките на модела" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2667,11 +2702,22 @@ msgstr "Създай в рамките на модела" msgid "Name" 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 #: selection:ir.ui.menu,icon:0 msgid "STOCK_APPLY" msgstr "STOCK_APPLY" +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" @@ -2693,8 +2739,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "STOCK_MEDIA_PAUSE" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "Грешка!" @@ -2711,26 +2757,19 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Регулярен израз при търсене на модул в web страницата на хранилището:\n" +msgstr "Регулярен израз при търсене на модул в web страницата на хранилището:\n" "- Израза в първите скоби трябва да итговаря на името на модула.\n" "- Израза във сторите скоби трябва да отговаря на номера на версията.\n" "- Израза в последните скоби трябва да отговаря на разширението на модула." #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "ДДС" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" -msgstr "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "За да експортирате нов език, не избирайте език." #. module: base #: model:ir.ui.menu,name:base.menu_translation_app @@ -2777,6 +2816,16 @@ msgstr "Екземпляри" msgid "STOCK_COPY" msgstr "STOCK_COPY" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2793,8 +2842,8 @@ msgid "ir.actions.act_window.view" msgstr "ir.actions.act_window.view" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Грешен формат на файла" @@ -2828,6 +2877,11 @@ msgstr "Планиран доход" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2840,8 +2894,8 @@ msgid "Readonly" msgstr "само за четене" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "Не може да премахнете полето '%s' !" @@ -2871,11 +2925,6 @@ msgstr "ir.actions.wizard" msgid "Document" msgstr "Документ" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2898,21 +2947,26 @@ msgid "STOCK_STOP" msgstr "STOCK_STOP" #. module: base -#: code: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 "" -"\"%s\" съдържа прекалено много точки. XML идентификаторите не трябва да " -"съдържат точки! Те се използват за обръщение към други модули, примерно " -"както в module.reference_id" +#: code:addons/base/ir/ir_model.py:0 +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 идентификаторите не трябва да съдържат точки! Те се използват за обръщение към други модули, примерно както в module.reference_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 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 "" + #. module: base #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -2935,8 +2989,8 @@ msgid "Day: %(day)s" msgstr "Дни: %(day)" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "Не може да прочетете документа! (%s)" @@ -3055,9 +3109,16 @@ 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 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3108,6 +3169,11 @@ msgstr "" 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" @@ -3127,9 +3193,9 @@ msgid "Directory:" msgstr "Директория:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Кредитен лимит" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" #. module: base #: field:ir.actions.server,trigger_name:0 @@ -3137,8 +3203,13 @@ msgid "Trigger Name" msgstr "Име на тригера" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "Име на група не може да започва с \"-\"" @@ -3173,9 +3244,15 @@ msgid "Source" msgstr "Източник" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Източник на действие" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3223,14 +3300,10 @@ msgid "Resource Name" 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 файлове може " -"да се качи в launchpad." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +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 файлове може да се качи в launchpad." #. module: base #: field:res.partner.address,type:0 @@ -3248,6 +3321,12 @@ msgstr "Започни настройката" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3274,8 +3353,8 @@ msgid "References" msgstr "Препратки" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "Междувремено записът бе изменен" @@ -3301,21 +3380,21 @@ msgid "Kind" msgstr "Вид" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "Методът повече не съществува" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, 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.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -3330,21 +3409,25 @@ msgstr "Банкови сметки" msgid "Tree" 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_CLEAR" msgstr "STOCK_CLEAR" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Графиката с правоъгълници има нужда от минимум две полета" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "" #. module: base #: selection:ir.report.custom,type:0 @@ -3362,13 +3445,19 @@ msgid "Custom Field" msgstr "Допълнително поле" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Необходима роля" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "Графиката с правоъгълници има нужда от минимум две полета" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "Методът search_memory не е реализиран!" @@ -3411,6 +3500,12 @@ msgstr "res.request" 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 @@ -3423,17 +3518,16 @@ msgstr "Обновяването на системата е завършило" msgid "Type of view" msgstr "" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "Методът perm_read не е реализиран за този обект!" - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3456,12 +3550,27 @@ msgstr "STOCK_FIND" msgid "STOCK_PROPERTIES" msgstr "STOCK_PROPERTIES" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 msgid "Uninstall (beta)" @@ -3474,8 +3583,8 @@ msgid "New Window" msgstr "Нов прозорец" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "" @@ -3490,13 +3599,10 @@ msgid "Parent Action" 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!" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "Не мога да генерирам следващо id тъй като някой от партньорите има алфавитно(буквено) id!" #. module: base #: selection:ir.report.custom,state:0 @@ -3509,11 +3615,17 @@ msgid "Number of modules updated" msgstr "Брой обновени модули" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Пропусни стъпка(та)" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3527,6 +3639,7 @@ 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" @@ -3542,9 +3655,21 @@ msgid "Active Partner Events" msgstr "Активни събития на партньора" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "Израз на идентификатора на тригера" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3569,17 +3694,25 @@ msgid "Phone" 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 views." +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" 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 views." +msgstr "Ако е истина помощника няма да е видим в дясната лента с инструменти от изгледа на формата." + +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3597,6 +3730,7 @@ msgid "STOCK_SPELL_CHECK" msgstr "STOCK_SPELL_CHECK" #. module: base +#: field:ir.actions.todo,active:0 #: field:ir.cron,active:0 #: field:ir.module.repository,active:0 #: field:ir.sequence,active:0 @@ -3614,9 +3748,9 @@ msgid "Active" msgstr "Активен" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Г-ца" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3647,20 +3781,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "Права за изтриване" +#: 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 msgid "Signal (subflow.*)" msgstr "Сигнал (subflow.*)" -#. 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" @@ -3679,15 +3813,15 @@ msgstr "Подчинени категории" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Име на обект" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3720,9 +3854,11 @@ msgid "Object Relation" msgstr "Обектна свързаност" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "MandataireId" +#: 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 @@ -3773,9 +3909,9 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Готово" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3791,12 +3927,8 @@ msgstr "Фактура" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form views." -msgstr "" -"Ако е истина помощника няма да е видим в дясната лента с инструменти от " -"изгледа на формата." +msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgstr "Ако е истина помощника няма да е видим в дясната лента с инструменти от изгледа на формата." #. module: base #: model:ir.ui.menu,name:base.next_id_4 @@ -3833,6 +3965,7 @@ msgstr "Размер" #: 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 "Град" @@ -3843,11 +3976,8 @@ 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 #: rml:ir.module.reference:0 @@ -3855,8 +3985,8 @@ msgid "Module:" msgstr "Модул" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3877,6 +4007,11 @@ msgstr "Меню" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3884,22 +4019,14 @@ 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 "" -"Избраният език беше успешно инсталиран. Трябва да измените потребителските " -"настройки и да отворите ново меню за да видите промените." +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.roles,name:0 -msgid "Role Name" -msgstr "Име на раля" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "Създаване на XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Менюта" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3920,11 +4047,26 @@ msgstr "Цел на действието" msgid "Child Field" msgstr "Подчинено поле" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +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 "STOCK_EDIT" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3940,8 +4082,8 @@ msgid "STOCK_HOME" msgstr "STOCK_HOME" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "Въведете поне едно поле!" @@ -3952,9 +4094,10 @@ msgid "Others Actions" msgstr "Други действия" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Вземи макс. стойност" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -4028,9 +4171,9 @@ msgid "Child ids" msgstr "Подчинени идентификатори" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Формат на файла" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -4039,9 +4182,9 @@ msgid "Resource" msgstr "Ресурс" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Обнови дата" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4124,6 +4267,12 @@ msgstr "" msgid "Field Mappings" msgstr "Свързване на полета" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "Метода copy не е реализиран за този обект !" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4141,8 +4290,8 @@ msgid "center" msgstr "центриран" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "Не могда да създам модул файла: %s !" @@ -4157,9 +4306,10 @@ msgid "Published Version" msgstr "Публикувана версия" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Автообновяване" +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "Курса на валутата относно валутен курс към единица (1)" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -4188,13 +4338,9 @@ msgid "ir.exports.line" msgstr "ir.exports.line" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." -msgstr "" -"Помощника ще създаде XML файл за ДДС детайлите и всички фактурирани " -"количества по партньор." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Кредитен лимит" #. module: base #: field:ir.default,value:0 @@ -4228,10 +4374,15 @@ msgid "Category" 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 "Действия на прозореца" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Състояние" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Автообновяване" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4239,9 +4390,9 @@ msgid "ir.actions.act_window_close" msgstr "ir.actions.act_window_close" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Номер на сметка" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4249,14 +4400,15 @@ msgid "Add an auto-refresh on the view" 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:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Достъп" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4290,31 +4442,27 @@ msgstr "Модули за сваляне" msgid "Fax" 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_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" msgstr "Задачи" -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "За да експортирате нов език, не избирайте език." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" msgstr "STOCK_PRINT_PREVIEW" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "" -"Сумата от данните (2-то поле) е null.\n" -"Може да начертаем кръгова диаграма !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" +msgstr "Методът perm_read не е реализиран за този обект!" #. module: base #: field:ir.default,company_id:0 @@ -4325,15 +4473,6 @@ msgstr "" msgid "Company" msgstr "Фирма" -#. module: base -#: view:ir.actions.server:0 -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 "" -"Имайте достъп до всички полета които са свързани с текущия обект като просто " -"дефинирате името на свойството напр. [[partner_id.name]] за обекта Фактура" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4344,6 +4483,11 @@ msgstr "Дата на създаване" msgid "Email / SMS" msgstr "Ел. поща/СМС" +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "BIC/Swift код" + #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" @@ -4367,7 +4511,6 @@ msgid "Icon" msgstr "Икона" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4380,13 +4523,8 @@ msgid "Repeat missed" msgstr "Повторете пропуснатото" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "Включи ДДС детайлите" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "Не мога да намеря марката '%s' в родителския изглед" @@ -4406,12 +4544,6 @@ msgstr "ir.translation" msgid "Limit" msgstr "Лимит" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "Инсталирай нов езиков файл" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4425,6 +4557,11 @@ msgstr "Заявки" msgid "Or" msgstr "Или" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4449,6 +4586,11 @@ msgstr "Избрано" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4456,15 +4598,15 @@ msgid "Installed modules" msgstr "Инсталирани модули" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "Внимание" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "XML файлът е създаден." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" #. module: base #: field:ir.rule,operator:0 @@ -4472,8 +4614,8 @@ msgid "Operator" msgstr "Оператор" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "ValidateError" @@ -4525,8 +4667,8 @@ msgid "Report Footer 1" msgstr "Долен колонтитул на справка 1" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "Не може да изтриете документа! (%s)" @@ -4536,15 +4678,21 @@ msgstr "Не може да изтриете документа! (%s)" msgid "Custom Report" 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 -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "Автоамтичен XSL:RML" +#: 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 #: field:ir.model.access,perm_create:0 @@ -4568,15 +4716,16 @@ msgid "Printed:" msgstr "Отпечатано:" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" -msgstr "Методът set_memory не е реализиран!" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" -msgstr "Запази файла" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" +msgstr "Методът set_memory не е реализиран!" #. module: base #: selection:ir.actions.act_window,target:0 @@ -4588,11 +4737,6 @@ msgstr "Текущ прозорец" msgid "Partner category" msgstr "Категория на партньора" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "Избери фискална година" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4618,12 +4762,12 @@ 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.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Тип на полето" @@ -4644,6 +4788,11 @@ msgstr "Код на провинцията" msgid "On delete" msgstr "При изтриване" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4670,22 +4819,34 @@ msgid "Cascade" msgstr "Каскадно" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "Поле %d трябва да е изображение" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Подпис" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4698,9 +4859,9 @@ msgid "Bank Account Type" msgstr "Тип на банкова сметка" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" -msgstr "Тестов XML файл" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4721,14 +4882,8 @@ 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 за първи път. По-малко " -"използваните опции и полета ще бъдат скрити автоматично. По-късно това може " -"да бъде променено от меню Администрация(Administration)." +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 за първи път. По-малко използваните опции и полета ще бъдат скрити автоматично. По-късно това може да бъде променено от меню Администрация(Administration)." #. module: base #: selection:ir.ui.menu,icon:0 @@ -4740,6 +4895,11 @@ msgstr "STOCK_PREFERENCES" msgid "Short description" msgstr "Кратко описание" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4750,6 +4910,11 @@ msgstr "Име на провинцията" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "Вашето лого - използвайте размер 450x150 пиксела." +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4761,10 +4926,11 @@ msgid "a5" msgstr "А5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Съобщение" +#: 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 #: selection:ir.ui.menu,icon:0 @@ -4778,12 +4944,20 @@ msgid "ir.actions.report.xml" msgstr "ir.actions.report.xml" #. module: base -#: view:res.users:0 -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" 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.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "Помнете след промяна на паролата трябва да излезете и влезете отново." #. module: base #: field:res.partner,address:0 @@ -4799,15 +4973,20 @@ msgid "Graph" msgstr "Графика" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "BIC/Swift код" +#: 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 "ir.actions.server" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4824,8 +5003,8 @@ msgid "Module dependency" msgstr "Зависимости на модула" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "Методът name_get не е имплементиран за този обект" @@ -4840,6 +5019,11 @@ msgstr "Приложи планираните обновявания" msgid "STOCK_DND_MULTIPLE" msgstr "STOCK_DND_MULTIPLE" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4857,14 +5041,9 @@ msgid "Server Action" msgstr "Действия на сървъра" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "Файлът е създаден" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Година: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -4876,9 +5055,9 @@ msgid "Action Name" msgstr "Название на действието" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "Прогрес на конфигурирането" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 @@ -4887,10 +5066,14 @@ msgstr "Долен колонтитул на справка 2" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "ел. поща" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4906,6 +5089,11 @@ msgstr "Режим на разделяне" msgid "Localisation" msgstr "Локализация" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Изчисли бройката" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4944,8 +5132,14 @@ msgid "Import a Translation File" msgstr "Вмъкни файл с превод" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "Обръшение към партньора" @@ -4957,9 +5151,9 @@ msgid "Untranslated terms" msgstr "Непреведен термин" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Отвори прозорец" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -4972,13 +5166,15 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "ДДС" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" -"Вие трябва да импортирате .CSV файл кодиран в UTF-8. Моля уверете се че " -"първият ред е:" #. module: base #: field:res.partner.address,birthdate:0 @@ -5001,16 +5197,13 @@ msgid "res.partner.som" msgstr "res.partner.som" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "Контроли за достъп" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "Грешка:" @@ -5027,6 +5220,12 @@ msgstr "Категории на партньора" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Код на последователност" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5109,8 +5308,15 @@ msgstr "res.company" msgid "Fields Mapping" msgstr "Свързване на полета" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5134,9 +5340,9 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Сър" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5153,6 +5359,11 @@ msgstr "" msgid "Start Upgrade" msgstr "Започни обновяване" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5175,7 +5386,6 @@ msgid "Arguments" msgstr "Аргументи" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5220,13 +5430,12 @@ msgstr "res.config.view" #: 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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "Невалидна операция" @@ -5262,15 +5471,20 @@ msgid "ir.attachment" msgstr "ir.attachment" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "Стойността \"%s\" за поле \"%s\" не е в селекцията" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "Изчисли бройката" +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "Автоамтичен XSL:RML" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" #. module: base #: view:workflow.workitem:0 @@ -5297,20 +5511,19 @@ msgstr "Извличане на език" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "Клиент" #. module: base #: view:ir.rule.group:0 msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Няколко правила към един и същ обект са обединени с помощта на оператор OR " -"(или)" +msgstr "Няколко правила към един и същ обект са обединени с помощта на оператор OR (или)" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Месеца" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Права за изтриване" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5335,14 +5548,9 @@ msgid "Mass Mailing" msgstr "Изпращане на много e-mail съобщения" #. 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 -#: view:res.country:0 -msgid "Country" -msgstr "Държава" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5365,9 +5573,9 @@ msgid "Unsubscribe Report" msgstr "Отпиши се от справката" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" -msgstr "Фискална година" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" #. module: base #: constraint:res.partner.category:0 @@ -5385,9 +5593,10 @@ msgid "a4" msgstr "А4" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" -msgstr "Последна версия" +#: 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_view:module.lang.install,start:0 @@ -5399,6 +5608,11 @@ msgstr "Инсталацията е завършена" msgid "STOCK_JUSTIFY_RIGHT" msgstr "STOCK_JUSTIFY_RIGHT" +#. 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" @@ -5418,12 +5632,12 @@ msgstr "Месец: %(month)s" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form msgid "Addresses" -msgstr "Адреси" +msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5433,10 +5647,14 @@ msgstr "Адреси" msgid "Sequence" 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" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -5471,8 +5689,8 @@ msgid "Cancel Install" msgstr "Прекъсни инсталацията" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "Моля проверете дали всичките ви редове имат %d колони." @@ -5485,3 +5703,4 @@ msgstr "Вмъкни език" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "XML идентификатор" + diff --git a/bin/addons/base/i18n/ca_ES.po b/bin/addons/base/i18n/ca_ES.po index f872e4ae4bc..277036a3929 100644 --- a/bin/addons/base/i18n/ca_ES.po +++ b/bin/addons/base/i18n/ca_ES.po @@ -1,21 +1,19 @@ -# Catalan translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-11-17 20:11+0000\n" -"Last-Translator: Jordi Esteve \n" -"Language-Team: Catalan \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:51:13+0000\n" +"PO-Revision-Date: 2008-11-28 16:51:13+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,19 +42,10 @@ msgstr "Mensual" msgid "Unknown" msgstr "Desconegut" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -msgstr "Clica i relaciona" - #. 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 "" -"Aquest assistent detectarà nous termes en l'aplicació per que pugueu " -"actualitzar-los manualment." +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "Aquest assistent detectarà nous termes en l'aplicació per que pugueu actualitzar-los manualment." #. module: base #: field:workflow.activity,out_transitions:0 @@ -74,6 +63,11 @@ msgstr "STOCK_SAVE" msgid "Change My Preferences" msgstr "Canvia les preferències" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Obre finestra" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -114,6 +108,7 @@ msgstr "STOCK_SORT_ASCENDING" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Regles d'accés" @@ -129,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "STOCK_MEDIA_FORWARD" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Omès" +msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "No podeu crear aquest tipus de document! (%s)" @@ -161,6 +156,7 @@ msgstr "Fluxe de treball" #: 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 @@ -178,26 +174,31 @@ msgstr "Fluxe de treball" msgid "Object" msgstr "Objecte" +#. 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 "Categories de mòduls" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "Crea un usuari/ària nou" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "ir.per_defecte" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "No s'ha iniciat" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -230,9 +231,13 @@ msgid "Key" msgstr "Clau" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "Exportació" +#: 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 "Rols" #. module: base #: model:ir.actions.act_window,name:base.action_country @@ -245,6 +250,16 @@ msgstr "Països" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Consegueix màxim" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "" + #. module: base #: selection:res.request,priority:0 msgid "Normal" @@ -266,6 +281,12 @@ msgstr "Ref. usuari" msgid "Import new language" msgstr "Importa nou idioma" +#. 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 @@ -273,13 +294,6 @@ msgstr "Importa nou idioma" msgid "condition" msgstr "condició" -#. 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 "Adjunts" - #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -296,8 +310,8 @@ msgid "Suffix" msgstr "Sufix" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "El mètode unlink (elimina) no està implementat en aquest objecte!" @@ -333,9 +347,9 @@ msgid "Activites" msgstr "Activitats" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -364,6 +378,11 @@ msgstr "Transicions" msgid "ir.ui.view.custom" msgstr "ir.ui.view.custom" +#. 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "Tipus d'informe" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -435,13 +454,15 @@ msgid "Other proprietary" msgstr "Altre propietari" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administració" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" +msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Notes" @@ -452,6 +473,11 @@ msgstr "Notes" msgid "All terms" msgstr "Tots els termes" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -476,16 +502,26 @@ msgid "Form" msgstr "Formulari" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "No s'ha pogut definir la columna %s. Paraula reservada !" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "Activitat destí" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -497,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "El método name_search no esta implementado en este objeto !" @@ -523,8 +559,8 @@ msgid "Web:" msgstr "Web:" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "nou" @@ -589,14 +625,10 @@ msgid "Contact Name" msgstr "Nom" #. 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 "" -"Deseu aquest document en un fitxer %s i editeu-lo amb un programa específic " -"o un editor de text. La codificació del fitxer és UTF-8." +#: 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 "Deseu aquest document en un fitxer %s i editeu-lo amb un programa específic o un editor de text. La codificació del fitxer és UTF-8." #. module: base #: view:ir.module.module:0 @@ -609,30 +641,8 @@ msgid "Repositories" msgstr "Biblioteques" #. 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" -"Les traduccions oficials per tots els mòduls d'OpenERP/OpenObjects estan " -"gestionades mitjançant launchpad. Utilitzem la seva interfície en línia per " -"sincronitzar tots els esforços de traducció. Per millorar alguns termes de " -"les traduccions oficials d'OpenERP, s'ha de modificar els termes directament " -"en la interfície de launchpad. Si heu creat un fitxer amb les traduccions " -"del vostre propi mòdul, també podeu publicar tota la vostra traducció a la " -"vegada. Per aconseguir-ho heu de: Si heu creat un nou mòdul, heu d'enviar el " -"fitxer .pot generat pel correu electrònic al grup de traducció: ... Ells ho " -"revisaran i ho integraran." - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "La contrasenya no coincideix !" @@ -643,11 +653,10 @@ msgid "Contact" msgstr "Contacte" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" -"Aquesta url '%s' ha d'apuntar a un fitxer html amb enllaços a mòduls zip" +msgstr "Aquesta url '%s' ha d'apuntar a un fitxer html amb enllaços a mòduls zip" #. module: base #: model:ir.ui.menu,name:base.next_id_15 @@ -668,8 +677,8 @@ msgid "ir.ui.menu" msgstr "ir.ui.menú" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "Excepció de concurrència" @@ -679,9 +688,9 @@ msgid "View Ref." msgstr "Ref. vista" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Ref. taula" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" #. module: base #: field:res.partner,ean13:0 @@ -708,14 +717,18 @@ msgstr "Capçalera dels informes" #. module: base #: view:ir.rule:0 msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" -"Si no forceu el domini, s'utilitzarà la configuració de domini simple" +msgstr "Si no forceu el domini, s'utilitzarà la configuració de domini simple" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "S.A." +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -730,9 +743,9 @@ msgid "Default limit for the list view" msgstr "Límit per defecte per la vista de llista" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Data revisió" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.objecte.línias" #. module: base #: field:ir.actions.act_window,src_model:0 @@ -745,8 +758,9 @@ msgid "Type fields" msgstr "Camps de tipus" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Configura passos dels wizard" @@ -761,12 +775,23 @@ msgstr "ir.ui.view_sc" msgid "Group" msgstr "Grup" +#. 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Signatura" + +#. module: base +#: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 msgid "SMS" msgstr "SMS (missatge de text)" @@ -796,8 +821,7 @@ msgstr "Mòduls no instal·lats" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "El camp actiu us permet ocultar la categoria sense eliminar-la." #. module: base @@ -811,22 +835,16 @@ msgid "res.partner.event" msgstr "res.empresa.event" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Posició" +#: 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 "" -"Deseu aquest document en un fitxer .CSV i obriu-lo amb el vostre programa " -"preferit de fulls de càlcul. La codificació del fitxer és UTF-8. Heu de " -"traduir l'última columna abans de importar-lo de nou." +#: 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 "Deseu aquest document en un fitxer .CSV i obriu-lo amb el vostre programa preferit de fulls de càlcul. La codificació del fitxer és UTF-8. Heu de traduir l'última columna abans de importar-lo de nou." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -836,14 +854,14 @@ msgid "Currencies" msgstr "Monedes" #. 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." +#: selection:ir.actions.todo,type:0 +msgid "Configure" msgstr "" -"Si l'idioma seleccionat està emmagatzemat en el sistema, tots els documents " -"relacionats amb aquesta empresa seran mostrats en aquest idioma. Si no, " -"seran mostrats en anglès." + +#. 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 "Si l'idioma seleccionat està emmagatzemat en el sistema, tots els documents relacionats amb aquesta empresa seran mostrats en aquest idioma. Si no, seran mostrats en anglès." #. module: base #: selection:ir.ui.menu,icon:0 @@ -851,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Següent assistent" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "Objecte personalitzat" #. module: base #: selection:ir.model.fields,select_level:0 @@ -870,25 +888,16 @@ msgstr "Camp base" msgid "User ID" msgstr "ID usuari" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Següent pas configuració" - #. module: base #: view:ir.rule:0 msgid "Test" msgstr "Test" #. 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 "" -"No podeu eliminar l'usuari admin ja que s'utilitza internament pels recursos " -"creats per OpenERP (actualitzacions, instal·lació de mòduls, ...)" +#: 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 "No podeu eliminar l'usuari admin ja que s'utilitza internament pels recursos creats per OpenERP (actualitzacions, instal·lació de mòduls, ...)" #. module: base #: wizard_view:module.module.update,update:0 @@ -906,6 +915,11 @@ msgstr "Contingut SXW" msgid "ID Ref." msgstr "Ref. ID" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -930,11 +944,6 @@ msgstr "Restricció" msgid "Default" msgstr "Per defecte" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Personalització" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -968,8 +977,8 @@ msgid "Bank type" msgstr "Tipus de banc" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "Mètode get (obtenir) no definit!" @@ -979,8 +988,8 @@ msgid "Header/Footer" msgstr "Capçalera / Peu de pàgina" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "El mètode read (llegir) no està implementat en aquest objecte!" @@ -989,6 +998,11 @@ msgstr "El mètode read (llegir) no està implementat en aquest objecte!" msgid "Request History" msgstr "Historial de sol·licituds" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -1002,9 +1016,9 @@ msgid "Partner Events" msgstr "Esdeveniments empresa" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1054,17 +1068,15 @@ msgid "Partner contacts" msgstr "Contactes empresa" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Camps informe" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +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 "" -"EL codi ISO del país en dos caràcters.\n" +msgstr "EL codi ISO del país en dos caràcters.\n" "Podeu utilitzar aquest camp per la cerca ràpida." #. module: base @@ -1097,12 +1109,6 @@ msgstr "Assistent" msgid "System Upgrade" msgstr "Actualització del sistema" -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Reload Official Translations" -msgstr "Recarrega traduccions oficials" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1130,9 +1136,10 @@ msgid "Parent Menu" msgstr "Menú pare" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Defineix un nou usuari" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Els camps personalitzats han de tenir un nom que comença con 'x_'!" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1157,13 +1164,9 @@ msgid "ir.report.custom" msgstr "ir.report.custom" #. 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 "Rols" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "Exportació" #. module: base #: view:ir.model:0 @@ -1180,6 +1183,11 @@ msgstr "Bulk SMS enviat" msgid "get" msgstr "obté" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Camps informe" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1191,12 +1199,14 @@ msgid "Pie Chart" msgstr "Diagrama tipus pastel" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" -"ID erroni per mostrar el registre, es va obtenir %s, s'esperava un número " -"enter." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1213,11 +1223,6 @@ msgstr "STOCK_ZOOM_FIT" msgid "Sequence Type" msgstr "Tipus de seqüència" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Salta & Continua" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1239,11 +1244,6 @@ msgstr "Camp fill0" msgid "Update Modules List" msgstr "Actualitza llista de mòduls" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Nom fitxer de dades" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1294,21 +1294,16 @@ msgid "Model" msgstr "Model" #. 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -"Esteu intentant d'instal·lar un mòdul que depèn del mòdul: %s.\n" -"Però aquest mòdul no es troba disponible en el vostre sistema." #. 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 "Calendari" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Missatge" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1332,14 +1327,15 @@ msgid "Modules to update" msgstr "Mòduls a actualitzar" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Estructura de la companyia" +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Sra." #. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" -msgstr "Obre una finestra" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Activitat" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1386,21 +1382,25 @@ msgid "Sequences" msgstr "Seqüències" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" msgstr "Posició desconeguda en vista heretada %s!" +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" msgstr "Data de l'activació" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" -msgstr "Ha ocorregut un error quan es validaven els camps %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -1408,11 +1408,10 @@ msgid "Bank account" msgstr "compte bancari" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" -msgstr "" -"Advertència: utilitzan un camp relacional que utilitza un objecte desconegut" +msgstr "Advertència: utilitzan un camp relacional que utilitza un objecte desconegut" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1459,14 +1458,26 @@ msgstr "Activació" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Proveïdor" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +msgstr "" + #. module: base #: field:ir.model.fields,translate:0 msgid "Translate" msgstr "Tradueix" +#. 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" @@ -1485,6 +1496,7 @@ msgstr "wizard.mòdul.actualitza_traduccions" #. 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 @@ -1496,17 +1508,21 @@ msgstr "Vistes" msgid "Send Email" msgstr "Envia email" +#. 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 "STOCK_SELECT_FONT" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" -msgstr "" -"Esteu intentant d'eliminar un mòdul que està instal·lat o serà instal·lat" +msgstr "Esteu intentant d'eliminar un mòdul que està instal·lat o serà instal·lat" #. module: base #: rml:ir.module.reference:0 @@ -1540,6 +1556,12 @@ msgstr "Objectes" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1547,11 +1569,6 @@ msgstr "STOCK_GOTO_FIRST" msgid "Workflows" msgstr "Fluxes de treball" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Tipus d'activació" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1576,16 +1593,20 @@ msgstr "Assistent de configuració" msgid "Request Link" msgstr "Enllaç sol·licitud" +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Format de fitxer" + #. 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 -msgid "Manualy Created" -msgstr "Creat manualment" +#: rml:ir.module.reference:0 +msgid "Description :" +msgstr "" #. module: base #: field:ir.report.custom,print_format:0 @@ -1626,11 +1647,9 @@ msgstr "res.roles" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" -msgstr "" -"0=Molt urgent\n" +msgstr "0=Molt urgent\n" "10=Sense urgència" #. module: base @@ -1645,25 +1664,19 @@ msgstr "Interface usuari - Vistes" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" msgstr "Permisos d'accés" #. 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 "" -"La ruta del fitxer .rml o NULL si el contingut està en report_rml_content" +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "La ruta del fitxer .rml o NULL si el contingut està en report_rml_content" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" -"No es pot crear el fitxer del mòdul:\n" -" %s" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1676,25 +1689,19 @@ msgstr "Crea menú" msgid "STOCK_MEDIA_RECORD" msgstr "STOCK_MEDIA_RECORD" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "fill_de" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Direcció de l'empresa" #. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "Menús" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "Els camps personalitzats han de tenir un nom que comença con 'x_'!" - -#. module: base #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "No podeu eliminar aquest model '%s'!" @@ -1715,8 +1722,8 @@ msgid "Subject" msgstr "Assumpte" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "El mètode write (esciure) no està implementat en aquest objecte!" @@ -1737,10 +1744,9 @@ msgid "Retailer" msgstr "Proveïdor" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Codi seqüència" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1769,6 +1775,7 @@ msgid "State of Mind" msgstr "Grau de satisfacció" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1777,16 +1784,36 @@ msgstr "Grau de satisfacció" msgid "Type" msgstr "Tipus" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "Creat manualment" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Activitat origen" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "STOCK_FILE" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "El mètode copy (copiar) no està implementat en aquest objecte!" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -1851,8 +1878,14 @@ msgid "STOCK_OK" msgstr "STOCK_OK" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "Contrasenya buida!" @@ -1873,8 +1906,8 @@ msgid "None" msgstr "Cap" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "No podeu escriure en aquest document! (%s)" @@ -1894,16 +1927,16 @@ msgstr "ID API" msgid "Module Category" msgstr "Categoria del mòdul" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Afegeix & Continua" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" msgstr "Operant" +#. 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1920,14 +1953,9 @@ msgid "STOCK_UNINDENT" msgstr "STOCK_UNINDENT" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" -"El mòdul que intenteu eliminar depèn dels mòduls instal·lats:\n" -" %s" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -1967,8 +1995,8 @@ msgid "Low" msgstr "Baixa" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "Error de recurrència entre dependències de mòduls!" @@ -1984,6 +2012,7 @@ msgstr "Ruta XSL" #. 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" @@ -2022,20 +2051,15 @@ msgid "Channel Name" msgstr "Nom canal" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Contínua" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Interfície simplificat" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "Assigna grups per definir permisos d'accés" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2052,21 +2076,20 @@ msgstr "Alineació" msgid "STOCK_UNDO" msgstr "STOCK_UNDO" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "Notifica" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Activitat" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2085,17 +2108,19 @@ msgstr "Obté fitxer" #. 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 "" -"Aquesta funció cercarà nous mòduls en el directori 'addons' i en les " -"biblioteques de mòduls:" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "Aquesta funció cercarà nous mòduls en el directori 'addons' i en les biblioteques de mòduls:" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "fill_de" +#: 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 "País" #. module: base #: field:res.currency,rate_ids:0 @@ -2109,9 +2134,9 @@ msgid "STOCK_GO_BACK" msgstr "STOCK_GO_BACK" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "ErrorAccés" @@ -2159,8 +2184,8 @@ msgid "unknown" msgstr "desconegut" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "El mètode create (crear) no està implementat en aquest objecte!" @@ -2193,9 +2218,9 @@ msgid "SXW path" msgstr "Ruta SXW" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Dades" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2239,11 +2264,6 @@ msgstr "Dades d'exemple" msgid "Module import" msgstr "Importació de mòdul" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -msgstr "Import límit" - #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form #: model:ir.ui.menu,name:base.menu_action_res_company_form @@ -2277,6 +2297,11 @@ msgstr "Fitxer CSV" msgid "Parent Company" msgstr "Empresa matriu" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2302,11 +2327,6 @@ msgstr "Data d'inici" msgid "RML Internal Header" msgstr "Capçalera interna RML" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "Llistat de clients amb CIF/NIF (per aplicar el IVA)" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2341,14 +2361,24 @@ msgstr "(any)=" msgid "Code" msgstr "Codi" +#. 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/fields.py:0 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "El mètode get_memory no està implementat!" @@ -2360,8 +2390,8 @@ msgid "Python Code" msgstr "Codi de Python" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "Interrogació errònia." @@ -2371,8 +2401,8 @@ msgid "Field Label" msgstr "Etiqueta camp" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "Intenteu saltar una regla d'accés (tipus document: %s)." @@ -2407,7 +2437,6 @@ msgid "Customers Partners" msgstr "Clients" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2415,6 +2444,7 @@ msgstr "Clients" #: 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 @@ -2422,9 +2452,9 @@ msgid "Cancel" msgstr "Cancel·la" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Permís per llegir" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.usuaris" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2432,7 +2462,11 @@ msgid "Modules Management" msgstr "Administració de mòduls" #. module: base -#: field:ir.attachment,res_id:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administració" + +#. module: base #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2443,7 +2477,6 @@ msgstr "ID recurs" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Informació" @@ -2478,9 +2511,9 @@ msgid "RML path" msgstr "Ruta RML" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Següent assistent de configuració" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2494,10 +2527,9 @@ msgid "Meta Datas" msgstr "Meta dades" #. 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 "La taxa de canvi de la moneda a la moneda de taxa 1" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Personalització" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2505,12 +2537,13 @@ msgid "raw" msgstr "en brut" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Partners: " msgstr "Empreses: " #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Altre" @@ -2521,18 +2554,13 @@ msgid "Childs Field" msgstr "Camp fills" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "ir.mòdul.mòdul.configuració.pas" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nom de rol" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "ir.mòdul.mòdul.configuració.wizard" - -#. module: base -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "No es pot eliminar l'usuari principal!" @@ -2554,10 +2582,10 @@ msgstr "Comercial dedicat" #. 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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2580,12 +2608,8 @@ msgstr "Informe 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 "" -"L'usuari intern que s'encarrega de comunicar-se amb aquesta empresa si n'hi " -"ha." +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "L'usuari intern que s'encarrega de comunicar-se amb aquesta empresa si n'hi ha." #. module: base #: selection:ir.translation,type:0 @@ -2598,15 +2622,15 @@ msgid "Cancel Upgrade" msgstr "Cancel·la actualització" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "El mètode search (buscar) no està implementat en aquest objecte!" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" -msgstr "Des de Email / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -2618,14 +2642,19 @@ msgstr "Data de la propera crida" msgid "Cumulate" msgstr "Acumulat" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_lang msgid "res.lang" msgstr "res.idioma" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "Gràfics de pastís necessiten exactament dos camps" @@ -2647,12 +2676,12 @@ msgid "Create in Same Model" msgstr "Crea en el mateix model" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2673,11 +2702,22 @@ msgstr "Crea en el mateix model" msgid "Name" msgstr "Nom" +#. 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.ui.menu,icon:0 msgid "STOCK_APPLY" msgstr "STOCK_APPLY" +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" @@ -2699,8 +2739,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "STOCK_MEDIA_PAUSE" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "Error!" @@ -2717,26 +2757,19 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Expressió regular per cercar el mòdul en la biblioteca del web:\n" +msgstr "Expressió regular per cercar el mòdul en la biblioteca del web:\n" "- El primer paréntesi haurà de coincidir amb el nom del mòdul.\n" "- El segon paréntesi haurà de coincidir amb tot el número de versió.\n" "- L'últim paréntesi haurà de coincidir amb l'extensió del mòdul." #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "IVA" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" -msgstr "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Per exportar un nou idioma, no seleccioni un idioma." #. module: base #: model:ir.ui.menu,name:base.menu_translation_app @@ -2783,6 +2816,16 @@ msgstr "Casos" msgid "STOCK_COPY" msgstr "STOCK_COPY" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2799,8 +2842,8 @@ msgid "ir.actions.act_window.view" msgstr "ir.accions.acc_window.vista" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Format de fitxer incorrecte" @@ -2834,6 +2877,11 @@ msgstr "Retorn previst" msgid "Record rules" msgstr "Regles de registre" +#. 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2846,8 +2894,8 @@ msgid "Readonly" msgstr "Només lectura" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "No podeu eliminar el camp '%s'!" @@ -2877,11 +2925,6 @@ msgstr "ir.accions.wizard" msgid "Document" msgstr "Document" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "# de contactes" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2904,21 +2947,26 @@ msgid "STOCK_STOP" msgstr "STOCK_STOP" #. module: base -#: code: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 "" -"\"%s\" conté massa punts. Els ids de XML no han contenir punts! Aquests " -"s'utilitzen per referir-se a dades d'altres mòduls, com en " -"module.reference_id" +#: code:addons/base/ir/ir_model.py:0 +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\" conté massa punts. Els ids de XML no han contenir punts! Aquests s'utilitzen per referir-se a dades d'altres mòduls, com en module.reference_id" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Número de compte" #. 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.menú.crea.línia" +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "" + #. module: base #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -2941,8 +2989,8 @@ msgid "Day: %(day)s" msgstr "Dia: %(day)s" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "No podeu llegir aquest document! (%s)" @@ -3061,9 +3109,16 @@ msgstr "Valor del domini" #. module: base #: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "Ajuda" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3114,6 +3169,11 @@ msgstr "Informe personalitzat" msgid "Schedule for Installation" msgstr "Programa per instal·lació" +#. 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" @@ -3133,9 +3193,9 @@ msgid "Directory:" msgstr "Directori:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Crèdit concedit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" #. module: base #: field:ir.actions.server,trigger_name:0 @@ -3143,8 +3203,13 @@ msgid "Trigger Name" msgstr "Nom d'activació" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "El nom del grup no pot començar amb \"-\"" @@ -3179,9 +3244,15 @@ msgid "Source" msgstr "Text original" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Activitat origen" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3229,14 +3300,10 @@ msgid "Resource Name" msgstr "Nom de recurs" #. 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 "" -"Desa aquest document en un fitxer .tgz. Aquest fitxer contindrà %s fitxers " -"UTF-8 i pot ser pujat a launchpad." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "Desa aquest document en un fitxer .tgz. Aquest fitxer contindrà %s fitxers UTF-8 i pot ser pujat a launchpad." #. module: base #: field:res.partner.address,type:0 @@ -3254,6 +3321,12 @@ msgstr "Inicia configuració" msgid "Export Id" msgstr "Exportar Id" +#. 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 "Accions de finestra" + #. module: base #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3280,8 +3353,8 @@ msgid "References" msgstr "Referències" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "Aquest registre mentrestant s'ha modificat" @@ -3307,21 +3380,21 @@ msgid "Kind" msgstr "Classe" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "Aquest mètode ja no existeix" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Tree can only be used in tabular reports" msgstr "Àrbre es pot utilitzar només en informes tabulars" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -3336,21 +3409,25 @@ msgstr "Comptes bancaris" msgid "Tree" msgstr "Arbre" +#. 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_CLEAR" msgstr "STOCK_CLEAR" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Gràfics de barres necessiten al menys dos camps" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.usuaris" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Permís per llegir" #. module: base #: selection:ir.report.custom,type:0 @@ -3368,13 +3445,19 @@ msgid "Custom Field" msgstr "Camp personalitzat" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Rol requerit" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "Gràfics de barres necessiten al menys dos camps" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "El mètode search_memory no està implementat!" @@ -3417,6 +3500,12 @@ msgstr "res.request" msgid "Rules" msgstr "Regles" +#. 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 @@ -3429,18 +3518,16 @@ msgstr "Actualització del sistema realitzada" msgid "Type of view" msgstr "Tipus de vista" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "" -"El mètode perm_read (llegir permisos) no està implementat en aquest objecte!" - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3463,12 +3550,27 @@ msgstr "STOCK_FIND" msgid "STOCK_PROPERTIES" msgstr "STOCK_PROPERTIES" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 "Autoritza accés al menú" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3481,8 +3583,8 @@ msgid "New Window" msgstr "Nova finestra" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "El segon camp han de ser xifres" @@ -3497,12 +3599,10 @@ msgid "Parent Action" msgstr "Acció pare" #. 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 "" -"No es pot generar el pròxim id perquè algunes empreses tenen un id alfabètic!" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "No es pot generar el pròxim id perquè algunes empreses tenen un id alfabètic!" #. module: base #: selection:ir.report.custom,state:0 @@ -3515,11 +3615,17 @@ msgid "Number of modules updated" msgstr "Número de mòduls actualitzats" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Salta pas" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3533,6 +3639,7 @@ msgstr "Arbre de rols" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "ir.accions.url" @@ -3548,9 +3655,21 @@ msgid "Active Partner Events" msgstr "Esdeveniments d'empreses actives" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "ID expr activació" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3575,17 +3694,25 @@ msgid "Phone" msgstr "Telèfon" #. 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 views." +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" msgstr "" -"Si es fixa a verdader, l'assistent no es mostrarà en la barra d'eines dreta " -"en les vistes formulari." + +#. 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 views." +msgstr "Si es fixa a verdader, l'assistent no es mostrarà en la barra d'eines dreta en les vistes formulari." + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Rol requerit" #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3603,6 +3730,7 @@ msgid "STOCK_SPELL_CHECK" msgstr "STOCK_SPELL_CHECK" #. module: base +#: field:ir.actions.todo,active:0 #: field:ir.cron,active:0 #: field:ir.module.repository,active:0 #: field:ir.sequence,active:0 @@ -3620,9 +3748,9 @@ msgid "Active" msgstr "Actiu" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Sra." +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3653,20 +3781,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "Permís per eliminar" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Obre una finestra" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Mesos" #. module: base #: field:workflow.activity,signal_send:0 msgid "Signal (subflow.*)" msgstr "Senyal (subflow.*)" -#. 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" @@ -3685,15 +3813,15 @@ msgstr "Categories filles" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Nom de l'objecte" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3726,9 +3854,11 @@ msgid "Object Relation" msgstr "Relació objecte" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "Id solicitant" +#: 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 "Adjunts" #. module: base #: field:ir.rule,field_id:0 @@ -3779,9 +3909,9 @@ msgid "terp-mrp" msgstr "terp-mrp" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Realitzat" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3797,12 +3927,8 @@ msgstr "Factura" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form views." -msgstr "" -"Si es fixa a verdader, l'acció no es mostrarà en la barra d'eines dreta en " -"les vistes formulari." +msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgstr "Si es fixa a verdader, l'acció no es mostrarà en la barra d'eines dreta en les vistes formulari." #. module: base #: model:ir.ui.menu,name:base.next_id_4 @@ -3839,6 +3965,7 @@ msgstr "Mida" #: 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 "Ciutat" @@ -3849,11 +3976,8 @@ msgstr "Empreses filials" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter " -"especial !" +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial !" #. module: base #: rml:ir.module.reference:0 @@ -3861,9 +3985,9 @@ msgid "Module:" msgstr "Mòdul:" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" -msgstr "Objecte personalitzat" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "" #. module: base #: selection:ir.rule,operator:0 @@ -3883,6 +4007,11 @@ msgstr "Menú" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3890,22 +4019,14 @@ msgstr "Instància de destí" #. 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 "" -"L'idioma seleccionat s'ha instal·lat correctament. Heu de canviar les " -"preferències de l'usuari i obrir un nou menú per veure els canvis." +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 "L'idioma seleccionat s'ha instal·lat correctament. Heu de canviar les preferències de l'usuari i obrir un nou menú per veure els canvis." #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nom de rol" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "Crea XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Menús" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3926,11 +4047,26 @@ msgstr "Destí acció" msgid "Child Field" msgstr "Camp fill" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Sr." + +#. 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 "STOCK_EDIT" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3946,8 +4082,8 @@ msgid "STOCK_HOME" msgstr "STOCK_HOME" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "Introdueixi al menys un camp!" @@ -3958,9 +4094,10 @@ msgid "Others Actions" msgstr "Altres accions" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Consegueix màxim" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -4034,9 +4171,9 @@ msgid "Child ids" msgstr "IDs fills" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Format de fitxer" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -4045,9 +4182,9 @@ msgid "Resource" msgstr "Recurs" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "ir.server.objecte.línias" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Data revisió" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4130,6 +4267,12 @@ msgstr "terp-sale" msgid "Field Mappings" msgstr "Mapa de camps" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "El mètode copy (copiar) no està implementat en aquest objecte!" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4147,8 +4290,8 @@ msgid "center" msgstr "centre" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "No es pot crear el fitxer de mòdul: %s!" @@ -4163,9 +4306,10 @@ msgid "Published Version" msgstr "Versió publicada" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Auto-refrescar" +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "La taxa de canvi de la moneda a la moneda de taxa 1" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -4194,13 +4338,9 @@ msgid "ir.exports.line" msgstr "ir.export.línia" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." -msgstr "" -"Aquest assistent crearà un fitxer XML per l'IVA desglossat i imports totals " -"facturats per empresa." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Crèdit concedit" #. module: base #: field:ir.default,value:0 @@ -4234,10 +4374,15 @@ msgid "Category" msgstr "Categoria" #. 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 "Accions de finestra" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Posició" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Auto-refrescar" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4245,9 +4390,9 @@ msgid "ir.actions.act_window_close" msgstr "ir.actions.act_window_close" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Número de compte" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4255,14 +4400,15 @@ msgid "Add an auto-refresh on the view" msgstr "Afegeix un auto-refrescar a la vista" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "Nom de fitxer" #. module: base -#: field:ir.model,access:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Accés" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4296,31 +4442,27 @@ msgstr "Mòduls a descarregar" msgid "Fax" msgstr "Fax" +#. 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_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" msgstr "Elements de treball" -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Per exportar un nou idioma, no seleccioni un idioma." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" msgstr "STOCK_PRINT_PREVIEW" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "" -"La suma de les dades (2º camp) és nul.\n" -"Es pot visualitzar un gràfic de pastís!" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" +msgstr "El mètode perm_read (llegir permisos) no està implementat en aquest objecte!" #. module: base #: field:ir.default,company_id:0 @@ -4331,16 +4473,6 @@ msgstr "" msgid "Company" msgstr "Companyia" -#. module: base -#: view:ir.actions.server:0 -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 "" -"Accedeixi fàcilment a tots els camps relacionats amb l'objecte actual " -"indicant només el nom de l'atribut, per exemple [[partner_id.name]] per " -"l'objecte Factura" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4351,6 +4483,11 @@ msgstr "Data creació" msgid "Email / SMS" msgstr "Email / SMS" +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "Codi BIC/Swift" + #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" @@ -4374,7 +4511,6 @@ msgid "Icon" msgstr "Icona" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4387,13 +4523,8 @@ msgid "Repeat missed" msgstr "Repetir perduts" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "Resum de l'IVA desglossat" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "No es pot trobar la marca '%s' en la vista pare!" @@ -4413,12 +4544,6 @@ msgstr "ir.traduccio" msgid "Limit" msgstr "Límit" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "Instal·la nou fitxer d'idioma" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4432,6 +4557,11 @@ msgstr "Sol·licituds" msgid "Or" msgstr "Or" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4456,6 +4586,11 @@ msgstr "Selecció" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4463,15 +4598,15 @@ msgid "Installed modules" msgstr "Mòduls instal·lats" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "Avís" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "Fitxer XML ha estat creat." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" #. module: base #: field:ir.rule,operator:0 @@ -4479,8 +4614,8 @@ msgid "Operator" msgstr "Operador" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "Error de Validació" @@ -4532,8 +4667,8 @@ msgid "Report Footer 1" msgstr "Peu de pàgina 1 de l'informe" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "No podeu eliminar aquest document! (%s)" @@ -4543,15 +4678,21 @@ msgstr "No podeu eliminar aquest document! (%s)" msgid "Custom Report" msgstr "Informe personalitzat" +#. 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 "Email" #. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "XSL:RML automàtic" +#: 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 #: field:ir.model.access,perm_create:0 @@ -4575,15 +4716,16 @@ msgid "Printed:" msgstr "Imprés:" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" -msgstr "El mètode set_memory no està implementat!" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" -msgstr "Desa el fitxer" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" +msgstr "El mètode set_memory no està implementat!" #. module: base #: selection:ir.actions.act_window,target:0 @@ -4595,11 +4737,6 @@ msgstr "Finestra actual" msgid "Partner category" msgstr "Categoria d'empresa" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "Selecciona exercici fiscal" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4625,12 +4762,12 @@ msgstr "Interface" #. module: base #: model:ir.ui.menu,name:base.menu_base_config #: view:ir.sequence:0 +#: view:res.company:0 msgid "Configuration" msgstr "Configuració" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Tipus de camp" @@ -4651,6 +4788,11 @@ msgstr "Codi de província" msgid "On delete" msgstr "En eliminar" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4677,22 +4819,34 @@ msgid "Cascade" msgstr "En cascada" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "Camp %d ha de ser una xifra" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Signatura" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" msgstr "No implementat" +#. 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4705,9 +4859,9 @@ msgid "Bank Account Type" msgstr "Tipus de compte de banc" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" -msgstr "Fitxer XML de prova" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4728,14 +4882,8 @@ msgstr "Domini" #. 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 "" -"Esculliu la interfície simplificada si està provant OpenERP per primera " -"vegada. Les opcions o camps menys utilitzats s'oculten automàticament. Més " -"tard podreu canviar això mitjançant el menú de Administració." +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 "Esculliu la interfície simplificada si està provant OpenERP per primera vegada. Les opcions o camps menys utilitzats s'oculten automàticament. Més tard podreu canviar això mitjançant el menú de Administració." #. module: base #: selection:ir.ui.menu,icon:0 @@ -4747,6 +4895,11 @@ msgstr "STOCK_PREFERENCES" msgid "Short description" msgstr "Descripció breu" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4757,6 +4910,11 @@ msgstr "Nom província" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "El vostre logo – Utilitzeu una mida de 450x150 píxels aprox." +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4768,10 +4926,11 @@ msgid "a5" msgstr "A5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Missatge" +#: 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 "Calendari" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4785,13 +4944,20 @@ msgid "ir.actions.report.xml" msgstr "ir.accions.informe.xml" #. module: base -#: view:res.users:0 -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" msgstr "" -"Tingueu en compte que haureu de sortir i tornar a registrar si canvieu la " -"vostra contrasenya." + +#. 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.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "Tingueu en compte que haureu de sortir i tornar a registrar si canvieu la vostra contrasenya." #. module: base #: field:res.partner,address:0 @@ -4807,15 +4973,20 @@ msgid "Graph" msgstr "Diagrama" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "Codi BIC/Swift" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" +msgstr "Última versió" #. module: base #: model:ir.model,name:base.model_ir_actions_server msgid "ir.actions.server" msgstr "ir.accions.server" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4832,11 +5003,10 @@ msgid "Module dependency" msgstr "Dependència del mòdul" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" -msgstr "" -"El mètode name_get (obtenir nom) no està implementat en aquest objecte!" +msgstr "El mètode name_get (obtenir nom) no està implementat en aquest objecte!" #. module: base #: model:ir.actions.wizard,name:base.wizard_upgrade @@ -4849,6 +5019,11 @@ msgstr "Aplica actualitzacions programades" msgid "STOCK_DND_MULTIPLE" msgstr "STOCK_DND_MULTIPLE" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4866,14 +5041,9 @@ msgid "Server Action" msgstr "Acció servidor" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "Fitxer creat" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Any: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -4885,9 +5055,9 @@ msgid "Action Name" msgstr "Nom d'acció" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "Progrés de la configuració" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 @@ -4896,10 +5066,14 @@ msgstr "Peu de pàgina 2 de l'informe" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "Email" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4915,6 +5089,11 @@ msgstr "Mode divisió" msgid "Localisation" msgstr "Ubicació" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Calcular contador" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4953,8 +5132,14 @@ msgid "Import a Translation File" msgstr "Importa un fitxer de traducció" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "Títols empresa" @@ -4966,9 +5151,9 @@ msgid "Untranslated terms" msgstr "Termes no traduïbles" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Obre finestra" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -4981,13 +5166,15 @@ msgid "Transition" msgstr "Transició" #. 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "IVA" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" -"Heu d'importar un fitxer .CSV codificat en UTF-8. Comproveu que la primera " -"línia del vostre fitxer és:" #. module: base #: field:res.partner.address,birthdate:0 @@ -5010,16 +5197,13 @@ msgid "res.partner.som" msgstr "res.empresa.som" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "Controls d'accés" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "Error" @@ -5036,6 +5220,12 @@ msgstr "Categories d'empreses" msgid "workflow.activity" msgstr "workflow.activitat" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Codi seqüència" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5118,8 +5308,15 @@ msgstr "res.company" msgid "Fields Mapping" msgstr "Mapa de camps" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Ref. taula" + #. 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 @@ -5143,9 +5340,9 @@ msgid "The VAT doesn't seem to be correct." msgstr "L'IVA no sembla ser correcte." #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Sr." +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5162,6 +5359,11 @@ msgstr "Configura vista simple" msgid "Start Upgrade" msgstr "Inicia actualització" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5184,7 +5386,6 @@ msgid "Arguments" msgstr "Arguments" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5229,13 +5430,12 @@ msgstr "res.config.vista" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Descripció" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "L'operació no és vàlida." @@ -5271,15 +5471,20 @@ msgid "ir.attachment" msgstr "ir.attachment" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "El valor \"%s\" pel camp \"%s\" no està en la selecció" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "Calcular contador" +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "XSL:RML automàtic" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" #. module: base #: view:workflow.workitem:0 @@ -5306,20 +5511,19 @@ msgstr "Exporta idioma" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "Client" #. module: base #: view:ir.rule.group:0 msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Sobre un mateix objecte, les regles múltiples s'associen utilitzan " -"l'operador OR" +msgstr "Sobre un mateix objecte, les regles múltiples s'associen utilitzan l'operador OR" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Mesos" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Permís per eliminar" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5344,14 +5548,9 @@ msgid "Mass Mailing" msgstr "Enviament massiu d'emails" #. 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 -#: view:res.country:0 -msgid "Country" -msgstr "País" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5374,9 +5573,9 @@ msgid "Unsubscribe Report" msgstr "No subscriu informe" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" -msgstr "Exercici fiscal" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" #. module: base #: constraint:res.partner.category:0 @@ -5394,9 +5593,10 @@ msgid "a4" msgstr "A4" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" -msgstr "Última versió" +#: 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_view:module.lang.install,start:0 @@ -5408,6 +5608,11 @@ msgstr "Instal·lació realitzada" msgid "STOCK_JUSTIFY_RIGHT" msgstr "STOCK_JUSTIFY_RIGHT" +#. 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" @@ -5427,12 +5632,12 @@ msgstr "Mes: %(month)s" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form msgid "Addresses" -msgstr "Adreces" +msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5443,12 +5648,15 @@ msgid "Sequence" msgstr "Seqüència" #. 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" +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" -"Número de vegades que la funció és executada,\n" + +#. 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 "Número de vegades que la funció és executada,\n" "un número negativo indica que serà executada sempre." #. module: base @@ -5482,8 +5690,8 @@ msgid "Cancel Install" msgstr "Cancel·la instal·lació" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "Verifiqueu que totes les línies tinguin %d columnes" @@ -5496,3 +5704,4 @@ msgstr "Importa idioma" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "Identificador XML" + diff --git a/bin/addons/base/i18n/cs_CZ.po b/bin/addons/base/i18n/cs_CZ.po index 9b23c456969..f5b852c3dc3 100644 --- a/bin/addons/base/i18n/cs_CZ.po +++ b/bin/addons/base/i18n/cs_CZ.po @@ -4,16 +4,16 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 4.3.0" -"Report-Msgid-Bugs-To: support@openerp.com" -"POT-Creation-Date: 2008-09-11 15:40:34+0000" -"PO-Revision-Date: 2008-09-11 15:40:34+0000" -"Last-Translator: <>" -"Language-Team: " -"MIME-Version: 1.0" -"Content-Type: text/plain; charset=UTF-8" -"Content-Transfer-Encoding: " -"Plural-Forms: " +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:54:49+0000\n" +"PO-Revision-Date: 2008-11-28 16:54:49+0000\n" +"Last-Translator: <>\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 #: model:ir.actions.act_window,name:base.ir_cron_act @@ -42,11 +42,6 @@ msgstr "Měsíčně(Monthly)" msgid "Unknown" msgstr "" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -msgstr "Klikni a popiš(Click and relate)" - #. 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." @@ -68,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -124,7 +124,7 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" @@ -156,6 +156,7 @@ msgstr "Workflow(Workflow)" #: 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 @@ -184,21 +185,21 @@ msgstr "" msgid "Categories of Modules" msgstr "Kategorie modulů" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "ir.default" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -230,9 +231,13 @@ msgid "Key" msgstr "Klíč(Key)" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "" +#: 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 "Funkce" #. module: base #: model:ir.actions.act_window,name:base.action_country @@ -245,6 +250,16 @@ msgstr "" msgid "STOCK_HELP" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Získat maximum(Get max)" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "" + #. module: base #: selection:res.request,priority:0 msgid "Normal" @@ -266,6 +281,12 @@ msgstr "Ref. uživatele(User Ref.)" msgid "Import new language" msgstr "Import nového jazyka" +#. 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 @@ -273,13 +294,6 @@ msgstr "Import nového jazyka" msgid "condition" msgstr "Podmínka(Condition)" -#. 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 "Přílohy" - #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -333,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -364,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "Typ hlášení(Report Type)" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -441,6 +460,7 @@ msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 #: view:ir.model:0 #: view:res.partner:0 @@ -453,6 +473,11 @@ msgstr "Poznámky" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -482,6 +507,11 @@ msgstr "Formulář(Form)" msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" @@ -658,9 +688,9 @@ msgid "View Ref." msgstr "Ref. náhledu(View Ref.)" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Table Ref.(Table Ref.)" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" #. module: base #: field:res.partner,ean13:0 @@ -713,9 +743,9 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Update Date(Update date)" +#: 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 @@ -728,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -744,11 +775,21 @@ msgstr "ir.ui.view_sc" msgid "Group" msgstr "Skupina" +#. 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Podpis" + #. module: base #: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 @@ -794,10 +835,10 @@ msgid "res.partner.event" msgstr "res.partner.event" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Stav" +#: wizard_field:server.action.create,init,type:0 +#: wizard_view:server.action.create,init:0 +msgid "Select Action Type" +msgstr "" #. module: base #, python-format @@ -812,6 +853,11 @@ msgstr "" 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." @@ -823,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -842,11 +888,6 @@ msgstr "" msgid "User ID" msgstr "ID uživatele" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - #. module: base #: view:ir.rule:0 msgid "Test" @@ -874,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "ID Ref.(ID Ref.)" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -898,11 +944,6 @@ msgstr "Omezení(Constraint)" msgid "Default" msgstr "Standartní" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Uživatelské nastavení" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -957,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "Historie požadavku(Request History)" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -970,9 +1016,9 @@ msgid "Partner Events" msgstr "Partnerovy akce" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1022,9 +1068,9 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Pole zpráv(Report Fields)" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "" #. module: base #: help:res.country,code:0 @@ -1089,8 +1135,9 @@ msgid "Parent Menu" msgstr "Nadřazené menu" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1116,13 +1163,9 @@ msgid "ir.report.custom" msgstr "ir.report.custom" #. 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 "Funkce" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "" #. module: base #: view:ir.model:0 @@ -1139,6 +1182,11 @@ msgstr "Prázdná SMS(Bulk SMS send)" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Pole zpráv(Report Fields)" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1150,9 +1198,13 @@ msgid "Pie Chart" msgstr "Koláčový graf(Pie chart)" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1170,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "Typ sekvence(Sequence type)" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1196,11 +1243,6 @@ msgstr "field child0(field child0)" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Název souboru dat(Data Filename)" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1257,11 +1299,10 @@ msgid "You try to install a module that depends on the module: %s.\nBut this mod 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 "Kalendář" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Vzkaz" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1285,14 +1326,15 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Struktura Společnosti" +#: 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 "Otevřít okno(Open a Window)" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Aktivita(Activity)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1344,15 +1386,19 @@ msgstr "Sekvence" msgid "Unknown position in inherited view %s !" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" msgstr "Datum spuštění(Trigger date)" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1415,11 +1461,22 @@ msgstr "" msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1438,6 +1495,7 @@ 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 @@ -1497,6 +1555,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1504,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Typ spínače(Trigger Type)" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1533,15 +1592,19 @@ msgstr "" msgid "Request Link" msgstr "Request Link(Request Link)" +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "" + #. module: base #: field:ir.module.module,url:0 msgid "URL" msgstr "" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1609,9 +1672,8 @@ msgid "The .rml path of the file or NULL if the content is in report_rml_content msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "Can not create the module file:\n %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1625,22 +1687,16 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "potomek" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" -#. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#, python-format -#: code:addons/base/ir/ir_model.py:0 -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - #. module: base #, python-format #: code:addons/base/ir/ir_model.py:0 @@ -1686,10 +1742,9 @@ msgid "Retailer" msgstr "Maloobchodník(Retailer)" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Kód sekvence(Sequence Code)" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1718,6 +1773,7 @@ msgid "State of Mind" msgstr "Názor(State of mind)" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1726,6 +1782,27 @@ msgstr "Názor(State of mind)" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Zdrojová aktivita(Source Activity)" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" @@ -1849,13 +1926,13 @@ msgid "Module Category" msgstr "Kategorie modulu" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1874,9 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "The module you are trying to remove depends on installed modules :\n %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1973,7 +2049,7 @@ msgid "Channel Name" msgstr "Název kanálu(Canal name)" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1982,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2003,22 +2074,21 @@ msgstr "Vyrovnání(Alignment)" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Aktivita(Activity)" - #. module: base #: model:ir.ui.menu,name:base.menu_administration msgid "Administration" @@ -2040,9 +2110,15 @@ msgid "This function will check for new modules in the 'addons' path and on modu msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "potomek" +#: 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 "Země" #. module: base #: field:res.currency,rate_ids:0 @@ -2140,9 +2216,9 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Data" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2186,11 +2262,6 @@ msgstr "" msgid "Module import" msgstr "Import modulu" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2224,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "Nadřazená společnost" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2249,11 +2325,6 @@ msgstr "Init date(Init date)" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2288,11 +2359,21 @@ msgstr "(rok)=" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + #. module: base #, python-format #: code:osv/fields.py:0 @@ -2354,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2362,6 +2442,7 @@ msgstr "" #: 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 @@ -2369,9 +2450,9 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Číst přístup" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2384,7 +2465,6 @@ msgid "terp-administration" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2429,7 +2509,7 @@ msgid "RML path" msgstr "Cesta k RML(RML path)" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2445,10 +2525,9 @@ msgid "Meta Datas" msgstr "Meta informace(Meta Datas)" #. 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 "" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Uživatelské nastavení" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2462,6 +2541,7 @@ msgid "Partners: " msgstr "" #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Jiná" @@ -2472,14 +2552,9 @@ msgid "Childs Field" msgstr "Childs Field(Childs Field)" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Název" #. module: base #, python-format @@ -2505,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2551,8 +2626,8 @@ msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2599,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2625,11 +2700,22 @@ msgstr "" msgid "Name" msgstr "Název(Name)" +#. 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.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 msgid "On Create" @@ -2676,13 +2762,8 @@ msgid "Regexp to search module on the repository webpage:\n" msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "DPH" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2731,14 +2812,13 @@ msgid "STOCK_COPY" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" 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" +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" msgstr "" #. module: base @@ -2792,6 +2872,11 @@ msgstr "Plánovaný příjem(Planned revenue)" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2835,11 +2920,6 @@ msgstr "ir.actions.wizard" msgid "Document" msgstr "Dokument" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2867,11 +2947,21 @@ 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 "" +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Číslo účtu" + #. 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 #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -3018,6 +3108,12 @@ msgstr "Hodnota Domény(Domain Value)" msgid "Help" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3068,6 +3164,11 @@ msgstr "" 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" @@ -3087,15 +3188,20 @@ msgid "Directory:" msgstr "Adresář:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Limit kreditu" +#: 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 @@ -3133,9 +3239,15 @@ msgid "Source" msgstr "Zdroj" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Zdrojová aktivita(Source Activity)" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3204,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3269,8 +3387,8 @@ msgid "Tree can only be used in tabular reports" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3297,15 +3415,14 @@ msgid "STOCK_CLEAR" msgstr "" #. module: base -#, python-format -#: code:addons/base/ir/ir_report_custom.py:0 -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Číst přístup" #. module: base #: selection:ir.report.custom,type:0 @@ -3323,9 +3440,15 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Požadovaná úloha(Role Required)" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" #. module: base #, python-format @@ -3372,6 +3495,12 @@ msgstr "res.request" msgid "Rules" msgstr "Pravidla" +#. 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 @@ -3385,14 +3514,13 @@ msgid "Type of view" msgstr "Typ náhledu(Type of view)" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3433,6 +3561,11 @@ msgstr "" msgid "Grant access to menu" msgstr "" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3477,11 +3610,17 @@ msgid "Number of modules updated" msgstr "Počet aktualizovaných modulů" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3495,6 +3634,7 @@ msgstr "Struktura funkcí" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3510,9 +3650,21 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "Trigger Expr ID(Trigger Expr ID)" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3536,14 +3688,26 @@ msgstr "Počet přidaných modulů" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." msgstr "" +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Požadovaná úloha(Role Required)" + #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3561,6 +3725,7 @@ 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 @@ -3578,8 +3743,8 @@ msgid "Active" msgstr "Aktivní(Active)" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -3611,20 +3776,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "Smazat právo" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Otevřít okno(Open a Window)" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Měsíců" #. module: base #: field:workflow.activity,signal_send:0 msgid "Signal (subflow.*)" msgstr "Signál (subflow.*)(Signal (subflow.*))" -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ABOUT" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_OUT" @@ -3643,15 +3808,15 @@ msgstr "Podkategorie" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3684,9 +3849,11 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "" +#: 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 "Přílohy" #. module: base #: field:ir.rule,field_id:0 @@ -3737,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3793,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3812,8 +3980,8 @@ msgid "Module:" msgstr "Modul:" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3850,13 +4018,9 @@ msgid "The selected language has been successfully installed. You must change th msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Název" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3878,6 +4042,11 @@ msgstr "" msgid "Child Field" msgstr "Následující pole(CHild field)" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "" + #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" @@ -3888,6 +4057,11 @@ msgstr "" msgid "STOCK_EDIT" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3915,9 +4089,10 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Získat maximum(Get max)" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -3991,8 +4166,8 @@ msgid "Child ids" msgstr "Dceřinné ID" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -4002,9 +4177,9 @@ msgid "Resource" msgstr "Zdroj" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Update Date(Update date)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4126,8 +4301,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4157,9 +4333,9 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "This wizard will create an XML file for Vat details and total invoiced amounts per partner." -msgstr "" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Limit kreditu" #. module: base #: field:ir.default,value:0 @@ -4193,9 +4369,14 @@ msgid "Category" msgstr "Kategorie" #. 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Stav" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4204,9 +4385,9 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Číslo účtu" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4214,6 +4395,7 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" @@ -4256,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4273,8 +4455,8 @@ msgstr "" #. module: base #, python-format -#: code:report/custom.py:0 -msgid "The sum of the data (2nd field) is null.\nWe can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4286,11 +4468,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4329,7 +4506,6 @@ msgid "Icon" msgstr "Ikona" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4341,11 +4517,6 @@ msgstr "" msgid "Repeat missed" msgstr "Zopakovat vsechny zmeškané(Repeat all missed)" -#. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - #. module: base #, python-format #: code:osv/orm.py:0 @@ -4410,6 +4581,11 @@ msgstr "" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4423,8 +4599,8 @@ msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4497,6 +4673,11 @@ msgstr "" msgid "Custom Report" 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" @@ -4531,13 +4712,14 @@ msgstr "Tišťeno:" #. module: base #, python-format -#: code:osv/fields.py:0 -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4550,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4586,7 +4763,6 @@ msgstr "Konfigurace" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Typ pole" @@ -4607,6 +4783,11 @@ msgstr "Kód státu" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4639,9 +4820,11 @@ msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Podpis" +#: 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 #, python-format @@ -4671,8 +4854,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4722,6 +4905,11 @@ msgstr "Název státu" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4733,10 +4921,11 @@ msgid "a5" msgstr "a5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Vzkaz" +#: 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 "Kalendář" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4749,6 +4938,12 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "ir.actions.report.xml" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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." @@ -4841,15 +5036,10 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Rok: %(rok/y)" - #. module: base #: field:ir.actions.act_window_close,name:0 #: field:ir.actions.actions,name:0 @@ -4860,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4871,10 +5061,14 @@ msgstr "Patička výpisu 1" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4933,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4946,13 +5146,13 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" msgstr "" #. module: base @@ -4961,9 +5161,15 @@ msgid "Transition" msgstr "Transitions(Transitions)" #. 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:" -msgstr "Pro import vyberte .CSV soubor" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "DPH" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" +msgstr "" #. module: base #: field:res.partner.address,birthdate:0 @@ -4987,6 +5193,8 @@ msgstr "res.partner.som" #. module: base #, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 @@ -5007,6 +5215,12 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Kód sekvence(Sequence Code)" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5089,8 +5303,15 @@ msgstr "res.company" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Table Ref.(Table Ref.)" + #. 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 @@ -5114,8 +5335,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5160,7 +5381,6 @@ msgid "Arguments" msgstr "Argumenty" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5205,7 +5425,6 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Popis" @@ -5257,6 +5476,11 @@ msgstr "" msgid "Automatic XSL:RML" msgstr "Automatic XSL:RML(Automatic XSL:RML)" +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5292,9 +5516,9 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Měsíců" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Smazat právo" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5319,14 +5543,9 @@ msgid "Mass Mailing" msgstr "Hromadné zasílání mailů" #. 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 -#: view:res.country:0 -msgid "Country" -msgstr "Země" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5349,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "Vzít zprávu zpět(Unsubscribe Report)" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5411,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5423,6 +5642,11 @@ msgstr "" msgid "Sequence" 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" diff --git a/bin/addons/base/i18n/de_DE.po b/bin/addons/base/i18n/de_DE.po index 1afe92cf945..53dc7c40aba 100644 --- a/bin/addons/base/i18n/de_DE.po +++ b/bin/addons/base/i18n/de_DE.po @@ -4,16 +4,16 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 4.3.0" -"Report-Msgid-Bugs-To: support@openerp.com" -"POT-Creation-Date: 2008-09-11 15:38:50+0000" -"PO-Revision-Date: 2008-09-11 15:38:50+0000" -"Last-Translator: <>" -"Language-Team: " -"MIME-Version: 1.0" -"Content-Type: text/plain; charset=UTF-8" -"Content-Transfer-Encoding: " -"Plural-Forms: " +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:58:20+0000\n" +"PO-Revision-Date: 2008-11-28 16:58:20+0000\n" +"Last-Translator: <>\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 #: model:ir.actions.act_window,name:base.ir_cron_act @@ -42,11 +42,6 @@ msgstr "" msgid "Unknown" msgstr "" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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." @@ -68,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -124,7 +124,7 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" @@ -156,6 +156,7 @@ msgstr "Arbeitsablauf" #: 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 @@ -184,21 +185,21 @@ msgstr "" msgid "Categories of Modules" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -230,8 +231,12 @@ msgid "Key" msgstr "Schlüssel" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" +#: 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 @@ -245,6 +250,16 @@ msgstr "" 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" @@ -266,6 +281,12 @@ msgstr "User Ref." 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 @@ -273,13 +294,6 @@ msgstr "" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -333,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -364,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "Report Type" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -441,6 +460,7 @@ msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 #: view:ir.model:0 #: view:res.partner:0 @@ -453,6 +473,11 @@ msgstr "Notizen" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -482,6 +507,11 @@ msgstr "" msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" @@ -658,9 +688,9 @@ msgid "View Ref." msgstr "Ansicht Ref." #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Table Ref." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "" #. module: base #: field:res.partner,ean13:0 @@ -713,8 +743,8 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" msgstr "" #. module: base @@ -728,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -744,11 +775,21 @@ msgstr "" msgid "Group" 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "" + #. module: base #: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 @@ -794,10 +835,10 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Stand" +#: wizard_field:server.action.create,init,type:0 +#: wizard_view:server.action.create,init:0 +msgid "Select Action Type" +msgstr "" #. module: base #, python-format @@ -812,6 +853,11 @@ msgstr "" 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." @@ -823,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -842,11 +888,6 @@ msgstr "" msgid "User ID" msgstr "Benutzer ID" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - #. module: base #: view:ir.rule:0 msgid "Test" @@ -874,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "ID Ref." +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -898,11 +944,6 @@ msgstr "" msgid "Default" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -957,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "Anforderungsgeschichte" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -970,8 +1016,8 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1022,8 +1068,8 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" msgstr "" #. module: base @@ -1089,8 +1135,9 @@ msgid "Parent Menu" msgstr "Obermenü" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1116,12 +1163,8 @@ msgid "ir.report.custom" 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" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" msgstr "" #. module: base @@ -1139,6 +1182,11 @@ msgstr "" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1150,9 +1198,13 @@ msgid "Pie Chart" msgstr "" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1170,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1196,11 +1243,6 @@ msgstr "" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Dateiname" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1257,10 +1299,9 @@ msgid "You try to install a module that depends on the module: %s.\nBut this mod 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" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" msgstr "" #. module: base @@ -1285,13 +1326,14 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Mutterfirma/Töchter" +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Frl." #. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" msgstr "" #. module: base @@ -1344,15 +1386,19 @@ msgstr "" msgid "Unknown position in inherited view %s !" 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 -#, python-format -#: code:osv/orm.py:0 -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1415,11 +1461,22 @@ msgstr "" msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1438,6 +1495,7 @@ 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 @@ -1497,6 +1555,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1504,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Triggerart" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1533,15 +1592,19 @@ msgstr "" 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 "" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1609,9 +1672,8 @@ msgid "The .rml path of the file or NULL if the content is in report_rml_content msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "Can not create the module file:\n %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1625,22 +1687,16 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" -#. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#, python-format -#: code:addons/base/ir/ir_model.py:0 -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - #. module: base #, python-format #: code:addons/base/ir/ir_model.py:0 @@ -1686,9 +1742,8 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" msgstr "" #. module: base @@ -1718,6 +1773,7 @@ msgid "State of Mind" msgstr "Kundenzufriedenheit" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1726,6 +1782,27 @@ msgstr "Kundenzufriedenheit" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Source Activität" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" @@ -1849,13 +1926,13 @@ msgid "Module Category" msgstr "" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1874,9 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "The module you are trying to remove depends on installed modules :\n %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1973,7 +2049,7 @@ msgid "Channel Name" msgstr "Kanalname" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1982,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2003,20 +2074,19 @@ msgstr "Ausrichtung" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2040,8 +2110,14 @@ msgid "This function will check for new modules in the 'addons' path and on modu msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" +#: 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 @@ -2140,9 +2216,9 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Daten" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2186,11 +2262,6 @@ msgstr "" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2224,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2249,11 +2325,6 @@ msgstr "" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2288,11 +2359,21 @@ msgstr "" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + #. module: base #, python-format #: code:osv/fields.py:0 @@ -2354,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2362,6 +2442,7 @@ msgstr "" #: 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 @@ -2369,8 +2450,8 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -2384,7 +2465,6 @@ msgid "terp-administration" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2429,7 +2509,7 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2445,9 +2525,8 @@ msgid "Meta Datas" msgstr "Metadaten" #. 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" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" msgstr "" #. module: base @@ -2462,6 +2541,7 @@ msgid "Partners: " msgstr "" #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "" @@ -2472,14 +2552,9 @@ msgid "Childs Field" msgstr "Childs Field" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Rollenname" #. module: base #, python-format @@ -2505,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2551,8 +2626,8 @@ msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2599,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2625,11 +2700,22 @@ msgstr "" msgid "Name" msgstr "XML-Report Name" +#. 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.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 msgid "On Create" @@ -2676,13 +2762,8 @@ msgid "Regexp to search module on the repository webpage:\n" msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "UstID" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2731,14 +2812,13 @@ msgid "STOCK_COPY" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" 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" +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" msgstr "" #. module: base @@ -2792,6 +2872,11 @@ msgstr "Geplante Einnahmen" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2835,11 +2920,6 @@ msgstr "" msgid "Document" msgstr "Dokument" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2867,11 +2947,21 @@ 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 "" +#. 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 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" @@ -3018,6 +3108,12 @@ msgstr "Wertebereich" msgid "Help" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3068,6 +3164,11 @@ msgstr "" 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" @@ -3087,15 +3188,20 @@ msgid "Directory:" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Kreditlinie" +#: 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 @@ -3133,9 +3239,15 @@ msgid "Source" msgstr "Source" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Source Activität" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3204,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3269,8 +3387,8 @@ msgid "Tree can only be used in tabular reports" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3297,14 +3415,13 @@ msgid "STOCK_CLEAR" msgstr "" #. module: base -#, python-format -#: code:addons/base/ir/ir_report_custom.py:0 -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base @@ -3323,9 +3440,15 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Erfolderliche Rolle" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" #. module: base #, python-format @@ -3372,6 +3495,12 @@ msgstr "" 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 @@ -3385,14 +3514,13 @@ msgid "Type of view" msgstr "Ansichtsart" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3433,6 +3561,11 @@ msgstr "" msgid "Grant access to menu" msgstr "" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3477,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3495,6 +3634,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3510,9 +3650,21 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3536,14 +3688,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." msgstr "" +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Erfolderliche Rolle" + #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3561,6 +3725,7 @@ 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 @@ -3578,9 +3743,9 @@ msgid "Active" msgstr "Aktiv" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Frl." +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3611,8 +3776,13 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" msgstr "" #. module: base @@ -3620,11 +3790,6 @@ msgstr "" 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" @@ -3643,15 +3808,15 @@ msgstr "Unterkategorie" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3684,8 +3849,10 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" +#: 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 @@ -3737,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3793,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3812,8 +3980,8 @@ msgid "Module:" msgstr "" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3850,13 +4018,9 @@ msgid "The selected language has been successfully installed. You must change th msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Rollenname" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3878,6 +4042,11 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Herr" + #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" @@ -3888,6 +4057,11 @@ msgstr "" msgid "STOCK_EDIT" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3915,8 +4089,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3991,8 +4166,8 @@ msgid "Child ids" msgstr "Unter~" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -4002,8 +4177,8 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" msgstr "" #. module: base @@ -4126,8 +4301,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4157,9 +4333,9 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "This wizard will create an XML file for Vat details and total invoiced amounts per partner." -msgstr "" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Kreditlinie" #. module: base #: field:ir.default,value:0 @@ -4193,9 +4369,14 @@ msgid "Category" 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Stand" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4204,8 +4385,8 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" +#: selection:ir.actions.todo,type:0 +msgid "Service" msgstr "" #. module: base @@ -4214,6 +4395,7 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" @@ -4256,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4273,8 +4455,8 @@ msgstr "" #. module: base #, python-format -#: code:report/custom.py:0 -msgid "The sum of the data (2nd field) is null.\nWe can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4286,11 +4468,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4329,7 +4506,6 @@ msgid "Icon" msgstr "" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4341,11 +4517,6 @@ msgstr "" msgid "Repeat missed" msgstr "" -#. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - #. module: base #, python-format #: code:osv/orm.py:0 @@ -4410,6 +4581,11 @@ msgstr "" msgid "=" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4423,8 +4599,8 @@ msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4497,6 +4673,11 @@ msgstr "" msgid "Custom Report" 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" @@ -4531,13 +4712,14 @@ msgstr "" #. module: base #, python-format -#: code:osv/fields.py:0 -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4550,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4586,7 +4763,6 @@ msgstr "Konfiguration" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4607,6 +4783,11 @@ msgstr "Staatscode" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4639,8 +4820,10 @@ msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" +#: 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 @@ -4671,8 +4854,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4722,6 +4905,11 @@ msgstr "Staat" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4733,9 +4921,10 @@ msgid "a5" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" +#: 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 @@ -4749,6 +4938,12 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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." @@ -4841,13 +5036,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4860,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4871,10 +5061,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4933,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4946,13 +5146,13 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" msgstr "" #. module: base @@ -4961,8 +5161,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "UstID" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4987,6 +5193,8 @@ msgstr "" #. module: base #, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 @@ -5007,6 +5215,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5089,8 +5303,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Table Ref." + #. 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 @@ -5114,9 +5335,9 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Herr" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5160,7 +5381,6 @@ msgid "Arguments" msgstr "Argumente" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5205,7 +5425,6 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Beschreibung" @@ -5257,6 +5476,11 @@ msgstr "" msgid "Automatic XSL:RML" msgstr "Automatic XSL:RML" +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5292,8 +5516,8 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" msgstr "" #. module: base @@ -5319,13 +5543,8 @@ 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5349,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5411,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5423,6 +5642,11 @@ msgstr "" msgid "Sequence" 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" diff --git a/bin/addons/base/i18n/es_AR.po b/bin/addons/base/i18n/es_AR.po index 3c03e1f12f5..5459e70ba1c 100644 --- a/bin/addons/base/i18n/es_AR.po +++ b/bin/addons/base/i18n/es_AR.po @@ -4,16 +4,16 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 4.3.0" -"Report-Msgid-Bugs-To: support@openerp.com" -"POT-Creation-Date: 2008-09-11 15:44:00+0000" -"PO-Revision-Date: 2008-09-11 15:44:00+0000" -"Last-Translator: <>" -"Language-Team: " -"MIME-Version: 1.0" -"Content-Type: text/plain; charset=UTF-8" -"Content-Transfer-Encoding: " -"Plural-Forms: " +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:06:17+0000\n" +"PO-Revision-Date: 2008-11-28 17:06:17+0000\n" +"Last-Translator: <>\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 #: model:ir.actions.act_window,name:base.ir_cron_act @@ -42,11 +42,6 @@ msgstr "Mensual" msgid "Unknown" msgstr "" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -msgstr "Cliente y Relación" - #. 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." @@ -68,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -124,7 +124,7 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" @@ -156,6 +156,7 @@ msgstr "Workflow" #: 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 @@ -184,21 +185,21 @@ msgstr "" msgid "Categories of Modules" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "ir.default" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -230,8 +231,12 @@ msgid "Key" msgstr "Código" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" +#: 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 @@ -245,6 +250,16 @@ msgstr "" msgid "STOCK_HELP" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Obtener Máximo" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "" + #. module: base #: selection:res.request,priority:0 msgid "Normal" @@ -266,6 +281,12 @@ msgstr "Referencia Usuario" 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 @@ -273,13 +294,6 @@ msgstr "" msgid "condition" msgstr "condición" -#. 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -333,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -364,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "Tipo de Reporte" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -441,6 +460,7 @@ msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 #: view:ir.model:0 #: view:res.partner:0 @@ -453,6 +473,11 @@ msgstr "Notas" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -482,6 +507,11 @@ msgstr "Formulario" msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" @@ -658,9 +688,9 @@ msgid "View Ref." msgstr "Referencia Vista" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Referencia Tabla" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" #. module: base #: field:res.partner,ean13:0 @@ -713,9 +743,9 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Fecha de actualización" +#: 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 @@ -728,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -744,11 +775,21 @@ msgstr "ir.ui.view_sc" msgid "Group" msgstr "Grupo" +#. 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Firma" + #. module: base #: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 @@ -794,10 +835,10 @@ msgid "res.partner.event" msgstr "res.partner.event" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Estado:" +#: wizard_field:server.action.create,init,type:0 +#: wizard_view:server.action.create,init:0 +msgid "Select Action Type" +msgstr "" #. module: base #, python-format @@ -812,6 +853,11 @@ msgstr "" 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." @@ -823,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -842,11 +888,6 @@ msgstr "" msgid "User ID" msgstr "ID de Usuario" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - #. module: base #: view:ir.rule:0 msgid "Test" @@ -874,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "Referencia ID" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -898,11 +944,6 @@ msgstr "Restricción" msgid "Default" msgstr "Predeterminado" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -957,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "Historial de Mensajes" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -970,9 +1016,9 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1022,9 +1068,9 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Campos del Reporte" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "" #. module: base #: help:res.country,code:0 @@ -1089,8 +1135,9 @@ msgid "Parent Menu" msgstr "Menú \"padre\"" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1116,12 +1163,8 @@ msgid "ir.report.custom" msgstr "ir.report.custom" #. 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" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" msgstr "" #. module: base @@ -1139,6 +1182,11 @@ msgstr "Envío masivo de SMS" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Campos del Reporte" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1150,9 +1198,13 @@ msgid "Pie Chart" msgstr "Gráfico circular" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1170,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "Tipo de Secuencia" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1196,11 +1243,6 @@ msgstr "campo hijo0" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Archivo de datos" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1257,11 +1299,10 @@ msgid "You try to install a module that depends on the module: %s.\nBut this mod 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 "" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Mensaje" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1285,14 +1326,15 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Estructura de la Empresa" +#: 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 "Abrir una ventana" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Actividad" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1344,15 +1386,19 @@ msgstr "" msgid "Unknown position in inherited view %s !" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" msgstr "Fecha de activación" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1415,11 +1461,22 @@ msgstr "" msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1438,6 +1495,7 @@ 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 @@ -1497,6 +1555,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1504,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Tipo de disparador" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1533,15 +1592,19 @@ msgstr "" msgid "Request Link" msgstr "Vinculaciones de Mensaje" +#. 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 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1609,9 +1672,8 @@ msgid "The .rml path of the file or NULL if the content is in report_rml_content msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "Can not create the module file:\n %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1625,22 +1687,16 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" -#. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#, python-format -#: code:addons/base/ir/ir_model.py:0 -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - #. module: base #, python-format #: code:addons/base/ir/ir_model.py:0 @@ -1686,10 +1742,9 @@ msgid "Retailer" msgstr "Proveedor" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Código de Secuencia" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1718,6 +1773,7 @@ msgid "State of Mind" msgstr "Estado de Ánimo" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1726,6 +1782,27 @@ msgstr "Estado de Ánimo" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Actividad Origen" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" @@ -1849,13 +1926,13 @@ msgid "Module Category" msgstr "Categoría de Módulo" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1874,9 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "The module you are trying to remove depends on installed modules :\n %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1973,7 +2049,7 @@ msgid "Channel Name" msgstr "Nombre del Canal" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1982,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2003,22 +2074,21 @@ msgstr "Alineación" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Actividad" - #. module: base #: model:ir.ui.menu,name:base.menu_administration msgid "Administration" @@ -2040,8 +2110,14 @@ msgid "This function will check for new modules in the 'addons' path and on modu msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" +#: 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 @@ -2140,9 +2216,9 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Datos" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2186,11 +2262,6 @@ msgstr "" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2224,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "Empresa \"padre\"" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2249,11 +2325,6 @@ msgstr "Fecha de inicio" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2288,11 +2359,21 @@ msgstr "(año)=" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + #. module: base #, python-format #: code:osv/fields.py:0 @@ -2354,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2362,6 +2442,7 @@ msgstr "" #: 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 @@ -2369,9 +2450,9 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Acceso de Lectura" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2384,7 +2465,6 @@ msgid "terp-administration" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2429,7 +2509,7 @@ msgid "RML path" msgstr "Ruta RML" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2445,9 +2525,8 @@ msgid "Meta Datas" msgstr "Meta-información" #. 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" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" msgstr "" #. module: base @@ -2462,6 +2541,7 @@ msgid "Partners: " msgstr "" #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Otros" @@ -2472,14 +2552,9 @@ msgid "Childs Field" msgstr "Campo \"hijo\"" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nombre del Rol" #. module: base #, python-format @@ -2505,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2551,8 +2626,8 @@ msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2599,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2625,11 +2700,22 @@ msgstr "" msgid "Name" msgstr "Nombre" +#. 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.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 msgid "On Create" @@ -2676,13 +2762,8 @@ msgid "Regexp to search module on the repository webpage:\n" msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "IVA" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2731,14 +2812,13 @@ msgid "STOCK_COPY" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" 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" +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" msgstr "" #. module: base @@ -2792,6 +2872,11 @@ msgstr "Ingresos planeados" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2835,11 +2920,6 @@ msgstr "ir.actions.wizard" msgid "Document" msgstr "Documento" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2867,11 +2947,21 @@ 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 "" +#. 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 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" @@ -3018,6 +3108,12 @@ msgstr "Valor del Dominio" msgid "Help" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3068,6 +3164,11 @@ msgstr "" 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" @@ -3087,15 +3188,20 @@ msgid "Directory:" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Límite de Crédito" +#: 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 @@ -3133,9 +3239,15 @@ msgid "Source" msgstr "Origen" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Actividad Origen" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3204,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3269,8 +3387,8 @@ msgid "Tree can only be used in tabular reports" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3297,15 +3415,14 @@ msgid "STOCK_CLEAR" msgstr "" #. module: base -#, python-format -#: code:addons/base/ir/ir_report_custom.py:0 -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Acceso de Lectura" #. module: base #: selection:ir.report.custom,type:0 @@ -3323,9 +3440,15 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Rol requerido" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" #. module: base #, python-format @@ -3372,6 +3495,12 @@ msgstr "res.request" 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 @@ -3385,14 +3514,13 @@ msgid "Type of view" msgstr "Tipo de Vista" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3433,6 +3561,11 @@ msgstr "" msgid "Grant access to menu" msgstr "" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3477,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3495,6 +3634,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3510,9 +3650,21 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "ID de disparador" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3536,14 +3688,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." msgstr "" +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Rol requerido" + #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3561,6 +3725,7 @@ 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 @@ -3578,8 +3743,8 @@ msgid "Active" msgstr "Activo" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -3611,20 +3776,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Abrir una ventana" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Meses" #. module: base #: field:workflow.activity,signal_send:0 msgid "Signal (subflow.*)" msgstr "Señal (subflow.*)" -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ABOUT" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_OUT" @@ -3643,15 +3808,15 @@ msgstr "Categoría \"hija\"" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3684,8 +3849,10 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" +#: 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 @@ -3737,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3793,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3812,8 +3980,8 @@ msgid "Module:" msgstr "" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3850,13 +4018,9 @@ msgid "The selected language has been successfully installed. You must change th msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nombre del Rol" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3878,6 +4042,11 @@ msgstr "" msgid "Child Field" msgstr "Campo \"hijo\"" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "" + #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" @@ -3888,6 +4057,11 @@ msgstr "" msgid "STOCK_EDIT" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3915,9 +4089,10 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Obtener Máximo" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -3991,8 +4166,8 @@ msgid "Child ids" msgstr "IDs \"hijas\"" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -4002,9 +4177,9 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Fecha de actualización" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4126,8 +4301,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4157,9 +4333,9 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "This wizard will create an XML file for Vat details and total invoiced amounts per partner." -msgstr "" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Límite de Crédito" #. module: base #: field:ir.default,value:0 @@ -4193,9 +4369,14 @@ msgid "Category" msgstr "Categoría" #. 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Estado:" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4204,8 +4385,8 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" +#: selection:ir.actions.todo,type:0 +msgid "Service" msgstr "" #. module: base @@ -4214,6 +4395,7 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" @@ -4256,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4273,8 +4455,8 @@ msgstr "" #. module: base #, python-format -#: code:report/custom.py:0 -msgid "The sum of the data (2nd field) is null.\nWe can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4286,11 +4468,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4329,7 +4506,6 @@ msgid "Icon" msgstr "Icono" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4341,11 +4517,6 @@ msgstr "" msgid "Repeat missed" msgstr "Repetir todas las llamadas perdidas" -#. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - #. module: base #, python-format #: code:osv/orm.py:0 @@ -4410,6 +4581,11 @@ msgstr "" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4423,8 +4599,8 @@ msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4497,6 +4673,11 @@ msgstr "" msgid "Custom Report" 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" @@ -4531,13 +4712,14 @@ msgstr "" #. module: base #, python-format -#: code:osv/fields.py:0 -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4550,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4586,7 +4763,6 @@ msgstr "" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Tipo de Campo" @@ -4607,6 +4783,11 @@ msgstr "Código de Provincia" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4639,9 +4820,11 @@ msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Firma" +#: 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 #, python-format @@ -4671,8 +4854,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4722,6 +4905,11 @@ msgstr "Nombre de Provincia" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4733,10 +4921,11 @@ msgid "a5" msgstr "a5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Mensaje" +#: 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 #: selection:ir.ui.menu,icon:0 @@ -4749,6 +4938,12 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "ir.actions.report.xml" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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." @@ -4841,15 +5036,10 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Año: %(año)s" - #. module: base #: field:ir.actions.act_window_close,name:0 #: field:ir.actions.actions,name:0 @@ -4860,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4871,10 +5061,14 @@ msgstr "Pie de Página del Reporte 2" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4933,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4946,13 +5146,13 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" msgstr "" #. module: base @@ -4961,8 +5161,14 @@ msgid "Transition" msgstr "Transición" #. 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "IVA" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4987,6 +5193,8 @@ msgstr "res.partner.som" #. module: base #, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 @@ -5007,6 +5215,12 @@ msgstr "" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Código de Secuencia" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5089,8 +5303,15 @@ msgstr "res.company" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Referencia Tabla" + #. 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 @@ -5114,8 +5335,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5160,7 +5381,6 @@ msgid "Arguments" msgstr "Argumentos" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5205,7 +5425,6 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Descripción" @@ -5257,6 +5476,11 @@ msgstr "" msgid "Automatic XSL:RML" msgstr "XSL:RML automático" +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5292,9 +5516,9 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Meses" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5319,13 +5543,8 @@ msgid "Mass Mailing" msgstr "Envío de emails masivos" #. 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5349,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "Desuscribir Reporte" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5411,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5423,6 +5642,11 @@ msgstr "" msgid "Sequence" 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" diff --git a/bin/addons/base/i18n/es_ES.po b/bin/addons/base/i18n/es_ES.po index 8654e90fb2d..a58d1dc3762 100644 --- a/bin/addons/base/i18n/es_ES.po +++ b/bin/addons/base/i18n/es_ES.po @@ -1,21 +1,19 @@ -# Spanish translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-10-21 16:20+0000\n" -"Last-Translator: Marcelo Zunino \n" -"Language-Team: Spanish \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:07:08+0000\n" +"PO-Revision-Date: 2008-11-28 17:07:08+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,19 +42,10 @@ msgstr "Mensual" msgid "Unknown" msgstr "Desconocido" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -msgstr "Clica y relaciona" - #. 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 "" -"Este asistente detectará nuevos términos en la aplicación para que pueda " -"actualizarlos manualmente." +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "Este asistente detectará nuevos términos en la aplicación para que pueda actualizarlos manualmente." #. module: base #: field:workflow.activity,out_transitions:0 @@ -74,6 +63,11 @@ msgstr "STOCK_SAVE" msgid "Change My Preferences" msgstr "Cambiar mis preferencias" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Abrir ventana" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -114,6 +108,7 @@ msgstr "STOCK_SORT_ASCENDING" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Reglas de acceso" @@ -129,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "STOCK_MEDIA_FORWARD" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Omitido" +msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "No puede crear este tipo de documento! (%s)" @@ -161,6 +156,7 @@ msgstr "Flujo de trabajo" #: 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 @@ -178,26 +174,31 @@ msgstr "Flujo de trabajo" msgid "Object" msgstr "Objeto" +#. 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 "Categorías de módulos" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "Añadir nuevo usuario" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "ir.default" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "Sin comenzar" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -230,9 +231,13 @@ msgid "Key" msgstr "Clave" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "Exportación" +#: 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 "Roles" #. module: base #: model:ir.actions.act_window,name:base.action_country @@ -245,6 +250,16 @@ msgstr "Países" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Conseguir máximo" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "" + #. module: base #: selection:res.request,priority:0 msgid "Normal" @@ -266,6 +281,12 @@ msgstr "Ref. usuario" msgid "Import new language" msgstr "Importar nuevo idioma" +#. 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 @@ -273,13 +294,6 @@ msgstr "Importar nuevo idioma" msgid "condition" msgstr "condición" -#. 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 "Adjuntos" - #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -296,8 +310,8 @@ msgid "Suffix" msgstr "Sufijo" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "¡El método unlink (eliminar) no está implementado en este objeto!" @@ -333,9 +347,9 @@ msgid "Activites" msgstr "Actividades" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Texto" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -364,6 +378,11 @@ msgstr "Transiciones" msgid "ir.ui.view.custom" msgstr "ir.ui.vista.custom" +#. 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "Tipo de informe" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -435,13 +454,15 @@ msgid "Other proprietary" msgstr "Otro propietario" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" +msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Notas" @@ -452,6 +473,11 @@ msgstr "Notas" msgid "All terms" msgstr "Todos los términos" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -476,16 +502,26 @@ msgid "Form" msgstr "Formulario" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "No se ha podido definir la columna %s. ¡Palabra reservada!" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "Actividad destino" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -497,12 +533,10 @@ msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" -msgstr "" -"¡El método name_search (buscar por el nombre) no está implementado en este " -"objeto!" +msgstr "¡El método name_search (buscar por el nombre) no está implementado en este objeto!" #. module: base #: selection:res.request,state:0 @@ -525,8 +559,8 @@ msgid "Web:" msgstr "Web:" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "nuevo" @@ -591,14 +625,10 @@ msgid "Contact Name" msgstr "Nombre" #. 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 "" -"Guarde este documento en un archivo %s y edítelo con un programa específico " -"o un editor de texto. La codificación del archivo es UTF-8." +#: 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 "Guarde este documento en un archivo %s y edítelo con un programa específico o un editor de texto. La codificación del archivo es UTF-8." #. module: base #: view:ir.module.module:0 @@ -611,30 +641,8 @@ msgid "Repositories" msgstr "Bibliotecas" #. 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" -"Las traducciones oficiales para todos los módulos de OpenERP/OpenObjects son " -"gestionadas mediante launchpad. Utilizamos su interfaz en línea para " -"sincronizar todos los esfuerzos de traducción. Para mejorar algunos términos " -"de las traducciones oficiales de OpenERP, debería modificar los términos " -"directamente en la interfaz de launchpad. Si ha creado un archivo con las " -"traducciones de su propio módulo, también puede publicar toda su traducción " -"a la vez. Para conseguirlo debe: Si ha creado un nuevo módulo debe enviar el " -"archivo .pot generado por correo electrónico al grupo de traducción: ... " -"Ellos lo revisarán y lo integrarán." - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "¡La contraseña no coincide!" @@ -645,11 +653,10 @@ msgid "Contact" msgstr "Contacto" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" -"Esta url '%s' debe apuntar a un archivo html con enlaces a módulos zip" +msgstr "Esta url '%s' debe apuntar a un archivo html con enlaces a módulos zip" #. module: base #: model:ir.ui.menu,name:base.next_id_15 @@ -670,8 +677,8 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "Excepción de concurrencia" @@ -681,9 +688,9 @@ msgid "View Ref." msgstr "Ref. vista" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Ref. tabla" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" #. module: base #: field:res.partner,ean13:0 @@ -710,14 +717,18 @@ msgstr "Cabecera del informe" #. module: base #: view:ir.rule:0 msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" -"Si no fuerza el dominio, se utilizará la configuración de dominio simple" +msgstr "Si no fuerza el dominio, se utilizará la configuración de dominio simple" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "S.A." +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -732,9 +743,9 @@ msgid "Default limit for the list view" msgstr "Límite por defecto para la vista de lista" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Fecha revisión" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.objeto.lineas" #. module: base #: field:ir.actions.act_window,src_model:0 @@ -747,8 +758,9 @@ msgid "Type fields" msgstr "Campos de tipo" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Configurar pasos de los asistentes" @@ -763,12 +775,23 @@ msgstr "ir.ui.view_sc" msgid "Group" msgstr "Grupo" +#. 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Firma" + +#. module: base +#: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 msgid "SMS" msgstr "SMS (mensaje de texto)" @@ -798,8 +821,7 @@ msgstr "Módulos no instalados" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "El campo activo le permite ocultar la categoría sin eliminarla." #. module: base @@ -813,22 +835,16 @@ msgid "res.partner.event" msgstr "res.empresa.evento" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Estado" +#: 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 "" -"Guarde este documento como un archivo .CSV y ábralo con su programa favorito " -"de hojas de cálculo. La codificación del archivo es UTF-8. Debe traducir la " -"última columna antes de importarlo de nuevo." +#: 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 "Guarde este documento como un archivo .CSV y ábralo con su programa favorito de hojas de cálculo. La codificación del archivo es UTF-8. Debe traducir la última columna antes de importarlo de nuevo." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -838,14 +854,14 @@ msgid "Currencies" msgstr "Monedas" #. 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." +#: selection:ir.actions.todo,type:0 +msgid "Configure" msgstr "" -"Si el idioma seleccionado está almacenado en el sistema, todos los " -"documentos relacionados con esta empresa serán mostrados en este idioma. Si " -"no, serán mostrados en inglés." + +#. 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 "Si el idioma seleccionado está almacenado en el sistema, todos los documentos relacionados con esta empresa serán mostrados en este idioma. Si no, serán mostrados en inglés." #. module: base #: selection:ir.ui.menu,icon:0 @@ -853,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Siguiente asistente" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "Objeto personalizado" #. module: base #: selection:ir.model.fields,select_level:0 @@ -872,25 +888,16 @@ msgstr "Campo base" msgid "User ID" msgstr "ID usuario" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Siguiente paso configuración" - #. module: base #: view:ir.rule:0 msgid "Test" msgstr "Test" #. 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 "" -"No puede eliminar el usuario admin ya que es utilizado internamente por los " -"recursos creados por OpenERP (actualizaciones, instalación de módulos, ...)" +#: 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 "No puede eliminar el usuario admin ya que es utilizado internamente por los recursos creados por OpenERP (actualizaciones, instalación de módulos, ...)" #. module: base #: wizard_view:module.module.update,update:0 @@ -908,6 +915,11 @@ msgstr "Contenido SXW" msgid "ID Ref." msgstr "Ref. ID" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -932,11 +944,6 @@ msgstr "Restricción" msgid "Default" msgstr "Por defecto" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Personalización" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -970,8 +977,8 @@ msgid "Bank type" msgstr "Tipo de banco" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "¡Método get (obtener) no definido!" @@ -981,8 +988,8 @@ msgid "Header/Footer" msgstr "Cabecera / Pie de página" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "¡El método read (leer) no está implementado en este objeto!" @@ -991,6 +998,11 @@ msgstr "¡El método read (leer) no está implementado en este objeto!" msgid "Request History" msgstr "Historial de solicitudes" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -1004,9 +1016,9 @@ msgid "Partner Events" msgstr "Eventos empresa" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1056,17 +1068,15 @@ msgid "Partner contacts" msgstr "Contactos empresa" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Campos informe" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +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 "" -"EL código ISO del país en dos caracteres.\n" +msgstr "EL código ISO del país en dos caracteres.\n" "Puede usar este campo para la búsqueda rápida." #. module: base @@ -1099,12 +1109,6 @@ msgstr "Asistente" msgid "System Upgrade" msgstr "Actualización del sistema" -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Reload Official Translations" -msgstr "Recargar traducciones oficiales" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1132,9 +1136,10 @@ msgid "Parent Menu" msgstr "Menú padre" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Definir un nuevo usuario" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "¡Los campos personalizados deben tener un nombre que empieza con 'x_'!" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1159,13 +1164,9 @@ msgid "ir.report.custom" msgstr "ir.informe.custom" #. 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 "Roles" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "Exportación" #. module: base #: view:ir.model:0 @@ -1182,6 +1183,11 @@ msgstr "Bulk SMS enviado" msgid "get" msgstr "obtener" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Campos informe" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1193,11 +1199,14 @@ msgid "Pie Chart" msgstr "Gráfico tipo pastel" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" -"ID erróneo para mostrar el registro, se obtuvo %s, se esperaba un entero." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1214,11 +1223,6 @@ msgstr "STOCK_ZOOM_FIT" msgid "Sequence Type" msgstr "Tipo de secuencia" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Saltar & Continuar" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1240,11 +1244,6 @@ msgstr "campo hijo0" msgid "Update Modules List" msgstr "Actualizar lista de módulos" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Nombre archivo de datos" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1295,21 +1294,16 @@ msgid "Model" msgstr "Modelo" #. 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -"Está tratando de instalar un módulo que depende del módulo: %s.\n" -"Pero este módulo no se encuentra disponible en su sistema." #. 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 "Calendario" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Mensaje" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1333,14 +1327,15 @@ msgid "Modules to update" msgstr "Módulos a actualizar" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Estructura de la compañía" +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Sra." #. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" -msgstr "Abrir una ventana" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Actividad" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1387,21 +1382,25 @@ msgid "Sequences" msgstr "Secuencias" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" msgstr "¡Posición desconocida en vista heredada %s!" +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" msgstr "Fecha del disparo" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" -msgstr "Ha ocurrido un error cuando se validaban los campos %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -1409,11 +1408,10 @@ msgid "Bank account" msgstr "Cuenta bancaria" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" -msgstr "" -"Advertencia: usando un campo relacional que usa un objeto desconocido" +msgstr "Advertencia: usando un campo relacional que usa un objeto desconocido" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1460,14 +1458,26 @@ msgstr "Disparador" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Proveedor" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +msgstr "" + #. module: base #: field:ir.model.fields,translate:0 msgid "Translate" msgstr "Traducir" +#. 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" @@ -1486,6 +1496,7 @@ msgstr "wizard.modulo.actualiza_traducciones" #. 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 @@ -1497,17 +1508,21 @@ msgstr "Vistas" msgid "Send Email" msgstr "Enviar email" +#. 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 "STOCK_SELECT_FONT" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" -msgstr "" -"Está tratando de eliminar un módulo que está instalado o será instalado" +msgstr "Está tratando de eliminar un módulo que está instalado o será instalado" #. module: base #: rml:ir.module.reference:0 @@ -1541,6 +1556,12 @@ msgstr "Objetos" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1548,11 +1569,6 @@ msgstr "STOCK_GOTO_FIRST" msgid "Workflows" msgstr "Flujos de trabajo" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Tipo de disparo" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1577,16 +1593,20 @@ msgstr "Asistente de configuración" msgid "Request Link" msgstr "Enlace solicitud" +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Formato del archivo" + #. 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 -msgid "Manualy Created" -msgstr "Creado manualmente" +#: rml:ir.module.reference:0 +msgid "Description :" +msgstr "" #. module: base #: field:ir.report.custom,print_format:0 @@ -1627,11 +1647,9 @@ msgstr "res.roles" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" -msgstr "" -"0=Muy urgente\n" +msgstr "0=Muy urgente\n" "10=Sin urgencia" #. module: base @@ -1646,25 +1664,19 @@ msgstr "Interfaz usuario - Vistas" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" msgstr "Permisos de acceso" #. 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 "" -"La ruta del archivo .rml o NULL si el contenido está en report_rml_content" +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "La ruta del archivo .rml o NULL si el contenido está en report_rml_content" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" -"No se puede crear el archivo del módulo:\n" -" %s" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1677,26 +1689,19 @@ msgstr "Crear menú" msgid "STOCK_MEDIA_RECORD" msgstr "STOCK_MEDIA_RECORD" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "hijo_de" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Dirección de la empresa" #. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "Menús" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" -"¡Los campos personalizados deben tener un nombre que empieza con 'x_'!" - -#. module: base #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "¡No puede eliminar este modelo '%s'!" @@ -1717,8 +1722,8 @@ msgid "Subject" msgstr "Asunto" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "¡El método write (escribir) no está implementado en este objeto!" @@ -1739,10 +1744,9 @@ msgid "Retailer" msgstr "Proveedor" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Código secuencia" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1771,6 +1775,7 @@ msgid "State of Mind" msgstr "Grado de satisfacción" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1779,16 +1784,36 @@ msgstr "Grado de satisfacción" msgid "Type" msgstr "Tipo" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "Creado manualmente" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Actividad origen" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "STOCK_FILE" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "¡El método copy (copiar) no está implementado en este objeto!" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -1853,8 +1878,14 @@ msgid "STOCK_OK" msgstr "STOCK_OK" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "¡Contraseña vacía!" @@ -1875,8 +1906,8 @@ msgid "None" msgstr "Ninguno" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "¡No puede escribir en este documento! (%s)" @@ -1896,16 +1927,16 @@ msgstr "ID API" msgid "Module Category" msgstr "Categoría del módulo" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Añadir & Continuar" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" msgstr "Operando" +#. 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1922,14 +1953,9 @@ msgid "STOCK_UNINDENT" msgstr "STOCK_UNINDENT" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" -"El módulo que intenta eliminar depende de los módulos instalados:\n" -" %s" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -1969,8 +1995,8 @@ msgid "Low" msgstr "Baja" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "¡Error de recurrencia entre dependencias de módulos!" @@ -1986,6 +2012,7 @@ msgstr "Ruta XSL" #. 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" @@ -2024,20 +2051,15 @@ msgid "Channel Name" msgstr "Nombre canal" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Continuar" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Interfaz simplificado" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "Asignar grupos para definir permisos de acceso" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2054,21 +2076,20 @@ msgstr "Alineación" msgid "STOCK_UNDO" msgstr "STOCK_UNDO" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "Notificación" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Actividad" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2087,17 +2108,19 @@ msgstr "Obtener archivo" #. 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 "" -"Esta función buscará nuevos módulos en el directorio 'addons' y en las " -"bibliotecas de módulos:" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "Esta función buscará nuevos módulos en el directorio 'addons' y en las bibliotecas de módulos:" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "hijo_de" +#: 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 "País" #. module: base #: field:res.currency,rate_ids:0 @@ -2111,9 +2134,9 @@ msgid "STOCK_GO_BACK" msgstr "STOCK_GO_BACK" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "ErrorAcceso" @@ -2161,8 +2184,8 @@ msgid "unknown" msgstr "desconocido" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "¡El método create (crear) no está implementado en este objeto!" @@ -2195,9 +2218,9 @@ msgid "SXW path" msgstr "Ruta SXW" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Datos" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2241,11 +2264,6 @@ msgstr "Datos de ejemplo" msgid "Module import" msgstr "Importación de módulo" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -msgstr "Importe límite" - #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form #: model:ir.ui.menu,name:base.menu_action_res_company_form @@ -2279,6 +2297,11 @@ msgstr "Archivo CSV" msgid "Parent Company" msgstr "Compañía matriz" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2304,11 +2327,6 @@ msgstr "Fecha de inicio" msgid "RML Internal Header" msgstr "Cabecera interna RML" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "Listado de clientes con CIF/NIF (para aplicar el IVA)" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2343,14 +2361,24 @@ msgstr "(año)=" msgid "Code" msgstr "Código" +#. 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/fields.py:0 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "¡El método get_memory no está implementado!" @@ -2362,8 +2390,8 @@ msgid "Python Code" msgstr "Código Python" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "Interrogación errónea." @@ -2373,8 +2401,8 @@ msgid "Field Label" msgstr "Etiqueta campo" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "Intenta saltarse una regla de acceso (tipo documento: %s)." @@ -2409,7 +2437,6 @@ msgid "Customers Partners" msgstr "Clientes" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2417,6 +2444,7 @@ msgstr "Clientes" #: 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 @@ -2424,9 +2452,9 @@ msgid "Cancel" msgstr "Cancelar" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Permiso para leer" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.usuarios" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2434,7 +2462,11 @@ msgid "Modules Management" msgstr "Administración de módulos" #. module: base -#: field:ir.attachment,res_id:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2445,7 +2477,6 @@ msgstr "ID recurso" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Información" @@ -2480,9 +2511,9 @@ msgid "RML path" msgstr "Ruta RML" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Siguiente asistente de configuración" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2496,10 +2527,9 @@ msgid "Meta Datas" msgstr "Meta datos" #. 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 "La tasa de cambio de la moneda respecto a la moneda de tasa 1" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Personalización" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2507,12 +2537,13 @@ msgid "raw" msgstr "en bruto" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Partners: " msgstr "Empresas: " #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Otro" @@ -2523,18 +2554,13 @@ msgid "Childs Field" msgstr "Campo hijos" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "ir.modulo.modulo.configuracion.paso" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nombre de rol" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "ir.modulo.modulo.configuracion.wizard" - -#. module: base -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "¡No se puede eliminar el usuario principal!" @@ -2556,10 +2582,10 @@ msgstr "Comercial dedicado" #. 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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2582,11 +2608,8 @@ msgstr "Informe 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 "" -"El usuario interno que se encarga de comunicarse con esta empresa si hay." +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "El usuario interno que se encarga de comunicarse con esta empresa si hay." #. module: base #: selection:ir.translation,type:0 @@ -2599,15 +2622,15 @@ msgid "Cancel Upgrade" msgstr "Cancelar actualización" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "¡El método search (buscar) no está implementado en este objeto!" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" -msgstr "Desde Email / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -2619,14 +2642,19 @@ msgstr "Fecha de la próxima ejecución" msgid "Cumulate" msgstr "Acumulado" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_lang msgid "res.lang" msgstr "res.idioma" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "Gráficos de pastel necesitan exactamente dos campos" @@ -2648,12 +2676,12 @@ msgid "Create in Same Model" msgstr "Crear en el mismo modelo" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2674,11 +2702,22 @@ msgstr "Crear en el mismo modelo" msgid "Name" msgstr "Nombre" +#. 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.ui.menu,icon:0 msgid "STOCK_APPLY" msgstr "STOCK_APPLY" +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" @@ -2700,8 +2739,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "STOCK_MEDIA_PAUSE" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "¡Error!" @@ -2718,26 +2757,19 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Expresión regular para buscar el módulo en la biblioteca de la web:\n" +msgstr "Expresión regular para buscar el módulo en la biblioteca de la web:\n" "- El primer paréntesis debe coincidir con el nombre del módulo.\n" "- El segundo paréntesis debe coincidir con todo el número de versión.\n" "- El último paréntesis debe coincidir con la extensión del módulo." #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "CIF/NIF" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" -msgstr "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Para exportar un nuevo idioma, no seleccione un idioma." #. module: base #: model:ir.ui.menu,name:base.menu_translation_app @@ -2784,6 +2816,16 @@ msgstr "Instancias" msgid "STOCK_COPY" msgstr "STOCK_COPY" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2800,8 +2842,8 @@ msgid "ir.actions.act_window.view" msgstr "ir.acciones.acc_window.vista" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Formato de archivo incorrecto" @@ -2835,6 +2877,11 @@ msgstr "Retorno planeado" msgid "Record rules" msgstr "Reglas de registro" +#. 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2847,8 +2894,8 @@ msgid "Readonly" msgstr "Sólo lectura" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "¡No puede eliminar el campo '%s'!" @@ -2878,11 +2925,6 @@ msgstr "ir.acciones.wizard" msgid "Document" msgstr "Documento" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "# de contactos" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2905,21 +2947,26 @@ msgid "STOCK_STOP" msgstr "STOCK_STOP" #. module: base -#: code: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 "" -"\"%s\" contiene demasiados puntos. ¡Los ids de XML no deberían contener " -"puntos! Éstos se utilizan para referirse a datos de otros módulos, como en " -"module.reference_id" +#: code:addons/base/ir/ir_model.py:0 +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\" contiene demasiados puntos. ¡Los ids de XML no deberían contener puntos! Éstos se utilizan para referirse a datos de otros módulos, como en module.reference_id" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Número de cuenta" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create_line msgid "wizard.ir.model.menu.create.line" msgstr "wizard.ir.modelo.menu.crea.linea" +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "" + #. module: base #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -2942,8 +2989,8 @@ msgid "Day: %(day)s" msgstr "Día: %(day)s" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "¡No puede leer este documento! (%s)" @@ -3062,9 +3109,16 @@ msgstr "Valor de dominio" #. module: base #: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "Ayuda" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3097,8 +3151,7 @@ msgstr "Lista de controles de acceso" #. module: base #: help:ir.rule.group,global:0 msgid "Make the rule global or it needs to be put on a group or user" -msgstr "" -"Establece la regla global o necesita ser asignada a un grupo o usuario" +msgstr "Establece la regla global o necesita ser asignada a un grupo o usuario" #. module: base #: field:ir.actions.wizard,wiz_name:0 @@ -3116,6 +3169,11 @@ msgstr "Informe personalizado" msgid "Schedule for Installation" msgstr "Programar para instalación" +#. 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" @@ -3135,9 +3193,9 @@ msgid "Directory:" msgstr "Directorio:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Crédito concedido" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" #. module: base #: field:ir.actions.server,trigger_name:0 @@ -3145,8 +3203,13 @@ msgid "Trigger Name" msgstr "Nombre disparador" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "El nombre del grupo no puede empezar con \"-\"" @@ -3181,9 +3244,15 @@ msgid "Source" msgstr "Texto original" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Actividad origen" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3231,14 +3300,10 @@ msgid "Resource Name" msgstr "Nombre del recurso" #. 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 "" -"Guarde este documento en un archivo .tgz. Este archivo contendrá %s " -"archivos UTF-8 y puede ser subido a launchpad." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "Guarde este documento en un archivo .tgz. Este archivo contendrá %s archivos UTF-8 y puede ser subido a launchpad." #. module: base #: field:res.partner.address,type:0 @@ -3256,6 +3321,12 @@ msgstr "Iniciar configuración" msgid "Export Id" msgstr "Id exportación" +#. 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 "Acciones de ventana" + #. module: base #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3282,8 +3353,8 @@ msgid "References" msgstr "Referencias" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "Este registro mientras tanto se ha modificado" @@ -3309,21 +3380,21 @@ msgid "Kind" msgstr "Clase" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "Este método ya no existe" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Tree can only be used in tabular reports" msgstr "Árbol se puede utilizar solamente en informes tabulares" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -3338,21 +3409,25 @@ msgstr "Cuentas bancarias" msgid "Tree" msgstr "Árbol" +#. 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_CLEAR" msgstr "STOCK_CLEAR" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Gráficos de barras necesitan al menos dos campos" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.usuarios" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Permiso para leer" #. module: base #: selection:ir.report.custom,type:0 @@ -3370,13 +3445,19 @@ msgid "Custom Field" msgstr "Campo personalizado" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Rol requerido" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "Gráficos de barras necesitan al menos dos campos" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "¡El método search_memory no está implementado!" @@ -3419,6 +3500,12 @@ msgstr "res.solicitud" msgid "Rules" msgstr "Reglas" +#. 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 @@ -3431,18 +3518,16 @@ msgstr "Actualización del sistema realizada" msgid "Type of view" msgstr "Tipo de vista" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "" -"¡El método perm_read (leer permisos) no está implementado en este objeto!" - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3465,12 +3550,27 @@ msgstr "STOCK_FIND" msgid "STOCK_PROPERTIES" msgstr "STOCK_PROPERTIES" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 "Autorizar acceso al menú" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3483,8 +3583,8 @@ msgid "New Window" msgstr "Nueva ventana" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "El segundo campo debería ser cifras" @@ -3499,13 +3599,10 @@ msgid "Parent Action" msgstr "Acción padre" #. 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 "" -"¡No se puede generar el próximo id porqué algunas empresas tienen un id " -"alfabético!" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "¡No se puede generar el próximo id porqué algunas empresas tienen un id alfabético!" #. module: base #: selection:ir.report.custom,state:0 @@ -3518,11 +3615,17 @@ msgid "Number of modules updated" msgstr "Número de módulos actualizados" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Saltar paso" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3536,6 +3639,7 @@ msgstr "Árbol de los roles" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "ir.acciones.url" @@ -3551,9 +3655,21 @@ msgid "Active Partner Events" msgstr "Eventos de empresas activas" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "ID expr disparo" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3578,17 +3694,25 @@ msgid "Phone" msgstr "Teléfono" #. 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 views." +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" msgstr "" -"Si se fija a verdadero, el asistente no se mostrará en la barra de " -"herramientas derecha en las vistas formulario." + +#. 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 views." +msgstr "Si se fija a verdadero, el asistente no se mostrará en la barra de herramientas derecha en las vistas formulario." + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Rol requerido" #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3606,6 +3730,7 @@ msgid "STOCK_SPELL_CHECK" msgstr "STOCK_SPELL_CHECK" #. module: base +#: field:ir.actions.todo,active:0 #: field:ir.cron,active:0 #: field:ir.module.repository,active:0 #: field:ir.sequence,active:0 @@ -3623,9 +3748,9 @@ msgid "Active" msgstr "Activo" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Sra." +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3656,20 +3781,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "Permiso para eliminar" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Abrir una ventana" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Meses" #. module: base #: field:workflow.activity,signal_send:0 msgid "Signal (subflow.*)" msgstr "Señal (subflow.*)" -#. 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" @@ -3688,15 +3813,15 @@ msgstr "Categorías hijas" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Nombre del objeto" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3729,9 +3854,11 @@ msgid "Object Relation" msgstr "Relación objeto" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "Id solicitante" +#: 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 "Adjuntos" #. module: base #: field:ir.rule,field_id:0 @@ -3782,9 +3909,9 @@ msgid "terp-mrp" msgstr "terp-mrp" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Realizado" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3800,17 +3927,13 @@ msgstr "Factura" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form views." -msgstr "" -"Si se fija a verdadero, la acción no se mostrará en la barra de herramientas " -"derecha en las vistas formulario." +msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgstr "Si se fija a verdadero, la acción no se mostrará en la barra de herramientas derecha en las vistas formulario." #. module: base #: model:ir.ui.menu,name:base.next_id_4 msgid "Low Level" -msgstr "Nivel bajo" +msgstr "Nivel inferior" #. module: base #: wizard_view:module.upgrade,start:0 @@ -3842,6 +3965,7 @@ msgstr "Tamaño" #: 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 "Ciudad" @@ -3852,11 +3976,8 @@ msgstr "Compañías filiales" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -"especial!" +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" #. module: base #: rml:ir.module.reference:0 @@ -3864,9 +3985,9 @@ msgid "Module:" msgstr "Módulo:" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" -msgstr "Objeto personalizado" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "" #. module: base #: selection:ir.rule,operator:0 @@ -3886,6 +4007,11 @@ msgstr "Menú" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3893,22 +4019,14 @@ msgstr "Instancia de destino" #. 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 "" -"El idioma seleccionado se ha instalado correctamente. Debe cambiar las " -"preferencias del usuario y abrir un nuevo menú para ver los cambios." +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 "El idioma seleccionado se ha instalado correctamente. Debe cambiar las preferencias del usuario y abrir un nuevo menú para ver los cambios." #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nombre de rol" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "Crear XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Menús" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3929,11 +4047,26 @@ msgstr "Destino acción" msgid "Child Field" msgstr "Campo hijo" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Sr." + +#. 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 "STOCK_EDIT" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3949,8 +4082,8 @@ msgid "STOCK_HOME" msgstr "STOCK_HOME" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "¡Introduzca al menos un campo!" @@ -3961,9 +4094,10 @@ msgid "Others Actions" msgstr "Otras acciones" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Conseguir máximo" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -4037,9 +4171,9 @@ msgid "Child ids" msgstr "IDs hijos" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Formato del archivo" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -4048,9 +4182,9 @@ msgid "Resource" msgstr "Recurso" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "ir.server.objeto.lineas" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Fecha revisión" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4133,6 +4267,12 @@ msgstr "terp-sale" msgid "Field Mappings" msgstr "Mapeado de campos" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "¡El método copy (copiar) no está implementado en este objeto!" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4150,8 +4290,8 @@ msgid "center" msgstr "centro" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "¡No se puede crear el archivo de módulo: %s!" @@ -4166,9 +4306,10 @@ msgid "Published Version" msgstr "Versión publicada" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Auto-refrescar" +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "La tasa de cambio de la moneda respecto a la moneda de tasa 1" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -4197,13 +4338,9 @@ msgid "ir.exports.line" msgstr "ir.export.linea" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." -msgstr "" -"Este asistente creará un archivo XML para el IVA desglosado y importes " -"totales facturados por empresa." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Crédito concedido" #. module: base #: field:ir.default,value:0 @@ -4237,10 +4374,15 @@ msgid "Category" msgstr "Categoría" #. 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 "Acciones de ventana" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Estado" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Auto-refrescar" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4248,9 +4390,9 @@ msgid "ir.actions.act_window_close" msgstr "ir.acciones.acc_ventana_cerrar" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Número de cuenta" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4258,14 +4400,15 @@ msgid "Add an auto-refresh on the view" msgstr "Añadir un auto-refrescar a la vista" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "Nombre de archivo" #. module: base -#: field:ir.model,access:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Acceso" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4299,31 +4442,27 @@ msgstr "Módulos a descargar" msgid "Fax" msgstr "Fax" +#. 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_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" msgstr "Elementos de trabajo" -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Para exportar un nuevo idioma, no seleccione un idioma." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" msgstr "STOCK_PRINT_PREVIEW" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "" -"La suma de los datos (2º campo) es nulo.\n" -"¡Se puede visualizar un gráfico de pastel!" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" +msgstr "¡El método perm_read (leer permisos) no está implementado en este objeto!" #. module: base #: field:ir.default,company_id:0 @@ -4334,16 +4473,6 @@ msgstr "" msgid "Company" msgstr "Compañía" -#. module: base -#: view:ir.actions.server:0 -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 "" -"Acceda fácilmente a todos los campos relacionados con el objeto actual " -"indicando sólo el nombre del atributo, por ejemplo [[partner_id.name]] para " -"el objeto Factura" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4354,6 +4483,11 @@ msgstr "Fecha creación" msgid "Email / SMS" msgstr "Email / SMS" +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "Código BIC/Swift" + #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" @@ -4377,7 +4511,6 @@ msgid "Icon" msgstr "Icono" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4390,13 +4523,8 @@ msgid "Repeat missed" msgstr "Repetir perdidos" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "Resumen del IVA desglosado" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "¡No se puede encontrar la marca '%s' en la vista padre!" @@ -4416,12 +4544,6 @@ msgstr "ir.traduccion" msgid "Limit" msgstr "Límite" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "Instala fichero para un nuevo idioma" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4435,6 +4557,11 @@ msgstr "Solicitudes" msgid "Or" msgstr "O" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4459,6 +4586,11 @@ msgstr "Selección" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4466,15 +4598,15 @@ msgid "Installed modules" msgstr "Módulos instalados" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "Aviso" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "Archivo XML ha sido creado." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" #. module: base #: field:ir.rule,operator:0 @@ -4482,8 +4614,8 @@ msgid "Operator" msgstr "Operador" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "Error de Validación" @@ -4535,8 +4667,8 @@ msgid "Report Footer 1" msgstr "Pie de página 1 de los informes" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "¡No puede eliminar este documento! (%s)" @@ -4546,15 +4678,21 @@ msgstr "¡No puede eliminar este documento! (%s)" msgid "Custom Report" msgstr "Informe personalizado" +#. 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 "Email" #. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "XSL:RML automático" +#: 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 #: field:ir.model.access,perm_create:0 @@ -4578,15 +4716,16 @@ msgid "Printed:" msgstr "Impreso:" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" -msgstr "¡El método set_memory no está implementado!" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" -msgstr "Guardar archivo" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" +msgstr "¡El método set_memory no está implementado!" #. module: base #: selection:ir.actions.act_window,target:0 @@ -4598,11 +4737,6 @@ msgstr "Ventana actual" msgid "Partner category" msgstr "Categoría de empresa" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "Seleccionar ejercicio fiscal" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4628,12 +4762,12 @@ msgstr "Interfaz" #. module: base #: model:ir.ui.menu,name:base.menu_base_config #: view:ir.sequence:0 +#: view:res.company:0 msgid "Configuration" msgstr "Configuración" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Tipo de campo" @@ -4654,6 +4788,11 @@ msgstr "Código de provincia" msgid "On delete" msgstr "Al eliminar" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4680,22 +4819,34 @@ msgid "Cascade" msgstr "En cascada" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "Campo %d debería ser una cifra" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Firma" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" msgstr "No implementado" +#. 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4708,9 +4859,9 @@ msgid "Bank Account Type" msgstr "Tipo de cuenta bancaria" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" -msgstr "Archivo XML de prueba" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4731,14 +4882,8 @@ msgstr "Dominio" #. 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 "" -"Elija la interfaz simplificada si está probando OpenERP por primera vez. Las " -"opciones o campos menos utilizados se ocultan automáticamente. Más tarde " -"podrá cambiar esto mediante el menú de Administración." +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 "Elija la interfaz simplificada si está probando OpenERP por primera vez. Las opciones o campos menos utilizados se ocultan automáticamente. Más tarde podrá cambiar esto mediante el menú de Administración." #. module: base #: selection:ir.ui.menu,icon:0 @@ -4750,6 +4895,11 @@ msgstr "STOCK_PREFERENCES" msgid "Short description" msgstr "Descripción breve" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4760,6 +4910,11 @@ msgstr "Nombre provincia" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "Su logo – Utilice un tamaño de 450x150 píxeles aprox." +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4771,10 +4926,11 @@ msgid "a5" msgstr "A5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Mensaje" +#: 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 "Calendario" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4788,13 +4944,20 @@ msgid "ir.actions.report.xml" msgstr "ir.acciones.informe.xml" #. module: base -#: view:res.users:0 -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" msgstr "" -"Tenga en cuenta que tendrá que salir y volver a registrarse si cambia su " -"contraseña." + +#. 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.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "Tenga en cuenta que tendrá que salir y volver a registrarse si cambia su contraseña." #. module: base #: field:res.partner,address:0 @@ -4810,15 +4973,20 @@ msgid "Graph" msgstr "Gráfico" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "Código BIC/Swift" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" +msgstr "Última versión" #. module: base #: model:ir.model,name:base.model_ir_actions_server msgid "ir.actions.server" msgstr "ir.acciones.server" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4835,11 +5003,10 @@ msgid "Module dependency" msgstr "Dependencias de módulos" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" -msgstr "" -"¡El método name_get (obtener nombre) no está implementado en este objeto!" +msgstr "¡El método name_get (obtener nombre) no está implementado en este objeto!" #. module: base #: model:ir.actions.wizard,name:base.wizard_upgrade @@ -4852,6 +5019,11 @@ msgstr "Aplicar actualizaciones programadas" msgid "STOCK_DND_MULTIPLE" msgstr "STOCK_DND_MULTIPLE" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4869,14 +5041,9 @@ msgid "Server Action" msgstr "Acción servidor" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "Archivo creado" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Año: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -4888,9 +5055,9 @@ msgid "Action Name" msgstr "Nombre de acción" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "Progreso de la configuración" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 @@ -4899,10 +5066,14 @@ msgstr "Pie de página 2 de los informes" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "Email" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4918,6 +5089,11 @@ msgstr "Modo división" msgid "Localisation" msgstr "Ubicación" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Calcular contador" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4956,8 +5132,14 @@ msgid "Import a Translation File" msgstr "Importar un archivo de traducción" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "Títulos empresa" @@ -4969,9 +5151,9 @@ msgid "Untranslated terms" msgstr "Términos no traducibles" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Abrir ventana" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -4984,13 +5166,15 @@ msgid "Transition" msgstr "Transición" #. 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "CIF/NIF" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" -"Tiene que importar un archivo .CSV codificado en UTF-8. Compruebe que la " -"primera línea de su archivo es:" #. module: base #: field:res.partner.address,birthdate:0 @@ -5013,16 +5197,13 @@ msgid "res.partner.som" msgstr "res.empresa.som" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "Controles de acceso" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "Error" @@ -5039,6 +5220,12 @@ msgstr "Categorías de empresas" msgid "workflow.activity" msgstr "workflow.actividad" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Código secuencia" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5121,8 +5308,15 @@ msgstr "res.company" msgid "Fields Mapping" msgstr "Mapeo de campos" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Ref. tabla" + #. 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 @@ -5143,12 +5337,12 @@ msgstr "res.solicitud.historial" #. module: base #: constraint:res.partner:0 msgid "The VAT doesn't seem to be correct." -msgstr "El CIF/NIF no parece estar correcto." +msgstr "El IVA no parece estar correcto." #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Sr." +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5165,6 +5359,11 @@ msgstr "Configurar vista simple" msgid "Start Upgrade" msgstr "Iniciar actualización" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5187,7 +5386,6 @@ msgid "Arguments" msgstr "Argumentos" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5232,13 +5430,12 @@ msgstr "res.config.vista" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Descripción" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "La operación no es válida." @@ -5274,15 +5471,20 @@ msgid "ir.attachment" msgstr "ir.attachment" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "El valor \"%s\" para el campo \"%s\" no está en la selección" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "Calcular contador" +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "XSL:RML automático" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" #. module: base #: view:workflow.workitem:0 @@ -5309,19 +5511,19 @@ msgstr "Exportar idioma" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "Cliente" #. module: base #: view:ir.rule.group:0 msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Sobre un mismo objeto, las reglas múltiples se asocian usando el operador OR" +msgstr "Sobre un mismo objeto, las reglas múltiples se asocian usando el operador OR" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Meses" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Permiso para eliminar" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5346,14 +5548,9 @@ msgid "Mass Mailing" msgstr "Enviar Email" #. 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 -#: view:res.country:0 -msgid "Country" -msgstr "País" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5376,9 +5573,9 @@ msgid "Unsubscribe Report" msgstr "No subscribir informe" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" -msgstr "Ejercicio fiscal" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" #. module: base #: constraint:res.partner.category:0 @@ -5396,9 +5593,10 @@ msgid "a4" msgstr "A4" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" -msgstr "Última versión" +#: 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_view:module.lang.install,start:0 @@ -5410,6 +5608,11 @@ msgstr "Instalación realizada" msgid "STOCK_JUSTIFY_RIGHT" msgstr "STOCK_JUSTIFY_RIGHT" +#. 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" @@ -5429,12 +5632,12 @@ msgstr "Mes: %(month)s" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form msgid "Addresses" -msgstr "Direcciones" +msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5445,12 +5648,15 @@ msgid "Sequence" msgstr "Secuencia" #. 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" +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" -"Número de veces que la función es llamada,\n" + +#. 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 "Número de veces que la función es llamada,\n" "un número negativo indica que será llamada siempre." #. module: base @@ -5484,8 +5690,8 @@ msgid "Cancel Install" msgstr "Cancelar instalación" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "Verifique que todas las líneas tengan %d columnas" @@ -5498,3 +5704,4 @@ msgstr "Importar idioma" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "Identificador XML" + diff --git a/bin/addons/base/i18n/et_ET.po b/bin/addons/base/i18n/et_ET.po index 55d3da6c116..6ca89898f7a 100644 --- a/bin/addons/base/i18n/et_ET.po +++ b/bin/addons/base/i18n/et_ET.po @@ -1,21 +1,19 @@ -# Estonian translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-11-05 06:26+0000\n" -"Last-Translator: Ahti Hinnov \n" -"Language-Team: Estonian \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:56:35+0000\n" +"PO-Revision-Date: 2008-11-28 16:56:35+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,19 +42,10 @@ msgstr "Igakuine" msgid "Unknown" msgstr "Tundmatu" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -msgstr "Klõpsa ja Seo" - #. 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 "" -"See abiline leiab uued terminid rakenduses nii, et sa saad neid uuendada " -"käsitsi." +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "See abiline leiab uued terminid rakenduses nii, et sa saad neid uuendada käsitsi." #. module: base #: field:workflow.activity,out_transitions:0 @@ -74,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "Muuda Eelistusi" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Ava aken" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -114,6 +108,7 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Ligipääsureeglid" @@ -129,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Vahele jäetud" +msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "Sa ei saa luua seda tüüpi dokumenti! (%s)" @@ -161,6 +156,7 @@ msgstr "Töövoog" #: 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 @@ -178,26 +174,31 @@ msgstr "Töövoog" msgid "Object" msgstr "Objekt" +#. 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 "Moodulite Kategooriad" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "Lisa uus kasutaja" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "Pole alanud" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -230,9 +231,13 @@ msgid "Key" msgstr "Võti" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "" +#: 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 "Rollid" #. module: base #: model:ir.actions.act_window,name:base.action_country @@ -245,6 +250,16 @@ msgstr "Riigid" 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" @@ -266,6 +281,12 @@ msgstr "" msgid "Import new language" msgstr "Imporid uus keel" +#. 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 @@ -273,13 +294,6 @@ msgstr "Imporid uus keel" msgid "condition" msgstr "seisukord" -#. 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 "Manused" - #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -296,8 +310,8 @@ msgid "Suffix" msgstr "Järelliide" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "" @@ -333,9 +347,9 @@ msgid "Activites" msgstr "Toimingud" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Tekst" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -364,6 +378,11 @@ msgstr "Siirded" msgid "ir.ui.view.custom" 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -435,13 +454,15 @@ msgid "Other proprietary" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Märkmed" @@ -452,6 +473,11 @@ msgstr "Märkmed" msgid "All terms" msgstr "Kõik terminid" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -476,16 +502,26 @@ msgid "Form" msgstr "Vorm" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -497,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "" @@ -523,8 +559,8 @@ msgid "Web:" msgstr "Veeb" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "uus" @@ -589,11 +625,9 @@ msgid "Contact Name" msgstr "Kontakti nimi" #. 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." +#: 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 "" #. module: base @@ -607,21 +641,8 @@ msgid "Repositories" msgstr "Varamud" #. 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "Salasõna ei klapi !" @@ -632,8 +653,8 @@ msgid "Contact" msgstr "Kontakt" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" msgstr "" @@ -656,8 +677,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "" @@ -667,8 +688,8 @@ msgid "View Ref." msgstr "" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" msgstr "" #. module: base @@ -703,6 +724,11 @@ msgstr "" msgid "Corp." msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -717,8 +743,8 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" msgstr "" #. module: base @@ -732,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -748,12 +775,23 @@ msgstr "" msgid "Group" msgstr "Grupp" +#. 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Signatuur" + +#. module: base +#: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 msgid "SMS" msgstr "SMS" @@ -783,8 +821,7 @@ msgstr "Paigaldamata moodulid" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "" #. module: base @@ -798,18 +835,15 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Olek" +#: 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." +#: 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 "" #. module: base @@ -819,11 +853,14 @@ msgstr "" msgid "Currencies" msgstr "Valuutad" +#. 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." +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 @@ -832,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Järgmine nõustaja" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "" #. module: base #: selection:ir.model.fields,select_level:0 @@ -851,22 +888,15 @@ msgstr "" msgid "User ID" msgstr "Kasutaja ID" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Järgmine seadistamise samm" - #. module: base #: view:ir.rule:0 msgid "Test" msgstr "Testi" #. 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, ...)" +#: 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 "" #. module: base @@ -885,6 +915,11 @@ msgstr "SXW sisu" msgid "ID Ref." msgstr "" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -909,11 +944,6 @@ msgstr "Piirang" msgid "Default" msgstr "Vaikimisi" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Kohandatud" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -947,8 +977,8 @@ msgid "Bank type" msgstr "Panga tüüp" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "" @@ -958,8 +988,8 @@ msgid "Header/Footer" msgstr "Päis/jalus" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "" @@ -968,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "Päringute ajalugu" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -981,8 +1016,8 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1033,14 +1068,13 @@ msgid "Partner contacts" msgstr "Partneri kontaktid" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Aruande väljad" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +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 "" @@ -1074,12 +1108,6 @@ msgstr "Nõustaja" msgid "System Upgrade" msgstr "Süsteemi uuendus" -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Reload Official Translations" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1107,9 +1135,10 @@ msgid "Parent Menu" msgstr "" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Määra uus kasutaja" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1134,13 +1163,9 @@ msgid "ir.report.custom" 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 "Rollid" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "" #. module: base #: view:ir.model:0 @@ -1157,6 +1182,11 @@ msgstr "SMS hulgisaatmine" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Aruande väljad" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1168,9 +1198,13 @@ msgid "Pie Chart" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1188,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "Jada tüüp" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Jäta vahele ja jätka" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1214,11 +1243,6 @@ msgstr "" msgid "Update Modules List" msgstr "Uuenda moodulite nimekirja" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1269,19 +1293,16 @@ msgid "Model" msgstr "Mudel" #. 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." 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 "Kalender" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Teade" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1305,14 +1326,15 @@ msgid "Modules to update" msgstr "Uuendatavad moodulid" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Firma arhitektuur" +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Preili" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" -msgstr "Ava aken" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1359,20 +1381,24 @@ msgid "Sequences" msgstr "Jadad" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" 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 -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1381,8 +1407,8 @@ msgid "Bank account" msgstr "Pangakonto" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" msgstr "" @@ -1431,14 +1457,26 @@ msgstr "Päästik" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Tarnija" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +msgstr "" + #. module: base #: field:ir.model.fields,translate:0 msgid "Translate" msgstr "Tõlgi" +#. 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" @@ -1457,6 +1495,7 @@ 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 @@ -1468,17 +1507,21 @@ msgstr "Vaated" msgid "Send Email" msgstr "Saada e-kiri" +#. 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 -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" -msgstr "" -"Proovid eemaldada moodulit, mis on juba paigaldatud või alles paigaldamisel" +msgstr "Proovid eemaldada moodulit, mis on juba paigaldatud või alles paigaldamisel" #. module: base #: rml:ir.module.reference:0 @@ -1512,6 +1555,12 @@ msgstr "Objektid" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1519,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "Töövood" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Päästiku tüüp" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1548,15 +1592,19 @@ msgstr "Seadistamisnõustaja" msgid "Request Link" msgstr "" +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Failivorming" + #. 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 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1598,8 +1646,7 @@ msgstr "" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" msgstr "" @@ -1615,21 +1662,18 @@ msgstr "Kasutajaliides - Vaated" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" msgstr "Ligipääsuõigused" #. 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 -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1643,25 +1687,19 @@ msgstr "Loo menüü" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Partneri aadress" #. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "Menüüd" - -#. 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 "" @@ -1682,8 +1720,8 @@ msgid "Subject" msgstr "Teema" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "" @@ -1704,10 +1742,9 @@ msgid "Retailer" msgstr "Jaemüüja" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Jada kood" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1736,6 +1773,7 @@ msgid "State of Mind" msgstr "Meeleolu" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1744,15 +1782,35 @@ msgstr "Meeleolu" msgid "Type" msgstr "Tüüp" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" msgstr "" #. module: base @@ -1818,8 +1876,14 @@ msgid "STOCK_OK" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "Salasõna sisestamata !" @@ -1840,8 +1904,8 @@ msgid "None" msgstr "Puudub" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "" @@ -1861,16 +1925,16 @@ msgstr "API ID" msgid "Module Category" msgstr "Mooduli kategooria" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Lisa ja jätka" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1887,11 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1932,8 +1993,8 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "" @@ -1949,6 +2010,7 @@ 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" @@ -1987,20 +2049,15 @@ msgid "Channel Name" msgstr "Kanali nimi" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Jätka" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Lihtsustatud kasutajaliides" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2017,20 +2074,19 @@ msgstr "Joondus" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "Teavitus" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2050,15 +2106,19 @@ 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 -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "" +#: 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 "Riik" #. module: base #: field:res.currency,rate_ids:0 @@ -2072,9 +2132,9 @@ msgid "STOCK_GO_BACK" msgstr "" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "" @@ -2122,8 +2182,8 @@ msgid "unknown" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "" @@ -2156,9 +2216,9 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Andmed" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2202,11 +2262,6 @@ msgstr "Näidisandmed" msgid "Module import" msgstr "Mooduli import" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2240,6 +2295,11 @@ msgstr "CSV fail" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2265,11 +2325,6 @@ msgstr "" msgid "RML Internal Header" msgstr "RML sisemine päis" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "Käibemaksukohuslaste klientide nimekiri" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2304,14 +2359,24 @@ msgstr "(year)=" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "" @@ -2323,8 +2388,8 @@ msgid "Python Code" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "Vigane päring." @@ -2334,8 +2399,8 @@ msgid "Field Label" msgstr "Välja nimi" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "" @@ -2370,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2378,6 +2442,7 @@ msgstr "" #: 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 @@ -2385,8 +2450,8 @@ msgid "Cancel" msgstr "Tühista" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -2395,7 +2460,11 @@ msgid "Modules Management" msgstr "Moodulite haldus" #. module: base -#: field:ir.attachment,res_id:0 +#: 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 @@ -2406,7 +2475,6 @@ msgstr "" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Informatsioon" @@ -2441,9 +2509,9 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Järgmine Seadistamisnõustaja" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2457,10 +2525,9 @@ msgid "Meta Datas" 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 "" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Kohandatud" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2468,12 +2535,13 @@ msgid "raw" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Partners: " msgstr "Partnerid: " #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Muu" @@ -2484,18 +2552,13 @@ msgid "Childs Field" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Rolli nimi" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "" @@ -2517,10 +2580,10 @@ msgstr "Määratud müügimees" #. 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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2543,9 +2606,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 @@ -2559,15 +2620,15 @@ msgid "Cancel Upgrade" msgstr "Tühista uuendus" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" -msgstr "E-posti saatja / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -2579,14 +2640,19 @@ msgstr "" msgid "Cumulate" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "" @@ -2608,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2634,11 +2700,22 @@ msgstr "" msgid "Name" msgstr "Nimi" +#. 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.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 msgid "On Create" @@ -2660,8 +2737,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "Viga !" @@ -2678,21 +2755,15 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "Käibemaks" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2740,6 +2811,16 @@ msgstr "" msgid "STOCK_COPY" msgstr "" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2756,8 +2837,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Vigane failiformaat" @@ -2791,6 +2872,11 @@ msgstr "" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2803,8 +2889,8 @@ msgid "Readonly" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "" @@ -2834,11 +2920,6 @@ msgstr "" msgid "Document" msgstr "Dokument" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "Kontaktide arv" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2861,18 +2942,26 @@ msgid "STOCK_STOP" msgstr "" #. module: base -#: code: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" +#: code:addons/base/ir/ir_model.py:0 +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 +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Kontonumber" + #. 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 #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -2895,8 +2984,8 @@ msgid "Day: %(day)s" msgstr "Päev: %(day)s" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "" @@ -3015,9 +3104,16 @@ msgstr "" #. module: base #: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "Abi" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3068,6 +3164,11 @@ msgstr "" msgid "Schedule for Installation" msgstr "Planeeri paigaldamisele" +#. 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" @@ -3087,9 +3188,9 @@ msgid "Directory:" msgstr "Kataloog:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Krediidilimiit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" #. module: base #: field:ir.actions.server,trigger_name:0 @@ -3097,8 +3198,13 @@ msgid "Trigger Name" msgstr "Päästiku nimi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "Grupi nimi ei tohi alata \"-\" märgiga" @@ -3133,8 +3239,14 @@ msgid "Source" msgstr "Allikas" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" +#: 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 +msgid "Keep empty for a private address, not related to partner." msgstr "" #. module: base @@ -3183,11 +3295,9 @@ msgid "Resource Name" 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." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." msgstr "" #. module: base @@ -3206,6 +3316,12 @@ msgstr "Alusta seadistamist" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3232,8 +3348,8 @@ msgid "References" msgstr "Viited" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "" @@ -3259,20 +3375,20 @@ msgid "Kind" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, 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.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3288,20 +3404,24 @@ msgstr "Pangakontod" msgid "Tree" msgstr "Puu" +#. 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_CLEAR" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base @@ -3320,13 +3440,19 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "" @@ -3369,6 +3495,12 @@ msgstr "" msgid "Rules" msgstr "Reeglid" +#. 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 @@ -3381,17 +3513,16 @@ msgstr "" msgid "Type of view" msgstr "" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "" - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3414,12 +3545,27 @@ msgstr "" msgid "STOCK_PROPERTIES" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 msgid "Uninstall (beta)" @@ -3432,8 +3578,8 @@ msgid "New Window" msgstr "Uus aken" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "" @@ -3448,10 +3594,9 @@ msgid "Parent Action" 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 !" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" msgstr "" #. module: base @@ -3465,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Jäta vahele" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3483,6 +3634,7 @@ msgstr "Rollide struktuur" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3498,8 +3650,20 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3524,16 +3688,26 @@ msgstr "" msgid "Phone" msgstr "Telefon" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." +msgstr "" + +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3551,6 +3725,7 @@ 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 @@ -3568,9 +3743,9 @@ msgid "Active" msgstr "Aktiivne" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Preili" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3601,20 +3776,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Ava aken" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Kuud" #. 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" @@ -3633,15 +3808,15 @@ msgstr "" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Objekti nimi" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3674,9 +3849,11 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "" +#: 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 "Manused" #. module: base #: field:ir.rule,field_id:0 @@ -3727,9 +3904,9 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Valmis" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3745,9 +3922,7 @@ msgstr "Arve" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -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 "" #. module: base @@ -3785,6 +3960,7 @@ msgstr "Suurus" #: 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 "Linn" @@ -3795,9 +3971,8 @@ msgstr "" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" #. module: base #: rml:ir.module.reference:0 @@ -3805,8 +3980,8 @@ msgid "Module:" msgstr "Moodul:" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3827,6 +4002,11 @@ msgstr "Menüü" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3834,20 +4014,14 @@ 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 -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Rolli nimi" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "Loo XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Menüüd" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3868,11 +4042,26 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Härra" + +#. 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 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3888,8 +4077,8 @@ msgid "STOCK_HOME" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "" @@ -3900,8 +4089,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3976,9 +4166,9 @@ msgid "Child ids" msgstr "" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Failivorming" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -3987,8 +4177,8 @@ msgid "Resource" msgstr "Ressurss" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" msgstr "" #. module: base @@ -4072,6 +4262,12 @@ msgstr "" msgid "Field Mappings" msgstr "" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4089,8 +4285,8 @@ msgid "center" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "" @@ -4105,9 +4301,10 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Automaatne värskendus" +#: 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 @@ -4136,11 +4333,9 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." -msgstr "" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Krediidilimiit" #. module: base #: field:ir.default,value:0 @@ -4174,10 +4369,15 @@ msgid "Category" msgstr "Kategooria" #. 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 "" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Olek" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Automaatne värskendus" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4185,9 +4385,9 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Kontonumber" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4195,14 +4395,15 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "Failinimi" #. module: base -#: field:ir.model,access:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Juurdepääs" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4237,14 +4438,14 @@ msgid "Fax" msgstr "Faks" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_workitem_form -#: model:ir.ui.menu,name:base.menu_workflow_workitem -msgid "Workitems" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4253,11 +4454,9 @@ msgid "STOCK_PRINT_PREVIEW" msgstr "" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4269,13 +4468,6 @@ msgstr "" msgid "Company" msgstr "Firma" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4286,6 +4478,11 @@ msgstr "" msgid "Email / SMS" msgstr "E-post / SMS" +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "BIC/SWIFT kood" + #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" @@ -4309,7 +4506,6 @@ msgid "Icon" msgstr "Ikoon" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4322,13 +4518,8 @@ msgid "Repeat missed" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "" @@ -4348,12 +4539,6 @@ msgstr "" msgid "Limit" msgstr "" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "Paigalda uus keelefail" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4367,6 +4552,11 @@ msgstr "" msgid "Or" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4391,6 +4581,11 @@ msgstr "Valik" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4398,15 +4593,15 @@ msgid "Installed modules" msgstr "Paigaldatud moodulid" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "Hoiatus" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "XML fail on loodud." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "" #. module: base #: field:ir.rule,operator:0 @@ -4414,8 +4609,8 @@ msgid "Operator" msgstr "Operaator" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "" @@ -4467,8 +4662,8 @@ msgid "Report Footer 1" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "" @@ -4478,15 +4673,21 @@ msgstr "" msgid "Custom Report" 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 "E-post" #. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "Automaatne XSL:RML" +#: 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 #: field:ir.model.access,perm_create:0 @@ -4510,15 +4711,16 @@ msgid "Printed:" msgstr "Trükitud:" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" -msgstr "Salvesta fail" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" +msgstr "" #. module: base #: selection:ir.actions.act_window,target:0 @@ -4530,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "Partneri kategooria" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "Vali fiskaalaasta" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4560,12 +4757,12 @@ msgstr "Kasutajaliides" #. module: base #: model:ir.ui.menu,name:base.menu_base_config #: view:ir.sequence:0 +#: view:res.company:0 msgid "Configuration" msgstr "Seadistus" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Välja tüüp" @@ -4586,6 +4783,11 @@ msgstr "Osariigi kood" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4612,22 +4814,34 @@ msgid "Cascade" msgstr "Kaskaad" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Signatuur" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" msgstr "Pole teostatud" +#. 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4640,8 +4854,8 @@ msgid "Bank Account Type" msgstr "Pangakonto tüüp" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4663,10 +4877,7 @@ msgstr "Domeen" #. 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 @@ -4679,6 +4890,11 @@ msgstr "" msgid "Short description" msgstr "" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4689,6 +4905,11 @@ msgstr "Osariigi nimi" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4700,10 +4921,11 @@ msgid "a5" msgstr "a5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Teade" +#: 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 "Kalender" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4716,11 +4938,20 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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.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 @@ -4737,15 +4968,20 @@ msgid "Graph" msgstr "Graafik" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "BIC/SWIFT kood" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" +msgstr "Uusim versioon" #. module: base #: model:ir.model,name:base.model_ir_actions_server msgid "ir.actions.server" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4762,8 +4998,8 @@ msgid "Module dependency" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "" @@ -4778,6 +5014,11 @@ msgstr "Paigalda valitud uuendused" msgid "STOCK_DND_MULTIPLE" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4795,15 +5036,10 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Aasta: %(year)s" - #. module: base #: field:ir.actions.act_window_close,name:0 #: field:ir.actions.actions,name:0 @@ -4814,9 +5050,9 @@ msgid "Action Name" msgstr "Toimingu nimi" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "Konfigureerimise edenemine" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 @@ -4825,10 +5061,14 @@ msgstr "Aruande jalus 2" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "E-post" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4844,6 +5084,11 @@ msgstr "" msgid "Localisation" msgstr "Lokalisatsioon" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Arvuta kogus" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4882,8 +5127,14 @@ msgid "Import a Translation File" msgstr "Impordi tõlkefail" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "Partnerite tiitlid" @@ -4895,9 +5146,9 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Ava aken" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -4910,10 +5161,14 @@ msgid "Transition" msgstr "Siire" #. 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "Käibemaks" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4937,16 +5192,13 @@ msgid "res.partner.som" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "Viga" @@ -4963,6 +5215,12 @@ msgstr "Partneri kategooriad" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Jada kood" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5045,8 +5303,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5070,9 +5335,9 @@ msgid "The VAT doesn't seem to be correct." msgstr "Käibemaksukohuslase numbris on viga" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Härra" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5089,6 +5354,11 @@ msgstr "" msgid "Start Upgrade" msgstr "Alusta uuendust" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5111,7 +5381,6 @@ msgid "Arguments" msgstr "Argumendid" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5156,13 +5425,12 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Kirjeldus" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "" @@ -5198,15 +5466,20 @@ msgid "ir.attachment" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "Arvuta kogus" +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "Automaatne XSL:RML" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" #. module: base #: view:workflow.workitem:0 @@ -5233,6 +5506,7 @@ msgstr "Ekspordi keel" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "Klient" @@ -5242,9 +5516,9 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Kuud" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5269,14 +5543,9 @@ msgid "Mass Mailing" msgstr "Massi meilimine" #. 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 -#: view:res.country:0 -msgid "Country" -msgstr "Riik" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5299,9 +5568,9 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" -msgstr "Rahandusaasta" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" #. module: base #: constraint:res.partner.category:0 @@ -5319,9 +5588,10 @@ msgid "a4" msgstr "a4" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" -msgstr "Uusim versioon" +#: 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_view:module.lang.install,start:0 @@ -5333,6 +5603,11 @@ msgstr "Paigaldamine valmis" msgid "STOCK_JUSTIFY_RIGHT" 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" @@ -5352,12 +5627,12 @@ msgstr "Kuu: %(kuu)d" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form msgid "Addresses" -msgstr "Aadressid" +msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5367,10 +5642,14 @@ msgstr "Aadressid" msgid "Sequence" msgstr "Jada" +#. 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" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -5405,8 +5684,8 @@ msgid "Cancel Install" msgstr "Katkesta paigaldamine" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "Palun konrolli, et kõigil ridadel oleks %d veerud." @@ -5419,3 +5698,4 @@ msgstr "Impordi keel" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "XML identifikaator" + diff --git a/bin/addons/base/i18n/fr_FR.po b/bin/addons/base/i18n/fr_FR.po index ca3de98dd1d..16e0647c81c 100644 --- a/bin/addons/base/i18n/fr_FR.po +++ b/bin/addons/base/i18n/fr_FR.po @@ -1,21 +1,19 @@ -# French translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-10-16 08:35+0000\n" -"Last-Translator: Olivier Laurent \n" -"Language-Team: French \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:57:27+0000\n" +"PO-Revision-Date: 2008-11-28 16:57:27+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,16 +42,9 @@ msgstr "Mensuel" msgid "Unknown" msgstr "Inconnu" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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 @@ -72,6 +63,11 @@ msgstr "STOCK_SAVE" msgid "Change My Preferences" msgstr "Changer mes préférences" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -112,6 +108,7 @@ msgstr "STOCK_SORT_ASCENDING" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Règles d'accès" @@ -127,20 +124,20 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "STOCK_MEDIA_FORWARD" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Ignoré" +msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "Vous ne pouvez pas créer ce type de document! (%s)" #. module: base #: wizard_field:module.lang.import,init,code:0 msgid "Code (eg:en__US)" -msgstr "Code (ex:fr_FR)" +msgstr "Code (ex:fr__FR)" #. module: base #: field:res.roles,parent_id:0 @@ -159,6 +156,7 @@ msgstr "Diagramme de flux" #: 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 @@ -176,26 +174,31 @@ msgstr "Diagramme de flux" msgid "Object" msgstr "Objet" +#. 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 "Catégorie de modules" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "Ajouter un nouvel utilisateur" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "ir.default" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "Non démarrer" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -228,9 +231,13 @@ msgid "Key" msgstr "Clé" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "Exporter" +#: 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 "Rôles" #. module: base #: model:ir.actions.act_window,name:base.action_country @@ -243,6 +250,16 @@ msgstr "Pays" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. 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" @@ -264,6 +281,12 @@ msgstr "" msgid "Import new language" msgstr "Importer une nouvelle langue" +#. 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 @@ -271,13 +294,6 @@ msgstr "Importer une nouvelle langue" msgid "condition" msgstr "condition" -#. 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 "Pièces jointes" - #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -294,8 +310,8 @@ msgid "Suffix" msgstr "Suffixe" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "La méthode de suppression n'est pas implémenté sur cette objet !" @@ -331,9 +347,9 @@ msgid "Activites" msgstr "Activités" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Texte" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -362,6 +378,11 @@ msgstr "Transitions" msgid "ir.ui.view.custom" msgstr "ir.ui.view.custom" +#. 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" @@ -391,7 +412,7 @@ msgstr "Contact du prospet" #. module: base #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "XML non valide pour l'architecture de la vue!" +msgstr "XML non valide pour l'architecture de la vue" #. module: base #: field:ir.report.custom,sortby:0 @@ -407,7 +428,7 @@ msgid "Report Type" msgstr "Type de Rapport" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -433,13 +454,15 @@ msgid "Other proprietary" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" +msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Notes" @@ -450,6 +473,11 @@ msgstr "Notes" msgid "All terms" msgstr "Tous les termes" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -474,16 +502,26 @@ msgid "Form" msgstr "Formulaire" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "Impossible de définir la colonne %s. Mot clé réservé !" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "Activité de Destination" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -495,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "La méthode 'name_search' n'est pas implémentée dans cet objet !" @@ -521,8 +559,8 @@ msgid "Web:" msgstr "Web:" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "nouveau" @@ -587,14 +625,10 @@ msgid "Contact Name" msgstr "Nom du Contact" #. 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 "" -"Sauvegardez ce document dans un fichier %s et éditez le avec un logiciel " -"spécifique ou un éditeur de texte. L'encodage du fichier est UTF-8." +#: 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 "Sauvegardez ce document dans un fichier %s et éditez le avec un logiciel spécifique ou un éditeur de texte. L'encodage du fichier est UTF-8." #. module: base #: view:ir.module.module:0 @@ -607,21 +641,8 @@ msgid "Repositories" msgstr "Dépôts" #. 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "Le mot de passe ne correspond pas !" @@ -632,8 +653,8 @@ msgid "Contact" msgstr "Contact" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" msgstr "" @@ -656,8 +677,8 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "" @@ -667,9 +688,9 @@ msgid "View Ref." msgstr "" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" #. module: base #: field:res.partner,ean13:0 @@ -696,15 +717,18 @@ msgstr "En-tête de rapport" #. module: base #: view:ir.rule:0 msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" -"Si vous ne forcez pas le domaine, il utilisera la configuration du domaine " -"simplifiée." +msgstr "Si vous ne forcez pas le domaine, il utilisera la configuration du domaine simplifiée." #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -719,9 +743,9 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Mettre à jour la Date" +#: 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 @@ -734,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Étapes de la configuration de l'assistant" @@ -750,12 +775,23 @@ msgstr "" msgid "Group" msgstr "Groupe" +#. 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 +#: 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" @@ -785,8 +821,7 @@ msgstr "Desinstaller les modules" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "Le champ Actif permet de cacher la catégorie, sans l'effacer" #. module: base @@ -800,22 +835,16 @@ msgid "res.partner.event" msgstr "res.partner.event" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Statut" +#: 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 "" -"Sauvegarder ce document dans un fichier CSV et ouvrez le dans votre tableur " -"favori. Le fichier est encodé en UTF-8. Vous devez traduire la dernière " -"colonne avant de la réimporter." +#: 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 "Sauvegarder ce document dans un fichier CSV et ouvrez le dans votre tableur favori. Le fichier est encodé en UTF-8. Vous devez traduire la dernière colonne avant de la réimporter." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -825,14 +854,14 @@ msgid "Currencies" msgstr "Devises" #. 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." +#: selection:ir.actions.todo,type:0 +msgid "Configure" msgstr "" -"Si la langue chargée dans le système est l'anglais, tous les documents liés " -"à ce partenaire seront imprimés dans cette langue. Sinon, ils seront imprimé " -"en anglais." + +#. 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 "Si la langue chargée dans le système est l'anglais, tous les documents liés à ce partenaire seront imprimés dans cette langue. Sinon, ils seront imprimé en anglais." #. module: base #: selection:ir.ui.menu,icon:0 @@ -840,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Assistant Suivant" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "" #. module: base #: selection:ir.model.fields,select_level:0 @@ -859,26 +888,16 @@ msgstr "" msgid "User ID" msgstr "Identifiant utilisateur" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Prochaine Étape de la Configuration" - #. module: base #: view:ir.rule:0 msgid "Test" msgstr "Test" #. 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 "" -"Vous ne pouvez pas supprimer l'utilisateur 'admin' car il est utilisé en " -"interne pour les ressources créées par OpenERP (mises à jour, installation " -"de module, ...)" +#: 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 "Vous ne pouvez pas supprimer l'utilisateur 'admin' car il est utilisé en interne pour les ressources créées par OpenERP (mises à jour, installation de module, ...)" #. module: base #: wizard_view:module.module.update,update:0 @@ -896,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -920,11 +944,6 @@ msgstr "Contrainte" msgid "Default" msgstr "Défaut" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Personnalisé" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -958,8 +977,8 @@ msgid "Bank type" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "" @@ -969,8 +988,8 @@ msgid "Header/Footer" msgstr "En-tête/Pied de page" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "La méthode 'read' n'est pas implémentée dans cet objet !" @@ -979,6 +998,11 @@ msgstr "La méthode 'read' n'est pas implémentée dans cet objet !" msgid "Request History" msgstr "historique des Requêtes" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -992,9 +1016,9 @@ msgid "Partner Events" msgstr "Évènements Partenaire" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1044,17 +1068,15 @@ msgid "Partner contacts" msgstr "Contactes partenaires" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" 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 "" -"Le code ISO du pays en deux caractères.\n" +msgstr "Le code ISO du pays en deux caractères.\n" "Vous pouvez utiliser ce champ pour effectuer une recherche rapide." #. module: base @@ -1087,12 +1109,6 @@ msgstr "Assistant" msgid "System Upgrade" msgstr "Mise à jour du Système" -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Reload Official Translations" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1120,9 +1136,10 @@ msgid "Parent Menu" msgstr "Menu Parent" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Définir un Nouvel Utilisateur" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Les champs personalisés doivent avoir un nom qui commence par 'x_' !" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1147,13 +1164,9 @@ msgid "ir.report.custom" 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 "Rôles" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "Exporter" #. module: base #: view:ir.model:0 @@ -1170,6 +1183,11 @@ msgstr "Envoi de SMS Par Lots" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1181,9 +1199,13 @@ msgid "Pie Chart" msgstr "Graphique en Camembert" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1201,11 +1223,6 @@ msgstr "" msgid "Sequence Type" msgstr "Type de Séquence" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Passer & Continuer" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1227,11 +1244,6 @@ msgstr "" msgid "Update Modules List" msgstr "Mettre à jour la Liste des Modules" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1282,21 +1294,16 @@ msgid "Model" msgstr "Modèle" #. 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -"Vous essayez d'installer un module qui dépend du module: %s\n" -"Mais ce module n'est pas disponible sur votre système." #. 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 "Calendrier" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1320,14 +1327,15 @@ msgid "Modules to update" msgstr "Modules à mettre à jour" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Architecture de la Société" +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Mademoiselle" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" -msgstr "Ouvrir une fenêtre" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Activité" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1374,21 +1382,25 @@ msgid "Sequences" msgstr "Séquences" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" msgstr "Date de déclenchement" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" -msgstr "Une erreur est apparue lors de la validation du champ %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -1396,8 +1408,8 @@ msgid "Bank account" msgstr "Compte banquaire" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" msgstr "Avertissement: un champ relation utilise un objet inconnu" @@ -1446,14 +1458,26 @@ msgstr "Déclencheur" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Fournisseur" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +msgstr "" + #. module: base #: field:ir.model.fields,translate:0 msgid "Translate" msgstr "Traduire" +#. 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" @@ -1472,6 +1496,7 @@ 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 @@ -1483,17 +1508,21 @@ msgstr "Vues" msgid "Send Email" msgstr "Envoyer un courrier électronique" +#. 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 -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" -msgstr "" -"Vous essayez d'enlever un module qui est installé ou qui va être installé" +msgstr "Vous essayez d'enlever un module qui est installé ou qui va être installé" #. module: base #: rml:ir.module.reference:0 @@ -1527,6 +1556,12 @@ msgstr "Objets" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1534,11 +1569,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Type de Déclencheur" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1563,16 +1593,20 @@ msgstr "Assistant de configuration" msgid "Request Link" msgstr "Lien de la Requête" +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Format de fichier" + #. 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 -msgid "Manualy Created" -msgstr "Créé Manuellement" +#: rml:ir.module.reference:0 +msgid "Description :" +msgstr "" #. module: base #: field:ir.report.custom,print_format:0 @@ -1613,11 +1647,9 @@ msgstr "" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" -msgstr "" -"0=Très Urgent\n" +msgstr "0=Très Urgent\n" "10=Pas Urgent" #. module: base @@ -1632,24 +1664,19 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" msgstr "Droits d'accès" #. 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 -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" -"Impossible de créer le fichier du module:\n" -" %s" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1662,25 +1689,19 @@ msgstr "Créer le menu" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Adresse du Partenaire" #. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "Menus" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "Les champs personalisés doivent avoir un nom qui commence par 'x_' !" - -#. module: base #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "Vous ne pouvez pas enlever le modèle '%s' !" @@ -1701,8 +1722,8 @@ msgid "Subject" msgstr "Objet" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "La méthode 'write' n'est pas implémentée dans cet objet !" @@ -1723,9 +1744,8 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" msgstr "" #. module: base @@ -1755,6 +1775,7 @@ msgid "State of Mind" msgstr "État d'esprit" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1763,16 +1784,36 @@ msgstr "État d'esprit" msgid "Type" msgstr "Type" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "Créé Manuellement" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Activité Source" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "La méthode 'copy' n'est pas implémentée dans cet objet !" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -1837,8 +1878,14 @@ msgid "STOCK_OK" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "Mot de passe vide !" @@ -1859,8 +1906,8 @@ msgid "None" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "Vous ne pouvez pas écrire dans ce document ! (%s)" @@ -1880,16 +1927,16 @@ msgstr "" msgid "Module Category" msgstr "Catégorie du Module" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Ajouter & Continuer" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" msgstr "Opérande" +#. 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1906,14 +1953,9 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" -"Le module que vous essayez d'enlever dépend de modules installés :\n" -" %s" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -1953,8 +1995,8 @@ msgid "Low" msgstr "Faible" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "Erreur de Récursion dans les dépendances des modules !" @@ -1970,6 +2012,7 @@ msgstr "Chemin XSL" #. 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" @@ -2008,20 +2051,15 @@ msgid "Channel Name" msgstr "Nom du canal" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Continuer" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Interface Simplifiée" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "Assignez des Groupes pour Définir des Droits d'Accès" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2038,21 +2076,20 @@ msgstr "Alignement" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "Date de Création" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "Notification" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Activité" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2071,16 +2108,18 @@ msgstr "Obtenir le Fichier" #. 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 "" -"Cette fonction vérifiera si des nouveaux modules sont disponibles dans le " -"chemin 'addons' et sur les dépôts de modules :" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "Cette fonction vérifiera si des nouveaux modules sont disponibles dans le chemin 'addons' et sur les dépôts de modules :" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" +#: 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 @@ -2095,9 +2134,9 @@ msgid "STOCK_GO_BACK" msgstr "" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "Erreur d'Accès" @@ -2145,8 +2184,8 @@ msgid "unknown" msgstr "inconnu" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "La méthode 'create' n'est pas implémentée dans cet objet !" @@ -2179,9 +2218,9 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Données" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2225,11 +2264,6 @@ msgstr "Données Demo" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2263,6 +2297,11 @@ msgstr "Fichier CSV" msgid "Parent Company" msgstr "Société Mère" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2288,11 +2327,6 @@ msgstr "" msgid "RML Internal Header" msgstr "En-tête Interne du RML" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "Liste des Clients assujettis à la TVA" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2327,14 +2361,24 @@ msgstr "(année)=" msgid "Code" msgstr "Code" +#. 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "Créateur" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "Méthode non implémentée: 'get_memory' !" @@ -2346,8 +2390,8 @@ msgid "Python Code" msgstr "Code Python" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "Requête incorrecte." @@ -2357,8 +2401,8 @@ msgid "Field Label" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "Vous essayez d'outrepasser une règle d'accès (Type de Document: %s)" @@ -2393,7 +2437,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2401,6 +2444,7 @@ msgstr "" #: 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 @@ -2408,9 +2452,9 @@ msgid "Cancel" msgstr "Annuler" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Accès en lecture" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2418,7 +2462,11 @@ msgid "Modules Management" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2429,7 +2477,6 @@ msgstr "" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Information" @@ -2464,9 +2511,9 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Prochain Assistant de Configuration" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2480,10 +2527,9 @@ msgid "Meta Datas" 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 "" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Personnalisé" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2491,12 +2537,13 @@ msgid "raw" msgstr "brut" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Partners: " msgstr "Partenaires : " #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Autre" @@ -2507,18 +2554,13 @@ msgid "Childs Field" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nom du rôle" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "Impossible d'effacer l'utilisateur 'root' !" @@ -2540,10 +2582,10 @@ msgstr "Vendeur dédié" #. 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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2566,11 +2608,8 @@ msgstr "Rapport 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 "" -"L'utilisateur interne en charge de communiqué avec le partenaire éventuel." +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "L'utilisateur interne en charge de communiqué avec le partenaire éventuel." #. module: base #: selection:ir.translation,type:0 @@ -2583,14 +2622,14 @@ msgid "Cancel Upgrade" msgstr "Annuler la Mise à Jour" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "La méthode 'search' n'est pas implémentée dans cet objet !" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2603,14 +2642,19 @@ msgstr "" msgid "Cumulate" msgstr "Cumuler" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "Les graphiques en camembert ont besoin d'exactement deux champs" @@ -2632,12 +2676,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2658,11 +2702,22 @@ msgstr "" msgid "Name" msgstr "Nom" +#. 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.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 msgid "On Create" @@ -2684,8 +2739,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "Erreur !" @@ -2702,26 +2757,18 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Expression Rationelle utilisée pour rechercher le module sur la page Web du " -"dépôt:\n" +msgstr "Expression Rationelle utilisée pour rechercher le module sur la page Web du dépôt:\n" "- la première parenthèse doit 'matcher' le nom du module;\n" "- la seconde parenthèse doit 'matcher' le numéro de version;\n" "- la dernière parenthèse doit 'matcher' l'extension du module;" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "TVA" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2769,6 +2816,16 @@ msgstr "" msgid "STOCK_COPY" msgstr "" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2785,8 +2842,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Format de fichier incorrect" @@ -2820,6 +2877,11 @@ msgstr "Revenus prévus" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2832,8 +2894,8 @@ msgid "Readonly" msgstr "Lecture seule" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "Vous ne pouvez pas effacer le champ '%s' !" @@ -2863,11 +2925,6 @@ msgstr "" msgid "Document" msgstr "Document" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "# de Contacts" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2890,22 +2947,26 @@ msgid "STOCK_STOP" msgstr "" #. module: base -#: code: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 "" -"\"%s\" contiens trop de caractère 'point'. Les identifiants XML ne doivent " -"pas contenir de points ! Ceux ci sont utilisés pour effectuer des références " -"vers d'autres données de module, comme par exemple dans " -"\"module.reference_id\"" +#: code:addons/base/ir/ir_model.py:0 +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\" contiens trop de caractère 'point'. Les identifiants XML ne doivent pas contenir de points ! Ceux ci sont utilisés pour effectuer des références vers d'autres données de module, comme par exemple dans \"module.reference_id\"" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Numéro de compte" #. 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 #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -2928,8 +2989,8 @@ msgid "Day: %(day)s" msgstr "Jour: %(day)s" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "Vous ne pouvez pas lire ce document ! (%s)" @@ -3048,9 +3109,16 @@ msgstr "Valeur du Domaine" #. module: base #: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "Aide" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3101,6 +3169,11 @@ msgstr "" msgid "Schedule for Installation" msgstr "Plannifier pour Installation" +#. 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" @@ -3120,9 +3193,9 @@ msgid "Directory:" msgstr "Répertoire :" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Limite de crédit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" #. module: base #: field:ir.actions.server,trigger_name:0 @@ -3130,8 +3203,13 @@ msgid "Trigger Name" msgstr "Nom du déclencheur" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "Le nom du groupe ne peut pas commencer par \"-\"" @@ -3166,9 +3244,15 @@ msgid "Source" msgstr "Source" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Activité Source" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3216,11 +3300,9 @@ msgid "Resource Name" msgstr "Nom de la Ressource" #. 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." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." msgstr "" #. module: base @@ -3239,6 +3321,12 @@ msgstr "Démarrer la Configuration" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3265,8 +3353,8 @@ msgid "References" msgstr "Références" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "Cet enregistrement a été modifié entre temps" @@ -3292,20 +3380,20 @@ msgid "Kind" msgstr "Genre" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "Cette méthode n'existe plus" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Tree can only be used in tabular reports" msgstr "Les Arbres peuvent uniquement utilisés dans les rapports tabulaires" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3321,21 +3409,25 @@ msgstr "Comptes banquaires" msgid "Tree" msgstr "Arbre" +#. 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_CLEAR" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Les graphiques en barres ont besoin d'au moins deux champs" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Accès en lecture" #. module: base #: selection:ir.report.custom,type:0 @@ -3353,13 +3445,19 @@ msgid "Custom Field" msgstr "Champ Personalisé" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Rôle Requis" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "Les graphiques en barres ont besoin d'au moins deux champs" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "Utilisation d'une méthode non implémentée: 'search_memory' !" @@ -3402,6 +3500,12 @@ msgstr "" msgid "Rules" msgstr "Règles" +#. 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 @@ -3414,17 +3518,16 @@ msgstr "Mise à jour du Système terminée" msgid "Type of view" msgstr "Type de vue" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "La méthode 'perm_read' n'est pas implémentée dans cet objet !" - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3447,12 +3550,27 @@ msgstr "" msgid "STOCK_PROPERTIES" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 msgid "Uninstall (beta)" @@ -3465,8 +3583,8 @@ msgid "New Window" msgstr "Nouvelle fenêtre" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "" @@ -3481,13 +3599,10 @@ msgid "Parent Action" msgstr "Action Parente" #. 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 "" -"Impossible de générer le prochain identifiant car certains partenaires ont " -"un identifiant alphabétique !" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "Impossible de générer le prochain identifiant car certains partenaires ont un identifiant alphabétique !" #. module: base #: selection:ir.report.custom,state:0 @@ -3500,11 +3615,17 @@ msgid "Number of modules updated" msgstr "Nombre de modules mis à jour" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Passer l'Étape" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3518,6 +3639,7 @@ msgstr "Structure des Rôles" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3533,8 +3655,20 @@ msgid "Active Partner Events" msgstr "Évènements Actifs des Partenaires" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3560,15 +3694,25 @@ msgid "Phone" msgstr "Numéro de téléphone" #. 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 views." +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" 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 views." +msgstr "" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Rôle Requis" + #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3586,6 +3730,7 @@ 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 @@ -3603,9 +3748,9 @@ msgid "Active" msgstr "Actif" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Mademoiselle" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3636,8 +3781,13 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Ouvrir une fenêtre" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" msgstr "" #. module: base @@ -3645,11 +3795,6 @@ msgstr "" 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" @@ -3668,15 +3813,15 @@ msgstr "" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Nom de l'objet" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3709,9 +3854,11 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "" +#: 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 "Pièces jointes" #. module: base #: field:ir.rule,field_id:0 @@ -3762,9 +3909,9 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Terminé" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3780,9 +3927,7 @@ msgstr "Facture" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -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 "" #. module: base @@ -3820,6 +3965,7 @@ msgstr "Taille" #: 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 "Ville" @@ -3830,11 +3976,8 @@ msgstr "" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères " -"spéciaux !" +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" #. module: base #: rml:ir.module.reference:0 @@ -3842,8 +3985,8 @@ msgid "Module:" msgstr "Module :" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3864,6 +4007,11 @@ msgstr "Menu" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3871,20 +4019,14 @@ 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 -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nom du rôle" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "Créer le fichier XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Menus" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3905,11 +4047,26 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +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 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3925,8 +4082,8 @@ msgid "STOCK_HOME" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "Entrez au moins un champ !" @@ -3937,8 +4094,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -4013,9 +4171,9 @@ msgid "Child ids" msgstr "" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Format de fichier" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -4024,9 +4182,9 @@ msgid "Resource" msgstr "Ressource" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Mettre à jour la Date" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4109,6 +4267,12 @@ msgstr "" msgid "Field Mappings" msgstr "" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "La méthode 'copy' n'est pas implémentée dans cet objet !" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4126,8 +4290,8 @@ msgid "center" msgstr "centre" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "" @@ -4142,9 +4306,10 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Rafraîchissement automatique" +#: 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 @@ -4173,11 +4338,9 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." -msgstr "" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Limite de crédit" #. module: base #: field:ir.default,value:0 @@ -4211,10 +4374,15 @@ msgid "Category" msgstr "Catégorie" #. 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 "" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Statut" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Rafraîchissement automatique" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4222,9 +4390,9 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Numéro de compte" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4232,14 +4400,15 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "Fichier" #. module: base -#: field:ir.model,access:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Accès" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4274,14 +4443,14 @@ msgid "Fax" msgstr "Fax" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_workitem_form -#: model:ir.ui.menu,name:base.menu_workflow_workitem -msgid "Workitems" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4290,12 +4459,10 @@ msgid "STOCK_PRINT_PREVIEW" msgstr "" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" +msgstr "La méthode 'perm_read' n'est pas implémentée dans cet objet !" #. module: base #: field:ir.default,company_id:0 @@ -4306,13 +4473,6 @@ msgstr "" msgid "Company" msgstr "Société" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4323,6 +4483,11 @@ msgstr "Date de création" msgid "Email / SMS" msgstr "" +#. 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" @@ -4346,7 +4511,6 @@ msgid "Icon" msgstr "Icône" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4359,13 +4523,8 @@ msgid "Repeat missed" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "" @@ -4385,12 +4544,6 @@ msgstr "" msgid "Limit" msgstr "Limite" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4404,6 +4557,11 @@ msgstr "Requêtes" msgid "Or" msgstr "Ou" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4428,6 +4586,11 @@ msgstr "Sélection" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4435,14 +4598,14 @@ msgid "Installed modules" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4451,8 +4614,8 @@ msgid "Operator" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "" @@ -4504,8 +4667,8 @@ msgid "Report Footer 1" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "" @@ -4515,14 +4678,20 @@ msgstr "" msgid "Custom Report" 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 -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" +#: 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 @@ -4547,14 +4716,15 @@ msgid "Printed:" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4567,11 +4737,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4597,12 +4762,12 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_base_config #: view:ir.sequence:0 +#: view:res.company:0 msgid "Configuration" -msgstr "" +msgstr "Configuration" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4623,6 +4788,11 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4649,22 +4819,34 @@ msgid "Cascade" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4677,8 +4859,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4700,10 +4882,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 @@ -4716,6 +4895,11 @@ msgstr "" msgid "Short description" msgstr "" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4726,6 +4910,11 @@ msgstr "" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4737,10 +4926,11 @@ msgid "a5" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "" +#: 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 "Calendrier" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4753,18 +4943,27 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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.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 #: field:res.partner,address:0 #: view:res.partner.address:0 msgid "Contacts" -msgstr "" +msgstr "Contacts" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 @@ -4774,8 +4973,8 @@ msgid "Graph" msgstr "" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" msgstr "" #. module: base @@ -4783,6 +4982,11 @@ msgstr "" msgid "ir.actions.server" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4799,8 +5003,8 @@ msgid "Module dependency" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "" @@ -4815,6 +5019,11 @@ msgstr "" msgid "STOCK_DND_MULTIPLE" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4832,13 +5041,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4851,7 +5055,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4862,10 +5066,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4881,6 +5089,11 @@ msgstr "" msgid "Localisation" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4919,8 +5132,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4932,8 +5151,8 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base @@ -4947,10 +5166,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "TVA" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4974,16 +5197,13 @@ msgid "res.partner.som" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "" @@ -5000,6 +5220,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5082,8 +5308,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5104,11 +5337,11 @@ msgstr "" #. module: base #: constraint:res.partner:0 msgid "The VAT doesn't seem to be correct." -msgstr "" +msgstr "Le numéro de TVA ne semble pas correct." #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5126,6 +5359,11 @@ msgstr "" msgid "Start Upgrade" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5148,7 +5386,6 @@ msgid "Arguments" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5193,13 +5430,12 @@ msgstr "" #: 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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "" @@ -5235,14 +5471,19 @@ msgid "ir.attachment" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" +#: 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 @@ -5270,6 +5511,7 @@ msgstr "" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "" @@ -5279,8 +5521,8 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" msgstr "" #. module: base @@ -5306,13 +5548,8 @@ 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5336,8 +5573,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5356,8 +5593,9 @@ msgid "a4" msgstr "" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" +#: 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 @@ -5370,6 +5608,11 @@ msgstr "" msgid "STOCK_JUSTIFY_RIGHT" 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" @@ -5392,9 +5635,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5404,10 +5647,14 @@ msgstr "" msgid "Sequence" 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" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -5442,8 +5689,8 @@ msgid "Cancel Install" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "" @@ -5456,3 +5703,4 @@ msgstr "" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "" + diff --git a/bin/addons/base/i18n/hr_HR.po b/bin/addons/base/i18n/hr_HR.po index e27bcac4d6e..2f7ceee2e81 100644 --- a/bin/addons/base/i18n/hr_HR.po +++ b/bin/addons/base/i18n/hr_HR.po @@ -1,21 +1,19 @@ -# Croatian translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-10-25 15:54+0000\n" -"Last-Translator: dcrljenko \n" -"Language-Team: Croatian \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:53:56+0000\n" +"PO-Revision-Date: 2008-11-28 16:53:56+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,16 +42,9 @@ msgstr "" msgid "Unknown" msgstr "" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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 @@ -72,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -112,6 +108,7 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "" @@ -127,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "" @@ -159,6 +156,7 @@ msgstr "" #: 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 @@ -177,14 +175,14 @@ msgid "Object" 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" +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " msgstr "" #. module: base -#: view:res.users:0 -msgid "Add New User" +#: 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 @@ -193,10 +191,15 @@ msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -228,8 +231,12 @@ msgid "Key" msgstr "" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" +#: 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 @@ -243,6 +250,16 @@ msgstr "" 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" @@ -264,6 +281,12 @@ msgstr "" 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 @@ -271,13 +294,6 @@ msgstr "" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -294,8 +310,8 @@ msgid "Suffix" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "" @@ -331,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -362,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -407,7 +428,7 @@ msgid "Report Type" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -433,13 +454,15 @@ msgid "Other proprietary" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "" @@ -450,6 +473,11 @@ msgstr "" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -474,16 +502,26 @@ msgid "Form" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -495,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "" @@ -521,8 +559,8 @@ msgid "Web:" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "" @@ -587,11 +625,9 @@ 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." +#: 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 "" #. module: base @@ -605,21 +641,8 @@ msgid "Repositories" 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "" @@ -630,8 +653,8 @@ msgid "Contact" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" msgstr "" @@ -654,8 +677,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "" @@ -665,8 +688,8 @@ msgid "View Ref." msgstr "" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" msgstr "" #. module: base @@ -701,6 +724,11 @@ msgstr "" msgid "Corp." msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -715,8 +743,8 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" msgstr "" #. module: base @@ -730,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -746,12 +775,23 @@ msgstr "" msgid "Group" 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 +#: 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 "" @@ -781,8 +821,7 @@ msgstr "" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "" #. module: base @@ -796,18 +835,15 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" +#: 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." +#: 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 "" #. module: base @@ -817,11 +853,14 @@ msgstr "" 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." +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 @@ -830,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -849,22 +888,15 @@ msgstr "" msgid "User ID" msgstr "" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -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, ...)" +#: 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 "" #. module: base @@ -883,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -907,11 +944,6 @@ msgstr "" msgid "Default" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -945,8 +977,8 @@ msgid "Bank type" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "" @@ -956,8 +988,8 @@ msgid "Header/Footer" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "" @@ -966,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -979,8 +1016,8 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1031,14 +1068,13 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" 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 "" @@ -1072,12 +1108,6 @@ msgstr "" msgid "System Upgrade" 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 "Reload Official Translations" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1105,8 +1135,9 @@ msgid "Parent Menu" msgstr "" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1132,12 +1163,8 @@ msgid "ir.report.custom" 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" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" msgstr "" #. module: base @@ -1155,6 +1182,11 @@ msgstr "" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1166,9 +1198,13 @@ msgid "Pie Chart" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1186,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1212,11 +1243,6 @@ msgstr "" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1267,18 +1293,15 @@ 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." 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" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" msgstr "" #. module: base @@ -1303,13 +1326,14 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" +#: 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" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" msgstr "" #. module: base @@ -1357,20 +1381,24 @@ msgid "Sequences" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" 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 -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1379,8 +1407,8 @@ msgid "Bank account" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" msgstr "" @@ -1429,14 +1457,26 @@ msgstr "" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1455,6 +1495,7 @@ 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 @@ -1466,14 +1507,19 @@ msgstr "" msgid "Send Email" 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 -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -1509,6 +1555,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1516,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1545,15 +1592,19 @@ msgstr "" 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 "" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1595,8 +1646,7 @@ msgstr "" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" msgstr "" @@ -1612,21 +1662,18 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" 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 -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1640,25 +1687,19 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" #. module: base -#: view:res.groups:0 -msgid "Menus" -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 "" @@ -1679,8 +1720,8 @@ msgid "Subject" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "" @@ -1701,9 +1742,8 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" msgstr "" #. module: base @@ -1733,6 +1773,7 @@ msgid "State of Mind" msgstr "" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1741,15 +1782,35 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" msgstr "" #. module: base @@ -1815,8 +1876,14 @@ msgid "STOCK_OK" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "" @@ -1837,8 +1904,8 @@ msgid "None" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "" @@ -1859,13 +1926,13 @@ msgid "Module Category" msgstr "" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1884,11 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1929,8 +1993,8 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "" @@ -1946,6 +2010,7 @@ 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" @@ -1984,7 +2049,7 @@ msgid "Channel Name" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1993,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2014,20 +2074,19 @@ msgstr "" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2047,14 +2106,18 @@ 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 -#: selection:ir.rule,operator:0 -msgid "child_of" +#: 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 @@ -2069,9 +2132,9 @@ msgid "STOCK_GO_BACK" msgstr "" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "" @@ -2119,8 +2182,8 @@ msgid "unknown" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "" @@ -2153,7 +2216,7 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" msgstr "" @@ -2199,11 +2262,6 @@ msgstr "" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2237,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2262,11 +2325,6 @@ msgstr "" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2301,14 +2359,24 @@ msgstr "" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "" @@ -2320,8 +2388,8 @@ msgid "Python Code" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "" @@ -2331,8 +2399,8 @@ msgid "Field Label" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "" @@ -2367,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2375,6 +2442,7 @@ msgstr "" #: 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 @@ -2382,8 +2450,8 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -2392,7 +2460,11 @@ msgid "Modules Management" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 +#: 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 @@ -2403,7 +2475,6 @@ msgstr "" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "" @@ -2438,7 +2509,7 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2454,9 +2525,8 @@ msgid "Meta Datas" 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" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" msgstr "" #. module: base @@ -2465,12 +2535,13 @@ msgid "raw" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, 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 "" @@ -2481,18 +2552,13 @@ msgid "Childs Field" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" +#: 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 -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "" @@ -2514,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2540,9 +2606,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 @@ -2556,14 +2620,14 @@ msgid "Cancel Upgrade" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2576,14 +2640,19 @@ msgstr "" msgid "Cumulate" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "" @@ -2605,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2631,11 +2700,22 @@ msgstr "" msgid "Name" 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 #: 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 msgid "On Create" @@ -2657,8 +2737,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "" @@ -2675,21 +2755,15 @@ 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 all the version number.\n" "- The last parenthesis must match the extension of the module." msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2737,6 +2811,16 @@ msgstr "" msgid "STOCK_COPY" msgstr "" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2753,8 +2837,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "" @@ -2788,6 +2872,11 @@ msgstr "" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2800,8 +2889,8 @@ msgid "Readonly" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "" @@ -2831,11 +2920,6 @@ msgstr "" msgid "Document" msgstr "" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2858,11 +2942,14 @@ msgid "STOCK_STOP" msgstr "" #. module: base -#: code: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" +#: code:addons/base/ir/ir_model.py:0 +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 +#: field:res.partner.bank,acc_number:0 +msgid "Account number" msgstr "" #. module: base @@ -2870,6 +2957,11 @@ msgstr "" 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" @@ -2892,8 +2984,8 @@ msgid "Day: %(day)s" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "" @@ -3012,9 +3104,16 @@ 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 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3065,6 +3164,11 @@ msgstr "" 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" @@ -3084,8 +3188,8 @@ msgid "Directory:" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" msgstr "" #. module: base @@ -3094,8 +3198,13 @@ msgid "Trigger Name" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "" @@ -3130,8 +3239,14 @@ msgid "Source" msgstr "" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" +#: 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 +msgid "Keep empty for a private address, not related to partner." msgstr "" #. module: base @@ -3180,11 +3295,9 @@ msgid "Resource Name" 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." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." msgstr "" #. module: base @@ -3203,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3229,8 +3348,8 @@ msgid "References" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "" @@ -3256,20 +3375,20 @@ msgid "Kind" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, 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.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3285,20 +3404,24 @@ msgstr "" msgid "Tree" 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_CLEAR" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base @@ -3317,13 +3440,19 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "" @@ -3366,6 +3495,12 @@ msgstr "" 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 @@ -3379,14 +3514,13 @@ msgid "Type of view" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3411,12 +3545,27 @@ msgstr "" msgid "STOCK_PROPERTIES" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 msgid "Uninstall (beta)" @@ -3429,8 +3578,8 @@ msgid "New Window" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "" @@ -3445,10 +3594,9 @@ msgid "Parent Action" 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 !" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" msgstr "" #. module: base @@ -3462,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3480,6 +3634,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3495,8 +3650,20 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3521,16 +3688,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." +msgstr "" + +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3548,6 +3725,7 @@ 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 @@ -3565,8 +3743,8 @@ msgid "Active" msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -3598,8 +3776,13 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" msgstr "" #. module: base @@ -3607,11 +3790,6 @@ msgstr "" 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" @@ -3630,15 +3808,15 @@ msgstr "" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3671,8 +3849,10 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" +#: 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 @@ -3724,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3742,9 +3922,7 @@ msgstr "" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -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 "" #. module: base @@ -3782,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3792,8 +3971,7 @@ 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 @@ -3802,8 +3980,8 @@ msgid "Module:" msgstr "" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3824,6 +4002,11 @@ msgstr "" msgid "<=" msgstr "" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3831,19 +4014,13 @@ 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 -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3865,11 +4042,26 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +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 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3885,8 +4077,8 @@ msgid "STOCK_HOME" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "" @@ -3897,8 +4089,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3973,8 +4166,8 @@ msgid "Child ids" msgstr "" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -3984,8 +4177,8 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" msgstr "" #. module: base @@ -4069,6 +4262,12 @@ msgstr "" msgid "Field Mappings" msgstr "" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4086,8 +4285,8 @@ msgid "center" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "" @@ -4102,8 +4301,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4133,10 +4333,8 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base @@ -4171,9 +4369,14 @@ msgid "Category" 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4182,8 +4385,8 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" +#: selection:ir.actions.todo,type:0 +msgid "Service" msgstr "" #. module: base @@ -4192,12 +4395,13 @@ msgid "Add an auto-refresh on the view" 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:0 +#: field:ir.model,access_ids:0 msgid "Access" msgstr "" @@ -4234,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4250,11 +4454,9 @@ msgid "STOCK_PRINT_PREVIEW" msgstr "" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4266,13 +4468,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4283,6 +4478,11 @@ msgstr "" msgid "Email / SMS" msgstr "" +#. 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" @@ -4306,7 +4506,6 @@ msgid "Icon" msgstr "" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4319,13 +4518,8 @@ msgid "Repeat missed" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "" @@ -4345,12 +4539,6 @@ msgstr "" msgid "Limit" msgstr "" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4364,6 +4552,11 @@ msgstr "" msgid "Or" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4388,6 +4581,11 @@ msgstr "" msgid "=" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4395,14 +4593,14 @@ msgid "Installed modules" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4411,8 +4609,8 @@ msgid "Operator" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "" @@ -4464,8 +4662,8 @@ msgid "Report Footer 1" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "" @@ -4475,14 +4673,20 @@ msgstr "" msgid "Custom Report" 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 -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" +#: 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 @@ -4507,14 +4711,15 @@ msgid "Printed:" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4527,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4557,12 +4757,12 @@ 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.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4583,6 +4783,11 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4609,22 +4814,34 @@ msgid "Cascade" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4637,8 +4854,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4660,10 +4877,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 @@ -4676,6 +4890,11 @@ msgstr "" msgid "Short description" msgstr "" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4686,6 +4905,11 @@ msgstr "" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4697,9 +4921,10 @@ msgid "a5" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" +#: 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 @@ -4713,11 +4938,20 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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.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 @@ -4734,8 +4968,8 @@ msgid "Graph" msgstr "" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" msgstr "" #. module: base @@ -4743,6 +4977,11 @@ msgstr "" msgid "ir.actions.server" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4759,8 +4998,8 @@ msgid "Module dependency" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "" @@ -4775,6 +5014,11 @@ msgstr "" msgid "STOCK_DND_MULTIPLE" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4792,13 +5036,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4811,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4822,10 +5061,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4841,6 +5084,11 @@ msgstr "" msgid "Localisation" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4879,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4892,8 +5146,8 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base @@ -4907,10 +5161,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4934,16 +5192,13 @@ msgid "res.partner.som" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "" @@ -4960,6 +5215,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5042,8 +5303,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5067,8 +5335,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5086,6 +5354,11 @@ msgstr "" msgid "Start Upgrade" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5108,7 +5381,6 @@ msgid "Arguments" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5153,13 +5425,12 @@ msgstr "" #: 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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "" @@ -5195,14 +5466,19 @@ msgid "ir.attachment" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" +#: 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 @@ -5230,6 +5506,7 @@ msgstr "" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "" @@ -5239,8 +5516,8 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" msgstr "" #. module: base @@ -5266,13 +5543,8 @@ 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5296,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5316,8 +5588,9 @@ msgid "a4" msgstr "" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" +#: 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 @@ -5330,6 +5603,11 @@ msgstr "" msgid "STOCK_JUSTIFY_RIGHT" 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" @@ -5352,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5364,10 +5642,14 @@ msgstr "" msgid "Sequence" 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" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -5402,8 +5684,8 @@ msgid "Cancel Install" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "" @@ -5416,3 +5698,4 @@ msgstr "" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "" + diff --git a/bin/addons/base/i18n/hu_HU.po b/bin/addons/base/i18n/hu_HU.po index 67860adcad2..f36784a50e2 100644 --- a/bin/addons/base/i18n/hu_HU.po +++ b/bin/addons/base/i18n/hu_HU.po @@ -4,16 +4,16 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 4.3.0" -"Report-Msgid-Bugs-To: support@openerp.com" -"POT-Creation-Date: 2008-09-11 15:44:35+0000" -"PO-Revision-Date: 2008-09-11 15:44:35+0000" -"Last-Translator: <>" -"Language-Team: " -"MIME-Version: 1.0" -"Content-Type: text/plain; charset=UTF-8" -"Content-Transfer-Encoding: " -"Plural-Forms: " +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:59:13+0000\n" +"PO-Revision-Date: 2008-11-28 16:59:13+0000\n" +"Last-Translator: <>\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 #: model:ir.actions.act_window,name:base.ir_cron_act @@ -42,11 +42,6 @@ msgstr "" msgid "Unknown" msgstr "" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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." @@ -68,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -124,7 +124,7 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" @@ -156,6 +156,7 @@ msgstr "" #: 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 @@ -184,21 +185,21 @@ msgstr "" msgid "Categories of Modules" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -230,8 +231,12 @@ msgid "Key" msgstr "" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" +#: 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 @@ -245,6 +250,16 @@ msgstr "" 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" @@ -266,6 +281,12 @@ msgstr "Felhasználó ref." 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 @@ -273,13 +294,6 @@ msgstr "" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -333,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -364,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -441,6 +460,7 @@ msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 #: view:ir.model:0 #: view:res.partner:0 @@ -453,6 +473,11 @@ msgstr "Jegyzetek" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -482,6 +507,11 @@ msgstr "" msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" @@ -658,8 +688,8 @@ msgid "View Ref." msgstr "" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" msgstr "" #. module: base @@ -713,8 +743,8 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" msgstr "" #. module: base @@ -728,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -744,11 +775,21 @@ msgstr "" msgid "Group" 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "" + #. module: base #: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 @@ -794,10 +835,10 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Státusz" +#: wizard_field:server.action.create,init,type:0 +#: wizard_view:server.action.create,init:0 +msgid "Select Action Type" +msgstr "" #. module: base #, python-format @@ -812,6 +853,11 @@ msgstr "" 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." @@ -823,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -842,11 +888,6 @@ msgstr "" msgid "User ID" msgstr "" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - #. module: base #: view:ir.rule:0 msgid "Test" @@ -874,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -898,11 +944,6 @@ msgstr "" msgid "Default" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -957,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "Kérés előzmények" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -970,8 +1016,8 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1022,9 +1068,9 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Jelentés mezők" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "" #. module: base #: help:res.country,code:0 @@ -1089,8 +1135,9 @@ msgid "Parent Menu" msgstr "Szülő menü" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1116,12 +1163,8 @@ msgid "ir.report.custom" 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" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" msgstr "" #. module: base @@ -1139,6 +1182,11 @@ msgstr "" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Jelentés mezők" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1150,9 +1198,13 @@ msgid "Pie Chart" msgstr "" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1170,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1196,11 +1243,6 @@ msgstr "" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1257,10 +1299,9 @@ msgid "You try to install a module that depends on the module: %s.\nBut this mod 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" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" msgstr "" #. module: base @@ -1285,13 +1326,14 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" +#: 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" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" msgstr "" #. module: base @@ -1344,15 +1386,19 @@ msgstr "" msgid "Unknown position in inherited view %s !" 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 -#, python-format -#: code:osv/orm.py:0 -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1415,11 +1461,22 @@ msgstr "" msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1438,6 +1495,7 @@ 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 @@ -1497,6 +1555,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1504,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1533,15 +1592,19 @@ msgstr "" 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 "" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1609,9 +1672,8 @@ msgid "The .rml path of the file or NULL if the content is in report_rml_content msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "Can not create the module file:\n %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1625,22 +1687,16 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" -#. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#, python-format -#: code:addons/base/ir/ir_model.py:0 -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - #. module: base #, python-format #: code:addons/base/ir/ir_model.py:0 @@ -1686,9 +1742,8 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" msgstr "" #. module: base @@ -1718,6 +1773,7 @@ msgid "State of Mind" msgstr "" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1726,6 +1782,27 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" @@ -1849,13 +1926,13 @@ msgid "Module Category" msgstr "" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1874,9 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "The module you are trying to remove depends on installed modules :\n %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1973,7 +2049,7 @@ msgid "Channel Name" msgstr "Csatorna neve" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1982,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2003,20 +2074,19 @@ msgstr "" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2040,8 +2110,14 @@ msgid "This function will check for new modules in the 'addons' path and on modu msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" +#: 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 @@ -2140,7 +2216,7 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" msgstr "" @@ -2186,11 +2262,6 @@ msgstr "" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2224,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2249,11 +2325,6 @@ msgstr "" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2288,11 +2359,21 @@ msgstr "" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + #. module: base #, python-format #: code:osv/fields.py:0 @@ -2354,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2362,6 +2442,7 @@ msgstr "" #: 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 @@ -2369,8 +2450,8 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -2384,7 +2465,6 @@ msgid "terp-administration" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2429,7 +2509,7 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2445,9 +2525,8 @@ msgid "Meta Datas" msgstr "Metaadatok" #. 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" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" msgstr "" #. module: base @@ -2462,6 +2541,7 @@ msgid "Partners: " msgstr "" #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "" @@ -2472,13 +2552,8 @@ msgid "Childs Field" msgstr "Gyerek mezői" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" +#: field:res.roles,name:0 +msgid "Role Name" msgstr "" #. module: base @@ -2505,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2551,8 +2626,8 @@ msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2599,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2625,11 +2700,22 @@ msgstr "" msgid "Name" 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 #: 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 msgid "On Create" @@ -2676,13 +2762,8 @@ msgid "Regexp to search module on the repository webpage:\n" msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "ÁFA" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2731,14 +2812,13 @@ msgid "STOCK_COPY" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" 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" +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" msgstr "" #. module: base @@ -2792,6 +2872,11 @@ msgstr "Tervezett jövedelem" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2835,11 +2920,6 @@ msgstr "" msgid "Document" msgstr "Dokumentum" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2867,11 +2947,21 @@ 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 "" +#. 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 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" @@ -3018,6 +3108,12 @@ msgstr "" msgid "Help" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3068,6 +3164,11 @@ msgstr "" 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" @@ -3087,8 +3188,8 @@ msgid "Directory:" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" msgstr "" #. module: base @@ -3096,6 +3197,11 @@ msgstr "" 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 @@ -3133,8 +3239,14 @@ msgid "Source" msgstr "" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" +#: 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 +msgid "Keep empty for a private address, not related to partner." msgstr "" #. module: base @@ -3204,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3269,8 +3387,8 @@ msgid "Tree can only be used in tabular reports" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3297,14 +3415,13 @@ msgid "STOCK_CLEAR" msgstr "" #. module: base -#, python-format -#: code:addons/base/ir/ir_report_custom.py:0 -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base @@ -3323,8 +3440,14 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" msgstr "" #. module: base @@ -3372,6 +3495,12 @@ msgstr "" 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 @@ -3385,14 +3514,13 @@ msgid "Type of view" msgstr "" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3433,6 +3561,11 @@ msgstr "" msgid "Grant access to menu" msgstr "" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3477,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3495,6 +3634,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3510,8 +3650,20 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3536,14 +3688,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." msgstr "" +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3561,6 +3725,7 @@ 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 @@ -3578,8 +3743,8 @@ msgid "Active" msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -3611,8 +3776,13 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" msgstr "" #. module: base @@ -3620,11 +3790,6 @@ msgstr "" 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" @@ -3643,15 +3808,15 @@ msgstr "" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3684,8 +3849,10 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" +#: 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 @@ -3737,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3793,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3812,8 +3980,8 @@ msgid "Module:" msgstr "" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3850,13 +4018,9 @@ msgid "The selected language has been successfully installed. You must change th msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3878,6 +4042,11 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "" + #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" @@ -3888,6 +4057,11 @@ msgstr "" msgid "STOCK_EDIT" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3915,8 +4089,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3991,8 +4166,8 @@ msgid "Child ids" msgstr "Gyerekek" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -4002,8 +4177,8 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" msgstr "" #. module: base @@ -4126,8 +4301,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4157,8 +4333,8 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "This wizard will create an XML file for Vat details and total invoiced amounts per partner." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base @@ -4193,9 +4369,14 @@ msgid "Category" 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Státusz" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4204,8 +4385,8 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" +#: selection:ir.actions.todo,type:0 +msgid "Service" msgstr "" #. module: base @@ -4214,6 +4395,7 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" @@ -4256,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4273,8 +4455,8 @@ msgstr "" #. module: base #, python-format -#: code:report/custom.py:0 -msgid "The sum of the data (2nd field) is null.\nWe can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4286,11 +4468,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4329,7 +4506,6 @@ msgid "Icon" msgstr "" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4341,11 +4517,6 @@ msgstr "" msgid "Repeat missed" msgstr "" -#. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - #. module: base #, python-format #: code:osv/orm.py:0 @@ -4410,6 +4581,11 @@ msgstr "" msgid "=" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4423,8 +4599,8 @@ msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4497,6 +4673,11 @@ msgstr "" msgid "Custom Report" 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" @@ -4531,13 +4712,14 @@ msgstr "" #. module: base #, python-format -#: code:osv/fields.py:0 -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4550,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4586,7 +4763,6 @@ msgstr "" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4607,6 +4783,11 @@ msgstr "Megyekód" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4639,8 +4820,10 @@ msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" +#: 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 @@ -4671,8 +4854,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4722,6 +4905,11 @@ msgstr "Megye" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4733,9 +4921,10 @@ msgid "a5" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" +#: 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 @@ -4749,6 +4938,12 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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." @@ -4841,13 +5036,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4860,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4871,10 +5061,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4933,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4946,13 +5146,13 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" msgstr "" #. module: base @@ -4961,8 +5161,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "ÁFA" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4987,6 +5193,8 @@ msgstr "" #. module: base #, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 @@ -5007,6 +5215,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5089,8 +5303,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5114,8 +5335,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5160,7 +5381,6 @@ msgid "Arguments" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5205,7 +5425,6 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "" @@ -5257,6 +5476,11 @@ msgstr "" msgid "Automatic XSL:RML" msgstr "" +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5292,8 +5516,8 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" msgstr "" #. module: base @@ -5319,13 +5543,8 @@ 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5349,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5411,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5423,6 +5642,11 @@ msgstr "" msgid "Sequence" 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" diff --git a/bin/addons/base/i18n/it_IT.po b/bin/addons/base/i18n/it_IT.po index 326e67fdc34..320f4d49dfb 100644 --- a/bin/addons/base/i18n/it_IT.po +++ b/bin/addons/base/i18n/it_IT.po @@ -1,21 +1,19 @@ -# Italian translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-11-18 19:40+0000\n" -"Last-Translator: LucaSub \n" -"Language-Team: Italian \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:00:06+0000\n" +"PO-Revision-Date: 2008-11-28 17:00:06+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,19 +42,10 @@ msgstr "Mensile" msgid "Unknown" msgstr "Sconosciuto" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -msgstr "Clicca e Collega" - #. 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 "" -"Questa procedura rileverà nuovi termini nell'applicazione in modo da poterli " -"aggiornare manualmente" +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "Questa procedura rileverà nuovi termini nell'applicazione in modo da poterli aggiornare manualmente" #. module: base #: field:workflow.activity,out_transitions:0 @@ -74,6 +63,11 @@ msgstr "STOCK_SAVE" msgid "Change My Preferences" msgstr "Cambia le Mie Preferenze" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Apri Finestra" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -114,6 +108,7 @@ msgstr "STOCK_SORT_ASCENDING" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Regole Accesso" @@ -129,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "STOCK_MEDIA_FORWARD" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Saltato" +msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "Non puoi creare questo tipo di documenti (%s)" @@ -161,6 +156,7 @@ msgstr "Workflow" #: 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 @@ -178,26 +174,31 @@ msgstr "Workflow" msgid "Object" msgstr "Oggetto" +#. 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 "Categorie di Moduli" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "Aggiungi Nuovo Utente" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "ir.default" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "Non Avviato" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -230,9 +231,13 @@ msgid "Key" msgstr "Chiave" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "Esportazione" +#: 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 "Ruoli" #. module: base #: model:ir.actions.act_window,name:base.action_country @@ -245,6 +250,16 @@ msgstr "Nazioni" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Visualizza Massimo" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "" + #. module: base #: selection:res.request,priority:0 msgid "Normal" @@ -266,6 +281,12 @@ msgstr "Rif. Utente" msgid "Import new language" msgstr "Importa Nuova Lingua" +#. 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 @@ -273,13 +294,6 @@ msgstr "Importa Nuova Lingua" msgid "condition" msgstr "Condizione" -#. 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 "Allegati" - #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -296,8 +310,8 @@ msgid "Suffix" msgstr "Suffisso" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "Il metodo di scollegamento non è previsto per questo oggetto" @@ -333,9 +347,9 @@ msgid "Activites" msgstr "Attività" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Testo" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -364,6 +378,11 @@ msgstr "Transizioni" msgid "ir.ui.view.custom" msgstr "ir.ui.view.custom" +#. 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "Tipo Report" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -435,13 +454,15 @@ msgid "Other proprietary" msgstr "Altro Titolare" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" +msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Note" @@ -452,6 +473,11 @@ msgstr "Note" msgid "All terms" msgstr "Tutti i Termini" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -476,16 +502,26 @@ msgid "Form" msgstr "Modulo" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "Impossibile definire una colonna %s. Parola Chiave Riservata !" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "Attività di Destinazione" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -497,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "Il metodo cerca__nome non è implementato per questo eggetto" @@ -523,8 +559,8 @@ msgid "Web:" msgstr "Web:" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "nuovo" @@ -589,14 +625,10 @@ msgid "Contact Name" msgstr "Nome Contatto" #. 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 "" -"Salva questo documento come un file %s e modificalo con un software " -"specifico o un editor di testo. La codifica del file è UTF-8." +#: 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 "Salva questo documento come un file %s e modificalo con un software specifico o un editor di testo. La codifica del file è UTF-8." #. module: base #: view:ir.module.module:0 @@ -609,29 +641,8 @@ msgid "Repositories" msgstr "Repositories" #. 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" -"I pacchetti ufficiali delle traduzioni di OpenERP/OpenObject vengono gestiti " -"direttamente attraverso 'Launchpad'. Utilizzamo l'apposita interfaccia per " -"sincronizzare tutte le attività di traduzione. Per migliorare la qualità " -"delle traduzioni di alcuni termini, dovresti modificarli direttamente " -"dall'interfaccia di Launchpad. Nel caso in cui tu abbia creato diverse " -"traduzioni per un tuo modulo, potrai pubblicare tutte le traduzioni con una " -"unica operazione. Per fare questo: invia il file .POT via Email al gruppo di " -"traduzione. Verrà valutato ed integrato." - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "Errore Password !" @@ -642,12 +653,10 @@ msgid "Contact" msgstr "Contatto" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" -"Questo indirizzo URL '%s' deve condurre ad un file html contenente " -"collegamenti a diversi moduli in formato .zip." +msgstr "Questo indirizzo URL '%s' deve condurre ad un file html contenente collegamenti a diversi moduli in formato .zip." #. module: base #: model:ir.ui.menu,name:base.next_id_15 @@ -668,8 +677,8 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "ConcurrencyException" @@ -679,9 +688,9 @@ msgid "View Ref." msgstr "Rif. Vista" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Rif. Tabella" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" #. module: base #: field:res.partner,ean13:0 @@ -698,8 +707,7 @@ msgstr "Lista Repository" #. module: base #: help:ir.rule.group,rules:0 msgid "The rule is satisfied if at least one test is True" -msgstr "" -"La regola viene soddisfatta se almeno un test restituisce il valore True" +msgstr "La regola viene soddisfatta se almeno un test restituisce il valore True" #. module: base #: field:res.company,rml_header1:0 @@ -709,15 +717,18 @@ msgstr "Report - Intestazione" #. module: base #: view:ir.rule:0 msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" -"Se non forzi il dominio, verrà utilizzata la configurazione di dominio " -"semplice" +msgstr "Se non forzi il dominio, verrà utilizzata la configurazione di dominio semplice" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "Corp." +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -732,9 +743,9 @@ msgid "Default limit for the list view" msgstr "Limite Predefinito per la vista 'Lista'" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Data Aggiornamento" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" #. module: base #: field:ir.actions.act_window,src_model:0 @@ -747,8 +758,9 @@ msgid "Type fields" msgstr "Campi di Inserimento" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Passaggi Procedura Configurazione" @@ -763,12 +775,23 @@ msgstr "ir.ui.view_sc" msgid "Group" msgstr "Gruppo" +#. 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Firma" + +#. module: base +#: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 msgid "SMS" msgstr "SMS" @@ -798,11 +821,8 @@ msgstr "Moduli non Installati" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." -msgstr "" -"Il campo attivo ti permette di nascondere le categorie, senza per questo " -"eliminarle." +msgid "The active field allows you to hide the category, without removing it." +msgstr "Il campo attivo ti permette di nascondere le categorie, senza per questo eliminarle." #. module: base #: selection:wizard.module.lang.export,format:0 @@ -815,22 +835,16 @@ msgid "res.partner.event" msgstr "res.partner.event" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Stato" +#: 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 "" -"Salva questo documento con formato .CSV ed aprilo con il tuo foglio di " -"calcolo preferito. La codifica del file è UTF-8. Devi tradurre l'ultima " -"colonna prima di reimportarlo." +#: 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 "Salva questo documento con formato .CSV ed aprilo con il tuo foglio di calcolo preferito. La codifica del file è UTF-8. Devi tradurre l'ultima colonna prima di reimportarlo." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -840,14 +854,14 @@ msgid "Currencies" msgstr "Valute" #. 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." +#: selection:ir.actions.todo,type:0 +msgid "Configure" msgstr "" -"Se la lingua selezionata è stata caricata nel sistema, allora il relativo " -"documento per il partner verrà stampato in questa lingua. Diversamente, la " -"lingua di stampa sarà l'inglese." + +#. 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 "Se la lingua selezionata è stata caricata nel sistema, allora il relativo documento per il partner verrà stampato in questa lingua. Diversamente, la lingua di stampa sarà l'inglese." #. module: base #: selection:ir.ui.menu,icon:0 @@ -855,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Prossima Procedura" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "Oggetto Personalizzato" #. module: base #: selection:ir.model.fields,select_level:0 @@ -874,25 +888,16 @@ msgstr "Campo Base" msgid "User ID" msgstr "ID utente" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Pass Successivo di Configurazione" - #. module: base #: view:ir.rule:0 msgid "Test" msgstr "Test" #. 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 "" -"Non puoi rimuovere l'utente admin, poichè viene utilizzato internamente per " -"risorse create da OpenERP (aggiornamenti, installazioni...)" +#: 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 "Non puoi rimuovere l'utente admin, poichè viene utilizzato internamente per risorse create da OpenERP (aggiornamenti, installazioni...)" #. module: base #: wizard_view:module.module.update,update:0 @@ -910,6 +915,11 @@ msgstr "Contenuto SXW" msgid "ID Ref." msgstr "Rif. ID" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -934,11 +944,6 @@ msgstr "Vincolo" msgid "Default" msgstr "Predefinito" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Personalizzato" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -972,8 +977,8 @@ msgid "Bank type" msgstr "Tipo Banca" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "Metodo di ricezione non definito !" @@ -983,8 +988,8 @@ msgid "Header/Footer" msgstr "Intestazione / Piè di pagina" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "Il modo 'Lettura' non è implementato per questo oggetto." @@ -993,6 +998,11 @@ msgstr "Il modo 'Lettura' non è implementato per questo oggetto." msgid "Request History" msgstr "Riepilogo Richiesta" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -1006,9 +1016,9 @@ msgid "Partner Events" msgstr "Eventi Partner" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1058,17 +1068,15 @@ msgid "Partner contacts" msgstr "Contatti Partner" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Campo Rapporto" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +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 "" -"Il codice ISO della nazione (due caratteri):\n" +msgstr "Il codice ISO della nazione (due caratteri):\n" "Puoi utilizzare questo campo per una ricerca rapida." #. module: base @@ -1101,12 +1109,6 @@ msgstr "Procedura" msgid "System Upgrade" msgstr "Aggiornamento Sistema" -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Reload Official Translations" -msgstr "Ricarica Traduzioni Ufficiali" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1134,9 +1136,10 @@ msgid "Parent Menu" msgstr "Menu Superiore" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Definisci un Nuovo Utente" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "I Campi personalizzati devono avere un nome che inizia con 'x_' !" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1161,13 +1164,9 @@ msgid "ir.report.custom" msgstr "ir.report.custom" #. 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 "Ruoli" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "Esportazione" #. module: base #: view:ir.model:0 @@ -1184,6 +1183,11 @@ msgstr "Invio SMS di massa" msgid "get" msgstr "scarica" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Campo Rapporto" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1195,12 +1199,14 @@ msgid "Pie Chart" msgstr "Grafico a Torta" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" -"ID errato per un record di ricerca: ricevuto %s, atteso un valore di tipo " -"integer" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1217,11 +1223,6 @@ msgstr "STOCK_ZOOM_FIT" msgid "Sequence Type" msgstr "Tipo Sequenza" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Salta e Continua" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1243,11 +1244,6 @@ msgstr "Campo Collegato 0" msgid "Update Modules List" msgstr "Aggiorna Lista Moduli" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Nome del File di Dati" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1298,21 +1294,16 @@ msgid "Model" msgstr "Modello" #. 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -"Stai tentando di installare un modulo che dipende da modulo: %s.\n" -"Ma quest'ultimo modulo non è disponibile nel tuo sistema." #. 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 "Calendario" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Messaggio" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1336,14 +1327,15 @@ msgid "Modules to update" msgstr "Moduli da Aggiornare" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Struttura Azienda" +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Sig.rina" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" -msgstr "Apri Finestra" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Attività" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1390,21 +1382,25 @@ msgid "Sequences" msgstr "Sequenze" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" msgstr "Posizione sconosciuta nell vista ereditata %s !" +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" msgstr "Data Avvio Automatico" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" -msgstr "Errore nella validazione del campo %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -1412,12 +1408,10 @@ msgid "Bank account" msgstr "Conto bancario" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" -msgstr "" -"Attenzione: si sta tentando di utilizzare un campo che a sua volta utilizza " -"un oggetto sconosciuto" +msgstr "Attenzione: si sta tentando di utilizzare un campo che a sua volta utilizza un oggetto sconosciuto" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1464,14 +1458,26 @@ msgstr "Attivazione" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Fornitore" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +msgstr "" + #. module: base #: field:ir.model.fields,translate:0 msgid "Translate" msgstr "Traduci" +#. 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" @@ -1490,6 +1496,7 @@ msgstr "wizard.module.update_translations" #. 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 @@ -1501,14 +1508,19 @@ msgstr "Visualizzazioni" msgid "Send Email" msgstr "Invia Email" +#. 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 "STOCK_SELECT_FONT" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" msgstr "Cerca di rimuovere un modulo installato o che verrà installato" @@ -1544,6 +1556,12 @@ msgstr "Oggetti" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1551,11 +1569,6 @@ msgstr "STOCK_GOTO_FIRST" msgid "Workflows" msgstr "Workflow" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Tipo Attivatore" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1580,16 +1593,20 @@ msgstr "Procedura Configurazione" msgid "Request Link" msgstr "Collegamento Rochiesta" +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Formato File" + #. 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 -msgid "Manualy Created" -msgstr "Creato Manualmente" +#: rml:ir.module.reference:0 +msgid "Description :" +msgstr "" #. module: base #: field:ir.report.custom,print_format:0 @@ -1630,11 +1647,9 @@ msgstr "res.roles" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" -msgstr "" -"0=Molto Urgente\n" +msgstr "0=Molto Urgente\n" "10=Non Urgente" #. module: base @@ -1649,26 +1664,19 @@ msgstr "Interfaccia Utente - Visualizzazioni" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" msgstr "Autorizzazioni Accesso" #. 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 "" -"Il percorso .rml del file oppure NULL se il contenuto si trova in " -"report_rml_content" +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "Il percorso .rml del file oppure NULL se il contenuto si trova in report_rml_content" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" -"Impossibile creare il file di modulo:\n" -" %s" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1681,25 +1689,19 @@ msgstr "Crea Menu" msgid "STOCK_MEDIA_RECORD" msgstr "STOCK_MEDIA_RECORD" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "child_of" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Indirizzo Partner" #. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "Menu" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "I Campi personalizzati devono avere un nome che inizia con 'x_' !" - -#. module: base #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "Non puoi rimuovere il modello '%s' !" @@ -1720,8 +1722,8 @@ msgid "Subject" msgstr "Oggetto" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "Il modo scrittura non è implementato per questo oggetto" @@ -1742,10 +1744,9 @@ msgid "Retailer" msgstr "Fornitore" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Codice Sequenza" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1774,6 +1775,7 @@ msgid "State of Mind" msgstr "Impressione" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1782,23 +1784,41 @@ msgstr "Impressione" msgid "Type" msgstr "Tipo" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "Creato Manualmente" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Attività Origine" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "STOCK_FILE" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "Il mmodo copia non è implementato per questo oggetto" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" #. module: base #: view:ir.rule.group:0 msgid "The rule is satisfied if all test are True (AND)" -msgstr "" -"La regola viene soddisfatta se tutti i test testituiscono il valore True " -"(AND)" +msgstr "La regola viene soddisfatta se tutti i test testituiscono il valore True (AND)" #. module: base #: wizard_view:module.upgrade,next:0 @@ -1858,8 +1878,14 @@ msgid "STOCK_OK" msgstr "STOCK_OK" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "Manca la Password !" @@ -1880,8 +1906,8 @@ msgid "None" msgstr "Nessuno" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "Non puoi scrivere in questo documento! (%s)" @@ -1901,16 +1927,16 @@ msgstr "API ID" msgid "Module Category" msgstr "Categoria Modulo" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Aggiungi e Continua" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" msgstr "Operando" +#. 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1927,15 +1953,9 @@ msgid "STOCK_UNINDENT" msgstr "STOCK_UNINDENT" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" -"Il modulo che stai tentando di rimuovere dipende da altri moduli attualmente " -"installati:\n" -" %s" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -1975,8 +1995,8 @@ msgid "Low" msgstr "Bassa" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "Errore ricorsivo nelle dipendenze dei moduli !" @@ -1992,6 +2012,7 @@ msgstr "Percorso XSL" #. 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" @@ -2030,20 +2051,15 @@ msgid "Channel Name" msgstr "Nome Canale" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Continua" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Interfaccia Semplice" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "Assegna Gruppi per definire Autorizzazioni d'Accesso" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2060,21 +2076,20 @@ msgstr "Allineamento" msgid "STOCK_UNDO" msgstr "STOCK_UNDO" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "Notifica" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Attività" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2093,16 +2108,19 @@ msgstr "Ricevi 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 "" -"Questa funzione cercherà nuovi moduli nel percorso 'addons' e nei repository" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "Questa funzione cercherà nuovi moduli nel percorso 'addons' e nei repository" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "child_of" +#: 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 "Nazione" #. module: base #: field:res.currency,rate_ids:0 @@ -2116,9 +2134,9 @@ msgid "STOCK_GO_BACK" msgstr "STOCK_GO_BACK" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "AccessError" @@ -2166,8 +2184,8 @@ msgid "unknown" msgstr "Sconosciuto" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "Il modo crea non è implementato per questo oggetto !" @@ -2200,9 +2218,9 @@ msgid "SXW path" msgstr "Percorso SXW" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Dati" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2246,11 +2264,6 @@ msgstr "Dati Dimostrativi" msgid "Module import" msgstr "Importa Modulo" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -msgstr "Limita Totale" - #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form #: model:ir.ui.menu,name:base.menu_action_res_company_form @@ -2284,6 +2297,11 @@ msgstr "File CSV" msgid "Parent Company" msgstr "Azienda Principale" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2309,11 +2327,6 @@ msgstr "Data Inizio" msgid "RML Internal Header" msgstr "Intestazione Interna RML" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "Lista Clienti Soggetti IVA" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2348,14 +2361,24 @@ msgstr "(anno)=" msgid "Code" msgstr "Codice" +#. 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/fields.py:0 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "Il modo get_memory non è implementato !" @@ -2367,8 +2390,8 @@ msgid "Python Code" msgstr "Codice Python" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "Query Errata" @@ -2378,8 +2401,8 @@ msgid "Field Label" msgstr "Etichetta Campo" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "Stai tentando di aggirare una regola d'accesso (Tipo Documento: %s)." @@ -2414,7 +2437,6 @@ msgid "Customers Partners" msgstr "Partner Clienti" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2422,6 +2444,7 @@ msgstr "Partner Clienti" #: 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 @@ -2429,9 +2452,9 @@ msgid "Cancel" msgstr "Annulla" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Accesso di Lettura" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2439,7 +2462,11 @@ msgid "Modules Management" msgstr "Gestione Moduli" #. module: base -#: field:ir.attachment,res_id:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2450,7 +2477,6 @@ msgstr "ID Risorsa" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Informazioni" @@ -2485,9 +2511,9 @@ msgid "RML path" msgstr "Percorso RML" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Successiva Procedura di Configurazione" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2501,10 +2527,9 @@ msgid "Meta Datas" msgstr "Metadati" #. 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 "Il valore della valuta per la valuta di valore 1" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Personalizzato" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2512,12 +2537,13 @@ msgid "raw" msgstr "grezzo" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Partners: " msgstr "Partner: " #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Altro" @@ -2528,18 +2554,13 @@ msgid "Childs Field" msgstr "Campo Collegato" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "ir.module.module.configuration.step" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nome Ruolo" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "ir.module.module.configuration.wizard" - -#. module: base -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "Non posso rimuovere l'utente root" @@ -2561,10 +2582,10 @@ msgstr "Venditore Dedicato" #. 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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2587,11 +2608,8 @@ msgstr "Report 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 "" -"L'utente, se esiste, che ha incarico di comunicare con questo partner" +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "L'utente, se esiste, che ha incarico di comunicare con questo partner" #. module: base #: selection:ir.translation,type:0 @@ -2604,15 +2622,15 @@ msgid "Cancel Upgrade" msgstr "Annulla Aggiornamento" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "Il modo cerca non è implementato per questo oggetto !" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" -msgstr "Email Da / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -2624,14 +2642,19 @@ msgstr "Data Prossima Chiamata" msgid "Cumulate" msgstr "Accumuka" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_lang msgid "res.lang" msgstr "res.lang" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "I Grafici a Torta necessitano di due campi" @@ -2653,12 +2676,12 @@ msgid "Create in Same Model" msgstr "Crea nello stesso Modello" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2679,11 +2702,22 @@ msgstr "Crea nello stesso Modello" msgid "Name" msgstr "Nome" +#. 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.ui.menu,icon:0 msgid "STOCK_APPLY" msgstr "STOCK_APPLY" +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" @@ -2705,8 +2739,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "STOCK_MEDIA_PAUSE" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "Errore !" @@ -2723,26 +2757,19 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Regexp per cercare moduli nel repository:\n" +msgstr "Regexp per cercare moduli nel repository:\n" "- La prima parentesi deve corrispondere al nome del modulo\n" "- la seconda parentesi deve corrispondere al numero di versione\n" "- L'ultima parentesi deve corrispondere all'estensione del modulo" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "IVA" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" -msgstr "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Per esportare una nuova lingua, non selezionare una lingua" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app @@ -2789,6 +2816,16 @@ msgstr "Istanze" msgid "STOCK_COPY" msgstr "STOCK_COPY" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2805,8 +2842,8 @@ msgid "ir.actions.act_window.view" msgstr "ir.actions.act_window.view" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Formato File errato" @@ -2840,6 +2877,11 @@ msgstr "Entrata Pianificata" msgid "Record rules" msgstr "Registra Regole" +#. 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2852,8 +2894,8 @@ msgid "Readonly" msgstr "Sola Lettura" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "Non puoi rimuovere il campo '%s' !" @@ -2883,11 +2925,6 @@ msgstr "ir.actions.wizard" msgid "Document" msgstr "Documento" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "Numero Contatti" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2910,21 +2947,26 @@ msgid "STOCK_STOP" msgstr "STOCK_STOP" #. module: base -#: code: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 "" -"\"%s\" contiene troppi punti. Gli ID XML non dovrebbero contenere punti. " -"Questi vengono utilizzati come riferimenti a dati di altri moduli, come in " -"module.reference_id" +#: code:addons/base/ir/ir_model.py:0 +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\" contiene troppi punti. Gli ID XML non dovrebbero contenere punti. Questi vengono utilizzati come riferimenti a dati di altri moduli, come in module.reference_id" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Numero Conto" #. 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 "" + #. module: base #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -2947,8 +2989,8 @@ msgid "Day: %(day)s" msgstr "Giorno: %(day)s" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "Non puoi leggere questo documento ! (%s)" @@ -3067,9 +3109,16 @@ msgstr "Valore Dominio" #. module: base #: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "Aiuto" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3102,9 +3151,7 @@ msgstr "Lista Controllo Accessi" #. module: base #: help:ir.rule.group,global:0 msgid "Make the rule global or it needs to be put on a group or user" -msgstr "" -"Rendi la regola globale. Altrimenti dovrà essere assegnata a un gruppo o a " -"un utente" +msgstr "Rendi la regola globale. Altrimenti dovrà essere assegnata a un gruppo o a un utente" #. module: base #: field:ir.actions.wizard,wiz_name:0 @@ -3122,6 +3169,11 @@ msgstr "Report Personalizzato" msgid "Schedule for Installation" msgstr "Pianifica per Installazione" +#. 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" @@ -3141,9 +3193,9 @@ msgid "Directory:" msgstr "Cartella:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Limite Credito" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" #. module: base #: field:ir.actions.server,trigger_name:0 @@ -3151,8 +3203,13 @@ msgid "Trigger Name" msgstr "Nome Trigger" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "Il nome del gruppo non può iniziare con '-'" @@ -3187,9 +3244,15 @@ msgid "Source" msgstr "Sorgente" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Attività Origine" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3237,14 +3300,10 @@ msgid "Resource Name" msgstr "Nome Risorsa" #. 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 "" -"Salva questo documento come file .tgz. Questo archivio contiene %s file UTF-" -"8 e può essere inviato du Launchpad." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "Salva questo documento come file .tgz. Questo archivio contiene %s file UTF-8 e può essere inviato du Launchpad." #. module: base #: field:res.partner.address,type:0 @@ -3262,6 +3321,12 @@ msgstr "Avvia Configurazione" msgid "Export Id" msgstr "ID Esportazione" +#. 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 "Azioni Finestra" + #. module: base #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3288,8 +3353,8 @@ msgid "References" msgstr "Riferimenti" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "Questa record nel frattempo è stato modificato." @@ -3315,23 +3380,21 @@ msgid "Kind" msgstr "Tipo" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "Questo metodo non esiste più" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Tree can only be used in tabular reports" -msgstr "" -"La struttura ad albero può essere utilizzata esclusivamente nei report " -"tabellari" +msgstr "La struttura ad albero può essere utilizzata esclusivamente nei report tabellari" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -3346,21 +3409,25 @@ msgstr "Conti Bancari" msgid "Tree" msgstr "Struttura ad Albero" +#. 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_CLEAR" msgstr "STOCK_CLEAR" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "I Grafici a Barre necessitano di almeno due campi" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Accesso di Lettura" #. module: base #: selection:ir.report.custom,type:0 @@ -3378,13 +3445,19 @@ msgid "Custom Field" msgstr "Campo Personalizzato" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Ruolo Richiesto" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "I Grafici a Barre necessitano di almeno due campi" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "Il modo search_memory non è implementato" @@ -3427,6 +3500,12 @@ msgstr "res.request" msgid "Rules" msgstr "Regole" +#. 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 @@ -3439,17 +3518,16 @@ msgstr "Aggiornamento di Sistema Completato" msgid "Type of view" msgstr "Tipo Vista" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "Il metodo perm_read non è implementato per questo oggetto" - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3472,12 +3550,27 @@ msgstr "STOCK_FIND" msgid "STOCK_PROPERTIES" msgstr "STOCK_PROPERTIES" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 "Concedi Accesso a Menu" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3490,8 +3583,8 @@ msgid "New Window" msgstr "Nuova Finestra" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "Il secondo campo dovrebbe contenere figure" @@ -3506,13 +3599,10 @@ msgid "Parent Action" msgstr "Azione Principale" #. 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 "" -"Impossibile generare il prossimo ID poichè alcuni partner hanno un ID " -"alfabetico" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "Impossibile generare il prossimo ID poichè alcuni partner hanno un ID alfabetico" #. module: base #: selection:ir.report.custom,state:0 @@ -3525,11 +3615,17 @@ msgid "Number of modules updated" msgstr "Numero di moduli aggiornati" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Salta Passaggio" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3543,6 +3639,7 @@ msgstr "Struttura Ruoli" #. 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" @@ -3558,9 +3655,21 @@ msgid "Active Partner Events" msgstr "Eventi Partner Attivi" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3585,17 +3694,25 @@ msgid "Phone" msgstr "Telefono" #. 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 views." +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" msgstr "" -"Se impostato a True, la procedura non verrà visualizzata nella barra degli " -"strumenti di destra" + +#. 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 views." +msgstr "Se impostato a True, la procedura non verrà visualizzata nella barra degli strumenti di destra" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Ruolo Richiesto" #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3613,6 +3730,7 @@ msgid "STOCK_SPELL_CHECK" msgstr "STOCK_SPELL_CHECK" #. module: base +#: field:ir.actions.todo,active:0 #: field:ir.cron,active:0 #: field:ir.module.repository,active:0 #: field:ir.sequence,active:0 @@ -3630,9 +3748,9 @@ msgid "Active" msgstr "Attivo" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Sig.rina" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3663,20 +3781,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "Cancella Autorizzazione" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Apri Finestra" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Mesi" #. module: base #: field:workflow.activity,signal_send:0 msgid "Signal (subflow.*)" msgstr "Signal (subflow.*)" -#. 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" @@ -3695,15 +3813,15 @@ msgstr "Categorie Collegate" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Nome Oggetto" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3736,9 +3854,11 @@ msgid "Object Relation" msgstr "Relazione Oggetto" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "ID Mandatario" +#: 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 "Allegati" #. module: base #: field:ir.rule,field_id:0 @@ -3789,9 +3909,9 @@ msgid "terp-mrp" msgstr "terp-mrp" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Completato" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3807,12 +3927,8 @@ msgstr "Fattura" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form views." -msgstr "" -"Se impostato a True, l'azione non verrà visualizzata nella barra degli " -"strumenti di destra" +msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgstr "Se impostato a True, l'azione non verrà visualizzata nella barra degli strumenti di destra" #. module: base #: model:ir.ui.menu,name:base.next_id_4 @@ -3849,6 +3965,7 @@ msgstr "Dimensione" #: 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 "Città" @@ -3859,10 +3976,8 @@ msgstr "Aziende Collegate" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Il nome oggetto deve iniziare con x_ e non può contenere caratteri speciali !" +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Il nome oggetto deve iniziare con x_ e non può contenere caratteri speciali !" #. module: base #: rml:ir.module.reference:0 @@ -3870,9 +3985,9 @@ msgid "Module:" msgstr "Modulo:" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" -msgstr "Oggetto Personalizzato" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "" #. module: base #: selection:ir.rule,operator:0 @@ -3892,6 +4007,11 @@ msgstr "Menu" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3899,23 +4019,14 @@ msgstr "Istanza Destinazione" #. 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 "" -"La lingua selezionata è stata correttamente installata. Devi ora modificare " -"le preferenze dell'utente e aprire una nuova scheda menu per vedere i " -"cambiamenti" +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 "La lingua selezionata è stata correttamente installata. Devi ora modificare le preferenze dell'utente e aprire una nuova scheda menu per vedere i cambiamenti" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nome Ruolo" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "Crea XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Menu" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3936,11 +4047,26 @@ msgstr "Obiettivo Azione" msgid "Child Field" msgstr "CampoCollegato" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Sig." + +#. 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 "STOCK_EDIT" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3956,8 +4082,8 @@ msgid "STOCK_HOME" msgstr "STOCK_HOME" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "Inserisci almeno un campo !" @@ -3968,9 +4094,10 @@ msgid "Others Actions" msgstr "Altre Azioni" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Visualizza Massimo" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -4044,9 +4171,9 @@ msgid "Child ids" msgstr "ID Collegati" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Formato File" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -4055,9 +4182,9 @@ msgid "Resource" msgstr "Risorse" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Data Aggiornamento" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4140,6 +4267,12 @@ msgstr "terp-sale" msgid "Field Mappings" msgstr "Mappatura Campi" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "Il mmodo copia non è implementato per questo oggetto" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4157,8 +4290,8 @@ msgid "center" msgstr "centra" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "Impossibile creare il file del modulo: %s !" @@ -4173,9 +4306,10 @@ msgid "Published Version" msgstr "Versione Pubblicata" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Auto-Aggiornamento" +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "Il valore della valuta per la valuta di valore 1" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -4204,13 +4338,9 @@ msgid "ir.exports.line" msgstr "ir.exports.line" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." -msgstr "" -"La procedura creerà un file XML per i dettagli IVA e gli importi totali " -"fatturati per partner" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Limite Credito" #. module: base #: field:ir.default,value:0 @@ -4244,10 +4374,15 @@ msgid "Category" msgstr "Categoria" #. 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 "Azioni Finestra" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Stato" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Auto-Aggiornamento" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4255,9 +4390,9 @@ msgid "ir.actions.act_window_close" msgstr "ir.actions.act_window_close" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Numero Conto" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4265,14 +4400,15 @@ msgid "Add an auto-refresh on the view" msgstr "Aggiungi auto-aggiornamento alla vista" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "Nome File" #. module: base -#: field:ir.model,access:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Accesso" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4306,31 +4442,27 @@ msgstr "Moduli da Scaricare" msgid "Fax" msgstr "Fax" +#. 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_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" msgstr "Oggetti di Lavoro" -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Per esportare una nuova lingua, non selezionare una lingua" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" msgstr "STOCK_PRINT_PREVIEW" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "" -"La somma dei dati (secondo campo) è nulla\n" -"Possiamo generare un Grafico a Torta !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" +msgstr "Il metodo perm_read non è implementato per questo oggetto" #. module: base #: field:ir.default,company_id:0 @@ -4341,16 +4473,6 @@ msgstr "" msgid "Company" msgstr "Azienda" -#. module: base -#: view:ir.actions.server:0 -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 "" -"Accedi in modo semplice e veloce ai campi collegati al presente oggetto " -"definendone il nome dell'attributo . Es: [[partner_id.name]] per Oggetto " -"Fattura" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4361,6 +4483,11 @@ msgstr "Data Creazione" msgid "Email / SMS" msgstr "Email / SMS" +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "Codice BIC/Swift" + #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" @@ -4384,7 +4511,6 @@ msgid "Icon" msgstr "Icona" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4397,13 +4523,8 @@ msgid "Repeat missed" msgstr "Ripetizione Fallita" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "Specifica Dettagli IVA" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "Impossibile trovare il tag '%s' nella vista principale" @@ -4423,12 +4544,6 @@ msgstr "ir.translation" msgid "Limit" msgstr "Limite" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "Installa nuovo file lingua" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4442,6 +4557,11 @@ msgstr "Richieste" msgid "Or" msgstr "Or" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4466,6 +4586,11 @@ msgstr "Selezione" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4473,15 +4598,15 @@ msgid "Installed modules" msgstr "Moduli Installati" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "Attenzione" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "Il file XML è stato creato" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" #. module: base #: field:ir.rule,operator:0 @@ -4489,8 +4614,8 @@ msgid "Operator" msgstr "Operatore" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "ValidateError" @@ -4542,8 +4667,8 @@ msgid "Report Footer 1" msgstr "Report - Piè di Pagina 1" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "Non puoi cancellare questo documento (%s)" @@ -4553,15 +4678,21 @@ msgstr "Non puoi cancellare questo documento (%s)" msgid "Custom Report" msgstr "Report Personalizzato" +#. 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 "Email" #. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "XSL RML Automatico" +#: 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 #: field:ir.model.access,perm_create:0 @@ -4585,15 +4716,16 @@ msgid "Printed:" msgstr "Stampato:" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" -msgstr "Il modo set_memory non è implementato" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" -msgstr "Salva File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" +msgstr "Il modo set_memory non è implementato" #. module: base #: selection:ir.actions.act_window,target:0 @@ -4605,11 +4737,6 @@ msgstr "Finestra Corrente" msgid "Partner category" msgstr "Categoria Partner" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "Seleziona Anno Fiscale" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4635,12 +4762,12 @@ msgstr "Interfaccia" #. module: base #: model:ir.ui.menu,name:base.menu_base_config #: view:ir.sequence:0 +#: view:res.company:0 msgid "Configuration" msgstr "Configurazione" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Tipo Campo" @@ -4661,6 +4788,11 @@ msgstr "Codice Stato" msgid "On delete" msgstr "Su Cancellazione" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4687,22 +4819,34 @@ msgid "Cascade" msgstr "A Cascata" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "Il campo %d dovrebbe essere una figura" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Firma" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" msgstr "Non Implementato" +#. 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4715,9 +4859,9 @@ msgid "Bank Account Type" msgstr "Tipo Conto Bancario" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" -msgstr "Testa File XML" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4738,15 +4882,8 @@ msgstr "Dominio" #. 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 "" -"Scegli l'interfaccia semplificata se stai testando OpenERP per la prima " -"volta. Le funzioni e le opzioni utilizzate meno spesso vengono nascoste " -"automaticamente. Potrai tornare all'interfaccia completa dal Menu di " -"Amministrazione" +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 "Scegli l'interfaccia semplificata se stai testando OpenERP per la prima volta. Le funzioni e le opzioni utilizzate meno spesso vengono nascoste automaticamente. Potrai tornare all'interfaccia completa dal Menu di Amministrazione" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4758,6 +4895,11 @@ msgstr "STOCK_PREFERENCES" msgid "Short description" msgstr "Breve Descrizione" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4768,6 +4910,11 @@ msgstr "Nome Stato" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "Il tuo Lgog - Utilizza una dimensione di circa 450x150 pixel" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4779,10 +4926,11 @@ msgid "a5" msgstr "a5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Messaggio" +#: 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 "Calendario" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4795,11 +4943,20 @@ msgstr "STOCK_GOTO_LAST" msgid "ir.actions.report.xml" msgstr "ir.actions.report.xml" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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.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 "Ricorda di uscire e rientrare se hai cambiato la password" #. module: base @@ -4816,15 +4973,20 @@ msgid "Graph" msgstr "Grafico" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "Codice BIC/Swift" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" +msgstr "La versione più recente" #. module: base #: model:ir.model,name:base.model_ir_actions_server msgid "ir.actions.server" msgstr "ir.actions.server" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4841,8 +5003,8 @@ msgid "Module dependency" msgstr "Dipendenza Modulo" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "Il modo name_get non è implementato per questo oggetto" @@ -4857,6 +5019,11 @@ msgstr "Applica Aggiornamenti Programmati" msgid "STOCK_DND_MULTIPLE" msgstr "STOCK_DND_MULTIPLE" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4874,14 +5041,9 @@ msgid "Server Action" msgstr "Azione Server" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "Il file è stato creato." - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Anno: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -4893,9 +5055,9 @@ msgid "Action Name" msgstr "Nome Azione" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "Avanzamento Configurazione" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 @@ -4904,10 +5066,14 @@ msgstr "Report - Piè di Pagina 2" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "E-Mail" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4923,6 +5089,11 @@ msgstr "Modalità Dividi" msgid "Localisation" msgstr "Localizzazione" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Esegui Conteggio" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4961,8 +5132,14 @@ msgid "Import a Translation File" msgstr "Importa File di Traduzione" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "Titoli Partner" @@ -4974,9 +5151,9 @@ msgid "Untranslated terms" msgstr "Termini non tradotti" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Apri Finestra" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -4989,13 +5166,15 @@ msgid "Transition" msgstr "Transizione" #. 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "IVA" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" -"Devi importare un file CSV codificato in UTF-8. Verifica che la prima riga " -"corrisponsa a:" #. module: base #: field:res.partner.address,birthdate:0 @@ -5018,16 +5197,13 @@ msgid "res.partner.som" msgstr "res.partner.som" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "Controlli Accesso" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "Errore" @@ -5044,6 +5220,12 @@ msgstr "Categorie Partner" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Codice Sequenza" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5126,8 +5308,15 @@ msgstr "res.company" msgid "Fields Mapping" msgstr "Mappatura Campi" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Rif. Tabella" + #. 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 @@ -5151,9 +5340,9 @@ msgid "The VAT doesn't seem to be correct." msgstr "L'IVA non sembra essere corretta" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Sig." +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5170,6 +5359,11 @@ msgstr "Configura Vista Semplice" msgid "Start Upgrade" msgstr "Inizia Aggiornamento" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5192,7 +5386,6 @@ msgid "Arguments" msgstr "Argomenti" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5237,13 +5430,12 @@ msgstr "res.config.view" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Descrizione" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "Operazione non valida" @@ -5279,15 +5471,20 @@ msgid "ir.attachment" msgstr "ir.attachment" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "Il valore \"%s\" per il campo \"%s\" non è nella selezione" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "Esegui Conteggio" +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "XSL RML Automatico" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" #. module: base #: view:workflow.workitem:0 @@ -5314,20 +5511,19 @@ msgstr "Esporta Lingua" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "Cliente" #. module: base #: view:ir.rule.group:0 msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Regole multiple sugli stessi oggetti possonon essere combinate utilizzando " -"l'operatore OR" +msgstr "Regole multiple sugli stessi oggetti possonon essere combinate utilizzando l'operatore OR" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Mesi" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Cancella Autorizzazione" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5352,14 +5548,9 @@ msgid "Mass Mailing" msgstr "Mailing di Massa" #. 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 -#: view:res.country:0 -msgid "Country" -msgstr "Nazione" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5382,9 +5573,9 @@ msgid "Unsubscribe Report" msgstr "Annula Sottoscrizione Report" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" -msgstr "Anno Fiscale" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" #. module: base #: constraint:res.partner.category:0 @@ -5402,9 +5593,10 @@ msgid "a4" msgstr "a4" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" -msgstr "La versione più recente" +#: 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_view:module.lang.install,start:0 @@ -5416,6 +5608,11 @@ msgstr "Installazione Completata" msgid "STOCK_JUSTIFY_RIGHT" msgstr "STOCK_JUSTIFY_RIGHT" +#. 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" @@ -5435,12 +5632,12 @@ msgstr "Mese: %(month)s" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form msgid "Addresses" -msgstr "Indirizzi" +msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5451,12 +5648,15 @@ msgid "Sequence" msgstr "Sequenza" #. 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" +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" -"Numero di volte che la funzione viene richiamata,\n" + +#. 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 "Numero di volte che la funzione viene richiamata,\n" "un numero negativo indica che la funzione verrà richiamata sempre" #. module: base @@ -5490,8 +5690,8 @@ msgid "Cancel Install" msgstr "Annulla Installazione" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "Verifica che tutte le righe abbiano %d colonne" @@ -5504,3 +5704,4 @@ msgstr "Importa Lingua" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "Identificatore XML" + diff --git a/bin/addons/base/i18n/lt_LT.po b/bin/addons/base/i18n/lt_LT.po index 714799f3c4a..57ce83b35bb 100644 --- a/bin/addons/base/i18n/lt_LT.po +++ b/bin/addons/base/i18n/lt_LT.po @@ -1,21 +1,19 @@ -# Lithuanian translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-10-07 07:06+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Lithuanian \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:00:56+0000\n" +"PO-Revision-Date: 2008-11-28 17:00:56+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,16 +42,9 @@ msgstr "" msgid "Unknown" msgstr "" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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 @@ -72,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -112,6 +108,7 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "" @@ -127,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "" @@ -159,6 +156,7 @@ msgstr "" #: 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 @@ -177,14 +175,14 @@ msgid "Object" 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" +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " msgstr "" #. module: base -#: view:res.users:0 -msgid "Add New User" +#: 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 @@ -193,10 +191,15 @@ msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -228,8 +231,12 @@ msgid "Key" msgstr "" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" +#: 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 @@ -243,6 +250,16 @@ msgstr "" 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" @@ -264,6 +281,12 @@ msgstr "" 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 @@ -271,13 +294,6 @@ msgstr "" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -294,8 +310,8 @@ msgid "Suffix" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "" @@ -331,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -362,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -407,7 +428,7 @@ msgid "Report Type" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -433,13 +454,15 @@ msgid "Other proprietary" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "" @@ -450,6 +473,11 @@ msgstr "" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -474,16 +502,26 @@ msgid "Form" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -495,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "" @@ -521,8 +559,8 @@ msgid "Web:" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "" @@ -587,11 +625,9 @@ 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." +#: 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 "" #. module: base @@ -605,21 +641,8 @@ msgid "Repositories" 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "" @@ -630,8 +653,8 @@ msgid "Contact" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" msgstr "" @@ -654,8 +677,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "" @@ -665,8 +688,8 @@ msgid "View Ref." msgstr "" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" msgstr "" #. module: base @@ -701,6 +724,11 @@ msgstr "" msgid "Corp." msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -715,8 +743,8 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" msgstr "" #. module: base @@ -730,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -746,12 +775,23 @@ msgstr "" msgid "Group" 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 +#: 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 "" @@ -781,8 +821,7 @@ msgstr "" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "" #. module: base @@ -796,18 +835,15 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" +#: 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." +#: 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 "" #. module: base @@ -817,11 +853,14 @@ msgstr "" 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." +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 @@ -830,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -849,22 +888,15 @@ msgstr "" msgid "User ID" msgstr "" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -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, ...)" +#: 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 "" #. module: base @@ -883,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -907,11 +944,6 @@ msgstr "" msgid "Default" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -945,8 +977,8 @@ msgid "Bank type" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "" @@ -956,8 +988,8 @@ msgid "Header/Footer" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "" @@ -966,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -979,8 +1016,8 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1031,14 +1068,13 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" 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 "" @@ -1072,12 +1108,6 @@ msgstr "" msgid "System Upgrade" 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 "Reload Official Translations" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1105,8 +1135,9 @@ msgid "Parent Menu" msgstr "" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1132,12 +1163,8 @@ msgid "ir.report.custom" 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" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" msgstr "" #. module: base @@ -1155,6 +1182,11 @@ msgstr "" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1166,9 +1198,13 @@ msgid "Pie Chart" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1186,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1212,11 +1243,6 @@ msgstr "" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1267,18 +1293,15 @@ 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." 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" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" msgstr "" #. module: base @@ -1303,13 +1326,14 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" +#: 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" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" msgstr "" #. module: base @@ -1357,20 +1381,24 @@ msgid "Sequences" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" 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 -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1379,8 +1407,8 @@ msgid "Bank account" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" msgstr "" @@ -1429,14 +1457,26 @@ msgstr "" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1455,6 +1495,7 @@ 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 @@ -1466,14 +1507,19 @@ msgstr "" msgid "Send Email" 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 -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -1509,6 +1555,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1516,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1545,15 +1592,19 @@ msgstr "" 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 "" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1595,8 +1646,7 @@ msgstr "" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" msgstr "" @@ -1612,21 +1662,18 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" 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 -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1640,25 +1687,19 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" #. module: base -#: view:res.groups:0 -msgid "Menus" -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 "" @@ -1679,8 +1720,8 @@ msgid "Subject" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "" @@ -1701,9 +1742,8 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" msgstr "" #. module: base @@ -1733,6 +1773,7 @@ msgid "State of Mind" msgstr "" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1741,15 +1782,35 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" msgstr "" #. module: base @@ -1815,8 +1876,14 @@ msgid "STOCK_OK" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "" @@ -1837,8 +1904,8 @@ msgid "None" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "" @@ -1859,13 +1926,13 @@ msgid "Module Category" msgstr "" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1884,11 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1929,8 +1993,8 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "" @@ -1946,6 +2010,7 @@ 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" @@ -1984,7 +2049,7 @@ msgid "Channel Name" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1993,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2014,20 +2074,19 @@ msgstr "" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2047,14 +2106,18 @@ 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 -#: selection:ir.rule,operator:0 -msgid "child_of" +#: 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 @@ -2069,9 +2132,9 @@ msgid "STOCK_GO_BACK" msgstr "" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "" @@ -2119,8 +2182,8 @@ msgid "unknown" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "" @@ -2153,7 +2216,7 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" msgstr "" @@ -2199,11 +2262,6 @@ msgstr "" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2237,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2262,11 +2325,6 @@ msgstr "" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2301,14 +2359,24 @@ msgstr "" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "" @@ -2320,8 +2388,8 @@ msgid "Python Code" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "" @@ -2331,8 +2399,8 @@ msgid "Field Label" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "" @@ -2367,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2375,6 +2442,7 @@ msgstr "" #: 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 @@ -2382,8 +2450,8 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -2392,7 +2460,11 @@ msgid "Modules Management" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 +#: 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 @@ -2403,7 +2475,6 @@ msgstr "" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "" @@ -2438,7 +2509,7 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2454,9 +2525,8 @@ msgid "Meta Datas" 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" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" msgstr "" #. module: base @@ -2465,12 +2535,13 @@ msgid "raw" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, 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 "" @@ -2481,18 +2552,13 @@ msgid "Childs Field" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" +#: 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 -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "" @@ -2514,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2540,9 +2606,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 @@ -2556,14 +2620,14 @@ msgid "Cancel Upgrade" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2576,14 +2640,19 @@ msgstr "" msgid "Cumulate" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "" @@ -2605,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2631,11 +2700,22 @@ msgstr "" msgid "Name" 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 #: 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 msgid "On Create" @@ -2657,8 +2737,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "" @@ -2675,21 +2755,15 @@ 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 all the version number.\n" "- The last parenthesis must match the extension of the module." msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2737,6 +2811,16 @@ msgstr "" msgid "STOCK_COPY" msgstr "" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2753,8 +2837,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "" @@ -2788,6 +2872,11 @@ msgstr "" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2800,8 +2889,8 @@ msgid "Readonly" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "" @@ -2831,11 +2920,6 @@ msgstr "" msgid "Document" msgstr "" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2858,11 +2942,14 @@ msgid "STOCK_STOP" msgstr "" #. module: base -#: code: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" +#: code:addons/base/ir/ir_model.py:0 +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 +#: field:res.partner.bank,acc_number:0 +msgid "Account number" msgstr "" #. module: base @@ -2870,6 +2957,11 @@ msgstr "" 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" @@ -2892,8 +2984,8 @@ msgid "Day: %(day)s" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "" @@ -3012,9 +3104,16 @@ 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 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3065,6 +3164,11 @@ msgstr "" 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" @@ -3084,8 +3188,8 @@ msgid "Directory:" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" msgstr "" #. module: base @@ -3094,8 +3198,13 @@ msgid "Trigger Name" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "" @@ -3130,8 +3239,14 @@ msgid "Source" msgstr "" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" +#: 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 +msgid "Keep empty for a private address, not related to partner." msgstr "" #. module: base @@ -3180,11 +3295,9 @@ msgid "Resource Name" 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." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." msgstr "" #. module: base @@ -3203,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3229,8 +3348,8 @@ msgid "References" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "" @@ -3256,20 +3375,20 @@ msgid "Kind" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, 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.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3285,20 +3404,24 @@ msgstr "" msgid "Tree" 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_CLEAR" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base @@ -3317,13 +3440,19 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "" @@ -3366,6 +3495,12 @@ msgstr "" 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 @@ -3379,14 +3514,13 @@ msgid "Type of view" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3411,12 +3545,27 @@ msgstr "" msgid "STOCK_PROPERTIES" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 msgid "Uninstall (beta)" @@ -3429,8 +3578,8 @@ msgid "New Window" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "" @@ -3445,10 +3594,9 @@ msgid "Parent Action" 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 !" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" msgstr "" #. module: base @@ -3462,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3480,6 +3634,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3495,8 +3650,20 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3521,16 +3688,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." +msgstr "" + +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3548,6 +3725,7 @@ 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 @@ -3565,8 +3743,8 @@ msgid "Active" msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -3598,8 +3776,13 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" msgstr "" #. module: base @@ -3607,11 +3790,6 @@ msgstr "" 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" @@ -3630,15 +3808,15 @@ msgstr "" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3671,8 +3849,10 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" +#: 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 @@ -3724,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3742,9 +3922,7 @@ msgstr "" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -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 "" #. module: base @@ -3782,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3792,8 +3971,7 @@ 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 @@ -3802,8 +3980,8 @@ msgid "Module:" msgstr "" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3824,6 +4002,11 @@ msgstr "" msgid "<=" msgstr "" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3831,19 +4014,13 @@ 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 -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3865,11 +4042,26 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +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 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3885,8 +4077,8 @@ msgid "STOCK_HOME" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "" @@ -3897,8 +4089,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3973,8 +4166,8 @@ msgid "Child ids" msgstr "" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -3984,8 +4177,8 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" msgstr "" #. module: base @@ -4069,6 +4262,12 @@ msgstr "" msgid "Field Mappings" msgstr "" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4086,8 +4285,8 @@ msgid "center" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "" @@ -4102,8 +4301,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4133,10 +4333,8 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base @@ -4171,9 +4369,14 @@ msgid "Category" 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4182,8 +4385,8 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" +#: selection:ir.actions.todo,type:0 +msgid "Service" msgstr "" #. module: base @@ -4192,12 +4395,13 @@ msgid "Add an auto-refresh on the view" 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:0 +#: field:ir.model,access_ids:0 msgid "Access" msgstr "" @@ -4234,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4250,11 +4454,9 @@ msgid "STOCK_PRINT_PREVIEW" msgstr "" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4266,13 +4468,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4283,6 +4478,11 @@ msgstr "" msgid "Email / SMS" msgstr "" +#. 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" @@ -4306,7 +4506,6 @@ msgid "Icon" msgstr "" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4319,13 +4518,8 @@ msgid "Repeat missed" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "" @@ -4345,12 +4539,6 @@ msgstr "" msgid "Limit" msgstr "" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4364,6 +4552,11 @@ msgstr "" msgid "Or" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4388,6 +4581,11 @@ msgstr "" msgid "=" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4395,14 +4593,14 @@ msgid "Installed modules" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4411,8 +4609,8 @@ msgid "Operator" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "" @@ -4464,8 +4662,8 @@ msgid "Report Footer 1" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "" @@ -4475,14 +4673,20 @@ msgstr "" msgid "Custom Report" 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 -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" +#: 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 @@ -4507,14 +4711,15 @@ msgid "Printed:" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4527,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4557,12 +4757,12 @@ 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.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4583,6 +4783,11 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4609,22 +4814,34 @@ msgid "Cascade" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4637,8 +4854,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4660,10 +4877,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 @@ -4676,6 +4890,11 @@ msgstr "" msgid "Short description" msgstr "" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4686,6 +4905,11 @@ msgstr "" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4697,9 +4921,10 @@ msgid "a5" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" +#: 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 @@ -4713,11 +4938,20 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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.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 @@ -4734,8 +4968,8 @@ msgid "Graph" msgstr "" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" msgstr "" #. module: base @@ -4743,6 +4977,11 @@ msgstr "" msgid "ir.actions.server" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4759,8 +4998,8 @@ msgid "Module dependency" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "" @@ -4775,6 +5014,11 @@ msgstr "" msgid "STOCK_DND_MULTIPLE" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4792,13 +5036,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4811,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4822,10 +5061,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4841,6 +5084,11 @@ msgstr "" msgid "Localisation" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4879,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4892,8 +5146,8 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base @@ -4907,10 +5161,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4934,16 +5192,13 @@ msgid "res.partner.som" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "" @@ -4960,6 +5215,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5042,8 +5303,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5067,8 +5335,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5086,6 +5354,11 @@ msgstr "" msgid "Start Upgrade" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5108,7 +5381,6 @@ msgid "Arguments" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5153,13 +5425,12 @@ msgstr "" #: 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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "" @@ -5195,14 +5466,19 @@ msgid "ir.attachment" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" +#: 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 @@ -5230,6 +5506,7 @@ msgstr "" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "" @@ -5239,8 +5516,8 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" msgstr "" #. module: base @@ -5266,13 +5543,8 @@ 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5296,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5316,8 +5588,9 @@ msgid "a4" msgstr "" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" +#: 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 @@ -5330,6 +5603,11 @@ msgstr "" msgid "STOCK_JUSTIFY_RIGHT" 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" @@ -5352,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5364,10 +5642,14 @@ msgstr "" msgid "Sequence" 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" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -5402,8 +5684,8 @@ msgid "Cancel Install" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "" @@ -5416,3 +5698,4 @@ msgstr "" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "" + diff --git a/bin/addons/base/i18n/nl_NL.po b/bin/addons/base/i18n/nl_NL.po index 5b55ce8930a..6369c124ecd 100644 --- a/bin/addons/base/i18n/nl_NL.po +++ b/bin/addons/base/i18n/nl_NL.po @@ -1,21 +1,19 @@ -# Dutch translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-10-16 15:15+0000\n" -"Last-Translator: Mark van Deursen \n" -"Language-Team: Dutch \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:55:41+0000\n" +"PO-Revision-Date: 2008-11-28 16:55:41+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,19 +42,10 @@ msgstr "Maandelijks" msgid "Unknown" msgstr "Onbekend" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -msgstr "Kliken en Liëren" - #. 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 "" -"Deze wizard zal nieuwe voorwaarden in de toepassing opsporen zodat deze " -"handmatig kunnen worden bijgewerkt." +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "Deze wizard zal nieuwe voorwaarden in de toepassing opsporen zodat deze handmatig kunnen worden bijgewerkt." #. module: base #: field:workflow.activity,out_transitions:0 @@ -74,6 +63,11 @@ msgstr "STOCK_SAVE" msgid "Change My Preferences" msgstr "Mijn Voorkeuren Wijzigen" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -114,6 +108,7 @@ msgstr "STOCK_SORT_ASCENDING" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Gebruikers Rechten" @@ -129,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "STOCK_MEDIA_FORWARD" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Overgeslagen" +msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "U kan dit soort documenten niet creeren! (%s)" @@ -161,6 +156,7 @@ msgstr "Werkschema" #: 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 @@ -178,26 +174,31 @@ msgstr "Werkschema" msgid "Object" msgstr "Object" +#. 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 Categorieën" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "Nieuwe Gebruiker Toevoegen" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "ir.default" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "Niet Gestart" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -230,9 +231,13 @@ msgid "Key" msgstr "Sleutel" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "Export" +#: 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 "Rollen" #. module: base #: model:ir.actions.act_window,name:base.action_country @@ -245,6 +250,16 @@ msgstr "Landen" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Haal Max. op" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "" + #. module: base #: selection:res.request,priority:0 msgid "Normal" @@ -266,6 +281,12 @@ msgstr "Gebruikers Ref." msgid "Import new language" msgstr "Nieuwe taal importeren" +#. 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 @@ -273,13 +294,6 @@ msgstr "Nieuwe taal importeren" msgid "condition" msgstr "Staat" -#. 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 "Bijlagen" - #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -296,8 +310,8 @@ msgid "Suffix" msgstr "Achtervoegsel" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "De ongelinkte methode is niet in dit object geïmplenteerd !" @@ -333,9 +347,9 @@ msgid "Activites" msgstr "Activiteiten" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Tekst" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -364,6 +378,11 @@ msgstr "Mutaties" msgid "ir.ui.view.custom" msgstr "ir.ui.view.custom" +#. 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" @@ -393,7 +412,7 @@ msgstr "Contactpersoon Prospect" #. module: base #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "Ongeldige XML voor aanzicht opbouw" +msgstr "Ongeldige XML voor overzicht" #. module: base #: field:ir.report.custom,sortby:0 @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "Rapport Type" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -435,13 +454,15 @@ msgid "Other proprietary" msgstr "Andere eigenaar" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administratie" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" +msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Notities" @@ -452,6 +473,11 @@ msgstr "Notities" msgid "All terms" msgstr "Alle Termen" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -476,16 +502,26 @@ msgid "Form" msgstr "Formulier" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "Kolom %s is ondefinieerbaar. Gereserveerd sleutelwoord !" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "Doel activiteit" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -497,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "De name_search methode is niet in geïmplenteerd dit object !" @@ -523,8 +559,8 @@ msgid "Web:" msgstr "Website" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "nieuw" @@ -589,14 +625,10 @@ msgid "Contact Name" msgstr "Naam Contactperson" #. 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 "" -"Sla dit document op als een %s bestand en bewerk het met daarvoor bedoelde " -"software of een texteditor. Het bestand is UTF-8 ge-encoded" +#: 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 "Sla dit document op als een %s bestand en bewerk het met daarvoor bedoelde software of een texteditor. Het bestand is UTF-8 ge-encoded" #. module: base #: view:ir.module.module:0 @@ -609,29 +641,8 @@ msgid "Repositories" msgstr "Pakketbronnen" #. 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" -"De officiële vertalingen van alle OpenERP/OpenObjects modules worden beheerd " -"d.m.v Launchpad. We gebruiken hun online-interface om alle " -"vertalingsinspanningen te synchroniseren. Om de te vertalen termen beter te " -"vertalen is het beter om de termen direct in Launchpad te vertalen. Als u " -"meerdere vertalingen voor uw eigen module heeft gemaakt dan kunt deze " -"allemaal tegelijk publiceren. Om dit te doen moet u, als u een module heeft " -"gemaakt, het gegenereerde .pot bestand e-mailen naar het vertalingsteam. Zij " -"zullen de vertaling beoordelen en integreren." - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "Wachtwoord onjuist !" @@ -642,11 +653,10 @@ msgid "Contact" msgstr "Contactpersoon" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" -"Deze url: '%s' moet een html bestand bevatten met links naar zip modules." +msgstr "Deze url: '%s' moet een html bestand bevatten met links naar zip modules." #. module: base #: model:ir.ui.menu,name:base.next_id_15 @@ -667,8 +677,8 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "ConcurrencyException" @@ -678,9 +688,9 @@ msgid "View Ref." msgstr "Aanzicht ref." #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Tabel Ref." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" #. module: base #: field:res.partner,ean13:0 @@ -707,15 +717,18 @@ msgstr "Rapport koptekst" #. module: base #: view:ir.rule:0 msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" -"Wanneer geen ander domein heeft op gegeven, zal de eenvoudige opzet gebruikt " -"worden" +msgstr "Wanneer geen ander domein heeft op gegeven, zal de eenvoudige opzet gebruikt worden" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "Bedrijf" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -730,9 +743,9 @@ msgid "Default limit for the list view" msgstr "Standaard aantal items in lijst-weergave" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Update Datum" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" #. module: base #: field:ir.actions.act_window,src_model:0 @@ -745,8 +758,9 @@ msgid "Type fields" msgstr "Soort velden" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Configuratie Wizard Stappen" @@ -761,12 +775,23 @@ msgstr "ir.ui.view_sc" msgid "Group" msgstr "Groep" +#. 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 +#: 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" @@ -796,11 +821,8 @@ msgstr "Ongeinstallerde modules" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." -msgstr "" -"Het geactiveerde veld geeft u de mogelijkheid de categorie te verbergen " -"zonder deze te wissen." +msgid "The active field allows you to hide the category, without removing it." +msgstr "Het geactiveerde veld geeft u de mogelijkheid de categorie te verbergen zonder deze te wissen." #. module: base #: selection:wizard.module.lang.export,format:0 @@ -813,22 +835,16 @@ msgid "res.partner.event" msgstr "res.partner.event" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Status" +#: 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 "" -"Sla dit bestand op in .CSV Formaat en open het in uw spreadsheet software. U " -"moet de laatste kolom vertalen alvorens het bestand weer te importeren. (Het " -"bestand is in UTF-8 formaat )" +#: 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 "Sla dit bestand op in .CSV Formaat en open het in uw spreadsheet software. U moet de laatste kolom vertalen alvorens het bestand weer te importeren. (Het bestand is in UTF-8 formaat )" #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -838,14 +854,14 @@ msgid "Currencies" msgstr "Valuta" #. 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." +#: selection:ir.actions.todo,type:0 +msgid "Configure" msgstr "" -"Als een vertaling in het systeem is geladen zullen alle, aan deze partner, " -"gerelateerde documenten worden geprint in zijn taal. Wanneer er geen " -"vertaling is geladen is het standaard Engels." + +#. 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 "Als een vertaling in het systeem is geladen zullen alle, aan deze partner, gerelateerde documenten worden geprint in zijn taal. Wanneer er geen vertaling is geladen is het standaard Engels." #. module: base #: selection:ir.ui.menu,icon:0 @@ -853,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Volgende Assistent" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "Aangepast Object" #. module: base #: selection:ir.model.fields,select_level:0 @@ -872,25 +888,16 @@ msgstr "Standaard Veld" msgid "User ID" msgstr "Gebruikers ID" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Volgende Configuratie Stap" - #. module: base #: view:ir.rule:0 msgid "Test" msgstr "Test" #. 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 "" -"U kunt gebruiker 'admin' niet verwijderen. Deze wordt gebruikt om interne " -"handelingen zoals updates, module installaties, enz. uit te voeren." +#: 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 "U kunt gebruiker 'admin' niet verwijderen. Deze wordt gebruikt om interne handelingen zoals updates, module installaties, enz. uit te voeren." #. module: base #: wizard_view:module.module.update,update:0 @@ -908,6 +915,11 @@ msgstr "SXW inhoud" msgid "ID Ref." msgstr "ID Ref." +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -932,11 +944,6 @@ msgstr "Begrenzing" msgid "Default" msgstr "Standaardinstelling" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Aangepast" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -970,8 +977,8 @@ msgid "Bank type" msgstr "Soort Bank" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "Ongedefinieerde get methode !" @@ -981,8 +988,8 @@ msgid "Header/Footer" msgstr "Koptekst/Voettekst" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "De read methode is niet in dit object geïmplementeerd !" @@ -991,6 +998,11 @@ msgstr "De read methode is niet in dit object geïmplementeerd !" msgid "Request History" msgstr "Verzoek Historie" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -1004,9 +1016,9 @@ msgid "Partner Events" msgstr "Partner Gebeurtenissen" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1056,17 +1068,15 @@ msgid "Partner contacts" msgstr "Contactpersonen" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Rapport Velden" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +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 "" -"De ISO landcode in 2 karakters\n" +msgstr "De ISO landcode in 2 karakters\n" "U kunt dit veld gebruiken voor snel zoeken." #. module: base @@ -1099,12 +1109,6 @@ msgstr "Assistent" msgid "System Upgrade" msgstr "Systeem Upgrade" -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Reload Official Translations" -msgstr "Officiële Vertalingen Herladen" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1132,9 +1136,10 @@ msgid "Parent Menu" msgstr "Bovenliggend Menu" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Nieuwe Gebruiker Aanmaken" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Aangepaste velden moet een naam hebben die beginnen met 'x_'!" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1159,13 +1164,9 @@ msgid "ir.report.custom" msgstr "ir.report.custom" #. 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 "Rollen" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "Export" #. module: base #: view:ir.model:0 @@ -1182,6 +1183,11 @@ msgstr "Bulk SMS verzenden" msgid "get" msgstr "ophalen" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Rapport Velden" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1193,10 +1199,14 @@ msgid "Pie Chart" msgstr "Cirkeldiagram" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." -msgstr "foutieve ID in de rapportage, %s verkregen, een integer is verwacht" +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1213,11 +1223,6 @@ msgstr "STOCK_ZOOM_FIT" msgid "Sequence Type" msgstr "Volgorde Type" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Overslaan & Ga verder" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1239,11 +1244,6 @@ msgstr "field child0" msgid "Update Modules List" msgstr "Update Modulelijst" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Naam Databestand" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1294,21 +1294,16 @@ msgid "Model" msgstr "Model" #. 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -"U probeert een module te installeren die afhankelijk is van : %s.\n" -"Deze is helaas niet beschikbaar op uw systeem." #. 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 "Agenda" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1332,14 +1327,15 @@ msgid "Modules to update" msgstr "Up-te-daten Modules" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Bedrijfsstructuur" +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Mej." #. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" -msgstr "Open een Venster" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Activiteit" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1386,21 +1382,25 @@ msgid "Sequences" msgstr "Volgorden" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" msgstr "Onbekende positie in geërfde weergave %s !" +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" msgstr "Activeringsdatum" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" -msgstr "Er is een fout opgetreden bij het controleren van de velden %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -1408,12 +1408,10 @@ msgid "Bank account" msgstr "Bankrekening" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" -msgstr "" -"Waarschuwing: er wordt een relatie veld gebruikt welke een onbekend object " -"gebruikt" +msgstr "Waarschuwing: er wordt een relatie veld gebruikt welke een onbekend object gebruikt" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1460,14 +1458,26 @@ msgstr "" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Leverancier" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +msgstr "" + #. module: base #: field:ir.model.fields,translate:0 msgid "Translate" msgstr "Vertaal" +#. 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" @@ -1486,6 +1496,7 @@ msgstr "wizard.module.update_translations" #. 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 @@ -1497,18 +1508,21 @@ msgstr "Weergaven" msgid "Send Email" msgstr "E-mail verzenden" +#. 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 "STOCK_SELECT_FONT" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" -msgstr "" -"U probeert een module te verwijderen die geïnstalleerd is of nog moet worden " -"geïnstalleerd." +msgstr "U probeert een module te verwijderen die geïnstalleerd is of nog moet worden geïnstalleerd." #. module: base #: rml:ir.module.reference:0 @@ -1542,6 +1556,12 @@ msgstr "Objecten" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1549,11 +1569,6 @@ msgstr "STOCK_GOTO_FIRST" msgid "Workflows" msgstr "Werkprocedures" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1578,16 +1593,20 @@ msgstr "Configuratie Assistent" msgid "Request Link" msgstr "Link Opvragen" +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Bestandsformaat" + #. 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 -msgid "Manualy Created" -msgstr "Handmatig gecreëerd" +#: rml:ir.module.reference:0 +msgid "Description :" +msgstr "" #. module: base #: field:ir.report.custom,print_format:0 @@ -1628,11 +1647,9 @@ msgstr "res.roles" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" -msgstr "" -"0=Zeer Urgent\n" +msgstr "0=Zeer Urgent\n" "10=Niet Urgent" #. module: base @@ -1647,26 +1664,19 @@ msgstr "Gebruikers interface - Aanzicht" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" msgstr "Toegangsrechten" #. 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 "" -"Het .rml pad van het bestand of NULL als de inhoud zich bevind in " -"report_rml_content" +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "Het .rml pad van het bestand of NULL als de inhoud zich bevind in report_rml_content" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" -"Kan het module bestand niet aanmaken:\n" -"%s" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1679,25 +1689,19 @@ msgstr "Menu Aanmaken" msgid "STOCK_MEDIA_RECORD" msgstr "STOCK_MEDIA_RECORD" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "child_of" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Relatie Adres" #. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "Menu's" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "Aangepaste velden moet een naam hebben die beginnen met 'x_'!" - -#. module: base #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "Het kunt het model '%s' niet verwijderen!" @@ -1718,8 +1722,8 @@ msgid "Subject" msgstr "Onderwerp" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "De schrijfmethode is niet geïmplementeerd in dit object !" @@ -1740,10 +1744,9 @@ msgid "Retailer" msgstr "Detailhandelaar" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Reeks Code" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1772,6 +1775,7 @@ msgid "State of Mind" msgstr "Humeur" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1780,16 +1784,36 @@ msgstr "Humeur" msgid "Type" msgstr "Soort" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "Handmatig gecreëerd" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Bron Activiteit" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "STOCK_FILE" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "De copie-methode in niet in dit object geïmplementeerd" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -1854,8 +1878,14 @@ msgid "STOCK_OK" msgstr "STOCK_OK" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "Geen Wachtwoord!" @@ -1876,8 +1906,8 @@ msgid "None" msgstr "Geen" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "U kunt het document niet wijzigen! (%s)" @@ -1897,16 +1927,16 @@ msgstr "API ID" msgid "Module Category" msgstr "Module Categorie" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Toevoegen & Verder gaan" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" msgstr "Invoerwaarde" +#. 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1923,14 +1953,9 @@ msgid "STOCK_UNINDENT" msgstr "STOCK_UNINDENT" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" -"De module die u probeert te verwijderen is afhankelijk van :\n" -"%s" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -1970,8 +1995,8 @@ msgid "Low" msgstr "Laag" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "Terugkeerende fout in de module-afhanlijkheden !" @@ -1987,6 +2012,7 @@ msgstr "XSL pad" #. 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" @@ -2025,20 +2051,15 @@ msgid "Channel Name" msgstr "Kanaalnaam" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Doorgaan" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Eenvoudige Interface" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "Toekennen van Groepen om toegangsrechten te definiëren" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2055,21 +2076,20 @@ msgstr "Uitlijning" msgid "STOCK_UNDO" msgstr "STOCK_UNDO" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "Melding" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Activiteit" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2088,17 +2108,19 @@ msgstr "Bestand ophalen" #. 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 "" -"Deze functie controleert voor nieuwe modules in 'addons' en de module-" -"opslagplaats" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "Deze functie controleert voor nieuwe modules in 'addons' en de module-opslagplaats" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "child_of" +#: 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 #: field:res.currency,rate_ids:0 @@ -2112,9 +2134,9 @@ msgid "STOCK_GO_BACK" msgstr "STOCK_GO_BACK" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "AccessError" @@ -2162,8 +2184,8 @@ msgid "unknown" msgstr "onbekend" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "De aanmaak-methode in niet in dit object geïmplementeerd !" @@ -2196,9 +2218,9 @@ msgid "SXW path" msgstr "SXW pad" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Gegevens" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2242,11 +2264,6 @@ msgstr "Demo gegevens" msgid "Module import" msgstr "Module import" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -msgstr "Bestedingslimiet" - #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form #: model:ir.ui.menu,name:base.menu_action_res_company_form @@ -2280,6 +2297,11 @@ msgstr "CSV-bestand" msgid "Parent Company" msgstr "Moederbedrijf" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2305,11 +2327,6 @@ msgstr "Initiële Datum" msgid "RML Internal Header" msgstr "RML Interne Koptekst" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "Lijst van BTW klanten" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2344,14 +2361,24 @@ msgstr "(jaar)=" msgid "Code" msgstr "Code" +#. 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/fields.py:0 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "Niet geïmplementeerde get_memory methode !" @@ -2363,8 +2390,8 @@ msgid "Python Code" msgstr "Python Code" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "Foutieve query" @@ -2374,8 +2401,8 @@ msgid "Field Label" msgstr "Veld Etiket" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "U probeert een toegansrecht te forceren (Document type: %s)." @@ -2410,7 +2437,6 @@ msgid "Customers Partners" msgstr "Klant Relaties" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2418,6 +2444,7 @@ msgstr "Klant Relaties" #: 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 @@ -2425,9 +2452,9 @@ msgid "Cancel" msgstr "Annuleren" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Schrijfrechten" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2435,7 +2462,11 @@ msgid "Modules Management" msgstr "Module Beheer" #. module: base -#: field:ir.attachment,res_id:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administratie" + +#. module: base #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2446,7 +2477,6 @@ msgstr "Bron ID" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Informatie" @@ -2481,9 +2511,9 @@ msgid "RML path" msgstr "RML pad" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Volgende Configuratie Assistent" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2497,10 +2527,9 @@ msgid "Meta Datas" msgstr "Meta Data" #. 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 "" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Aangepast" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2508,12 +2537,13 @@ msgid "raw" msgstr "brontekst" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Partners: " msgstr "Relaties " #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Overige" @@ -2524,18 +2554,13 @@ msgid "Childs Field" msgstr "Onderliggend veld" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "ir.module.module.configuration.step" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Rolnaam" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "ir.module.module.configuration.wizard" - -#. module: base -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "Kan de root gebruiker niet verwijderen." @@ -2557,10 +2582,10 @@ msgstr "Verantwoordelijke Verkoper" #. 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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2583,9 +2608,7 @@ msgstr "Rapport Xml" #. 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 @@ -2599,15 +2622,15 @@ msgid "Cancel Upgrade" msgstr "Upgrade Onderbreken" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "De zoek-methode is niet in dit object geïmplementeerd !" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" -msgstr "Afzender Email/SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -2619,14 +2642,19 @@ msgstr "Volgende bel datum" msgid "Cumulate" msgstr "Optellen" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_lang msgid "res.lang" msgstr "res.lang" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "Cirkeldiagrammen hebben exact 2 velden nodig" @@ -2648,12 +2676,12 @@ msgid "Create in Same Model" msgstr "aanmaken in het zelfde model" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2674,11 +2702,22 @@ msgstr "aanmaken in het zelfde model" msgid "Name" msgstr "Naam" +#. 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.ui.menu,icon:0 msgid "STOCK_APPLY" msgstr "STOCK_APPLY" +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" @@ -2700,8 +2739,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "STOCK_MEDIA_PAUSE" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "Fout!" @@ -2718,26 +2757,19 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Het zoekpatroon om de module te zoeken op de website:\n" +msgstr "Het zoekpatroon om de module te zoeken op de website:\n" "- De eerste haakjes moeten overeenkomen met de naam van de module.\n" "- De tweede haakjes moeten overeenkomen met het versienummer.\n" "- De laatste haakjes moeten overeenkomen met de extensie van de module." #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "BTW" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" -msgstr "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Om een taal te exporteren, geen taal selecteren." #. module: base #: model:ir.ui.menu,name:base.menu_translation_app @@ -2784,6 +2816,16 @@ msgstr "Exemplaren" msgid "STOCK_COPY" msgstr "STOCK_COPY" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2800,8 +2842,8 @@ msgid "ir.actions.act_window.view" msgstr "ir.actions.act_window.view" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Fout bestandsformaat" @@ -2835,6 +2877,11 @@ msgstr "Geraamde Opbrengst" msgid "Record rules" msgstr "Bericht regels" +#. 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2847,8 +2894,8 @@ msgid "Readonly" msgstr "Alleen Lezen" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "Het veld '%s' kan niet worden verwijderd!" @@ -2878,11 +2925,6 @@ msgstr "ir.actions.wizard" msgid "Document" msgstr "Document" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "Aantal Contactpersonen" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2905,21 +2947,26 @@ msgid "STOCK_STOP" msgstr "STOCK_STOP" #. module: base -#: code: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 "" -"\"%s\" bevat te veel punten. XML id´s mogen geen punten bevatten! Deze " -"worden gebruikt om naar data van andere modules te verwijzen, zoals in: " -"module.reference_id" +#: code:addons/base/ir/ir_model.py:0 +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\" bevat te veel punten. XML id´s mogen geen punten bevatten! Deze worden gebruikt om naar data van andere modules te verwijzen, zoals in: module.reference_id" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Rekeningnummer" #. 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 "" + #. module: base #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -2942,8 +2989,8 @@ msgid "Day: %(day)s" msgstr "Dag: %(day)s" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "U kunt het document niet lezen! (%s)" @@ -3062,9 +3109,16 @@ msgstr "Domein Waarde" #. module: base #: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "Help" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3097,8 +3151,7 @@ msgstr "Toegangscontrole Lijst" #. module: base #: help:ir.rule.group,global:0 msgid "Make the rule global or it needs to be put on a group or user" -msgstr "" -"Maak de regel voor iedereen of maak deze anders voor een groep of gebruiker" +msgstr "Maak de regel voor iedereen of maak deze anders voor een groep of gebruiker" #. module: base #: field:ir.actions.wizard,wiz_name:0 @@ -3116,6 +3169,11 @@ msgstr "Bijgewerkt Rapport" msgid "Schedule for Installation" msgstr "Inplannen voor installatie" +#. 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" @@ -3135,9 +3193,9 @@ msgid "Directory:" msgstr "Map:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Credit-limiet" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" #. module: base #: field:ir.actions.server,trigger_name:0 @@ -3145,8 +3203,13 @@ msgid "Trigger Name" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "De naam van de groep kan niet beginnen met \"-\"" @@ -3181,9 +3244,15 @@ msgid "Source" msgstr "Bron" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Bron Activiteit" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3231,14 +3300,10 @@ msgid "Resource Name" msgstr "Bronnaam" #. 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 "" -"Sla dit bestand op in .tgz formaat. Dit bestand bevat UTF-8 %s bestanden en " -"kan ge-upload worden naar launchpad." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "Sla dit bestand op in .tgz formaat. Dit bestand bevat UTF-8 %s bestanden en kan ge-upload worden naar launchpad." #. module: base #: field:res.partner.address,type:0 @@ -3256,6 +3321,12 @@ msgstr "Start configuratie" msgid "Export Id" msgstr "Export Id" +#. 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3282,8 +3353,8 @@ msgid "References" msgstr "Referenties" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "" @@ -3309,21 +3380,21 @@ msgid "Kind" msgstr "Soort" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "Deze methode bestaat niet meer" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Tree can only be used in tabular reports" msgstr "Boomstructuur kan alleen worden gebruikt in een staafdiagram" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -3338,21 +3409,25 @@ msgstr "Bankrekeningen" msgid "Tree" msgstr "Boomstructuur" +#. 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_CLEAR" msgstr "STOCK_CLEAR" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Staafdiagram benodigd minimaal twee velden" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Schrijfrechten" #. module: base #: selection:ir.report.custom,type:0 @@ -3370,13 +3445,19 @@ msgid "Custom Field" msgstr "Aangepast Veld" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Rol Vereist" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "Staafdiagram benodigd minimaal twee velden" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "Niet geïmplementeerde search_method methode !" @@ -3419,6 +3500,12 @@ msgstr "res.request" msgid "Rules" msgstr "Rechten" +#. 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 @@ -3431,17 +3518,16 @@ msgstr "Systeem upgrade vooltooid" msgid "Type of view" msgstr "Soort aanzicht" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "De perm_read methode is niet in dit object geïmplementeerd" - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3464,12 +3550,27 @@ msgstr "STOCK_FIND" msgid "STOCK_PROPERTIES" msgstr "STOCK_PROPERTIES" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 "Toegangsrechten tot menu" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3482,8 +3583,8 @@ msgid "New Window" msgstr "Nieuw venster" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "Tweede veld moeten figuren zijn" @@ -3498,13 +3599,10 @@ msgid "Parent Action" msgstr "Bovenliggende Actie" #. 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 "" -"Volgende ID genereren is onmogelijk omdat sommige Relaties een alfabetisch " -"ID hebben !" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "Volgende ID genereren is onmogelijk omdat sommige Relaties een alfabetisch ID hebben !" #. module: base #: selection:ir.report.custom,state:0 @@ -3517,11 +3615,17 @@ msgid "Number of modules updated" msgstr "Aantal modules bewerkt" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Stap Overslaan" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3535,6 +3639,7 @@ msgstr "Rollen Structuur" #. 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" @@ -3550,8 +3655,20 @@ msgid "Active Partner Events" msgstr "Active Relatie Gebeurtenissen" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3577,15 +3694,25 @@ msgid "Phone" msgstr "Telefoon" #. 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 views." +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" 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 views." +msgstr "" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Rol Vereist" + #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3603,6 +3730,7 @@ msgid "STOCK_SPELL_CHECK" msgstr "STOCK_SPELL_CHECK" #. module: base +#: field:ir.actions.todo,active:0 #: field:ir.cron,active:0 #: field:ir.module.repository,active:0 #: field:ir.sequence,active:0 @@ -3620,9 +3748,9 @@ msgid "Active" msgstr "Actief" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Mej." +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3653,8 +3781,13 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Open een Venster" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" msgstr "" #. module: base @@ -3662,11 +3795,6 @@ msgstr "" 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" @@ -3685,15 +3813,15 @@ msgstr "Onderliggende Categorie" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Naam van het object" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3726,9 +3854,11 @@ msgid "Object Relation" msgstr "Object Relatie" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "" +#: 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 "Bijlagen" #. module: base #: field:ir.rule,field_id:0 @@ -3779,9 +3909,9 @@ msgid "terp-mrp" msgstr "terp-mrp" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Voltooid" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3797,15 +3927,13 @@ msgstr "Factuur" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -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 "" #. module: base #: model:ir.ui.menu,name:base.next_id_4 msgid "Low Level" -msgstr "" +msgstr "Low Level" #. module: base #: wizard_view:module.upgrade,start:0 @@ -3837,6 +3965,7 @@ msgstr "Grootte" #: 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 "Plaats" @@ -3847,10 +3976,8 @@ msgstr "Dochteronderneming" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Het object moet starten met x_ en moet geen speciale karakters bevatten!" #. module: base #: rml:ir.module.reference:0 @@ -3858,9 +3985,9 @@ msgid "Module:" msgstr "Module" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" -msgstr "Aangepast Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "" #. module: base #: selection:ir.rule,operator:0 @@ -3880,6 +4007,11 @@ msgstr "Menu" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3887,22 +4019,14 @@ 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 "" -"De geselecteerde taal is succesvol geïnstalleerd. Wijzig de voorkeur van de " -"betreffende gebruiker en open een nieuw menu om de wijzigingen te zien." +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 "De geselecteerde taal is succesvol geïnstalleerd. Wijzig de voorkeur van de betreffende gebruiker en open een nieuw menu om de wijzigingen te zien." #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Rolnaam" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "XML Aanmaken" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Menu's" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3923,11 +4047,26 @@ msgstr "" msgid "Child Field" msgstr "Onderliggend Veld" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +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 "STOCK_EDIT" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3943,8 +4082,8 @@ msgid "STOCK_HOME" msgstr "STOCK_HOME" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "Er moet tenminste één veld worden ingevuld !" @@ -3955,9 +4094,10 @@ msgid "Others Actions" msgstr "Andere Acties" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Haal Max. op" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -4031,9 +4171,9 @@ msgid "Child ids" msgstr "Onderliggende IDs" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Bestandsformaat" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -4042,9 +4182,9 @@ msgid "Resource" msgstr "Bron" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Update Datum" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4127,6 +4267,12 @@ msgstr "terp-sale" msgid "Field Mappings" msgstr "" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "De copie-methode in niet in dit object geïmplementeerd" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4144,8 +4290,8 @@ msgid "center" msgstr "midden" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "Aanmaken modulebestand niet mogelijk: %s !" @@ -4160,9 +4306,10 @@ msgid "Published Version" msgstr "Gepubliseerde Versie" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Auto-Refresh" +#: 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 @@ -4191,13 +4338,9 @@ msgid "ir.exports.line" msgstr "ir.exports.line" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." -msgstr "" -"Deze assistent zal een XML bestand aanmaken voor de BTW gegevens en totaal " -"gefactureerde bedragen per relatie." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Credit-limiet" #. module: base #: field:ir.default,value:0 @@ -4231,10 +4374,15 @@ msgid "Category" msgstr "Categorie" #. 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 "" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Status" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Auto-Refresh" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4242,9 +4390,9 @@ msgid "ir.actions.act_window_close" msgstr "ir.actions.act_window_close" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Rekeningnummer" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4252,14 +4400,15 @@ msgid "Add an auto-refresh on the view" msgstr "Automatisch herladen aan weergave toevoegen" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "Bestandsnaam" #. module: base -#: field:ir.model,access:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Toegang" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4293,31 +4442,27 @@ msgstr "Modules te downloaden" msgid "Fax" msgstr "Fax" +#. 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_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" msgstr "" -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Om een taal te exporteren, geen taal selecteren." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" msgstr "STOCK_PRINT_PREVIEW" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "" -"De som van de data (tweede veld) is nul.\n" -"cirkeldiagram tekenen onmogelijk !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" +msgstr "De perm_read methode is niet in dit object geïmplementeerd" #. module: base #: field:ir.default,company_id:0 @@ -4328,13 +4473,6 @@ msgstr "" msgid "Company" msgstr "Bedrijf" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4345,6 +4483,11 @@ msgstr "Aanmaak Datum" 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" @@ -4368,7 +4511,6 @@ msgid "Icon" msgstr "Icoon" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4381,13 +4523,8 @@ msgid "Repeat missed" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "" @@ -4407,12 +4544,6 @@ msgstr "ir.translation" msgid "Limit" msgstr "Limiet" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "Installeer nieuw taal bestand" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4426,6 +4557,11 @@ msgstr "Verzoeken" msgid "Or" msgstr "Of" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4450,6 +4586,11 @@ msgstr "Selectie" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4457,15 +4598,15 @@ msgid "Installed modules" msgstr "Geïnstalleerde modules" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "Waarschuwing" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "XML bestand is aangemaakt" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" #. module: base #: field:ir.rule,operator:0 @@ -4473,8 +4614,8 @@ msgid "Operator" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "ValidateError" @@ -4526,8 +4667,8 @@ msgid "Report Footer 1" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "" @@ -4537,15 +4678,21 @@ msgstr "" msgid "Custom Report" msgstr "Aangepast Rapport" +#. 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 "Email" #. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "Automatische XSL:RML" +#: 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 #: field:ir.model.access,perm_create:0 @@ -4569,14 +4716,15 @@ msgid "Printed:" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4589,11 +4737,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4619,12 +4762,12 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_base_config #: view:ir.sequence:0 +#: view:res.company:0 msgid "Configuration" -msgstr "" +msgstr "Instellingen" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4645,6 +4788,11 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4671,22 +4819,34 @@ msgid "Cascade" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4699,8 +4859,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4722,10 +4882,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 @@ -4738,6 +4895,11 @@ msgstr "" msgid "Short description" msgstr "" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4748,6 +4910,11 @@ msgstr "" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4759,10 +4926,11 @@ msgid "a5" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "" +#: 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 "Agenda" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4775,11 +4943,20 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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.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 @@ -4796,8 +4973,8 @@ msgid "Graph" msgstr "" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" msgstr "" #. module: base @@ -4805,6 +4982,11 @@ msgstr "" msgid "ir.actions.server" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4821,8 +5003,8 @@ msgid "Module dependency" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "" @@ -4837,6 +5019,11 @@ msgstr "" msgid "STOCK_DND_MULTIPLE" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4854,13 +5041,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4873,7 +5055,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4884,10 +5066,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4903,6 +5089,11 @@ msgstr "" msgid "Localisation" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4941,8 +5132,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4954,8 +5151,8 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base @@ -4969,10 +5166,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "BTW" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4996,16 +5197,13 @@ msgid "res.partner.som" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "" @@ -5022,6 +5220,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Reeks Code" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5104,8 +5308,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Tabel Ref." + #. 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 @@ -5129,8 +5340,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5148,6 +5359,11 @@ msgstr "" msgid "Start Upgrade" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5170,7 +5386,6 @@ msgid "Arguments" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5215,13 +5430,12 @@ msgstr "" #: 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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "" @@ -5257,14 +5471,19 @@ msgid "ir.attachment" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "Automatische XSL:RML" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" msgstr "" #. module: base @@ -5292,6 +5511,7 @@ msgstr "" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "" @@ -5301,8 +5521,8 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" msgstr "" #. module: base @@ -5328,13 +5548,8 @@ 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5358,8 +5573,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5378,8 +5593,9 @@ msgid "a4" msgstr "" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" +#: 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 @@ -5392,6 +5608,11 @@ msgstr "" msgid "STOCK_JUSTIFY_RIGHT" 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" @@ -5414,9 +5635,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5426,10 +5647,14 @@ msgstr "" msgid "Sequence" 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" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -5464,8 +5689,8 @@ msgid "Cancel Install" msgstr "Installatie afbreken" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "Controleer of alle regels %d kolommen hebben." @@ -5478,3 +5703,4 @@ msgstr "Vertaling importeren" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "" + diff --git a/bin/addons/base/i18n/pt_BR.po b/bin/addons/base/i18n/pt_BR.po index 66adce560ae..9fc94c54570 100644 --- a/bin/addons/base/i18n/pt_BR.po +++ b/bin/addons/base/i18n/pt_BR.po @@ -1,21 +1,19 @@ -# Brazilian Portuguese translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-11-19 19:40+0000\n" -"Last-Translator: Luiz Fernando \n" -"Language-Team: Brazilian Portuguese \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:01:47+0000\n" +"PO-Revision-Date: 2008-11-28 17:01:47+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,16 +42,9 @@ msgstr "Mensalmente" msgid "Unknown" msgstr "Desconhecido" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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 @@ -72,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "Troque minhas configurações" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -112,6 +108,7 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "" @@ -127,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "" @@ -159,6 +156,7 @@ msgstr "" #: 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 @@ -177,14 +175,14 @@ msgid "Object" 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" +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " msgstr "" #. module: base -#: view:res.users:0 -msgid "Add New User" +#: 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 @@ -193,10 +191,15 @@ msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -228,8 +231,12 @@ msgid "Key" msgstr "" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" +#: 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 @@ -243,6 +250,16 @@ msgstr "" 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" @@ -264,6 +281,12 @@ msgstr "" 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 @@ -271,13 +294,6 @@ msgstr "" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -294,8 +310,8 @@ msgid "Suffix" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "" @@ -331,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -362,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -407,7 +428,7 @@ msgid "Report Type" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -433,13 +454,15 @@ msgid "Other proprietary" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "" @@ -450,6 +473,11 @@ msgstr "" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -474,16 +502,26 @@ msgid "Form" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -495,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "" @@ -521,8 +559,8 @@ msgid "Web:" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "" @@ -587,14 +625,10 @@ msgid "Contact Name" msgstr "Nome do Contato" #. 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 "" -"Salve este documento como um arquivo %s e edite-o com um editor de textos.O " -"formato do arquivo é UTF-8" +#: 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 "Salve este documento como um arquivo %s e edite-o com um editor de textos.O formato do arquivo é UTF-8" #. module: base #: view:ir.module.module:0 @@ -607,21 +641,8 @@ msgid "Repositories" 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "" @@ -632,8 +653,8 @@ msgid "Contact" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" msgstr "" @@ -656,8 +677,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "" @@ -667,8 +688,8 @@ msgid "View Ref." msgstr "" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" msgstr "" #. module: base @@ -703,6 +724,11 @@ msgstr "" msgid "Corp." msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -717,8 +743,8 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" msgstr "" #. module: base @@ -732,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -748,12 +775,23 @@ msgstr "" msgid "Group" 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 +#: 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 "" @@ -783,8 +821,7 @@ msgstr "" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "" #. module: base @@ -798,22 +835,16 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" +#: 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 "" -"Save este dopcumento como um .CSV e abra-o com seu programa de planilha. O " -"formato do arquivo é UTF-8. Voce precisa traduzir a ultima coluna antes de " -"reimportá-lo." +#: 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 "Save este dopcumento como um .CSV e abra-o com seu programa de planilha. O formato do arquivo é UTF-8. Voce precisa traduzir a ultima coluna antes de reimportá-lo." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -822,11 +853,14 @@ msgstr "" 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." +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 @@ -835,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -854,22 +888,15 @@ msgstr "" msgid "User ID" msgstr "" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Proximo passo da configuração" - #. 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, ...)" +#: 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 "" #. module: base @@ -888,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -912,11 +944,6 @@ msgstr "" msgid "Default" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -950,8 +977,8 @@ msgid "Bank type" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "" @@ -961,8 +988,8 @@ msgid "Header/Footer" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "" @@ -971,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -984,8 +1016,8 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1036,17 +1068,15 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" 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 "" -"O código ISO do país com dois dígitos.\n" +msgstr "O código ISO do país com dois dígitos.\n" "Voce pode usar este campo para pesquisa rápida." #. module: base @@ -1079,12 +1109,6 @@ msgstr "" msgid "System Upgrade" 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 "Reload Official Translations" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1112,9 +1136,10 @@ msgid "Parent Menu" msgstr "" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Campos customizados precisam ter nomes que começam com 'x_'!" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1139,12 +1164,8 @@ msgid "ir.report.custom" 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" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" msgstr "" #. module: base @@ -1162,6 +1183,11 @@ msgstr "" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1173,9 +1199,13 @@ msgid "Pie Chart" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1193,11 +1223,6 @@ msgstr "" msgid "Sequence Type" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1219,11 +1244,6 @@ msgstr "" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Nome do Arquivo" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1274,18 +1294,15 @@ 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." 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" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" msgstr "" #. module: base @@ -1310,13 +1327,14 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" +#: 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" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" msgstr "" #. module: base @@ -1364,20 +1382,24 @@ msgid "Sequences" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" 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 -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1386,8 +1408,8 @@ msgid "Bank account" msgstr "Conta Bancaria" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" msgstr "" @@ -1436,14 +1458,26 @@ msgstr "" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1462,6 +1496,7 @@ 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 @@ -1473,14 +1508,19 @@ msgstr "" msgid "Send Email" 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 -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -1516,6 +1556,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1523,11 +1569,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1552,15 +1593,19 @@ msgstr "Assistente de Configuração" 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 "" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1602,8 +1647,7 @@ msgstr "" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" msgstr "" @@ -1619,21 +1663,18 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" 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 -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1647,25 +1688,19 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" #. module: base -#: view:res.groups:0 -msgid "Menus" -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 "Campos customizados precisam ter nomes que começam com 'x_'!" - -#. module: base #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -1686,8 +1721,8 @@ msgid "Subject" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "" @@ -1708,9 +1743,8 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" msgstr "" #. module: base @@ -1740,6 +1774,7 @@ msgid "State of Mind" msgstr "" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1748,15 +1783,35 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" msgstr "" #. module: base @@ -1822,8 +1877,14 @@ msgid "STOCK_OK" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "" @@ -1844,8 +1905,8 @@ msgid "None" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "" @@ -1866,13 +1927,13 @@ msgid "Module Category" msgstr "" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1891,11 +1952,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1936,8 +1994,8 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "" @@ -1953,6 +2011,7 @@ 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" @@ -1991,7 +2050,7 @@ msgid "Channel Name" msgstr "Nome do canal" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -2000,11 +2059,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2021,20 +2075,19 @@ msgstr "" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2054,15 +2107,19 @@ 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 -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "" +#: 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 "País" #. module: base #: field:res.currency,rate_ids:0 @@ -2076,9 +2133,9 @@ msgid "STOCK_GO_BACK" msgstr "" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "" @@ -2126,8 +2183,8 @@ msgid "unknown" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "" @@ -2160,7 +2217,7 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" msgstr "" @@ -2206,11 +2263,6 @@ msgstr "" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2244,6 +2296,11 @@ msgstr "" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2269,11 +2326,6 @@ msgstr "" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2308,14 +2360,24 @@ msgstr "" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "" @@ -2327,8 +2389,8 @@ msgid "Python Code" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "" @@ -2338,8 +2400,8 @@ msgid "Field Label" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "" @@ -2374,7 +2436,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2382,6 +2443,7 @@ msgstr "" #: 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 @@ -2389,8 +2451,8 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -2399,7 +2461,11 @@ msgid "Modules Management" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 +#: 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 @@ -2410,7 +2476,6 @@ msgstr "" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "" @@ -2445,9 +2510,9 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Proximo passo do assistente de configuração" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2461,9 +2526,8 @@ msgid "Meta Datas" 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" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" msgstr "" #. module: base @@ -2472,12 +2536,13 @@ msgid "raw" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, 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 "" @@ -2488,18 +2553,13 @@ msgid "Childs Field" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nome da Regra" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "" @@ -2521,10 +2581,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2547,9 +2607,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 @@ -2563,14 +2621,14 @@ msgid "Cancel Upgrade" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2583,14 +2641,19 @@ msgstr "" msgid "Cumulate" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "" @@ -2612,12 +2675,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2638,11 +2701,22 @@ msgstr "" msgid "Name" msgstr "Nome" +#. 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.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 msgid "On Create" @@ -2664,8 +2738,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "" @@ -2682,25 +2756,18 @@ 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Expressões regulares para pesquisa de módulos nas páginas do repositório:\n" +msgstr "Expressões regulares para pesquisa de módulos nas páginas do repositório:\n" "- O primeiro parenteses precisa coincidir com o nome do módulo.\n" "- O segundo parenteses precisa coincidir com todas os números de versão.\n" "- O último parenteses precisa coincidir com a extensão do módulo." #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2748,6 +2815,16 @@ msgstr "" msgid "STOCK_COPY" msgstr "" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2764,8 +2841,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "" @@ -2799,6 +2876,11 @@ msgstr "" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2811,8 +2893,8 @@ msgid "Readonly" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "" @@ -2842,11 +2924,6 @@ msgstr "" msgid "Document" msgstr "" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2869,11 +2946,14 @@ msgid "STOCK_STOP" msgstr "" #. module: base -#: code: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" +#: code:addons/base/ir/ir_model.py:0 +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 +#: field:res.partner.bank,acc_number:0 +msgid "Account number" msgstr "" #. module: base @@ -2881,6 +2961,11 @@ msgstr "" 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" @@ -2903,8 +2988,8 @@ msgid "Day: %(day)s" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "" @@ -3023,9 +3108,16 @@ 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 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3076,6 +3168,11 @@ msgstr "" 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" @@ -3087,7 +3184,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_partner_form #: view:res.partner:0 msgid "Partners" -msgstr "" +msgstr "Parceiros" #. module: base #: rml:ir.module.reference:0 @@ -3095,8 +3192,8 @@ msgid "Directory:" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" msgstr "" #. module: base @@ -3105,8 +3202,13 @@ msgid "Trigger Name" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "O nome do grupo não pode iniciar com \"-\"" @@ -3141,8 +3243,14 @@ msgid "Source" msgstr "" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" +#: 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 +msgid "Keep empty for a private address, not related to partner." msgstr "" #. module: base @@ -3191,11 +3299,9 @@ msgid "Resource Name" msgstr "Nome do Recurso" #. 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." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." msgstr "" #. module: base @@ -3214,6 +3320,12 @@ msgstr "Iniciar configuração" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3240,8 +3352,8 @@ msgid "References" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "" @@ -3267,20 +3379,20 @@ msgid "Kind" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, 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.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3296,20 +3408,24 @@ msgstr "Contas Bancarias" msgid "Tree" 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_CLEAR" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base @@ -3328,13 +3444,19 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "" @@ -3377,6 +3499,12 @@ msgstr "" 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 @@ -3390,14 +3518,13 @@ msgid "Type of view" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3422,12 +3549,27 @@ msgstr "" msgid "STOCK_PROPERTIES" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 msgid "Uninstall (beta)" @@ -3440,8 +3582,8 @@ msgid "New Window" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "" @@ -3456,10 +3598,9 @@ msgid "Parent Action" 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 !" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" msgstr "" #. module: base @@ -3473,11 +3614,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3491,6 +3638,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3506,8 +3654,20 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3532,16 +3692,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." +msgstr "" + +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3559,6 +3729,7 @@ 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 @@ -3576,8 +3747,8 @@ msgid "Active" msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -3609,8 +3780,13 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" msgstr "" #. module: base @@ -3618,11 +3794,6 @@ msgstr "" 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" @@ -3641,15 +3812,15 @@ msgstr "" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Nome do Objeto" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3682,8 +3853,10 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" +#: 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 @@ -3735,7 +3908,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3753,15 +3926,13 @@ msgstr "" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -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 "" #. module: base #: model:ir.ui.menu,name:base.next_id_4 msgid "Low Level" -msgstr "" +msgstr "Baixo Nível" #. module: base #: wizard_view:module.upgrade,start:0 @@ -3793,6 +3964,7 @@ msgstr "" #: 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 "Cidade" @@ -3803,11 +3975,8 @@ msgstr "" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"O nome do objeto precisa iniciar com x_ e não conter nenhum caracter " -"especial!" +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" #. module: base #: rml:ir.module.reference:0 @@ -3815,8 +3984,8 @@ msgid "Module:" msgstr "" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3837,6 +4006,11 @@ msgstr "" msgid "<=" msgstr "" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3844,19 +4018,13 @@ 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 -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nome da Regra" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3878,11 +4046,26 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +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 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3898,8 +4081,8 @@ msgid "STOCK_HOME" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "" @@ -3910,8 +4093,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3986,8 +4170,8 @@ msgid "Child ids" msgstr "" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -3997,8 +4181,8 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" msgstr "" #. module: base @@ -4082,6 +4266,12 @@ msgstr "" msgid "Field Mappings" msgstr "" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4099,8 +4289,8 @@ msgid "center" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "" @@ -4115,8 +4305,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4146,10 +4337,8 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base @@ -4184,9 +4373,14 @@ msgid "Category" 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4195,8 +4389,8 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" +#: selection:ir.actions.todo,type:0 +msgid "Service" msgstr "" #. module: base @@ -4205,12 +4399,13 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "Nome do arquivo" #. module: base -#: field:ir.model,access:0 +#: field:ir.model,access_ids:0 msgid "Access" msgstr "" @@ -4247,14 +4442,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4263,11 +4458,9 @@ msgid "STOCK_PRINT_PREVIEW" msgstr "" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4279,13 +4472,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4296,6 +4482,11 @@ msgstr "" msgid "Email / SMS" msgstr "" +#. 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" @@ -4319,7 +4510,6 @@ msgid "Icon" msgstr "" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4332,13 +4522,8 @@ msgid "Repeat missed" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "" @@ -4358,12 +4543,6 @@ msgstr "" msgid "Limit" msgstr "" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4377,6 +4556,11 @@ msgstr "" msgid "Or" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4401,6 +4585,11 @@ msgstr "" msgid "=" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4408,14 +4597,14 @@ msgid "Installed modules" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4424,8 +4613,8 @@ msgid "Operator" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "" @@ -4477,8 +4666,8 @@ msgid "Report Footer 1" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "" @@ -4488,14 +4677,20 @@ msgstr "" msgid "Custom Report" 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 -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" +#: 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 @@ -4520,15 +4715,16 @@ msgid "Printed:" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" -msgstr "Salvar arquivo" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" +msgstr "" #. module: base #: selection:ir.actions.act_window,target:0 @@ -4540,11 +4736,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4570,12 +4761,12 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_base_config #: view:ir.sequence:0 +#: view:res.company:0 msgid "Configuration" msgstr "Configuração" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4596,6 +4787,11 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4622,22 +4818,34 @@ msgid "Cascade" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4650,8 +4858,8 @@ msgid "Bank Account Type" msgstr "Tipo de Conta Bancaria" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4673,10 +4881,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 @@ -4689,6 +4894,11 @@ msgstr "" msgid "Short description" msgstr "" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4699,6 +4909,11 @@ msgstr "Nome do Estado" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4710,9 +4925,10 @@ msgid "a5" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" +#: 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 @@ -4726,18 +4942,27 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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.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 #: field:res.partner,address:0 #: view:res.partner.address:0 msgid "Contacts" -msgstr "" +msgstr "Contatos" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 @@ -4747,8 +4972,8 @@ msgid "Graph" msgstr "" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" msgstr "" #. module: base @@ -4756,6 +4981,11 @@ msgstr "" msgid "ir.actions.server" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4772,8 +5002,8 @@ msgid "Module dependency" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "O método \"name_get\" não está implementado neste objeto!" @@ -4788,6 +5018,11 @@ msgstr "" msgid "STOCK_DND_MULTIPLE" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4805,13 +5040,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4824,9 +5054,9 @@ msgid "Action Name" msgstr "Nome da ação" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "Pregresso da configuração" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 @@ -4835,10 +5065,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4854,6 +5088,11 @@ msgstr "" msgid "Localisation" msgstr "" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4892,8 +5131,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4905,8 +5150,8 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base @@ -4920,10 +5165,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4947,16 +5196,13 @@ msgid "res.partner.som" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "" @@ -4973,6 +5219,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5055,8 +5307,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5080,8 +5339,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5099,6 +5358,11 @@ msgstr "" msgid "Start Upgrade" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5121,7 +5385,6 @@ msgid "Arguments" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5166,13 +5429,12 @@ msgstr "" #: 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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "" @@ -5208,14 +5470,19 @@ msgid "ir.attachment" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" +#: 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 @@ -5243,6 +5510,7 @@ msgstr "" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "" @@ -5252,8 +5520,8 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" msgstr "" #. module: base @@ -5279,14 +5547,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 -#: view:res.country:0 -msgid "Country" -msgstr "País" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5309,8 +5572,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5329,8 +5592,9 @@ msgid "a4" msgstr "" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" +#: 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 @@ -5343,6 +5607,11 @@ msgstr "" msgid "STOCK_JUSTIFY_RIGHT" 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" @@ -5365,9 +5634,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5377,10 +5646,14 @@ msgstr "" msgid "Sequence" 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" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -5415,8 +5688,8 @@ msgid "Cancel Install" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "" @@ -5429,3 +5702,4 @@ msgstr "" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "" + diff --git a/bin/addons/base/i18n/pt_PT.po b/bin/addons/base/i18n/pt_PT.po index 3aa9fe5f078..28df9b6ac4d 100644 --- a/bin/addons/base/i18n/pt_PT.po +++ b/bin/addons/base/i18n/pt_PT.po @@ -1,21 +1,19 @@ -# Portuguese translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-10-26 11:58+0000\n" -"Last-Translator: Adérito (Primeconsulting.cv) \n" -"Language-Team: Portuguese \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:02:42+0000\n" +"PO-Revision-Date: 2008-11-28 17:02:42+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,19 +42,10 @@ msgstr "Mensalmente" msgid "Unknown" msgstr "Desconhecido" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -msgstr "Click e relacione" - #. 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 "" -"Este assistente vai detectar novos termos na aplicação para que possa " -"actualiza-los manualmente" +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "Este assistente vai detectar novos termos na aplicação para que possa actualiza-los manualmente" #. module: base #: field:workflow.activity,out_transitions:0 @@ -74,6 +63,11 @@ msgstr "STOCK_SAVE" msgid "Change My Preferences" msgstr "Alterar as minhas preferencias" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Abrir janela" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -114,6 +108,7 @@ msgstr "" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Regras de acesso" @@ -129,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Ignorado" +msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "Não podes criar este tipo de documento! (%s)" @@ -161,6 +156,7 @@ msgstr "Fluxo" #: 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 @@ -178,26 +174,31 @@ msgstr "Fluxo" msgid "Object" msgstr "Objecto" +#. 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 "Categoria dos módulos" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "Adicionar novo utilizador" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "Não iniciado" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -230,9 +231,13 @@ msgid "Key" msgstr "Tecla" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "Exportação" +#: 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 @@ -245,6 +250,16 @@ msgstr "Países" 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" @@ -266,6 +281,12 @@ msgstr "Ref. do utilizador" msgid "Import new language" msgstr "Importar nova linguagem" +#. 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 @@ -273,13 +294,6 @@ msgstr "Importar nova linguagem" msgid "condition" msgstr "Condição" -#. 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 "Anexos" - #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -296,8 +310,8 @@ msgid "Suffix" msgstr "Sufixo" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "O método de remover relação não esta implementado neste objecto !" @@ -333,9 +347,9 @@ msgid "Activites" msgstr "Actividades" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Texto" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -364,6 +378,11 @@ msgstr "Transições" msgid "ir.ui.view.custom" 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "Tipo de relatório" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -435,13 +454,15 @@ msgid "Other proprietary" msgstr "Outro prorietario" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Notas" @@ -452,6 +473,11 @@ msgstr "Notas" msgid "All terms" msgstr "Todos os termos" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -476,16 +502,26 @@ msgid "Form" msgstr "Formulário" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "Não pode definir uma coluna %s. Palavra chave reservado !" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "Actividade de destino" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -497,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "O método procurar_nome não esta implementado neste objecto !" @@ -523,8 +559,8 @@ msgid "Web:" msgstr "Página Web:" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "Novo" @@ -589,14 +625,10 @@ msgid "Contact Name" msgstr "Nome do contacto" #. 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 "" -"Guarde este documento num ficheiro %s e edite com um software especifico ou " -"editor de texto. A codificação do ficheiro é UTF-8." +#: 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 "Guarde este documento num ficheiro %s e edite com um software especifico ou editor de texto. A codificação do ficheiro é UTF-8." #. module: base #: view:ir.module.module:0 @@ -609,29 +641,8 @@ msgid "Repositories" msgstr "Repositórios" #. 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" -"O pacote oficial das traduções de todos os módulos do OpenERP/OpenObject é " -"controlado através do launchpad. Nós usamos a sua interface on-line para " -"sincronizar todos os esforços de tradução. Para melhorar alguns termos das " -"traduções oficiais do OpenERP, você deve modificar os termos directamente na " -"interface do launchpad. Se você fez muitas traduções para seu próprio " -"módulo, você pode igualmente publicar imediatamente toda sua tradução. Para " -"isto, você deve: Se você criou um módulo novo, você deve enviar o ficheiro " -"gerado .pot por e-mail ao grupo da tradução: … Eles irão rever e integrar." - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "Palavra passe incorrecto" @@ -642,8 +653,8 @@ msgid "Contact" msgstr "Contacto" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" msgstr "Este url '%s' deve fornecer uma ligação html para módulos zip" @@ -666,8 +677,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "" @@ -677,9 +688,9 @@ msgid "View Ref." msgstr "Ver referencia" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Referencia da tabela" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "" #. module: base #: field:res.partner,ean13:0 @@ -706,14 +717,18 @@ msgstr "Cabeçalho do relatório" #. module: base #: view:ir.rule:0 msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" -"Se não forçares o domínio, será usado a configuração simples do domínio" +msgstr "Se não forçares o domínio, será usado a configuração simples do domínio" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -728,9 +743,9 @@ msgid "Default limit for the list view" msgstr "Limite por defeito para a vista de lista" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Actualizar data" +#: 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 @@ -743,8 +758,9 @@ msgid "Type fields" msgstr "Campos tipo" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Configurar os passos do assistente" @@ -759,12 +775,23 @@ msgstr "" msgid "Group" msgstr "Grupo" +#. 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Assinatura" + +#. module: base +#: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 msgid "SMS" msgstr "SMS" @@ -794,8 +821,7 @@ msgstr "Módulos desinstalados" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "O campo activo permite esconder a categoria, sem a remover." #. module: base @@ -809,22 +835,16 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Estado" +#: 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 "" -"Guarde este documento num ficheiro .CSV e abra-o com o seu software de folha " -"de calculo preferido. A codificação é UTF-8. Você tem que traduzir a ultima " -"coluna antes de reimporta-lo." +#: 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 "Guarde este documento num ficheiro .CSV e abra-o com o seu software de folha de calculo preferido. A codificação é UTF-8. Você tem que traduzir a ultima coluna antes de reimporta-lo." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -834,14 +854,14 @@ msgid "Currencies" msgstr "Moedas" #. 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." +#: selection:ir.actions.todo,type:0 +msgid "Configure" msgstr "" -"Se a linguagem estiver carregada no sistema, todos os documentos " -"relacionados com este terceiro será imprimida nessa linguagem. se não, será " -"em inglês." + +#. 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 "Se a linguagem estiver carregada no sistema, todos os documentos relacionados com este terceiro será imprimida nessa linguagem. se não, será em inglês." #. module: base #: selection:ir.ui.menu,icon:0 @@ -849,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Próximo assistente" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "" #. module: base #: selection:ir.model.fields,select_level:0 @@ -868,25 +888,16 @@ msgstr "Campo base" msgid "User ID" msgstr "ID do utilizador" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Proximo passo de coniguração" - #. module: base #: view:ir.rule:0 msgid "Test" msgstr "Testar" #. 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 "" -"Você não pode remover o utilizador admin porque este é usado por recursos " -"criado pelo OpenERP (actualizações, instalação do módulo,...)" +#: 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 "Você não pode remover o utilizador admin porque este é usado por recursos criado pelo OpenERP (actualizações, instalação do módulo,...)" #. module: base #: wizard_view:module.module.update,update:0 @@ -904,6 +915,11 @@ msgstr "conteudos SXW" msgid "ID Ref." msgstr "" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -928,11 +944,6 @@ msgstr "" msgid "Default" msgstr "Por defeito" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Personalizado" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -966,8 +977,8 @@ msgid "Bank type" msgstr "Tipo do banco" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "Método \"get\" não definido" @@ -977,8 +988,8 @@ msgid "Header/Footer" msgstr "Cabeçalho/Rodapé" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "O método de leitura não esta definido neste objecto !" @@ -987,6 +998,11 @@ msgstr "O método de leitura não esta definido neste objecto !" msgid "Request History" msgstr "Requisitar histórico" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -1000,8 +1016,8 @@ msgid "Partner Events" msgstr "Evento dos terceiros" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1052,17 +1068,15 @@ msgid "Partner contacts" msgstr "Contactos dos terceiros" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Campos de relatório" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +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 "" -"O código ISO do país em dois caracter.\n" +msgstr "O código ISO do país em dois caracter.\n" "Você pode usar este campo para procura rápida." #. module: base @@ -1095,12 +1109,6 @@ msgstr "Assistente" msgid "System Upgrade" msgstr "Actualização do sistema" -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Reload Official Translations" -msgstr "Recarregar Traduções oficiais" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1128,9 +1136,10 @@ msgid "Parent Menu" msgstr "Menu pai" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Definir um novo utilizador" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Compos costumizados devem ter um nome que inicie com 'x_' 1" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1155,13 +1164,9 @@ msgid "ir.report.custom" 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 "" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "Exportação" #. module: base #: view:ir.model:0 @@ -1178,6 +1183,11 @@ msgstr "" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Campos de relatório" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1189,9 +1199,13 @@ msgid "Pie Chart" msgstr "Gráfico Circular" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1209,11 +1223,6 @@ msgstr "" msgid "Sequence Type" msgstr "Tipo de sequência" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Saltar e continuar" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1235,11 +1244,6 @@ msgstr "Campo filho0" msgid "Update Modules List" msgstr "Actualizar lista de módulos" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1290,21 +1294,16 @@ msgid "Model" msgstr "Modelo" #. 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -"Você tentou instalar um módulo que depende do módulo: %s.\n" -"Mas este módulo não esta disponível no sistema." #. 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 "Calendário" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Mensagem" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1328,14 +1327,15 @@ msgid "Modules to update" msgstr "Módulos para actualizar" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Arquitectura da empresa" +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Menina" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" -msgstr "Abrir uma janela" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Actividade" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1382,21 +1382,25 @@ msgid "Sequences" msgstr "Sequências" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" msgstr "Posição desconhecida na vista herdada %s !" +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" msgstr "Data de activação" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" -msgstr "Erro ocorrido quando validado os campos %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -1404,8 +1408,8 @@ msgid "Bank account" msgstr "Conta bancaria" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" msgstr "Aviso: Usando um campo de relação que usa um objecto desconhecido" @@ -1454,14 +1458,26 @@ msgstr "Activar" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Fornecedor" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +msgstr "" + #. module: base #: field:ir.model.fields,translate:0 msgid "Translate" msgstr "Traduzir" +#. 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" @@ -1480,6 +1496,7 @@ 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 @@ -1491,17 +1508,21 @@ msgstr "Vistas" msgid "Send Email" msgstr "Enviar e-mail" +#. 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 -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" -msgstr "" -"Você tentou desinstalar um módulo que esta instalado ou será instalado" +msgstr "Você tentou desinstalar um módulo que esta instalado ou será instalado" #. module: base #: rml:ir.module.reference:0 @@ -1535,6 +1556,12 @@ msgstr "Objectos" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1542,11 +1569,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Activar tipo" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1571,16 +1593,20 @@ msgstr "Assistente de configuração" msgid "Request Link" msgstr "Ligação requerida" +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Formato do ficheiro" + #. 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 -msgid "Manualy Created" -msgstr "Criado manualmente" +#: rml:ir.module.reference:0 +msgid "Description :" +msgstr "" #. module: base #: field:ir.report.custom,print_format:0 @@ -1621,11 +1647,9 @@ msgstr "" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" -msgstr "" -"0=Muito urgente\n" +msgstr "0=Muito urgente\n" "10=Não urgente" #. module: base @@ -1640,24 +1664,19 @@ msgstr "Interface do utilizador - Vistas" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" msgstr "Permissões de acesso" #. 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 -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" -"Não é possível criar o ficheiro do módulo:\n" -" %s" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1670,25 +1689,19 @@ msgstr "Criar menu" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "filoho de" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Imprimir endereço" #. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "Menus" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "Compos costumizados devem ter um nome que inicie com 'x_' 1" - -#. module: base #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "Você não pode remover o modelo'%s' !" @@ -1709,8 +1722,8 @@ msgid "Subject" msgstr "Assunto" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "O método de escrita não esta implementado neste objecto !" @@ -1731,10 +1744,9 @@ msgid "Retailer" msgstr "Revendedor" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Código de sequencia" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1763,6 +1775,7 @@ msgid "State of Mind" msgstr "Estado da mente" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1771,16 +1784,36 @@ msgstr "Estado da mente" msgid "Type" msgstr "Tipo" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "Criado manualmente" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "STOCK_FILE" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "O método copiar não é implementado neste objecto!" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -1845,8 +1878,14 @@ msgid "STOCK_OK" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "Palavrapasse vazia !" @@ -1867,8 +1906,8 @@ msgid "None" msgstr "Nenhum" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "Você não pode escrever neste documento! (%s)" @@ -1888,16 +1927,16 @@ msgstr "" msgid "Module Category" msgstr "Módulo categoria" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Adicionar e continuar" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1914,15 +1953,9 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" -"O módulo que você esta tentando remover, depende do(s) módulo(s) " -"instalado(s):\n" -" %s" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -1962,8 +1995,8 @@ msgid "Low" msgstr "Baixo" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "" @@ -1979,6 +2012,7 @@ msgstr "Caminho XSL" #. 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" @@ -2017,20 +2051,15 @@ msgid "Channel Name" msgstr "Nome do canal" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Continuar" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Interface simplificada" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "Atribua grupos para definir direitos de acesso" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2047,21 +2076,20 @@ msgstr "Alinhamento" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "Notificação" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Actividade" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2080,17 +2108,19 @@ msgstr "Carregar ficheiro" #. 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 "" -"Esta função irá verificar se há novos módulos na pasta ' addons' e em " -"repositórios dos módulos:" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "Esta função irá verificar se há novos módulos na pasta ' addons' e em repositórios dos módulos:" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "filoho de" +#: 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 "País" #. module: base #: field:res.currency,rate_ids:0 @@ -2104,9 +2134,9 @@ msgid "STOCK_GO_BACK" msgstr "" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "Erro de acesso" @@ -2154,8 +2184,8 @@ msgid "unknown" msgstr "Desconhecido" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "O método de criação não esta implementado neste objecto" @@ -2188,9 +2218,9 @@ msgid "SXW path" msgstr "Caminho SXW" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Dados" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2234,11 +2264,6 @@ msgstr "Dado de demonstração" msgid "Module import" msgstr "Importação de módulos" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -msgstr "Montante limite" - #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form #: model:ir.ui.menu,name:base.menu_action_res_company_form @@ -2272,6 +2297,11 @@ msgstr "Ficheiro CSV" msgid "Parent Company" msgstr "Empresa ascendente" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2297,11 +2327,6 @@ msgstr "" msgid "RML Internal Header" msgstr "Cabeçalho interno do RML" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "Listagens de lientes VAT" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2336,14 +2361,24 @@ msgstr "(ano)=" msgid "Code" msgstr "Código" +#. 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "Método 'get_memory' não implementado" @@ -2355,8 +2390,8 @@ msgid "Python Code" msgstr "Código python" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "" @@ -2366,11 +2401,10 @@ msgid "Field Label" msgstr "descrição do campo" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." -msgstr "" -"Você esta tentando contornar uma régra do acesso (Tipo de documento: %s)." +msgstr "Você esta tentando contornar uma régra do acesso (Tipo de documento: %s)." #. module: base #: field:ir.actions.url,url:0 @@ -2403,7 +2437,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2411,6 +2444,7 @@ msgstr "" #: 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 @@ -2418,9 +2452,9 @@ msgid "Cancel" msgstr "Cancelar" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Acesso real" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2428,7 +2462,11 @@ msgid "Modules Management" msgstr "Gestão de módulos" #. module: base -#: field:ir.attachment,res_id:0 +#: 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 @@ -2439,7 +2477,6 @@ msgstr "" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Informação" @@ -2474,9 +2511,9 @@ msgid "RML path" msgstr "Caminho RML" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Próximo assistente de configuração" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2490,10 +2527,9 @@ msgid "Meta Datas" msgstr "Meta-dados" #. 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 "A taxa da moeda à moeda da taxa 1" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Personalizado" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2501,12 +2537,13 @@ msgid "raw" msgstr "Sem formato" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Partners: " msgstr "Terceiros: " #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Outro" @@ -2517,18 +2554,13 @@ msgid "Childs Field" msgstr "Campo filhos" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" +#: 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 -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "Não se pode remover utilizador root!" @@ -2550,10 +2582,10 @@ msgstr "Vendedor dedicado" #. 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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2576,11 +2608,8 @@ msgstr "XML de Relatório" #. module: base #: help:res.partner,user_id:0 -msgid "" -"The internal user that is in charge of communicating with this partner if " -"any." -msgstr "" -"O utilizador interno que é responsável de comunicar com este sócio se algum." +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "O utilizador interno que é responsável de comunicar com este sócio se algum." #. module: base #: selection:ir.translation,type:0 @@ -2593,15 +2622,15 @@ msgid "Cancel Upgrade" msgstr "Cancelar actualizacão" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "O método de procura não esta implementado neste objecto." #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" -msgstr "E-mail de / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -2613,14 +2642,19 @@ msgstr "Nova data de chamada" msgid "Cumulate" msgstr "Acumulado" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "O gráfico circular precisa de exactamente dois campos" @@ -2642,12 +2676,12 @@ msgid "Create in Same Model" msgstr "Criar no mesmo modelo" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2668,11 +2702,22 @@ msgstr "Criar no mesmo modelo" msgid "Name" msgstr "Nome" +#. 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.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 msgid "On Create" @@ -2694,8 +2739,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "Erro !" @@ -2712,26 +2757,19 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Regexp para procurar o módulo no repositório da página web:\n" +msgstr "Regexp para procurar o módulo no repositório da página web:\n" "- O primeiro parêntesis deve coincidir com o nome do módulo.\n" "- O segundo parêntesis deve coincidir com os números das versões.\n" "- O ultimo parêntesis deve coincidir com a extensão do módulo" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "VAT" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" -msgstr "" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Para exportar uma nova linguagem, não seleccione a linguagem." #. module: base #: model:ir.ui.menu,name:base.menu_translation_app @@ -2778,6 +2816,16 @@ msgstr "Instâncias" msgid "STOCK_COPY" msgstr "" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2794,8 +2842,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Má formato do ficheiro" @@ -2829,6 +2877,11 @@ msgstr "Receita planificada" msgid "Record rules" msgstr "Regras de gravação" +#. 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2841,8 +2894,8 @@ msgid "Readonly" msgstr "Só de leitura" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "Você não pode remover este campo '%s' !" @@ -2872,11 +2925,6 @@ msgstr "" msgid "Document" msgstr "Documento" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "Nº de contactos" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2899,21 +2947,26 @@ msgid "STOCK_STOP" msgstr "" #. module: base -#: code: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 "" -"\" %s\" contem pontos a mais. Os ids do XML não devem conter pontos! Estes " -"são usados para referir a outros dados dos módulos, como em " -"module.reference_id" +#: code:addons/base/ir/ir_model.py:0 +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\" contem pontos a mais. Os ids do XML não devem conter pontos! Estes são usados para referir a outros dados dos módulos, como em module.reference_id" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Numero de conta" #. 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 #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -2936,8 +2989,8 @@ msgid "Day: %(day)s" msgstr "Dias: %(dia)s" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "Você não pode ler este documento! (%s)" @@ -3056,9 +3109,16 @@ msgstr "Valor do domínio" #. module: base #: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "Ajuda" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3091,8 +3151,7 @@ msgstr "Lista de controlo de acesso" #. module: base #: help:ir.rule.group,global:0 msgid "Make the rule global or it needs to be put on a group or user" -msgstr "" -"Faça a regra global ou ela precisa de ser posta num grupo ou um utilizador" +msgstr "Faça a regra global ou ela precisa de ser posta num grupo ou um utilizador" #. module: base #: field:ir.actions.wizard,wiz_name:0 @@ -3110,6 +3169,11 @@ msgstr "" msgid "Schedule for Installation" msgstr "Agendar para instalação" +#. 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" @@ -3129,9 +3193,9 @@ msgid "Directory:" msgstr "Pasta:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Crédito limite" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" #. module: base #: field:ir.actions.server,trigger_name:0 @@ -3139,8 +3203,13 @@ msgid "Trigger Name" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "O nome do grupo não pode iniciar com \"-\"" @@ -3148,8 +3217,7 @@ msgstr "O nome do grupo não pode iniciar com \"-\"" #: 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 "" -"Sugerimos que faça o recarregamento do menu separador (Ctrl+t Ctrl+r)." +msgstr "Sugerimos que faça o recarregamento do menu separador (Ctrl+t Ctrl+r)." #. module: base #: field:res.partner.title,shortcut:0 @@ -3176,8 +3244,14 @@ msgid "Source" msgstr "Origem" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" +#: 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 +msgid "Keep empty for a private address, not related to partner." msgstr "" #. module: base @@ -3226,14 +3300,10 @@ msgid "Resource Name" 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 "" -"Grave este documento para um ficheiro do tipo .tgz. Este arquivo contem " -"ficheiros UTF-8 %s e pode ser transferida ao launchpad." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "Grave este documento para um ficheiro do tipo .tgz. Este arquivo contem ficheiros UTF-8 %s e pode ser transferida ao launchpad." #. module: base #: field:res.partner.address,type:0 @@ -3251,6 +3321,12 @@ msgstr "Iniciar configuração" msgid "Export Id" msgstr "Exportar Id" +#. 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 "Acções de janelas" + #. module: base #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3277,8 +3353,8 @@ msgid "References" msgstr "Referência" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "Este registro foi modificado actualmente" @@ -3304,20 +3380,20 @@ msgid "Kind" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "Este método não existe mais" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, 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.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3333,21 +3409,25 @@ msgstr "Conta bancaria" msgid "Tree" msgstr "Árvore" +#. 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_CLEAR" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Gráficos de barra precisam de no mínimo dois campos" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Acesso real" #. module: base #: selection:ir.report.custom,type:0 @@ -3365,13 +3445,19 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "Gráficos de barra precisam de no mínimo dois campos" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "" @@ -3414,6 +3500,12 @@ msgstr "" msgid "Rules" msgstr "Regras" +#. 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 @@ -3426,17 +3518,16 @@ msgstr "Actualização do sistema feito" msgid "Type of view" msgstr "Tipo de vista" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "O método \"perm_read\" não esta implementado neste objecto !" - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3459,12 +3550,27 @@ msgstr "" msgid "STOCK_PROPERTIES" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 "Permitir acesso ao menu" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3477,8 +3583,8 @@ msgid "New Window" msgstr "Nova janela" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "O segundo campo devera ser figuras" @@ -3493,13 +3599,10 @@ msgid "Parent Action" msgstr "Acção ascendente" #. 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 "" -"Não foi possível criar o próximo id porque alguns terceiros possuem um id " -"alfabético !" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "Não foi possível criar o próximo id porque alguns terceiros possuem um id alfabético !" #. module: base #: selection:ir.report.custom,state:0 @@ -3512,11 +3615,17 @@ msgid "Number of modules updated" msgstr "Numero de módulos actualizados" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Saltar passo" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3530,6 +3639,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3545,8 +3655,20 @@ msgid "Active Partner Events" msgstr "Eventos de terceiros activos" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3572,17 +3694,25 @@ msgid "Phone" msgstr "Telefone" #. 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 views." +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." +msgstr "Se activado para verdadeiro, o assistente não aparecerá na barra de ferramentas a direita da vista de d formulário." + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" msgstr "" -"Se activado para verdadeiro, o assistente não aparecerá na barra de " -"ferramentas a direita da vista de d formulário." #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3600,6 +3730,7 @@ 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 @@ -3617,9 +3748,9 @@ msgid "Active" msgstr "Activo" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Menina" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3650,20 +3781,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "Apagar permissão" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Abrir uma janela" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Meses" #. 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" @@ -3682,15 +3813,15 @@ msgstr "Categoria descendente" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Nome do objecto" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3723,9 +3854,11 @@ msgid "Object Relation" msgstr "Relação do objecto" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "" +#: 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 "Anexos" #. module: base #: field:ir.rule,field_id:0 @@ -3776,9 +3909,9 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Concluído" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3794,9 +3927,7 @@ msgstr "Factura" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -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 "" #. module: base @@ -3834,6 +3965,7 @@ msgstr "Tamanho" #: 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 "Cidade" @@ -3844,10 +3976,8 @@ msgstr "Empresas descentes" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"O nome do objecto deve começar com x_ e não pode conter um carácter especial!" +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objecto deve começar com x_ e não pode conter um caracter especial!" #. module: base #: rml:ir.module.reference:0 @@ -3855,8 +3985,8 @@ msgid "Module:" msgstr "Módulo:" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3877,6 +4007,11 @@ msgstr "Menu" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3884,22 +4019,14 @@ msgstr "Instancia de destino" #. 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 "" -"A linguagem seleccionada foi instalada com sucesso. Você deve mudar as " -"preferências do utilizador e abrir um menu novo para ver mudanças." +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 linguagem seleccionada foi instalada com sucesso. Você deve mudar as preferências do utilizador e abrir um menu novo para ver mudanças." #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "Criar XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Menus" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3920,11 +4047,26 @@ msgstr "" msgid "Child Field" msgstr "Campos descendentes" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Senhor" + +#. 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 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3940,8 +4082,8 @@ msgid "STOCK_HOME" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "Preencha pelo menos um campo" @@ -3952,8 +4094,9 @@ msgid "Others Actions" msgstr "Outras acções" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -4028,9 +4171,9 @@ msgid "Child ids" msgstr "" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Formato do ficheiro" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -4039,9 +4182,9 @@ msgid "Resource" msgstr "Recurso" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Actualizar data" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4124,6 +4267,12 @@ msgstr "" msgid "Field Mappings" msgstr "Mapeamento de campos" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "O método copiar não é implementado neste objecto!" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4141,8 +4290,8 @@ msgid "center" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "Não é possível criar o ficheiro módulo: %s !" @@ -4157,9 +4306,10 @@ msgid "Published Version" msgstr "Versão publicada" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Auto-refrescar" +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "A taxa da moeda à moeda da taxa 1" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -4188,13 +4338,9 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." -msgstr "" -"Este assistente criará um ficheiro XML para o VAT e total de quantidades " -"facturadas por terceiro." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Crédito limite" #. module: base #: field:ir.default,value:0 @@ -4228,10 +4374,15 @@ msgid "Category" msgstr "Categoria" #. 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 "Acções de janelas" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Estado" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Auto-refrescar" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4239,9 +4390,9 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Numero de conta" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4249,14 +4400,15 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "Nome do ficheiro" #. module: base -#: field:ir.model,access:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Acesso" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4290,31 +4442,27 @@ msgstr "Módulos para descarregar" msgid "Fax" msgstr "Fax" +#. 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_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" msgstr "" -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Para exportar uma nova linguagem, não seleccione a linguagem." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" msgstr "" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "" -"A soma da data (2º campo) é nulo.\n" -"Podemos desenhar um gráfico circular !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" +msgstr "O método \"perm_read\" não esta implementado neste objecto !" #. module: base #: field:ir.default,company_id:0 @@ -4325,13 +4473,6 @@ msgstr "" msgid "Company" msgstr "Empresa" -#. module: base -#: view:ir.actions.server:0 -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 "Acesso a todos os campos relacionados com o objecto actual" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4342,6 +4483,11 @@ msgstr "" msgid "Email / SMS" msgstr "" +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "Código BIC/Swift" + #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" @@ -4365,7 +4511,6 @@ msgid "Icon" msgstr "Ícone" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4378,13 +4523,8 @@ msgid "Repeat missed" msgstr "Repetir falhado" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "Não foi possível encontrar a tag '%s' na vista ascendente" @@ -4404,12 +4544,6 @@ msgstr "" msgid "Limit" msgstr "Limite" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "Instalar um novo ficheiro de linguagem" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4423,6 +4557,11 @@ msgstr "Pedidos" msgid "Or" msgstr "Ou" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4447,6 +4586,11 @@ msgstr "Selecção" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4454,15 +4598,15 @@ msgid "Installed modules" msgstr "Módulos instalados" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "Aviso" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "O ficheiro XML foi criado." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "" #. module: base #: field:ir.rule,operator:0 @@ -4470,8 +4614,8 @@ msgid "Operator" msgstr "Operador" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "" @@ -4523,8 +4667,8 @@ msgid "Report Footer 1" msgstr "Rodapé do relatório 1" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "Você não pode apagar este documento! (%s)" @@ -4534,14 +4678,20 @@ msgstr "Você não pode apagar este documento! (%s)" msgid "Custom Report" msgstr "Relatório personalizado" +#. 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 "E-mail" #. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" +#: 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 @@ -4566,15 +4716,16 @@ msgid "Printed:" msgstr "Imprimido:" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" -msgstr "Guardar o ficheiro" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" +msgstr "" #. module: base #: selection:ir.actions.act_window,target:0 @@ -4586,11 +4737,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "Seleccionar o ano fiscal" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4616,12 +4762,12 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_base_config #: view:ir.sequence:0 +#: view:res.company:0 msgid "Configuration" msgstr "Configuração" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Tipo de campo" @@ -4642,6 +4788,11 @@ msgstr "Código de estado" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4668,22 +4819,34 @@ msgid "Cascade" msgstr "Cascata" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "Campo %d deve ser uma figura" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Assinatura" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" msgstr "Não Implementado" +#. 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4696,9 +4859,9 @@ msgid "Bank Account Type" msgstr "Tipo de conta bancaria" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" -msgstr "Testar ficheiro XML" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4719,14 +4882,8 @@ msgstr "Domínio" #. 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 "" -"Escolha a interface simplificada se você esta testando o OpenERP pela " -"primeira vez. Opções ou campos menos usados são escondidos automaticamente. " -"Você poderá mudar isto, mais tarde, através do menu administração." +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 "Escolha a interface simplificada se você esta testando o OpenERP pela primeira vez. Opções ou campos menos usados são escondidos automaticamente. Você poderá mudar isto, mais tarde, através do menu administração." #. module: base #: selection:ir.ui.menu,icon:0 @@ -4738,6 +4895,11 @@ msgstr "" msgid "Short description" msgstr "" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4748,6 +4910,11 @@ msgstr "" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "Seu logo - Use um tamanho de aproximadamente 450x150 pixels." +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4759,10 +4926,11 @@ msgid "a5" msgstr "a5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Mensagem" +#: 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 "Calendário" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4776,13 +4944,20 @@ msgid "ir.actions.report.xml" msgstr "" #. module: base -#: view:res.users:0 -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" msgstr "" -"Por favor note que você terá que sair e entrar de novo se você mudar a " -"palavra passe." + +#. 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.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "Por favor note que você terá que sair e entrar de novo se você mudar a palavra passe." #. module: base #: field:res.partner,address:0 @@ -4798,15 +4973,20 @@ msgid "Graph" msgstr "Gráfico" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "Código BIC/Swift" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" +msgstr "Ultima versão" #. module: base #: model:ir.model,name:base.model_ir_actions_server msgid "ir.actions.server" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4823,8 +5003,8 @@ msgid "Module dependency" msgstr "Dependência do módulo" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "" @@ -4839,6 +5019,11 @@ msgstr "Aplicar actualzações agendadas" msgid "STOCK_DND_MULTIPLE" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4856,14 +5041,9 @@ msgid "Server Action" msgstr "Acção do servidor" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "Ficheiro criado" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Ano: %(ano)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -4875,9 +5055,9 @@ msgid "Action Name" msgstr "Nome da acção" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "Progresso da configuração" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 @@ -4886,10 +5066,14 @@ msgstr "Rodapé do relatório 2" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "E-Mail" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4905,6 +5089,11 @@ msgstr "Modo separado" msgid "Localisation" msgstr "Localização" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4943,8 +5132,14 @@ msgid "Import a Translation File" msgstr "Importar ficheiro de tradução" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "Títulos dos terceiros" @@ -4956,9 +5151,9 @@ msgid "Untranslated terms" msgstr "Termos não traduzidos" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Abrir janela" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -4971,13 +5166,15 @@ msgid "Transition" msgstr "Transição" #. 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "VAT" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" -"Você tem que importar um ficheiro .CSV que é codificado em UTF-8. Por favor " -"verifique que a primeira linha do seu ficheiro é:" #. module: base #: field:res.partner.address,birthdate:0 @@ -5000,16 +5197,13 @@ msgid "res.partner.som" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "Controlo de acesso" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "Erro" @@ -5026,6 +5220,12 @@ msgstr "Categoria de terceiros" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Código de sequencia" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5108,8 +5308,15 @@ msgstr "" msgid "Fields Mapping" msgstr "Mapeamento de campos" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Referencia da tabela" + #. 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 @@ -5130,12 +5337,12 @@ msgstr "" #. module: base #: constraint:res.partner:0 msgid "The VAT doesn't seem to be correct." -msgstr "O VAT não parece estar correcto." +msgstr "O IVA não parece estar correcto." #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Senhor" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5152,6 +5359,11 @@ msgstr "Configurar vista simples" msgid "Start Upgrade" msgstr "Iniciar actualização" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5174,7 +5386,6 @@ msgid "Arguments" msgstr "Argumentos" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5219,13 +5430,12 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Descrição" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "Operação inválida" @@ -5261,14 +5471,19 @@ msgid "ir.attachment" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "O módulo \"%s\" para o campo \"%s\" não esta na selecção" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" +#: 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 @@ -5296,6 +5511,7 @@ msgstr "Exportar linguagem" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "Cliente" @@ -5305,9 +5521,9 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "Multiplas funções no mesmo objecto são ligadas usando o operador OR" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Meses" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Apagar permissão" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5332,14 +5548,9 @@ msgid "Mass Mailing" msgstr "E-mails em massa" #. 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 -#: view:res.country:0 -msgid "Country" -msgstr "País" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5362,9 +5573,9 @@ msgid "Unsubscribe Report" msgstr "Relatório não registado" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" -msgstr "Ano fiscal" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" #. module: base #: constraint:res.partner.category:0 @@ -5382,9 +5593,10 @@ msgid "a4" msgstr "a4" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" -msgstr "Ultima versão" +#: 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_view:module.lang.install,start:0 @@ -5396,6 +5608,11 @@ msgstr "Instalação concluída" msgid "STOCK_JUSTIFY_RIGHT" 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" @@ -5415,12 +5632,12 @@ msgstr "Mês: %(month)s" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form msgid "Addresses" -msgstr "Endereços" +msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5431,12 +5648,15 @@ msgid "Sequence" msgstr "Sequência" #. 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" +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" -"Número de vezes que a função é chamada,\n" + +#. 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 "Número de vezes que a função é chamada,\n" "um número negativo indica que a função será sempre chamada" #. module: base @@ -5470,8 +5690,8 @@ msgid "Cancel Install" msgstr "Cancelar instalação" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "Por favor certifique que todas as suas linhas tenham %d colunas." @@ -5484,3 +5704,4 @@ msgstr "Importar linguagem" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "Identificador XML" + diff --git a/bin/addons/base/i18n/ro_RO.po b/bin/addons/base/i18n/ro_RO.po index 788dd9241c6..3103c70cbce 100644 --- a/bin/addons/base/i18n/ro_RO.po +++ b/bin/addons/base/i18n/ro_RO.po @@ -4,16 +4,16 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 4.3.0" -"Report-Msgid-Bugs-To: support@openerp.com" -"POT-Creation-Date: 2008-09-11 15:43:25+0000" -"PO-Revision-Date: 2008-09-11 15:43:25+0000" -"Last-Translator: <>" -"Language-Team: " -"MIME-Version: 1.0" -"Content-Type: text/plain; charset=UTF-8" -"Content-Transfer-Encoding: " -"Plural-Forms: " +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:03:35+0000\n" +"PO-Revision-Date: 2008-11-28 17:03:35+0000\n" +"Last-Translator: <>\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 #: model:ir.actions.act_window,name:base.ir_cron_act @@ -42,11 +42,6 @@ msgstr "" msgid "Unknown" msgstr "" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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." @@ -68,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -124,7 +124,7 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" @@ -156,6 +156,7 @@ msgstr "Workflow" #: 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 @@ -184,21 +185,21 @@ msgstr "" msgid "Categories of Modules" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -230,8 +231,12 @@ msgid "Key" msgstr "" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" +#: 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 @@ -245,6 +250,16 @@ msgstr "" 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" @@ -266,6 +281,12 @@ msgstr "Ref. utilisator" 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 @@ -273,13 +294,6 @@ msgstr "" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -333,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -364,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "Tip de raport" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -441,6 +460,7 @@ msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 #: view:ir.model:0 #: view:res.partner:0 @@ -453,6 +473,11 @@ msgstr "Note" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -482,6 +507,11 @@ msgstr "" msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" @@ -658,9 +688,9 @@ msgid "View Ref." msgstr "Referinta view" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Tabela de Ref. " +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "" #. module: base #: field:res.partner,ean13:0 @@ -713,8 +743,8 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" msgstr "" #. module: base @@ -728,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -744,11 +775,21 @@ msgstr "" msgid "Group" 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "" + #. module: base #: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 @@ -794,10 +835,10 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Statut" +#: wizard_field:server.action.create,init,type:0 +#: wizard_view:server.action.create,init:0 +msgid "Select Action Type" +msgstr "" #. module: base #, python-format @@ -812,6 +853,11 @@ msgstr "" 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." @@ -823,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -842,11 +888,6 @@ msgstr "" msgid "User ID" msgstr "ID utilisator" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - #. module: base #: view:ir.rule:0 msgid "Test" @@ -874,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "Referinta ID" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -898,11 +944,6 @@ msgstr "" msgid "Default" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -957,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "Istoric de cereri" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -970,8 +1016,8 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1022,8 +1068,8 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" msgstr "" #. module: base @@ -1089,8 +1135,9 @@ msgid "Parent Menu" msgstr "Meniu parinte" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1116,12 +1163,8 @@ msgid "ir.report.custom" 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" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" msgstr "" #. module: base @@ -1139,6 +1182,11 @@ msgstr "" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1150,9 +1198,13 @@ msgid "Pie Chart" msgstr "" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1170,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1196,11 +1243,6 @@ msgstr "" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Nume de fisier de date" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1257,10 +1299,9 @@ msgid "You try to install a module that depends on the module: %s.\nBut this mod 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" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" msgstr "" #. module: base @@ -1285,14 +1326,15 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" +#: 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 "Deschide o fereastra(ecran)" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1344,15 +1386,19 @@ msgstr "" msgid "Unknown position in inherited view %s !" 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 -#, python-format -#: code:osv/orm.py:0 -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1415,11 +1461,22 @@ msgstr "" msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1438,6 +1495,7 @@ 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 @@ -1497,6 +1555,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1504,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Tip de actiune" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1533,15 +1592,19 @@ msgstr "" 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 "" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1609,9 +1672,8 @@ msgid "The .rml path of the file or NULL if the content is in report_rml_content msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "Can not create the module file:\n %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1625,22 +1687,16 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" -#. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#, python-format -#: code:addons/base/ir/ir_model.py:0 -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - #. module: base #, python-format #: code:addons/base/ir/ir_model.py:0 @@ -1686,10 +1742,9 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Cod de numerotare" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1718,6 +1773,7 @@ msgid "State of Mind" msgstr "Stare spirit" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1726,6 +1782,27 @@ msgstr "Stare spirit" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Activitate sursa" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" @@ -1849,13 +1926,13 @@ msgid "Module Category" msgstr "" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1874,9 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "The module you are trying to remove depends on installed modules :\n %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1973,7 +2049,7 @@ msgid "Channel Name" msgstr "Nume canal" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1982,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2003,20 +2074,19 @@ msgstr "Aliniere" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2040,8 +2110,14 @@ msgid "This function will check for new modules in the 'addons' path and on modu msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" +#: 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 @@ -2140,9 +2216,9 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Date" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2186,11 +2262,6 @@ msgstr "" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2224,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2249,11 +2325,6 @@ msgstr "" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2288,11 +2359,21 @@ msgstr "" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + #. module: base #, python-format #: code:osv/fields.py:0 @@ -2354,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2362,6 +2442,7 @@ msgstr "" #: 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 @@ -2369,8 +2450,8 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -2384,7 +2465,6 @@ msgid "terp-administration" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2429,7 +2509,7 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2445,9 +2525,8 @@ msgid "Meta Datas" msgstr "Meta-date" #. 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" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" msgstr "" #. module: base @@ -2462,6 +2541,7 @@ msgid "Partners: " msgstr "" #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "" @@ -2472,14 +2552,9 @@ msgid "Childs Field" msgstr "Cimp copii" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nume" #. module: base #, python-format @@ -2505,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2551,8 +2626,8 @@ msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2599,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2625,11 +2700,22 @@ msgstr "" msgid "Name" msgstr "Nume raport-XML" +#. 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.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 msgid "On Create" @@ -2676,13 +2762,8 @@ msgid "Regexp to search module on the repository webpage:\n" msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "TVA" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2731,14 +2812,13 @@ msgid "STOCK_COPY" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" 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" +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" msgstr "" #. module: base @@ -2792,6 +2872,11 @@ msgstr "Venituri planificate" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2835,11 +2920,6 @@ msgstr "" msgid "Document" msgstr "Document" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2867,11 +2947,21 @@ 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 "" +#. 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 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" @@ -3018,6 +3108,12 @@ msgstr "Domeniu" msgid "Help" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3068,6 +3164,11 @@ msgstr "" 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" @@ -3087,8 +3188,8 @@ msgid "Directory:" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" msgstr "" #. module: base @@ -3096,6 +3197,11 @@ msgstr "" 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 @@ -3133,9 +3239,15 @@ msgid "Source" msgstr "Sursa" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Activitate sursa" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3204,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3269,8 +3387,8 @@ msgid "Tree can only be used in tabular reports" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3297,14 +3415,13 @@ msgid "STOCK_CLEAR" msgstr "" #. module: base -#, python-format -#: code:addons/base/ir/ir_report_custom.py:0 -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base @@ -3323,9 +3440,15 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Rol cerut" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" #. module: base #, python-format @@ -3372,6 +3495,12 @@ msgstr "" 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 @@ -3385,14 +3514,13 @@ msgid "Type of view" msgstr "Tip de view(visualizare)" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3433,6 +3561,11 @@ msgstr "" msgid "Grant access to menu" msgstr "" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3477,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3495,6 +3634,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3510,9 +3650,21 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "Expresie" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3536,14 +3688,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." msgstr "" +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Rol cerut" + #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3561,6 +3725,7 @@ 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 @@ -3578,8 +3743,8 @@ msgid "Active" msgstr "Activ" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -3611,8 +3776,13 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Deschide o fereastra(ecran)" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" msgstr "" #. module: base @@ -3620,11 +3790,6 @@ msgstr "" 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" @@ -3643,15 +3808,15 @@ msgstr "" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3684,8 +3849,10 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" +#: 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 @@ -3737,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3793,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3812,8 +3980,8 @@ msgid "Module:" msgstr "" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3850,13 +4018,9 @@ msgid "The selected language has been successfully installed. You must change th msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nume" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3878,6 +4042,11 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "" + #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" @@ -3888,6 +4057,11 @@ msgstr "" msgid "STOCK_EDIT" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3915,8 +4089,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3991,8 +4166,8 @@ msgid "Child ids" msgstr "Meniu fiu" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -4002,8 +4177,8 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" msgstr "" #. module: base @@ -4126,8 +4301,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4157,8 +4333,8 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "This wizard will create an XML file for Vat details and total invoiced amounts per partner." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base @@ -4193,9 +4369,14 @@ msgid "Category" 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Statut" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4204,8 +4385,8 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" +#: selection:ir.actions.todo,type:0 +msgid "Service" msgstr "" #. module: base @@ -4214,6 +4395,7 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" @@ -4256,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4273,8 +4455,8 @@ msgstr "" #. module: base #, python-format -#: code:report/custom.py:0 -msgid "The sum of the data (2nd field) is null.\nWe can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4286,11 +4468,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4329,7 +4506,6 @@ msgid "Icon" msgstr "" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4341,11 +4517,6 @@ msgstr "" msgid "Repeat missed" msgstr "" -#. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - #. module: base #, python-format #: code:osv/orm.py:0 @@ -4410,6 +4581,11 @@ msgstr "" msgid "=" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4423,8 +4599,8 @@ msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4497,6 +4673,11 @@ msgstr "" msgid "Custom Report" 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" @@ -4531,13 +4712,14 @@ msgstr "" #. module: base #, python-format -#: code:osv/fields.py:0 -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4550,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4586,7 +4763,6 @@ msgstr "" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4607,6 +4783,11 @@ msgstr "Stare(statut) Code" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4639,8 +4820,10 @@ msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" +#: 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 @@ -4671,8 +4854,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4722,6 +4905,11 @@ msgstr "Nume de raport" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4733,9 +4921,10 @@ msgid "a5" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" +#: 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 @@ -4749,6 +4938,12 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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." @@ -4841,13 +5036,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4860,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4871,10 +5061,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4933,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4946,13 +5146,13 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" msgstr "" #. module: base @@ -4961,8 +5161,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "TVA" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4987,6 +5193,8 @@ msgstr "" #. module: base #, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 @@ -5007,6 +5215,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Cod de numerotare" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5089,8 +5303,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Tabela de Ref. " + #. 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 @@ -5114,8 +5335,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5160,7 +5381,6 @@ msgid "Arguments" msgstr "Argumente" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5205,7 +5425,6 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Descriere" @@ -5257,6 +5476,11 @@ msgstr "" msgid "Automatic XSL:RML" msgstr "XSL:RML Automat" +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5292,8 +5516,8 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" msgstr "" #. module: base @@ -5319,13 +5543,8 @@ 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5349,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5411,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5423,6 +5642,11 @@ msgstr "" msgid "Sequence" 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" diff --git a/bin/addons/base/i18n/ru_RU.po b/bin/addons/base/i18n/ru_RU.po index f72c971bfb0..d3d24c1e4a6 100644 --- a/bin/addons/base/i18n/ru_RU.po +++ b/bin/addons/base/i18n/ru_RU.po @@ -1,21 +1,19 @@ -# Russian translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-11-05 19:57+0000\n" -"Last-Translator: Sergei Kostigoff \n" -"Language-Team: Russian \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:04:29+0000\n" +"PO-Revision-Date: 2008-11-28 17:04:29+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,16 +42,9 @@ msgstr "Ежемесячно" msgid "Unknown" msgstr "Неизвестно" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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 @@ -72,6 +63,11 @@ msgstr "STOCK_SAVE" msgid "Change My Preferences" msgstr "Изменить мои предпочтения" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Открыть окно" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -112,6 +108,7 @@ msgstr "STOCK_SORT_ASCENDING" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Правила доступа" @@ -127,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "STOCK_MEDIA_FORWARD" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Пропущено" +msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "Вы не можете создать документ данного типа! (%s)" @@ -159,6 +156,7 @@ msgstr "" #: 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 @@ -176,26 +174,31 @@ msgstr "" 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:res.users:0 -msgid "Add New User" -msgstr "Добавить нового пользователя" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "Не начато" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -228,9 +231,13 @@ msgid "Key" msgstr "Ключ" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "Экспорт" +#: 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 @@ -243,6 +250,16 @@ msgstr "Страны" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Выбрать Max" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "" + #. module: base #: selection:res.request,priority:0 msgid "Normal" @@ -264,6 +281,12 @@ msgstr "Ссылка на пользователя" 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 @@ -271,13 +294,6 @@ msgstr "Импорт нового языка" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -294,8 +310,8 @@ msgid "Suffix" msgstr "Суффикс" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "В данном объекте не реализован метод 'unlink' !" @@ -331,9 +347,9 @@ msgid "Activites" msgstr "Действия" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Текст" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -362,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -407,7 +428,7 @@ msgid "Report Type" msgstr "Тип отчета" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -433,13 +454,15 @@ msgid "Other proprietary" msgstr "Прочая собственность" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" +msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Примечания" @@ -450,6 +473,11 @@ msgstr "Примечания" msgid "All terms" msgstr "Все термины" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -474,16 +502,26 @@ msgid "Form" msgstr "Форма" #. module: base -#: code:osv/orm.py:0 #, 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -495,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "В даннои объекте не реализован метод name_search !" @@ -521,8 +559,8 @@ msgid "Web:" msgstr "Сайт:" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "новый" @@ -587,14 +625,10 @@ 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." +#: 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 @@ -607,31 +641,8 @@ msgid "Repositories" 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" -"Пакеты официального перевода всех модулей OpenERP/OpenObjects управляются " -"при помощи технологии сайта launchpad. Мы используем их интерфейс реального " -"времени для синхронизыции всех усилий по переводу. Чтобы улучшить некоторые " -"термины официальных переводов OpenERP, вы должны изменить их непосредственно " -"в интерфейсе launchpad. Если вы уже проделали значительную работу по " -"переводу для ваших модулей, вы можете опубликовать переводы за один раз. " -"Чтобы сделать это, необходимо: Если вы создали новый модуль, вам необходимо " -"отправить сгенерированный файл .pot по элекртонной почте группе " -"ответственных за перевод: ... Они рассмотрят ваш фа1л и произведут " -"интеграцию." - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "Несоответсвие пароля!" @@ -642,12 +653,10 @@ msgid "Contact" msgstr "Контакт" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" -"По данномк адресу '%s' должна располагаться файл html со ссылками на модули " -"в формате zip" +msgstr "По данномк адресу '%s' должна располагаться файл html со ссылками на модули в формате zip" #. module: base #: model:ir.ui.menu,name:base.next_id_15 @@ -668,8 +677,8 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "Исключение параллельного выполнения" @@ -679,9 +688,9 @@ msgid "View Ref." msgstr "Ссылка на вид" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Ссылка на таблицу" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "" #. module: base #: field:res.partner,ean13:0 @@ -708,14 +717,18 @@ msgstr "Заголовок отчета" #. module: base #: view:ir.rule:0 msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" -"Если вы не укажете домен, будет использована установка простого домена" +msgstr "Если вы не укажете домен, будет использована установка простого домена" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -730,9 +743,9 @@ msgid "Default limit for the list view" msgstr "Лимит по умолчанию для вида списка" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Дата изменения" +#: 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 @@ -745,8 +758,9 @@ msgid "Type fields" msgstr "Тип полей" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Шаги мастера настроек" @@ -761,12 +775,23 @@ msgstr "" msgid "Group" 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 "STOCK_FLOPPY" #. 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" @@ -796,8 +821,7 @@ msgstr "Не установленные модули" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "Активное поле позволяет скрыть категорию, не удаляя ее." #. module: base @@ -811,22 +835,16 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Статус" +#: 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 и откройте его в вашем любимом табличном " -"редакторе. Кодировка файла - UTF-8. Необходимо перевести последний столбец " -"перед повторным импортом файла." +#: 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 и откройте его в вашем любимом табличном редакторе. Кодировка файла - UTF-8. Необходимо перевести последний столбец перед повторным импортом файла." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -836,14 +854,14 @@ msgid "Currencies" 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." +#: 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 @@ -851,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Следующий мастер" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "Пользовательский объект" #. module: base #: selection:ir.model.fields,select_level:0 @@ -870,25 +888,16 @@ msgstr "Базовое поле" msgid "User ID" msgstr "ID пользователя" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -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 (обновления, установка модулей, и т.п.)" +#: 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 @@ -906,6 +915,11 @@ msgstr "содержимое SXW" msgid "ID Ref." msgstr "Ссылка на ID" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -930,11 +944,6 @@ msgstr "Ограничение" msgid "Default" msgstr "По умолчанию" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Пользовательское" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -968,8 +977,8 @@ msgid "Bank type" msgstr "Тип банка" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "не определен метод получения!" @@ -979,8 +988,8 @@ msgid "Header/Footer" msgstr "Верхний/нижний колонтитул" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "В данном объекте не реализован метод чтения !" @@ -989,6 +998,11 @@ msgstr "В данном объекте не реализован метод чт msgid "Request History" msgstr "История запроса" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -1002,8 +1016,8 @@ msgid "Partner Events" msgstr "События партнера" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1054,17 +1068,15 @@ msgid "Partner contacts" msgstr "Контакты партнера" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Поля отчета" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +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 "" -"Двухбуквенный код страны по ISO.\n" +msgstr "Двухбуквенный код страны по ISO.\n" "Поле можно использовать для быстрого поиска." #. module: base @@ -1097,12 +1109,6 @@ msgstr "Мастер" msgid "System Upgrade" 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 "Reload Official Translations" -msgstr "Пегезагрузить официальный перевод" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1130,9 +1136,10 @@ msgid "Parent Menu" msgstr "Родительское меню" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Определить нового пользователя" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "ПНазвания пользовательских полей должны начинаться с 'x_' !" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1157,13 +1164,9 @@ msgid "ir.report.custom" 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 "Роли" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "Экспорт" #. module: base #: view:ir.model:0 @@ -1180,6 +1183,11 @@ msgstr "Массовая отправка SMS" msgid "get" msgstr "взять" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Поля отчета" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1191,11 +1199,14 @@ msgid "Pie Chart" msgstr "Круговая диаграмма" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" -"Неправильный ID для просмотра записи, получено %s, должно быть целое число." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1212,11 +1223,6 @@ msgstr "STOCK_ZOOM_FIT" msgid "Sequence Type" msgstr "Тип последовательности" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Пропустить и продолжить" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1238,11 +1244,6 @@ msgstr "" msgid "Update Modules List" msgstr "Обновить список модулей" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Название файла данных" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1293,21 +1294,16 @@ 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -"Вы пытаетесь установить модуль, который зависит от модуля: %s.\n" -"Однако данный модуль недоступен в вашей системе." #. 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 "Календарь" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Сообщение" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1331,14 +1327,15 @@ msgid "Modules to update" msgstr "Модули, которые надо обновить" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Архитектура компании" +#: 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 "Открыть окно" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Действие" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1385,21 +1382,25 @@ msgid "Sequences" msgstr "Последовательности" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 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 msgid "Trigger Date" msgstr "Дата триггера" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" -msgstr "Возникла ошибка при проверке полей %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -1407,11 +1408,10 @@ msgid "Bank account" msgstr "Банковский счёт" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" -msgstr "" -"Внимание: использование поля отношения, которое использует неизвестный объект" +msgstr "Внимание: использование поля отношения, которое использует неизвестный объект" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1458,14 +1458,26 @@ msgstr "Триггер" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Поставщик" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1484,6 +1496,7 @@ 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 @@ -1495,14 +1508,19 @@ msgstr "Виды" msgid "Send Email" msgstr "Отправить e-mail" +#. 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 "STOCK_SELECT_FONT" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" msgstr "Вы пытаетесь удалить модуль, который установлен или будет установлен" @@ -1538,6 +1556,12 @@ msgstr "Объекты" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1545,11 +1569,6 @@ msgstr "STOCK_GOTO_FIRST" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Тип триггера" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1574,16 +1593,20 @@ msgstr "Мастер настройки" 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 "Адрес ссылки" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" -msgstr "Создано вручную" +#: rml:ir.module.reference:0 +msgid "Description :" +msgstr "" #. module: base #: field:ir.report.custom,print_format:0 @@ -1624,11 +1647,9 @@ msgstr "" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" -msgstr "" -"0=Очень срочно\n" +msgstr "0=Очень срочно\n" "10=Не срочно" #. module: base @@ -1643,25 +1664,19 @@ msgstr "Пользовательский интерфейс - виды" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" 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 "" -"Директоря файла .RML или NULL, если содержимое находится в report_rml_content" +msgid "The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "Директоря файла .RML или NULL, если содержимое находится в report_rml_content" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" -"Невозможно создать файл модуля:\n" -" %s" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1674,25 +1689,19 @@ msgstr "Создать меню" msgid "STOCK_MEDIA_RECORD" msgstr "STOCK_MEDIA_RECORD" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Адрес партнера" #. module: base -#: view:res.groups:0 -msgid "Menus" -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 #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "Вы не можете удалить модель'%s' !" @@ -1713,8 +1722,8 @@ msgid "Subject" msgstr "Тема" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "Для данного объекта не реализован метод 'write'!" @@ -1735,10 +1744,9 @@ msgid "Retailer" msgstr "Посредник" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Код последовательности" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1767,6 +1775,7 @@ msgid "State of Mind" msgstr "Мнение" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1775,16 +1784,36 @@ msgstr "Мнение" msgid "Type" msgstr "Тип" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "Создано вручную" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Действие источника" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "STOCK_FILE" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "В данном обекте не реализован метод 'copy' !" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -1849,8 +1878,14 @@ msgid "STOCK_OK" msgstr "STOCK_OK" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "Пустой пароль!" @@ -1871,8 +1906,8 @@ msgid "None" msgstr "Ничего" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "Вы не можете записывать в данный документ! (%s)" @@ -1892,16 +1927,16 @@ msgstr "API ID" msgid "Module Category" msgstr "Категория модуля" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Добавить и продолжить" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1918,14 +1953,9 @@ msgid "STOCK_UNINDENT" msgstr "STOCK_UNINDENT" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" -"Модуль, который вы пытаетесь удалить, зависит от установленных модулей :\n" -" %s" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -1965,8 +1995,8 @@ msgid "Low" msgstr "Низкий" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "Ошибка рекурсии в зависимостях модулей!" @@ -1982,6 +2012,7 @@ msgstr "Директория XSL" #. 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" @@ -2020,20 +2051,15 @@ msgid "Channel Name" msgstr "Название канала" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Далее" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Упрощенный интерфейс" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "Создание групп для назначения прав доступа" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2050,21 +2076,20 @@ msgstr "Выравнивание" msgid "STOCK_UNDO" msgstr "STOCK_UNDO" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "Уведомление" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Действие" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2083,17 +2108,19 @@ 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 "" -"Данная функция проверит наличие новых модулей в директории 'addons' и " -"хранилищах модулей:" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "Данная функция проверит наличие новых модулей в директории 'addons' и хранилищах модулей:" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "" +#: 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 #: field:res.currency,rate_ids:0 @@ -2107,9 +2134,9 @@ msgid "STOCK_GO_BACK" msgstr "STOCK_GO_BACK" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "Ошибка доступа" @@ -2157,8 +2184,8 @@ msgid "unknown" msgstr "неизвестен" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "В данном объекте не реализован метод 'create' !" @@ -2191,9 +2218,9 @@ msgid "SXW path" msgstr "директория SXW" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Данные" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2237,11 +2264,6 @@ msgstr "Демонстрационные данные" msgid "Module import" msgstr "Модуль импорта" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2275,6 +2297,11 @@ msgstr "Файл .CSV" msgid "Parent Company" msgstr "Родительская компания" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2300,11 +2327,6 @@ msgstr "Дата инициализации" msgid "RML Internal Header" msgstr "Внутренний заголовок RML" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "Список клиентов-плательщиков НДС" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2339,14 +2361,24 @@ msgstr "(год)=" 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 "terp-partner" #. module: base -#: code:osv/fields.py:0 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "Метод 'get_memory' не реализован !" @@ -2358,8 +2390,8 @@ msgid "Python Code" msgstr "Код на Python" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "Неправильный запрос." @@ -2369,8 +2401,8 @@ msgid "Field Label" msgstr "Метка поля" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "Вы пытаетесь нарушить правила доступа (Тип документа: %s)." @@ -2405,7 +2437,6 @@ msgid "Customers Partners" msgstr "Партнеры-клиенты" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2413,6 +2444,7 @@ msgstr "Партнеры-клиенты" #: 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 @@ -2420,9 +2452,9 @@ msgid "Cancel" msgstr "Отмена" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Доступ на чтение" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2430,7 +2462,11 @@ msgid "Modules Management" msgstr "Управление модулями" #. module: base -#: field:ir.attachment,res_id:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2441,7 +2477,6 @@ msgstr "ID объекта" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Информация" @@ -2476,9 +2511,9 @@ msgid "RML path" msgstr "Директория RML" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Следующий мастер настроек" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2492,10 +2527,9 @@ msgid "Meta Datas" 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 "Курс валюты по отношению у валюте с курсом 1" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Пользовательское" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2503,12 +2537,13 @@ msgid "raw" msgstr "сырой" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, 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 "Прочие" @@ -2519,18 +2554,13 @@ msgid "Childs Field" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" +#: 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 -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "Невозможно удалить пользователя root!" @@ -2552,10 +2582,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2578,12 +2608,8 @@ 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 "" -"Внутренний пользователь, если он существует, который участвует в общении с " -"данным партнером." +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "Внутренний пользователь, если он существует, который участвует в общении с данным партнером." #. module: base #: selection:ir.translation,type:0 @@ -2596,15 +2622,15 @@ msgid "Cancel Upgrade" msgstr "Отмена обновления" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "В данном объекте не реализрван метод 'search' !" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" -msgstr "Email От / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -2616,14 +2642,19 @@ msgstr "Дата следующего звонка" msgid "Cumulate" msgstr "Накапливать" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "Для радиальной диаграммы необходимы ровно два поля" @@ -2645,12 +2676,12 @@ msgid "Create in Same Model" msgstr "Создать в той же модели" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2671,11 +2702,22 @@ msgstr "Создать в той же модели" msgid "Name" 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 #: selection:ir.ui.menu,icon:0 msgid "STOCK_APPLY" msgstr "STOCK_APPLY" +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" @@ -2697,8 +2739,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "STOCK_MEDIA_PAUSE" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "Ошибка !" @@ -2715,26 +2757,19 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Регулярное выражение для поиска модуля на сайте хранилища:\n" +msgstr "Регулярное выражение для поиска модуля на сайте хранилища:\n" "- Первые скобки должны соответствовать названию модуля.\n" "- Вторые скобки должны соответствовать всем номерам версий.\n" "- Последние скобки должны соответствовать расширению модуля." #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "ИНН" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" -msgstr "" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Для экспорта нового языка, не выбирайте язык" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app @@ -2781,6 +2816,16 @@ msgstr "Копии" msgid "STOCK_COPY" msgstr "STOCK_COPY" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2797,8 +2842,8 @@ msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Неправильный формат файла" @@ -2832,6 +2877,11 @@ msgstr "Планируемая выручка" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2844,8 +2894,8 @@ msgid "Readonly" msgstr "Только чтение" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "Вы не можете удалить поле '%s' !" @@ -2875,11 +2925,6 @@ msgstr "" msgid "Document" msgstr "Документ" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "Кол-во контактных лиц" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2902,21 +2947,26 @@ msgid "STOCK_STOP" msgstr "STOCK_STOP" #. module: base -#: code: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 "" -"\"%s\" содержит слишком много точек. Идентификаторы XML не должны содержать " -"точек ! Точки используются для ссылок на данные других модулей, как " -"например, в module.reference_id" +#: code:addons/base/ir/ir_model.py:0 +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 не должны содержать точек ! Точки используются для ссылок на данные других модулей, как например, в module.reference_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 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" @@ -2939,8 +2989,8 @@ msgid "Day: %(day)s" msgstr "Дней: %(day)" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "У вас нет прав читать данный документ! (%s)" @@ -3059,9 +3109,16 @@ 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 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3112,6 +3169,11 @@ msgstr "Пользовательский отчет" 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" @@ -3131,9 +3193,9 @@ msgid "Directory:" msgstr "Директория:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Лимит кредита" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" #. module: base #: field:ir.actions.server,trigger_name:0 @@ -3141,8 +3203,13 @@ msgid "Trigger Name" msgstr "Название триггера" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "Название группы не может начинаться с \"-\"" @@ -3177,9 +3244,15 @@ msgid "Source" msgstr "Источник" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Действие источника" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3227,14 +3300,10 @@ msgid "Resource Name" 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. Архив содержит файлы %s в кодировке " -"UTF-8 и может быть выгружен на launchpad." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "Сохраните данный документ в файл .tgz. Архив содержит файлы %s в кодировке UTF-8 и может быть выгружен на launchpad." #. module: base #: field:res.partner.address,type:0 @@ -3252,6 +3321,12 @@ msgstr "Начать настройку" msgid "Export Id" msgstr "ID экспорта" +#. 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3278,8 +3353,8 @@ msgid "References" msgstr "Ссылки" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "" @@ -3305,21 +3380,21 @@ msgid "Kind" msgstr "Тип" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "Данный метод более не существует" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, 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.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -3334,21 +3409,25 @@ msgstr "Банковские счета" msgid "Tree" 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_CLEAR" msgstr "STOCK_CLEAR" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Столбцовые диаграммы требуютт как минимум два поля" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Доступ на чтение" #. module: base #: selection:ir.report.custom,type:0 @@ -3366,13 +3445,19 @@ msgid "Custom Field" msgstr "Пользовательское поле" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Необходима роль" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "Столбцовые диаграммы требуютт как минимум два поля" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "Метод 'search_memory' не реализован !" @@ -3415,6 +3500,12 @@ msgstr "" 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 @@ -3427,17 +3518,16 @@ msgstr "Обновление системы закончено" msgid "Type of view" msgstr "Тип вида" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "В данном объекте не реализован метод 'perm_read' !" - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3460,12 +3550,27 @@ msgstr "STOCK_FIND" msgid "STOCK_PROPERTIES" msgstr "STOCK_PROPERTIES" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 msgid "Uninstall (beta)" @@ -3478,8 +3583,8 @@ msgid "New Window" msgstr "Новое окно" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "" @@ -3494,13 +3599,10 @@ msgid "Parent Action" 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 "" -"Невозможно сгенерировать следующий идентификатор, так как у некоторых " -"партнеров буквенные идентификаторы !" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "Невозможно сгенерировать следующий идентификатор, так как у некоторых партнеров буквенные идентификаторы !" #. module: base #: selection:ir.report.custom,state:0 @@ -3513,11 +3615,17 @@ msgid "Number of modules updated" msgstr "Количество обновленных модулей" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Пропустить шаг" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3531,6 +3639,7 @@ msgstr "Структура ролей" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3546,8 +3655,20 @@ msgid "Active Partner Events" msgstr "События активного партнера" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3573,16 +3694,25 @@ msgid "Phone" 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 views." +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" msgstr "" -"При установке в 'true', матер не будет отображен в правой панели видов формы." + +#. 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 views." +msgstr "При установке в 'true', матер не будет отображен в правой панели видов формы." + +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3600,6 +3730,7 @@ msgid "STOCK_SPELL_CHECK" msgstr "STOCK_SPELL_CHECK" #. module: base +#: field:ir.actions.todo,active:0 #: field:ir.cron,active:0 #: field:ir.module.repository,active:0 #: field:ir.sequence,active:0 @@ -3617,9 +3748,9 @@ msgid "Active" msgstr "Активен" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Г-жа" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3650,20 +3781,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "Право удаления" +#: 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 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" @@ -3682,15 +3813,15 @@ msgstr "Категория потомков" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Название объекта" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3723,9 +3854,11 @@ msgid "Object Relation" msgstr "Отношение объекта" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "Требуемый id" +#: 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 @@ -3776,9 +3909,9 @@ msgid "terp-mrp" msgstr "terp-mrp" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Выполнено" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3794,12 +3927,8 @@ msgstr "Счет" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form views." -msgstr "" -"При установке в 'true', действие не будет отображено в правой панели видов " -"формы." +msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgstr "При установке в 'true', действие не будет отображено в правой панели видов формы." #. module: base #: model:ir.ui.menu,name:base.next_id_4 @@ -3836,6 +3965,7 @@ msgstr "Размер" #: 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 "Город" @@ -3846,11 +3976,8 @@ 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 #: rml:ir.module.reference:0 @@ -3858,9 +3985,9 @@ msgid "Module:" msgstr "Модуль:" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" -msgstr "Пользовательский объект" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "" #. module: base #: selection:ir.rule,operator:0 @@ -3880,6 +4007,11 @@ msgstr "Меню" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3887,22 +4019,14 @@ 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 "" -"Выбранный язык успешно установлен. Вам необходимо изменить установки " -"пользователя и открыть меню заново, чтобы увидеть изменения." +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.roles,name:0 -msgid "Role Name" -msgstr "Название роли" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "Создать XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Меню" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3923,11 +4047,26 @@ msgstr "Цель действия" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +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 "STOCK_EDIT" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3943,8 +4082,8 @@ msgid "STOCK_HOME" msgstr "STOCK_HOME" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "Укажите хотя бы одно поле !" @@ -3955,9 +4094,10 @@ msgid "Others Actions" msgstr "Прочие действия" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Выбрать Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -4031,9 +4171,9 @@ msgid "Child ids" msgstr "" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Формат файла" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -4042,9 +4182,9 @@ msgid "Resource" msgstr "Объект" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Дата изменения" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4127,6 +4267,12 @@ msgstr "terp-sale" msgid "Field Mappings" msgstr "Соответствие полей" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "В данном обекте не реализован метод 'copy' !" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4144,8 +4290,8 @@ msgid "center" msgstr "по центру" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "Невозможно создать файл модуля: %s !" @@ -4160,9 +4306,10 @@ msgid "Published Version" msgstr "Опубликованная версия" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Автообновление" +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "Курс валюты по отношению у валюте с курсом 1" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -4191,13 +4338,9 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." -msgstr "" -"Данный мастер создаст файл XML с подробностями НДС и общими суммами к оплате " -"по партнерам." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Лимит кредита" #. module: base #: field:ir.default,value:0 @@ -4231,10 +4374,15 @@ msgid "Category" 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 "" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Статус" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Автообновление" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4242,9 +4390,9 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Номер счёта" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4252,14 +4400,15 @@ msgid "Add an auto-refresh on the view" 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:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Доступ" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4293,31 +4442,27 @@ msgstr "Модули для загрузки" msgid "Fax" 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_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" msgstr "" -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Для экспорта нового языка, не выбирайте язык" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" msgstr "STOCK_PRINT_PREVIEW" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "" -"Сумма данных (2-е поле) нулевая.\n" -"Можно построить секторную диаграмму !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" +msgstr "В данном объекте не реализован метод 'perm_read' !" #. module: base #: field:ir.default,company_id:0 @@ -4328,13 +4473,6 @@ msgstr "" msgid "Company" msgstr "Компания" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4345,6 +4483,11 @@ msgstr "Дата создания" msgid "Email / SMS" msgstr "Эл.почта / SMS" +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "Код БИК / SWIFT" + #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" @@ -4368,7 +4511,6 @@ msgid "Icon" msgstr "Пиктограмма" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4381,13 +4523,8 @@ msgid "Repeat missed" msgstr "Пропущен 'Repeat'" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "Показать информацию НДС" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "Невозможно найти тег '%s' в родительском виде !" @@ -4407,12 +4544,6 @@ msgstr "" msgid "Limit" msgstr "Лимит" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "Установить новый файл языка" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4426,6 +4557,11 @@ msgstr "Запросы" msgid "Or" msgstr "Или" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4450,6 +4586,11 @@ msgstr "Выбор" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4457,15 +4598,15 @@ msgid "Installed modules" msgstr "Установленные модули" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "Предупреждение" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "Файл XML создан" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" #. module: base #: field:ir.rule,operator:0 @@ -4473,8 +4614,8 @@ msgid "Operator" msgstr "Оператор" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "" @@ -4526,8 +4667,8 @@ msgid "Report Footer 1" msgstr "Нижний колонтитул отчета 1" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "Вы не можете удалить данный документ! (%s)" @@ -4537,15 +4678,21 @@ msgstr "Вы не можете удалить данный документ! (%s msgid "Custom Report" 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 -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "Автоматический XSL:RML" +#: 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 #: field:ir.model.access,perm_create:0 @@ -4569,15 +4716,16 @@ msgid "Printed:" msgstr "Распечатано:" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" -msgstr "Метод 'set_memory' не реализован !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" -msgstr "Сохранить файл" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" +msgstr "Метод 'set_memory' не реализован !" #. module: base #: selection:ir.actions.act_window,target:0 @@ -4589,11 +4737,6 @@ msgstr "Текущее окно" msgid "Partner category" msgstr "Категория партнера" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "Выбрать отчетный год" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4619,12 +4762,12 @@ 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.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Тип поля" @@ -4645,6 +4788,11 @@ msgstr "Код области" msgid "On delete" msgstr "При удалении" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4671,22 +4819,34 @@ msgid "Cascade" msgstr "Каскадом" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Подпись" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4699,9 +4859,9 @@ msgid "Bank Account Type" msgstr "Тип банковского счета" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" -msgstr "Тестовый файл XML" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4722,14 +4882,8 @@ 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 в первый раз. " -"Редко используемые опции и поля будут автоматически скрыты. Позже вы сможете " -"это изменить через меню Администрирование." +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 #: selection:ir.ui.menu,icon:0 @@ -4741,6 +4895,11 @@ msgstr "STOCK_PREFERENCES" msgid "Short description" msgstr "Краткое описание" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4751,6 +4910,11 @@ msgstr "Название области" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "Ваш логотип - используйте размер примерно 450x150 пикселей" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4762,10 +4926,11 @@ msgid "a5" msgstr "A5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Сообщение" +#: 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 #: selection:ir.ui.menu,icon:0 @@ -4779,13 +4944,20 @@ msgid "ir.actions.report.xml" msgstr "" #. module: base -#: view:res.users:0 -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" 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.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "Устите, что вам необходимо выйти из системы и повторно зайти при изменении вашего пароля." #. module: base #: field:res.partner,address:0 @@ -4801,15 +4973,20 @@ msgid "Graph" msgstr "График" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "Код БИК / SWIFT" +#: 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:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4826,8 +5003,8 @@ msgid "Module dependency" msgstr "Зависимость модуля" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "В данном объекте не реализован метод 'name_get' !" @@ -4842,6 +5019,11 @@ msgstr "Выполнить запланированные обновления" msgid "STOCK_DND_MULTIPLE" msgstr "STOCK_DND_MULTIPLE" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4859,14 +5041,9 @@ msgid "Server Action" msgstr "Действие сервера" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "Файл создан" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Год: %(год)ы" +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -4878,9 +5055,9 @@ msgid "Action Name" msgstr "Название действия" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "Настройка выполняется" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 @@ -4889,10 +5066,14 @@ msgstr "Нижний колонитул отчета 2" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "Эл. почта" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4908,6 +5089,11 @@ msgstr "Режим разделения" msgid "Localisation" msgstr "Локализация" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4946,8 +5132,14 @@ msgid "Import a Translation File" msgstr "Импорт файла перевода" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "Названия партнеров" @@ -4959,9 +5151,9 @@ msgid "Untranslated terms" msgstr "Непереведенные термины" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Открыть окно" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -4974,13 +5166,15 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "ИНН" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" -"Необходимо импортировать файл .CSV в кодировке UTF-8. Убедитесь, что первая " -"строка файла такова:" #. module: base #: field:res.partner.address,birthdate:0 @@ -5003,16 +5197,13 @@ msgid "res.partner.som" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "Управление досутпом" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "Ошибка" @@ -5029,6 +5220,12 @@ msgstr "Категории партнеров" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Код последовательности" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5111,8 +5308,15 @@ msgstr "" msgid "Fields Mapping" msgstr "Соответствие полей" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5136,9 +5340,9 @@ msgid "The VAT doesn't seem to be correct." msgstr "НДС выглядит неправильно" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Г-н" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5155,6 +5359,11 @@ msgstr "Настроить простой вид" msgid "Start Upgrade" msgstr "Начать обновление" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5177,7 +5386,6 @@ msgid "Arguments" msgstr "Аргументы" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5222,13 +5430,12 @@ msgstr "" #: 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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "Неверная операция" @@ -5264,14 +5471,19 @@ msgid "ir.attachment" msgstr "" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "Значение \"%s\" в поле \"%s\" не входит в выбранные" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "Автоматический XSL:RML" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" msgstr "" #. module: base @@ -5299,20 +5511,19 @@ msgstr "Экпорт языка" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "Клиент" #. module: base #: view:ir.rule.group:0 msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Монжественные правила для того же объекта объединены с использованием " -"оператора ИЛИ" +msgstr "Монжественные правила для того же объекта объединены с использованием оператора ИЛИ" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Месяцы" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Право удаления" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5337,14 +5548,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 -#: view:res.country:0 -msgid "Country" -msgstr "Страна" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5367,9 +5573,9 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" -msgstr "Учетный год" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" #. module: base #: constraint:res.partner.category:0 @@ -5387,9 +5593,10 @@ msgid "a4" msgstr "A4" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" -msgstr "Последняя версия" +#: 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_view:module.lang.install,start:0 @@ -5401,6 +5608,11 @@ msgstr "Установка завершена" msgid "STOCK_JUSTIFY_RIGHT" msgstr "STOCK_JUSTIFY_RIGHT" +#. 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" @@ -5420,12 +5632,12 @@ msgstr "Месяц: %(месяц)ы" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form msgid "Addresses" -msgstr "Адреса" +msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5435,10 +5647,14 @@ msgstr "Адреса" msgid "Sequence" 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" +msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" @@ -5473,8 +5689,8 @@ msgid "Cancel Install" msgstr "Отмена установки" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "Проверьте, что во всех строках имеется %d столбцов." @@ -5487,3 +5703,4 @@ msgstr "Импорт языка" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "Идентификатор XML" + diff --git a/bin/addons/base/i18n/sl_SL.po b/bin/addons/base/i18n/sl_SL.po index 6906c3c180a..cc0852e0e1e 100644 --- a/bin/addons/base/i18n/sl_SL.po +++ b/bin/addons/base/i18n/sl_SL.po @@ -1,21 +1,19 @@ -# Slovenian translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# Venčeslav Vezjak , 2008. +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-10-04 14:46+0000\n" -"Last-Translator: vezjakv \n" -"Language-Team: Slovenian \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:05:22+0000\n" +"PO-Revision-Date: 2008-11-28 17:05:22+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -44,18 +42,10 @@ msgstr "Mesečno" msgid "Unknown" msgstr "Neznano" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -msgstr "Klikni in poveži" - #. 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 "" -"Ta čarovnik bo zaznal nove izraze v programu, da jih lahko ročno ažurirate." +msgid "This wizard will detect new terms in the application so that you can update them manually." +msgstr "Ta čarovnik bo zaznal nove izraze v programu, da jih lahko ročno ažurirate." #. module: base #: field:workflow.activity,out_transitions:0 @@ -73,6 +63,11 @@ msgstr "STOCK_SAVE" msgid "Change My Preferences" msgstr "Spremeni moje nastavitve" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Odpri okno" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -113,6 +108,7 @@ msgstr "STOCK_SORT_ASCENDING" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Pravila dostopa" @@ -128,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "STOCK_MEDIA_FORWARD" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "Te vrste dokumenta ne morete ustvariti. (%s)" @@ -160,6 +156,7 @@ msgstr "Potek dela" #: 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 @@ -177,27 +174,32 @@ msgstr "Potek dela" msgid "Object" msgstr "Objekt" +#. 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 "Kategorije modulov" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "Dodaj novega uporabnika" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "ir.default" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -229,9 +231,13 @@ msgid "Key" msgstr "Ključ" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "Izvoz" +#: 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 "Vloge" #. module: base #: model:ir.actions.act_window,name:base.action_country @@ -244,6 +250,16 @@ msgstr "Države" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Dobi maksimum" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "" + #. module: base #: selection:res.request,priority:0 msgid "Normal" @@ -265,6 +281,12 @@ msgstr "Sklic uporabnika" msgid "Import new language" msgstr "Uvozi nov jezik" +#. 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 @@ -272,13 +294,6 @@ msgstr "Uvozi nov jezik" msgid "condition" msgstr "pogoj" -#. 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 "Priloge" - #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -295,8 +310,8 @@ msgid "Suffix" msgstr "Pripona" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "Metoda 'unlink' ni implementirana za ta objekt." @@ -332,9 +347,9 @@ msgid "Activites" msgstr "Aktivnosti" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Besedilo" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -363,6 +378,11 @@ msgstr "Prehodi" msgid "ir.ui.view.custom" msgstr "ir.ui.view.custom" +#. 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" @@ -408,7 +428,7 @@ msgid "Report Type" msgstr "Vrsta poročila" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -434,13 +454,15 @@ msgid "Other proprietary" msgstr "Drugo lastništvo" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" +msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Opombe" @@ -451,6 +473,11 @@ msgstr "Opombe" msgid "All terms" msgstr "Vsi izrazi" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -475,16 +502,26 @@ msgid "Form" msgstr "Obrazec" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Can not define a column %s. Reserved keyword !" msgstr "Ne morem definirati stolpca %s. Rezervirana ključna beseda." +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -496,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "Metoda 'name_search' ni implementirana za ta objekt." @@ -522,8 +559,8 @@ msgid "Web:" msgstr "Splet:" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "nov" @@ -588,14 +625,10 @@ msgid "Contact Name" msgstr "Naziv stika" #. 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 "" -"Shrani ta dokument v datoteko %s in ga uredi z ustreznim urejevalnikom. " -"Kodni nabor je UTF-8." +#: 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 "Shrani ta dokument v datoteko %s in ga uredi z ustreznim urejevalnikom. Kodni nabor je UTF-8." #. module: base #: view:ir.module.module:0 @@ -608,21 +641,8 @@ msgid "Repositories" msgstr "Odlagališča" #. 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "Geslo se ne ujema." @@ -633,8 +653,8 @@ msgid "Contact" msgstr "Stik" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" msgstr "Ta URL '%s' mora kazati na HTML datoteko s povezavami na ZIP module" @@ -657,8 +677,8 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "Izjema sočasnosti" @@ -668,9 +688,9 @@ msgid "View Ref." msgstr "Sklic pogleda" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Sklic tabele" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" #. module: base #: field:res.partner,ean13:0 @@ -704,6 +724,11 @@ msgstr "" msgid "Corp." msgstr "d.d." +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -718,9 +743,9 @@ msgid "Default limit for the list view" msgstr "Privzeta omejitev za tabelarični pogled" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Datum posodobitve" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" #. module: base #: field:ir.actions.act_window,src_model:0 @@ -733,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Koraki čarovnika za konfiguracijo" @@ -749,12 +775,23 @@ msgstr "ir.ui.view_sc" msgid "Group" msgstr "Skupina" +#. 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Podpis" + +#. module: base +#: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 msgid "SMS" msgstr "SMS" @@ -784,8 +821,7 @@ msgstr "Nenameščeni moduli" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "Aktivno polje vam omogoča skriti kategorijo, ne da bi jo zbrisali." #. module: base @@ -799,22 +835,16 @@ msgid "res.partner.event" msgstr "res.partner.event" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Stanje" +#: 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 "" -"Shrani ta dokument v .CSV datoteko in ga odprite z vašim priljubljenim " -"program za razpredelnice. Kodni nabor je UTF-8. Prevesti morate zadnji " -"stolpec preden ga znova uvozite." +#: 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 "Shrani ta dokument v .CSV datoteko in ga odprite z vašim priljubljenim program za razpredelnice. Kodni nabor je UTF-8. Prevesti morate zadnji stolpec preden ga znova uvozite." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -824,13 +854,14 @@ msgid "Currencies" msgstr "Valute" #. 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." +#: selection:ir.actions.todo,type:0 +msgid "Configure" msgstr "" -"Če je izbrani jezik naložen v sistem, bodo vsi dokumenti, ki so povezni s " -"tem partnerjem, izpisani v tem jeziku, sicer pa v angleščini." + +#. 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 "Če je izbrani jezik naložen v sistem, bodo vsi dokumenti, ki so povezni s tem partnerjem, izpisani v tem jeziku, sicer pa v angleščini." #. module: base #: selection:ir.ui.menu,icon:0 @@ -838,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Naslednji čarovnik" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "Objekt po meri" #. module: base #: selection:ir.model.fields,select_level:0 @@ -857,25 +888,16 @@ msgstr "Osnovno polje" msgid "User ID" msgstr "ID uporabnika" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "Naslednji konfiguracijski korak" - #. module: base #: view:ir.rule:0 msgid "Test" msgstr "Test" #. 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 "" -"Uporabnika 'admin' ne morete odstraniti, ker OpenERP preko njega interno " -"ustvarjae resurse (nadgradnje, namestitev modula,...)" +#: 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 "Uporabnika 'admin' ne morete odstraniti, ker OpenERP preko njega interno ustvarjae resurse (nadgradnje, namestitev modula,...)" #. module: base #: wizard_view:module.module.update,update:0 @@ -893,6 +915,11 @@ msgstr "SXW vsebina" msgid "ID Ref." msgstr "Sklic ID" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -917,11 +944,6 @@ msgstr "Omejitev" msgid "Default" msgstr "Privzeto" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Po meri" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -955,8 +977,8 @@ msgid "Bank type" msgstr "Vrsta banke" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "Nedefinirana metoda 'get'" @@ -966,8 +988,8 @@ msgid "Header/Footer" msgstr "Glava/Noga" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "Metoda 'read' ni implementirana za ta objekt." @@ -976,6 +998,11 @@ msgstr "Metoda 'read' ni implementirana za ta objekt." msgid "Request History" msgstr "Zgodovina zahteve" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -989,9 +1016,9 @@ msgid "Partner Events" msgstr "Partnerjevi dogodki" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1041,17 +1068,15 @@ msgid "Partner contacts" msgstr "Partnerjevi kontakti" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Polja poročila" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +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 "" -"ISO dvoznačna oznaka države.\n" +msgstr "ISO dvoznačna oznaka države.\n" "To polje lahko uporabite za hitro iskanje." #. module: base @@ -1068,7 +1093,7 @@ msgstr "" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "Prodaja & Nabava" +msgstr "Prodaja in nabava" #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard @@ -1084,12 +1109,6 @@ msgstr "Čarovnik" msgid "System Upgrade" msgstr "Sistemska nadgradnja" -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Reload Official Translations" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1117,9 +1136,10 @@ msgid "Parent Menu" msgstr "Nadmenu" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Ustvari novega uporabnika" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Polja po meri morajo imeti nazive, ki se začnejo z 'x_'." #. module: base #: field:res.partner.event,planned_cost:0 @@ -1144,13 +1164,9 @@ msgid "ir.report.custom" msgstr "ir.report.custom" #. 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 "Vloge" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "Izvoz" #. module: base #: view:ir.model:0 @@ -1167,6 +1183,11 @@ msgstr "Masovno SMS pošiljanje" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Polja poročila" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1178,10 +1199,14 @@ msgid "Pie Chart" msgstr "Tortni grafikon" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." -msgstr "Napačen ID za brskalni zapis, dobljeno %s, pričakovano celo število." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1198,11 +1223,6 @@ msgstr "STOCK_ZOOM_FIT" msgid "Sequence Type" msgstr "Vrsta zaporedja" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Preskoči in nadaljuj" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1224,11 +1244,6 @@ msgstr "Otrok0" msgid "Update Modules List" msgstr "Posodobi seznam modulov" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Datoteka" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1279,21 +1294,16 @@ msgid "Model" msgstr "Model" #. 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -"Poskušate namestiti module, ki je odvisen od modula: %s.\n" -"Toda ta modul ni na voljo v vašem sistem." #. 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 "Koledar" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Sporočilo" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1317,14 +1327,15 @@ msgid "Modules to update" msgstr "Moduli za ažurirat" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Organizacija družbe" +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "gdč." #. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" -msgstr "Odpri okno" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Aktivnost" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1371,20 +1382,24 @@ msgid "Sequences" msgstr "Zaporedja" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Unknown position in inherited view %s !" msgstr "Neznan položaj v podedovanem pogledu %s." +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" msgstr "Sproženo dne" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1393,8 +1408,8 @@ msgid "Bank account" msgstr "Bančni račun" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" msgstr "Opozorilo: uporaba povezanega polja, ki uporablja neznan objekt" @@ -1443,14 +1458,26 @@ msgstr "Sprožitev" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Dobavitelj" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +msgstr "" + #. module: base #: field:ir.model.fields,translate:0 msgid "Translate" msgstr "Prevedi" +#. 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" @@ -1469,6 +1496,7 @@ msgstr "wizard.module.update_translations" #. 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 @@ -1480,14 +1508,19 @@ msgstr "Pogledi" msgid "Send Email" msgstr "Pošlji E-pošto" +#. 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 "STOCK_SELECT_FONT" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" msgstr "Poskušate odstraniti modul, ki je nameščen ali bo nameščen" @@ -1523,6 +1556,12 @@ msgstr "Objekti" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1530,11 +1569,6 @@ msgstr "STOCK_GOTO_FIRST" msgid "Workflows" msgstr "Poteki dela" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Vrsta sprožitve" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1559,16 +1593,20 @@ msgstr "Čarovnik za konfiguracijo" msgid "Request Link" msgstr "Povezava zahteve" +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "Oblika datoteke" + #. 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 -msgid "Manualy Created" -msgstr "Ročno ustvarjeno" +#: rml:ir.module.reference:0 +msgid "Description :" +msgstr "" #. module: base #: field:ir.report.custom,print_format:0 @@ -1609,11 +1647,9 @@ msgstr "res.roles" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" -msgstr "" -"0=Zelo nujno\n" +msgstr "0=Zelo nujno\n" "10=Ni nujno" #. module: base @@ -1628,24 +1664,19 @@ msgstr "Uporabniški vmesnik - Pogledi" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" msgstr "Pravice dostopa" #. 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 -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" -"Ustvarjenje datoteke modula ni možna:\n" -" %s" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1658,25 +1689,19 @@ msgstr "Ustvari menu" msgid "STOCK_MEDIA_RECORD" msgstr "STOCK_MEDIA_RECORD" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "otrok_od" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Partnerjev naslov" #. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "Menuji" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "Polja po meri morajo imeti nazive, ki se začnejo z 'x_'." - -#. module: base #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "Ne morete odstraniti modela '%s'." @@ -1697,8 +1722,8 @@ msgid "Subject" msgstr "Zadeva" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "Metoda 'write' ni implementirana za ta objekt." @@ -1719,10 +1744,9 @@ msgid "Retailer" msgstr "Trgovec" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Oznaka zaporedja" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1751,6 +1775,7 @@ msgid "State of Mind" msgstr "Razpoloženje partnerja" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1759,16 +1784,36 @@ msgstr "Razpoloženje partnerja" msgid "Type" msgstr "Vrsta" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "Ročno ustvarjeno" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Izvorna aktivnost" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "STOCK_FILE" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "Metoda 'copy' ni implementirana za ta objekt." +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -1833,8 +1878,14 @@ msgid "STOCK_OK" msgstr "STOCK_OK" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "Geslo je prazno!" @@ -1855,8 +1906,8 @@ msgid "None" msgstr "Nobena" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "Ne morete pisati v ta dokument. (%s)" @@ -1876,16 +1927,16 @@ msgstr "ID API" msgid "Module Category" msgstr "Kategorija modulov" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Dodaj in nadaljuj" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" msgstr "Operand" +#. 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1902,14 +1953,9 @@ msgid "STOCK_UNINDENT" msgstr "STOCK_UNINDENT" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" -"Modul, ki ga poskušate odstraniti, je odvisne od nameščenih modulov:\n" -"%s" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -1949,8 +1995,8 @@ msgid "Low" msgstr "Nizka" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "Napaka rekurzije v odvisnostih modulih." @@ -1966,6 +2012,7 @@ msgstr "XSL pot" #. 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" @@ -2004,20 +2051,15 @@ msgid "Channel Name" msgstr "Naziv kanala" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Naprej" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Poenostavljen vmesnik" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "Dodeli skupine za določitev dostopa" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2034,22 +2076,21 @@ msgstr "Poravnava" msgid "STOCK_UNDO" msgstr "STOCK_UNDO" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Aktivnost" - #. module: base #: model:ir.ui.menu,name:base.menu_administration msgid "Administration" @@ -2067,17 +2108,19 @@ msgstr "Prevzemi datoteko" #. 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 "" -"Ta funkcija bo preverila nove module v poti 'addons' in v odlagališčih " -"modulov:" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "Ta funkcija bo preverila nove module v poti 'addons' in v odlagališčih modulov:" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "otrok_od" +#: 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 "Država" #. module: base #: field:res.currency,rate_ids:0 @@ -2091,9 +2134,9 @@ msgid "STOCK_GO_BACK" msgstr "STOCK_GO_BACK" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "Napaka dostopa" @@ -2141,8 +2184,8 @@ msgid "unknown" msgstr "neznano" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "Metoda 'create' ni implementirana za ta objekt." @@ -2175,9 +2218,9 @@ msgid "SXW path" msgstr "SXW pot" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Podatki" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2221,11 +2264,6 @@ msgstr "Predstavitveni podatki" msgid "Module import" msgstr "Uvoz modulov" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2259,6 +2297,11 @@ msgstr "CSV datoteka" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2284,11 +2327,6 @@ msgstr "Datum inicializacije" msgid "RML Internal Header" msgstr "RML interna glava" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2323,14 +2361,24 @@ msgstr "" msgid "Code" msgstr "Oznaka" +#. 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/fields.py:0 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "Metoda 'get_memory' ni implementirana." @@ -2342,8 +2390,8 @@ msgid "Python Code" msgstr "Python kod" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "Napačna poizvedba." @@ -2353,8 +2401,8 @@ msgid "Field Label" msgstr "Označba polja" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "Poskušate zaobiti pravila dostopa (vrsta dokumenta: %s)." @@ -2389,7 +2437,6 @@ msgid "Customers Partners" msgstr "Kupci" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2397,6 +2444,7 @@ msgstr "Kupci" #: 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 @@ -2404,9 +2452,9 @@ msgid "Cancel" msgstr "Prekliči" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Dovoljenje za branje" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2414,7 +2462,11 @@ msgid "Modules Management" msgstr "Upravljanje modulov" #. module: base -#: field:ir.attachment,res_id:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2425,7 +2477,6 @@ msgstr "Resurs ID" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Informacije" @@ -2460,9 +2511,9 @@ msgid "RML path" msgstr "RML pot" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Naslednji čarovnik za konfiguracijo" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2476,10 +2527,9 @@ msgid "Meta Datas" msgstr "Meta podatki" #. 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 "Tečaj valute v primerjavi z valuto, katerega tečaj je enak 1" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Po meri" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2487,12 +2537,13 @@ msgid "raw" msgstr "neobdelano" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Partners: " msgstr "Partnerji: " #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Drugo" @@ -2503,18 +2554,13 @@ msgid "Childs Field" msgstr "Podrejena polja" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Naziv vloge" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "Ne morete odstaniti uporabnika 'root'." @@ -2536,10 +2582,10 @@ msgstr "Odgovorni prodajalec" #. 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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2562,11 +2608,8 @@ msgstr "XML poročilo" #. module: base #: help:res.partner,user_id:0 -msgid "" -"The internal user that is in charge of communicating with this partner if " -"any." -msgstr "" -"Interni uporabanik, ki je odgovoren za komunikacijo s tem partnerjem." +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "Interni uporabanik, ki je odgovoren za komunikacijo s tem partnerjem." #. module: base #: selection:ir.translation,type:0 @@ -2579,14 +2622,14 @@ msgid "Cancel Upgrade" msgstr "Prekliči nadgradnjo" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "Metoda 'search' ni implementirana za ta objekt." #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2599,14 +2642,19 @@ msgstr "Datum naslednjega klica" msgid "Cumulate" msgstr "Kopičenje" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_lang msgid "res.lang" msgstr "res.lang" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "Tortni diagrami zahtevajo natančno dva polja" @@ -2628,12 +2676,12 @@ msgid "Create in Same Model" msgstr "Ustvari v istem modelu" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2654,11 +2702,22 @@ msgstr "Ustvari v istem modelu" msgid "Name" msgstr "Naziv" +#. 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.ui.menu,icon:0 msgid "STOCK_APPLY" msgstr "STOCK_APPLY" +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" @@ -2680,8 +2739,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "STOCK_MEDIA_PAUSE" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "Napaka!" @@ -2698,26 +2757,19 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Regularni izraz za iskanje modulov na spletni mestu odlagališča:\n" +msgstr "Regularni izraz za iskanje modulov na spletni mestu odlagališča:\n" "- Prvi oklepaji morajo ustrezati nazivu modula.\n" "- Drugi oklepaji morajo ustrezati celotni številki inačice.\n" "- Zadnji oklepaji morajo ustrezati podaljšku modula." #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "DDV ID" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" -msgstr "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Jezika ne izbirajte za izvoz novega jezika." #. module: base #: model:ir.ui.menu,name:base.menu_translation_app @@ -2764,6 +2816,16 @@ msgstr "" msgid "STOCK_COPY" msgstr "STOCK_COPY" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2780,8 +2842,8 @@ msgid "ir.actions.act_window.view" msgstr "ir.actions.act_window.view" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Napačna oblika datoteke" @@ -2815,6 +2877,11 @@ msgstr "Načrtovani prihodki" msgid "Record rules" msgstr "Posnemi pravila" +#. 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2827,8 +2894,8 @@ msgid "Readonly" msgstr "Samo za branje" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "Ne morete odstraniti polja '%s'." @@ -2858,11 +2925,6 @@ msgstr "ir.actions.wizard" msgid "Document" msgstr "Dokument" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "Število stikov" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2885,20 +2947,26 @@ msgid "STOCK_STOP" msgstr "STOCK_STOP" #. module: base -#: code: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 "" -"\"%s\" vsebuje preveč pik. XML 'ids' ne bi smeli vsebovati pike. Uporabljajo " -"se za sklic na podatke drugih modulov, kot v 'modul.sklic_id'" +#: code:addons/base/ir/ir_model.py:0 +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\" vsebuje preveč pik. XML 'ids' ne bi smeli vsebovati pike. Uporabljajo se za sklic na podatke drugih modulov, kot v 'modul.sklic_id'" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "Številka računa" #. 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 "" + #. module: base #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -2921,8 +2989,8 @@ msgid "Day: %(day)s" msgstr "Dan: %(day)s" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "Tega dokumenta ne morete brati. (%s)" @@ -3041,9 +3109,16 @@ msgstr "" #. module: base #: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "Pomoč" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3094,6 +3169,11 @@ msgstr "Poročilo po meri" msgid "Schedule for Installation" msgstr "Daj v seznam za namestitev" +#. 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" @@ -3113,8 +3193,8 @@ msgid "Directory:" msgstr "Mapa:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" msgstr "" #. module: base @@ -3123,8 +3203,13 @@ msgid "Trigger Name" msgstr "Naziv prožilnika" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "Ime skupine se ne sme začeti z \"-\"" @@ -3159,9 +3244,15 @@ msgid "Source" msgstr "Vir" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Izvorna aktivnost" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3209,14 +3300,10 @@ msgid "Resource Name" msgstr "Naziv resursa" #. 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 "" -"Shrani ta dokument v .tgz datoteko. Ta arhiv vsebuje UTF-8 %s datoteke in ga " -"lahko prenesete na Launchpad." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "Shrani ta dokument v .tgz datoteko. Ta arhiv vsebuje UTF-8 %s datoteke in ga lahko prenesete na Launchpad." #. module: base #: field:res.partner.address,type:0 @@ -3234,6 +3321,12 @@ msgstr "Začni s konfiguracijo" msgid "Export Id" msgstr "ID izvoza" +#. 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 "Okenske akcije" + #. module: base #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3260,8 +3353,8 @@ msgid "References" msgstr "Sklici" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "Ta zapis je bil med tem spremenjen" @@ -3287,21 +3380,21 @@ msgid "Kind" msgstr "Vrsta" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "Ta metoda ne obstaja več" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Tree can only be used in tabular reports" msgstr "Drevesa se lahko uporabljajo samo v tabelaričnih poročilih" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -3316,21 +3409,25 @@ msgstr "Bančni računi" msgid "Tree" msgstr "Drevo" +#. 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_CLEAR" msgstr "STOCK_CLEAR" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Stolpični diagrami zahtevajo najmanj dva polja" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Dovoljenje za branje" #. module: base #: selection:ir.report.custom,type:0 @@ -3348,13 +3445,19 @@ msgid "Custom Field" msgstr "Polje po meri" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Potrebna vloga" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "Stolpični diagrami zahtevajo najmanj dva polja" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "Metoda 'search_memory' ni implementirana." @@ -3397,6 +3500,12 @@ msgstr "res.request" msgid "Rules" msgstr "Pravila" +#. 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 @@ -3409,17 +3518,16 @@ msgstr "Nadgradnja sistema končana" msgid "Type of view" msgstr "Vrsta pogleda" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "Metoda 'perm_read' ni implementirana za ta objekt." - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3442,12 +3550,27 @@ msgstr "STOCK_FIND" msgid "STOCK_PROPERTIES" msgstr "STOCK_PROPERTIES" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 "Dodeli dostop do menuja" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3460,8 +3583,8 @@ msgid "New Window" msgstr "Novo okno" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "" @@ -3476,13 +3599,10 @@ msgid "Parent Action" msgstr "Nadrejena akcija" #. 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 "" -"Ni bilo možno ustvariti sledečega IDja, ker imajo nekateri partnerji črkovni " -"ID." +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "Ni bilo možno ustvariti sledečega IDja, ker imajo nekateri partnerji črkovni ID." #. module: base #: selection:ir.report.custom,state:0 @@ -3495,11 +3615,17 @@ msgid "Number of modules updated" msgstr "Število osveženih modulov" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Preskoči korak" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3513,6 +3639,7 @@ msgstr "Struktura vlog" #. 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" @@ -3528,9 +3655,21 @@ msgid "Active Partner Events" msgstr "Aktivni partnerjevi dogodki" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "ID izraza prožilnika" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3555,17 +3694,25 @@ msgid "Phone" msgstr "Telefon" #. 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 views." +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" msgstr "" -"Če je vklopljeno, se čarovnik ne bo prikazoval na desni orodni vrstici " -"obrazca." + +#. 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 views." +msgstr "Če je vklopljeno, se čarovnik ne bo prikazoval na desni orodni vrstici obrazca." + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Potrebna vloga" #. module: base #: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3583,6 +3730,7 @@ msgid "STOCK_SPELL_CHECK" msgstr "STOCK_SPELL_CHECK" #. module: base +#: field:ir.actions.todo,active:0 #: field:ir.cron,active:0 #: field:ir.module.repository,active:0 #: field:ir.sequence,active:0 @@ -3600,9 +3748,9 @@ msgid "Active" msgstr "Aktivno" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "gdč." +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3633,20 +3781,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "Dovoljenje za brisanje" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Odpri okno" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Meseci" #. 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" @@ -3665,15 +3813,15 @@ msgstr "Podkategorija" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Naziv objekta" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3706,9 +3854,11 @@ msgid "Object Relation" msgstr "Relacija objekta" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "" +#: 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 "Priloge" #. module: base #: field:ir.rule,field_id:0 @@ -3759,9 +3909,9 @@ msgid "terp-mrp" msgstr "terp-mrp" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Zaključeno" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3777,12 +3927,8 @@ msgstr "Račun" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form views." -msgstr "" -"Če je vklopljeno, se akcija ne bo prikazovala na desni orodni vrstici " -"obrazca.<" +msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgstr "Če je vklopljeno, se akcija ne bo prikazovala na desni orodni vrstici obrazca.<" #. module: base #: model:ir.ui.menu,name:base.next_id_4 @@ -3819,6 +3965,7 @@ msgstr "Velikost" #: 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 "Mesto/kraj" @@ -3829,10 +3976,8 @@ msgstr "Hčerinske družbe" #. module: base #: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Naziv objekta se mora začet z x_ in ne sme vsebovati posebnih znakov." +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." #. module: base #: rml:ir.module.reference:0 @@ -3840,9 +3985,9 @@ msgid "Module:" msgstr "Modul:" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" -msgstr "Objekt po meri" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "" #. module: base #: selection:ir.rule,operator:0 @@ -3862,6 +4007,11 @@ msgstr "Menu" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3869,22 +4019,14 @@ msgstr "Ciljni primerek" #. 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 "" -"Izbrani jezik je bil uspešno nameščen. Da vidite spremembe, morate " -"spremeniti uporabniške nastavitve in odpreti nov menu." +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 "Izbrani jezik je bil uspešno nameščen. Da vidite spremembe, morate spremeniti uporabniške nastavitve in odpreti nov menu." #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Naziv vloge" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Menuji" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3905,11 +4047,26 @@ msgstr "" msgid "Child Field" msgstr "Podrejeno polje" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Gospod" + +#. 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 "STOCK_EDIT" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3925,8 +4082,8 @@ msgid "STOCK_HOME" msgstr "STOCK_HOME" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "Vpišite vsaj eno polje." @@ -3937,9 +4094,10 @@ msgid "Others Actions" msgstr "Ostale akcije" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Dobi maksimum" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -4013,9 +4171,9 @@ msgid "Child ids" msgstr "Podmenuji" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Oblika datoteke" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -4024,9 +4182,9 @@ msgid "Resource" msgstr "Resurs" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Datum posodobitve" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4109,6 +4267,12 @@ msgstr "terp-sale" msgid "Field Mappings" msgstr "Preslikave polj" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "Metoda 'copy' ni implementirana za ta objekt." + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4126,8 +4290,8 @@ msgid "center" msgstr "središčna" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "Datoteke modula: %s ni mogoče ustvariti." @@ -4142,9 +4306,10 @@ msgid "Published Version" msgstr "Objavljena različica" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Samoosvežitev" +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "Tečaj valute v primerjavi z valuto, katerega tečaj je enak 1" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -4173,10 +4338,8 @@ msgid "ir.exports.line" msgstr "ir.exports.line" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base @@ -4211,10 +4374,15 @@ msgid "Category" msgstr "Kategorija" #. 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 "Okenske akcije" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Stanje" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Samoosvežitev" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4222,9 +4390,9 @@ msgid "ir.actions.act_window_close" msgstr "ir.actions.act_window_close" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Številka računa" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4232,14 +4400,15 @@ msgid "Add an auto-refresh on the view" msgstr "Dodaj samoosvežitev k pogledu" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "Ime datoteke" #. module: base -#: field:ir.model,access:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Dostop" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4273,31 +4442,27 @@ msgstr "Moduli za prenest" msgid "Fax" msgstr "Faks" +#. 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_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" msgstr "" -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Jezika ne izbirajte za izvoz novega jezika." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" msgstr "STOCK_PRINT_PREVIEW" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "" -"Vsota podatkov (2.polje) je prazna.\n" -"Narišemo lahko tortni diagram." +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" +msgstr "Metoda 'perm_read' ni implementirana za ta objekt." #. module: base #: field:ir.default,company_id:0 @@ -4308,16 +4473,6 @@ msgstr "" msgid "Company" msgstr "Družba" -#. module: base -#: view:ir.actions.server:0 -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 "" -"Na lahek način lahko dostopate do vseh polj, ki so povezani s trenutnim " -"objektom, tako da določite naziv atributa, t.j. [[partner_id.name]] za " -"objekt Invoice (račun)" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4328,6 +4483,11 @@ msgstr "Ustvarjeno dne" msgid "Email / SMS" msgstr "E-pošta / SMS" +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "BIC/Switft oznaka" + #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" @@ -4351,7 +4511,6 @@ msgid "Icon" msgstr "Ikona" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4364,13 +4523,8 @@ msgid "Repeat missed" msgstr "Ponovi zgrešene" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "Označbe '%s' ni bilo mogoče najti v nadrejenem pogledu." @@ -4390,12 +4544,6 @@ msgstr "ir.translation" msgid "Limit" msgstr "Meja" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4409,6 +4557,11 @@ msgstr "Zahteve" msgid "Or" msgstr "Ali" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4433,6 +4586,11 @@ msgstr "" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4440,15 +4598,15 @@ msgid "Installed modules" msgstr "Nameščeni moduli" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "Opozorilo" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" #. module: base #: field:ir.rule,operator:0 @@ -4456,8 +4614,8 @@ msgid "Operator" msgstr "Operator" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "Napaka preverjanja" @@ -4509,8 +4667,8 @@ msgid "Report Footer 1" msgstr "Noga izpisa 1" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "Tega dokumenta ne morete zbrisati. (%s)" @@ -4520,15 +4678,21 @@ msgstr "Tega dokumenta ne morete zbrisati. (%s)" msgid "Custom Report" msgstr "Poročilo po meri" +#. 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 "E-pošta" #. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "Samodejno XSL:RML" +#: 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 #: field:ir.model.access,perm_create:0 @@ -4552,15 +4716,16 @@ msgid "Printed:" msgstr "Tiskano:" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" -msgstr "Metoda 'set_memory' ni implementirana." +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" -msgstr "" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" +msgstr "Metoda 'set_memory' ni implementirana." #. module: base #: selection:ir.actions.act_window,target:0 @@ -4572,11 +4737,6 @@ msgstr "Trenutno okno" msgid "Partner category" msgstr "Kategorija partnerjev" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4602,12 +4762,12 @@ msgstr "Vmesnik" #. module: base #: model:ir.ui.menu,name:base.menu_base_config #: view:ir.sequence:0 +#: view:res.company:0 msgid "Configuration" msgstr "Konfiguracija" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Vrsta polja" @@ -4628,6 +4788,11 @@ msgstr "Oznaka države" msgid "On delete" msgstr "Pri brisanju" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4654,22 +4819,34 @@ msgid "Cascade" msgstr "Kaskadno" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "Polje %d mora biti številka" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Podpis" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" msgstr "Ni implementirano" +#. 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4682,8 +4859,8 @@ msgid "Bank Account Type" msgstr "Vrsta bančnega računa" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4705,14 +4882,8 @@ 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 "" -"Izberite enostaven vmesnik, če prvič testirate OpenERP. Manjkrat uporabljene " -"možnosti ali polja bodo samodejno skrita. To lahko spremenite kasneje preko " -"menuja Skrbištvo." +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 "Izberite enostaven vmesnik, če prvič testirate OpenERP. Manjkrat uporabljene možnosti ali polja bodo samodejno skrita. To lahko spremenite kasneje preko menuja Skrbištvo." #. module: base #: selection:ir.ui.menu,icon:0 @@ -4724,6 +4895,11 @@ msgstr "STOCK_PREFERENCES" msgid "Short description" msgstr "Kratek opis" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4734,6 +4910,11 @@ msgstr "Naziv države" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "Vaš logotip - uporabite velikost približno 450x150 pik." +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4745,10 +4926,11 @@ msgid "a5" msgstr "a5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Sporočilo" +#: 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 "Koledar" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4762,13 +4944,20 @@ msgid "ir.actions.report.xml" msgstr "ir.actions.report.xml" #. module: base -#: view:res.users:0 -msgid "" -"Please note that you will have to logout and relog if you change your " -"password." +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" msgstr "" -"Vedite, da se boste morali odjaviti in ponovno prijaviti, če ste spremenili " -"svojo geslo." + +#. 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.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "Vedite, da se boste morali odjaviti in ponovno prijaviti, če ste spremenili svojo geslo." #. module: base #: field:res.partner,address:0 @@ -4784,15 +4973,20 @@ msgid "Graph" msgstr "Grafikon" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "BIC/Switft oznaka" +#: field:ir.module.module,latest_version:0 +msgid "Latest version" +msgstr "Najnovejša različica" #. module: base #: model:ir.model,name:base.model_ir_actions_server msgid "ir.actions.server" msgstr "ir.actions.server" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4809,8 +5003,8 @@ msgid "Module dependency" msgstr "Odvisnost modula" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "Metoda 'name_get' ni implementirana za ta objekt." @@ -4825,6 +5019,11 @@ msgstr "Izvedi planirane nadgradnje" msgid "STOCK_DND_MULTIPLE" msgstr "STOCK_DND_MULTIPLE" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4842,15 +5041,10 @@ msgid "Server Action" msgstr "Strežniška akcija" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Leto: %(year)s" - #. module: base #: field:ir.actions.act_window_close,name:0 #: field:ir.actions.actions,name:0 @@ -4861,9 +5055,9 @@ msgid "Action Name" msgstr "Naziv akcije" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "Potek konfiguracije" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 @@ -4872,10 +5066,14 @@ msgstr "Noga izpisa 2" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "E-pošta" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4891,6 +5089,11 @@ msgstr "Način ločevanja" msgid "Localisation" msgstr "Lokalizacija" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Preštej" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4929,8 +5132,14 @@ msgid "Import a Translation File" msgstr "Uvozi datoteko prevoda" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "Titule partnerjev" @@ -4942,9 +5151,9 @@ msgid "Untranslated terms" msgstr "Neprevedeni izrazi" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Odpri okno" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -4957,13 +5166,15 @@ msgid "Transition" msgstr "Prehod" #. 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "DDV ID" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" -"Uvoziti morate .CSV datoteko, ki je v UTF-8 kodnem naboru. Prosim preverite, " -"če je prva vrstica v datoteki:" #. module: base #: field:res.partner.address,birthdate:0 @@ -4986,16 +5197,13 @@ msgid "res.partner.som" msgstr "res.partner.som" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "Napaka" @@ -5012,6 +5220,12 @@ msgstr "Partnerjeve kategorije" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Oznaka zaporedja" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5094,8 +5308,15 @@ msgstr "res.company" msgid "Fields Mapping" msgstr "Preslikava polj" +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Sklic tabele" + #. 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 @@ -5119,9 +5340,9 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Gospod" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5138,6 +5359,11 @@ msgstr "Konfiguriraj preprost pogled" msgid "Start Upgrade" msgstr "Začni nadgradnjo" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5160,7 +5386,6 @@ msgid "Arguments" msgstr "Argumenti" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5205,13 +5430,12 @@ msgstr "res.config.view" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Opis" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "Neveljavna operacija" @@ -5247,15 +5471,20 @@ msgid "ir.attachment" msgstr "ir.attachment" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "Vrednost \"%s\" za polje \"%s\" ni na voljo pri izbiri" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "Preštej" +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "Samodejno XSL:RML" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" #. module: base #: view:workflow.workitem:0 @@ -5282,6 +5511,7 @@ msgstr "Izvozi jezik" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "Kupec" @@ -5291,9 +5521,9 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "Več pravil na istih objektih jih združenih z uporabo operatorja ALI" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Meseci" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Dovoljenje za brisanje" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5318,14 +5548,9 @@ msgid "Mass Mailing" msgstr "Masovno pošiljanje pošte" #. 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 -#: view:res.country:0 -msgid "Country" -msgstr "Država" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5348,8 +5573,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5368,9 +5593,10 @@ msgid "a4" msgstr "a4" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" -msgstr "Najnovejša različica" +#: 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_view:module.lang.install,start:0 @@ -5382,6 +5608,11 @@ msgstr "Namestitev zaključena" msgid "STOCK_JUSTIFY_RIGHT" msgstr "STOCK_JUSTIFY_RIGHT" +#. 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" @@ -5404,9 +5635,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5417,12 +5648,15 @@ msgid "Sequence" msgstr "Zaporedje" #. 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" +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" -"Kolikokrat je funkcija klicana,\n" + +#. 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 "Kolikokrat je funkcija klicana,\n" "negativno število pomeni, da bo funkcija vedo klicana" #. module: base @@ -5456,8 +5690,8 @@ msgid "Cancel Install" msgstr "Prekliči namestitev" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "Preverite, če imajo vse vaše vrstice %d stolpcev." @@ -5470,3 +5704,4 @@ msgstr "Uvozi jezik" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "XML identifikator" + diff --git a/bin/addons/base/i18n/sv_SE.po b/bin/addons/base/i18n/sv_SE.po index 52fb857dfe0..eb822308e66 100644 --- a/bin/addons/base/i18n/sv_SE.po +++ b/bin/addons/base/i18n/sv_SE.po @@ -4,16 +4,16 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 4.3.0" -"Report-Msgid-Bugs-To: support@openerp.com" -"POT-Creation-Date: 2008-09-11 15:39:25+0000" -"PO-Revision-Date: 2008-09-11 15:39:25+0000" -"Last-Translator: <>" -"Language-Team: " -"MIME-Version: 1.0" -"Content-Type: text/plain; charset=UTF-8" -"Content-Transfer-Encoding: " -"Plural-Forms: " +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:07:56+0000\n" +"PO-Revision-Date: 2008-11-28 17:07:56+0000\n" +"Last-Translator: <>\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 #: model:ir.actions.act_window,name:base.ir_cron_act @@ -42,11 +42,6 @@ msgstr "Månadsvis" msgid "Unknown" msgstr "" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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." @@ -68,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -124,7 +124,7 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" @@ -156,6 +156,7 @@ msgstr "" #: 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 @@ -184,21 +185,21 @@ msgstr "" msgid "Categories of Modules" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -230,8 +231,12 @@ msgid "Key" msgstr "Nyckel" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" +#: 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 @@ -245,6 +250,16 @@ msgstr "" 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" @@ -266,6 +281,12 @@ msgstr "" 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 @@ -273,13 +294,6 @@ msgstr "" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -333,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -364,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -441,6 +460,7 @@ msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 #: view:ir.model:0 #: view:res.partner:0 @@ -453,6 +473,11 @@ msgstr "Anteckningar" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -482,6 +507,11 @@ msgstr "Formulär" msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" @@ -658,8 +688,8 @@ msgid "View Ref." msgstr "" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" msgstr "" #. module: base @@ -713,8 +743,8 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" msgstr "" #. module: base @@ -728,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -744,11 +775,21 @@ msgstr "" msgid "Group" 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Signatur" + #. module: base #: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 @@ -794,9 +835,9 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" +#: wizard_field:server.action.create,init,type:0 +#: wizard_view:server.action.create,init:0 +msgid "Select Action Type" msgstr "" #. module: base @@ -812,6 +853,11 @@ msgstr "" 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." @@ -823,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -842,11 +888,6 @@ msgstr "" msgid "User ID" msgstr "" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - #. module: base #: view:ir.rule:0 msgid "Test" @@ -874,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -898,11 +944,6 @@ msgstr "" msgid "Default" msgstr "Standard" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -957,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -970,8 +1016,8 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1022,8 +1068,8 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" msgstr "" #. module: base @@ -1089,8 +1135,9 @@ msgid "Parent Menu" msgstr "" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1116,12 +1163,8 @@ msgid "ir.report.custom" 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" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" msgstr "" #. module: base @@ -1139,6 +1182,11 @@ msgstr "" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1150,9 +1198,13 @@ msgid "Pie Chart" msgstr "" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1170,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1196,11 +1243,6 @@ msgstr "" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1257,10 +1299,9 @@ msgid "You try to install a module that depends on the module: %s.\nBut this mod 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" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" msgstr "" #. module: base @@ -1285,13 +1326,14 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "" +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Fröken" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" msgstr "" #. module: base @@ -1344,15 +1386,19 @@ msgstr "" msgid "Unknown position in inherited view %s !" 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 -#, python-format -#: code:osv/orm.py:0 -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1415,11 +1461,22 @@ msgstr "" msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1438,6 +1495,7 @@ 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 @@ -1497,6 +1555,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1504,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1533,15 +1592,19 @@ msgstr "" 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 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1609,9 +1672,8 @@ msgid "The .rml path of the file or NULL if the content is in report_rml_content msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "Can not create the module file:\n %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1625,22 +1687,16 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" -#. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#, python-format -#: code:addons/base/ir/ir_model.py:0 -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - #. module: base #, python-format #: code:addons/base/ir/ir_model.py:0 @@ -1686,9 +1742,8 @@ msgid "Retailer" msgstr "Återförsäljare" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" msgstr "" #. module: base @@ -1718,6 +1773,7 @@ msgid "State of Mind" msgstr "" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1726,6 +1782,27 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" @@ -1849,13 +1926,13 @@ msgid "Module Category" msgstr "" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1874,9 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "The module you are trying to remove depends on installed modules :\n %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1973,7 +2049,7 @@ msgid "Channel Name" msgstr "Kanalnamn" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1982,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2003,20 +2074,19 @@ msgstr "" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2040,8 +2110,14 @@ msgid "This function will check for new modules in the 'addons' path and on modu msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" +#: 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 @@ -2140,9 +2216,9 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Data" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2186,11 +2262,6 @@ msgstr "" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2224,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2249,11 +2325,6 @@ msgstr "" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2288,11 +2359,21 @@ msgstr "" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + #. module: base #, python-format #: code:osv/fields.py:0 @@ -2354,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2362,6 +2442,7 @@ msgstr "" #: 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 @@ -2369,8 +2450,8 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -2384,7 +2465,6 @@ msgid "terp-administration" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2429,7 +2509,7 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2445,9 +2525,8 @@ msgid "Meta Datas" 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" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" msgstr "" #. module: base @@ -2462,6 +2541,7 @@ msgid "Partners: " msgstr "" #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "Övrigt" @@ -2472,14 +2552,9 @@ msgid "Childs Field" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Rollnamn" #. module: base #, python-format @@ -2505,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2551,8 +2626,8 @@ msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2599,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2625,11 +2700,22 @@ msgstr "" msgid "Name" msgstr "Namn" +#. 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.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 msgid "On Create" @@ -2676,13 +2762,8 @@ msgid "Regexp to search module on the repository webpage:\n" msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "Moms" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2731,14 +2812,13 @@ msgid "STOCK_COPY" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" 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" +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" msgstr "" #. module: base @@ -2792,6 +2872,11 @@ msgstr "Planerad vinst" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2835,11 +2920,6 @@ msgstr "" msgid "Document" msgstr "Dokument" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2867,11 +2947,21 @@ 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 "" +#. 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 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" @@ -3018,6 +3108,12 @@ msgstr "" msgid "Help" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3068,6 +3164,11 @@ msgstr "" 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" @@ -3087,8 +3188,8 @@ msgid "Directory:" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" msgstr "" #. module: base @@ -3096,6 +3197,11 @@ msgstr "" 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 @@ -3133,8 +3239,14 @@ msgid "Source" msgstr "Källa" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" +#: 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 +msgid "Keep empty for a private address, not related to partner." msgstr "" #. module: base @@ -3204,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3269,8 +3387,8 @@ msgid "Tree can only be used in tabular reports" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3297,14 +3415,13 @@ msgid "STOCK_CLEAR" msgstr "" #. module: base -#, python-format -#: code:addons/base/ir/ir_report_custom.py:0 -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base @@ -3323,8 +3440,14 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" msgstr "" #. module: base @@ -3372,6 +3495,12 @@ msgstr "" 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 @@ -3385,14 +3514,13 @@ msgid "Type of view" msgstr "" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3433,6 +3561,11 @@ msgstr "" msgid "Grant access to menu" msgstr "" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3477,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3495,6 +3634,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3510,8 +3650,20 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" msgstr "" #. module: base @@ -3536,14 +3688,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." msgstr "" +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3561,6 +3725,7 @@ 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 @@ -3578,9 +3743,9 @@ msgid "Active" msgstr "Aktiv" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Fröken" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3611,20 +3776,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" msgstr "" +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Månader" + #. 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" @@ -3643,15 +3808,15 @@ msgstr "Barnkategori" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3684,8 +3849,10 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" +#: 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 @@ -3737,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3793,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3812,8 +3980,8 @@ msgid "Module:" msgstr "" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3850,13 +4018,9 @@ msgid "The selected language has been successfully installed. You must change th msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Rollnamn" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3878,6 +4042,11 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Herr" + #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" @@ -3888,6 +4057,11 @@ msgstr "" msgid "STOCK_EDIT" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3915,8 +4089,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3991,8 +4166,8 @@ msgid "Child ids" msgstr "" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -4002,8 +4177,8 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" msgstr "" #. module: base @@ -4126,8 +4301,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4157,8 +4333,8 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "This wizard will create an XML file for Vat details and total invoiced amounts per partner." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base @@ -4193,9 +4369,14 @@ msgid "Category" msgstr "Kategori" #. 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4204,8 +4385,8 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" +#: selection:ir.actions.todo,type:0 +msgid "Service" msgstr "" #. module: base @@ -4214,6 +4395,7 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" @@ -4256,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4273,8 +4455,8 @@ msgstr "" #. module: base #, python-format -#: code:report/custom.py:0 -msgid "The sum of the data (2nd field) is null.\nWe can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4286,11 +4468,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4329,7 +4506,6 @@ msgid "Icon" msgstr "Ikon" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4341,11 +4517,6 @@ msgstr "" msgid "Repeat missed" msgstr "" -#. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - #. module: base #, python-format #: code:osv/orm.py:0 @@ -4410,6 +4581,11 @@ msgstr "" msgid "=" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4423,8 +4599,8 @@ msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4497,6 +4673,11 @@ msgstr "" msgid "Custom Report" 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" @@ -4531,13 +4712,14 @@ msgstr "" #. module: base #, python-format -#: code:osv/fields.py:0 -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4550,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4586,7 +4763,6 @@ msgstr "" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4607,6 +4783,11 @@ msgstr "Län" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4639,9 +4820,11 @@ msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Signatur" +#: 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 #, python-format @@ -4671,8 +4854,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4722,6 +4905,11 @@ msgstr "" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4733,9 +4921,10 @@ msgid "a5" msgstr "A5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" +#: 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 @@ -4749,6 +4938,12 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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." @@ -4841,13 +5036,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4860,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4871,10 +5061,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4933,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4946,13 +5146,13 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" msgstr "" #. module: base @@ -4961,8 +5161,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "Moms" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4987,6 +5193,8 @@ msgstr "" #. module: base #, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 @@ -5007,6 +5215,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5089,8 +5303,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5114,9 +5335,9 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Herr" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5160,7 +5381,6 @@ msgid "Arguments" msgstr "Argument" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5205,7 +5425,6 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "Beskrivning" @@ -5257,6 +5476,11 @@ msgstr "" msgid "Automatic XSL:RML" msgstr "" +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5292,9 +5516,9 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Månader" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5319,13 +5543,8 @@ 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5349,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5411,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5423,6 +5642,11 @@ msgstr "" msgid "Sequence" 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" diff --git a/bin/addons/base/i18n/uk_UK.po b/bin/addons/base/i18n/uk_UK.po index 706ab9f079a..6912726d5a7 100644 --- a/bin/addons/base/i18n/uk_UK.po +++ b/bin/addons/base/i18n/uk_UK.po @@ -4,21 +4,16 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 4.3.99Report-Msgid-Bugs-To: " -"support@openerp.comPOT-Creation-Date: 2008-09-25 20:42:54+0000PO-Revision-" -"Date: 2008-09-25 20:42:54+0000Last-Translator: <>Language-Team: MIME-" -"Version: 1.0Content-Type: text/plain; charset=UTF-8Content-Transfer-" -"Encoding: Plural-Forms:\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-05 16:28+0000\n" -"PO-Revision-Date: 2008-11-17 20:23+0000\n" -"Last-Translator: Yuriy Tkachenko \n" -"Language-Team: LANGUAGE \n" +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 17:08:47+0000\n" +"PO-Revision-Date: 2008-11-28 17:08:47+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" -"X-Launchpad-Export-Date: 2008-11-21 14:04+0000\n" -"X-Generator: Launchpad (build Unknown)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act @@ -47,18 +42,10 @@ msgstr "Щомісяця" msgid "Unknown" msgstr "Невідомо" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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 @@ -76,6 +63,11 @@ msgstr "STOCK_SAVE" msgid "Change My Preferences" msgstr "Змінити мої вподобання" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Відкрити вікно" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -116,6 +108,7 @@ msgstr "STOCK_SORT_ASCENDING" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rules" msgstr "Правила доступу" @@ -131,13 +124,13 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "STOCK_MEDIA_FORWARD" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "Пропущено" +msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not create this kind of document! (%s)" msgstr "Ви не можете створювати цей вид документу! (%s)" @@ -163,6 +156,7 @@ msgstr "Процес" #: 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 @@ -180,26 +174,31 @@ msgstr "Процес" 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:res.users:0 -msgid "Add New User" -msgstr "Додати нового користувача" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "ir.default" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "Не розпочато" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -232,9 +231,13 @@ msgid "Key" msgstr "Ключ" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "Експорт" +#: 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 @@ -247,6 +250,16 @@ msgstr "Країни" msgid "STOCK_HELP" msgstr "STOCK_HELP" +#. 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" @@ -268,6 +281,12 @@ msgstr "Користувач" 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 @@ -275,13 +294,6 @@ msgstr "Імпорт нової мови" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -298,8 +310,8 @@ msgid "Suffix" msgstr "Суфікс" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The unlink method is not implemented on this object !" msgstr "Метод unlink не реалізований у цьому об'єкті!" @@ -335,9 +347,9 @@ msgid "Activites" msgstr "Дії" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" -msgstr "Текст" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -366,6 +378,11 @@ msgstr "Переміщення" msgid "ir.ui.view.custom" msgstr "ir.ui.view.custom" +#. 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" @@ -395,7 +412,7 @@ msgstr "Контакт перспективного" #. module: base #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "Неправильний XML для архітектури вигляду!" +msgstr "Неправильний XML для Архітектури Вигляду!" #. module: base #: field:ir.report.custom,sortby:0 @@ -411,7 +428,7 @@ msgid "Report Type" msgstr "Тип звіту" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -437,13 +454,15 @@ msgid "Other proprietary" msgstr "Інша пропрієтарна" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "terp-administration" +#: field:ir.actions.server,address:0 +msgid "Email / Mobile" +msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 +#: view:ir.model:0 #: view:res.partner:0 msgid "Notes" msgstr "Примітки" @@ -454,6 +473,11 @@ msgstr "Примітки" msgid "All terms" msgstr "Всі терміни" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -478,16 +502,26 @@ msgid "Form" msgstr "Форма" #. module: base -#: code:osv/orm.py:0 #, 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" msgstr "Діяльність куди" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Other Actions" @@ -499,8 +533,8 @@ msgid "STOCK_QUIT" msgstr "STOCK_QUIT" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_search method is not implemented on this object !" msgstr "Метод name_search не реалізований у цьому об'єкті!" @@ -525,8 +559,8 @@ msgid "Web:" msgstr "Веб:" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_export_lang.py:0 msgid "new" msgstr "новий" @@ -591,14 +625,10 @@ 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." +#: 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 @@ -611,30 +641,8 @@ msgid "Repositories" 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. 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. To do this, you must: If you created a new " -"module, you must send the generated .pot file by email to the translation " -"group: ... They will review and integrate." -msgstr "" -"Офіційний пакет перекладів усіх модулів OpenERP/OpenObjects ведеться на " -"сайті launchpad.net. Ми користуємося його інтерфейсом для синхронізації всіх " -"робіт із перекладів. Для вдосконалення деяких термінів офіційних перекладів " -"OpenERP Вам слід виправляти ці терміни безпосередньо в інтерфейсі " -"launchpad.net. Якщо Ви зробили багато перекладів для свого власного модуля, " -"то також можете відразу опублікувати всі свої переклади. Щоб зробити це, Вам " -"треба згенерувати файл .pot для свого нового модуля і надіслати його " -"електронною поштою до групи перекладів. Він буде переглянутий і " -"опублікований." - -#. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "Password mismatch !" msgstr "Неправильний пароль!" @@ -645,11 +653,10 @@ msgid "Contact" msgstr "Контакт" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" -"Адреса '%s' повинна надати файл html з посиланнями на модулі в zip-архівах" +msgstr "Адреса '%s' повинна надати файл html з посиланнями на модулі в zip-архівах" #. module: base #: model:ir.ui.menu,name:base.next_id_15 @@ -670,8 +677,8 @@ msgid "ir.ui.menu" msgstr "ir.ui.menu" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ConcurrencyException" msgstr "ConcurrencyException" @@ -681,9 +688,9 @@ msgid "View Ref." msgstr "Вигляд" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "Таблиця пос." +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" #. module: base #: field:res.partner,ean13:0 @@ -710,15 +717,18 @@ msgstr "Верхній колонтитул" #. module: base #: view:ir.rule:0 msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" -"Якщо Ви не визначите галузь зараз, буде використовуватися просте " -"встановлення галузі" +msgstr "Якщо Ви не визначите галузь зараз, буде використовуватися просте встановлення галузі" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "Corp." +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + #. module: base #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 @@ -733,9 +743,9 @@ msgid "Default limit for the list view" msgstr "Типове обмеження довжини списку" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "Дата оновлення" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" #. module: base #: field:ir.actions.act_window,src_model:0 @@ -748,8 +758,9 @@ msgid "Type fields" msgstr "Поля типу" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "Кроки майстра конфігурації" @@ -764,12 +775,23 @@ msgstr "ir.ui.view_sc" msgid "Group" 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 "STOCK_FLOPPY" #. 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" @@ -799,8 +821,7 @@ msgstr "Вилучені модулі" #. module: base #: help:res.partner.category,active:0 -msgid "" -"The active field allows you to hide the category, without removing it." +msgid "The active field allows you to hide the category, without removing it." msgstr "Активне поле дозволяє приховати категорію без її вилучення." #. module: base @@ -814,22 +835,16 @@ msgid "res.partner.event" msgstr "res.partner.event" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "Ствтус" +#: 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 і відкрийте його у програмі електронних " -"таблиць. Цей файл має кодування UTF-8. Вам потрібно перекласти останню " -"колонку таблиці і після цього знову імпортувати цей файл." +#: 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 і відкрийте його у програмі електронних таблиць. Цей файл має кодування UTF-8. Вам потрібно перекласти останню колонку таблиці і після цього знову імпортувати цей файл." #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -839,13 +854,14 @@ msgid "Currencies" 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." +#: 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 @@ -853,9 +869,9 @@ msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "Наступний майстер" +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "Об'єкт користувача" #. module: base #: selection:ir.model.fields,select_level:0 @@ -872,26 +888,16 @@ msgstr "Базове поле" msgid "User ID" msgstr "ІД Користувача" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -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 "" -"Ви не можете видалити користувача-адміністратора, мому що він " -"використовується системою для ресурсів, створених OpenERP (поновлення, " -"інсталяція модулів, ...)" +#: 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 "Ви не можете видалити користувача-адміністратора, мому що він використовується системою для ресурсів, створених OpenERP (поновлення, інсталяція модулів, ...)" #. module: base #: wizard_view:module.module.update,update:0 @@ -909,6 +915,11 @@ msgstr "Вміст SXW" msgid "ID Ref." msgstr "Ід. пос." +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -933,11 +944,6 @@ msgstr "Обмеження" msgid "Default" msgstr "Типовий" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "Меню користувача" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -971,8 +977,8 @@ msgid "Bank type" msgstr "Тип банку" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "undefined get method !" msgstr "невизначений метод get!" @@ -982,8 +988,8 @@ msgid "Header/Footer" msgstr "Колонтитули" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The read method is not implemented on this object !" msgstr "Метод read не реалізований у цьому об'єкті!" @@ -992,6 +998,11 @@ msgstr "Метод read не реалізований у цьому об'єкт msgid "Request History" msgstr "Запит історії" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -1005,9 +1016,9 @@ msgid "Partner Events" msgstr "Події партнера" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1057,17 +1068,15 @@ msgid "Partner contacts" msgstr "Контакти партнера" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "Поля звіту" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +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 "" -"Код ISO країни в двох латинських літерах.\n" +msgstr "Код ISO країни в двох латинських літерах.\n" "Можете використовувати це поле для швидкого пошуку" #. module: base @@ -1100,12 +1109,6 @@ msgstr "Чарівник" msgid "System Upgrade" 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 "Reload Official Translations" -msgstr "Перезавантажити офіційні переклади" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" @@ -1133,9 +1136,10 @@ msgid "Parent Menu" msgstr "Попереднє меню" #. module: base -#: view:res.users:0 -msgid "Define a New User" -msgstr "Визначити нового користувача" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "Назва поля користувача має починатися з 'x_'!" #. module: base #: field:res.partner.event,planned_cost:0 @@ -1160,13 +1164,9 @@ msgid "ir.report.custom" msgstr "ir.report.custom" #. 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 "Ролі" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "Експорт" #. module: base #: view:ir.model:0 @@ -1183,6 +1183,11 @@ msgstr "Масова розсилка повідомлень" msgid "get" msgstr "get" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Поля звіту" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1194,10 +1199,14 @@ msgid "Pie Chart" msgstr "Діаграма" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %s, expected an integer." -msgstr "Неправильний ID запису, отримано %s, очікується ціле число." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1214,11 +1223,6 @@ msgstr "STOCK_ZOOM_FIT" msgid "Sequence Type" msgstr "Тип послідовності" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "Пропустити і продовжити" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1240,11 +1244,6 @@ msgstr "field child0" msgid "Update Modules List" msgstr "Обновити Список Модулів" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "Назва файлу даних" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1295,21 +1294,16 @@ 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." +#: code:addons/base/module/module.py:0 +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -"Ви намагаєтеся встановити модуль залежний від модуля: %s.\n" -"Але цей модуль недоступний у Вашій системі." #. 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 "Календар" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "Повідомлення" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1333,14 +1327,15 @@ msgid "Modules to update" msgstr "Модулі для поновлення" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "Архітектура компанії" +#: 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 "Відкрити вікно" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "Діяльність" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1387,21 +1382,25 @@ msgid "Sequences" msgstr "Послідовності" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 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 msgid "Trigger Date" msgstr "Дата початку" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occur when validation the fields %s: %s" -msgstr "Сталася помилка під час перевірки поля %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -1409,8 +1408,8 @@ msgid "Bank account" msgstr "Банківський рахунок" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Warning: using a relation field which uses an unknown object" msgstr "Попередження: використовується зв'язане поле з невідомим об'єктом" @@ -1459,14 +1458,26 @@ msgstr "Тригер" #. module: base #: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "Постачальник" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1485,6 +1496,7 @@ msgstr "wizard.module.update_translations" #. 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 @@ -1496,17 +1508,21 @@ msgstr "Вигляди" msgid "Send Email" 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 "STOCK_SELECT_FONT" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "You try to remove a module that is installed or will be installed" -msgstr "" -"Ви намагаєтеся видалити модуль, який встановлено або буде встановлено" +msgstr "Ви намагаєтеся видалити модуль, який встановлено або буде встановлено" #. module: base #: rml:ir.module.reference:0 @@ -1540,6 +1556,12 @@ msgstr "Об'єкти" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1547,11 +1569,6 @@ msgstr "STOCK_GOTO_FIRST" msgid "Workflows" msgstr "Порядки дій" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "Тип тригера" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1576,16 +1593,20 @@ msgstr "Чарівник конфігурації" 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 -msgid "Manualy Created" -msgstr "Створений вручну" +#: rml:ir.module.reference:0 +msgid "Description :" +msgstr "" #. module: base #: field:ir.report.custom,print_format:0 @@ -1626,11 +1647,9 @@ msgstr "res.roles" #. module: base #: help:ir.cron,priority:0 -msgid "" -"0=Very Urgent\n" +msgid "0=Very Urgent\n" "10=Not urgent" -msgstr "" -"0=Дуже терміново\n" +msgstr "0=Дуже терміново\n" "10=Нетерміново" #. module: base @@ -1645,24 +1664,19 @@ msgstr "Інтерфейс користувача - Вигляд" #. module: base #: view:res.groups:0 +#: view:ir.model:0 msgid "Access Rights" 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 "Шлях до RML-файлу або NULL, якщо вміст існує в report_rml_content" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"Can not create the module file:\n" -" %s" +#: view:res.users:0 +msgid "Skip" msgstr "" -"Неможливо створити файл модуля:\n" -" %s" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1675,25 +1689,19 @@ msgstr "Створити меню" msgid "STOCK_MEDIA_RECORD" msgstr "STOCK_MEDIA_RECORD" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "child_of" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "Адреса партнера" #. module: base -#: view:res.groups:0 -msgid "Menus" -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 #: code:addons/base/ir/ir_model.py:0 -#, python-format msgid "You can not remove the model '%s' !" msgstr "Ви не можете видалити модель '%s'!" @@ -1714,8 +1722,8 @@ msgid "Subject" msgstr "Тема" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The write method is not implemented on this object !" msgstr "Метод write не реалізований у цьому об'єкті!" @@ -1736,10 +1744,9 @@ msgid "Retailer" msgstr "Продавець" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "Код послідовності" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1768,6 +1775,7 @@ msgid "State of Mind" msgstr "Настрій" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1776,16 +1784,36 @@ msgstr "Настрій" msgid "Type" msgstr "Тип" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "Створений вручну" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Діяльність звідки" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" msgstr "STOCK_FILE" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "Метод copy не реалізований у цьому об'єкті!" +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -1850,8 +1878,14 @@ msgid "STOCK_OK" msgstr "STOCK_OK" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, 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 "Не введений пароль!" @@ -1872,8 +1906,8 @@ msgid "None" msgstr "Нічого" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not write in this document! (%s)" msgstr "Ви не можете редагувати цей документ! (%s)" @@ -1893,16 +1927,16 @@ msgstr "API ID" msgid "Module Category" msgstr "Категорія модулів" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "Додати та продовжити" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1919,14 +1953,9 @@ msgid "STOCK_UNINDENT" msgstr "STOCK_UNINDENT" #. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "" -"The module you are trying to remove depends on installed modules :\n" -" %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" -"Модуль, який Ви хочете видалити, залежить від вже встановлених модулів:\n" -" %s" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -1966,8 +1995,8 @@ msgid "Low" msgstr "Низький" #. module: base -#: code:addons/base/module/module.py:0 #, python-format +#: code:addons/base/module/module.py:0 msgid "Recursion error in modules dependencies !" msgstr "Рекурсивна помилка у залежностях модулів!" @@ -1983,6 +2012,7 @@ msgstr "XSL path" #. 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" @@ -2021,20 +2051,15 @@ msgid "Channel Name" msgstr "Назва каналу" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "Далі" +msgstr "" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" msgstr "Спрощений інтерфейс" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "Призначити групи для визначення прав доступу" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2051,21 +2076,20 @@ msgstr "Вирівнювання" msgid "STOCK_UNDO" msgstr "STOCK_UNDO" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "Сповіщення" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "Діяльність" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2084,17 +2108,19 @@ 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 "" -"Ця функція перевірить наявність нових модулів у каталозі 'addons' і в " -"репозитарії модулів:" +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "Ця функція перевірить наявність нових модулів у каталозі 'addons' і в репозитарії модулів:" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "child_of" +#: 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 #: field:res.currency,rate_ids:0 @@ -2108,9 +2134,9 @@ msgid "STOCK_GO_BACK" msgstr "STOCK_GO_BACK" #. module: base +#, python-format #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 -#, python-format msgid "AccessError" msgstr "AccessError" @@ -2158,8 +2184,8 @@ msgid "unknown" msgstr "невідомий" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The create method is not implemented on this object !" msgstr "Метод create не реалізований у цьому об'єкті!" @@ -2192,9 +2218,9 @@ msgid "SXW path" msgstr "SXW path" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "Дані" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2238,11 +2264,6 @@ msgstr "Демо-дані" msgid "Module import" msgstr "Імпорт модуля" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2276,6 +2297,11 @@ msgstr "CSV файл" msgid "Parent Company" msgstr "Батьківська компанія" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2301,11 +2327,6 @@ msgstr "Початкова дата" msgid "RML Internal Header" msgstr "Внутрішній заголовок RML" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "Перелік платників ПДВ" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2340,14 +2361,24 @@ msgstr "(рік)=" 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 "terp-partner" #. module: base -#: code:osv/fields.py:0 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base #, python-format +#: code:osv/fields.py:0 msgid "Not implemented get_memory method !" msgstr "Метод get_memory не реалізовано!" @@ -2359,8 +2390,8 @@ msgid "Python Code" msgstr "Код Python" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Bad query." msgstr "Неправильний запит." @@ -2370,8 +2401,8 @@ msgid "Field Label" msgstr "Мітка поля" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "You try to bypass an access rule (Document type: %s)." msgstr "Ви намагаєтеся знехтувати правилами доступу (Тип документу: %s)." @@ -2406,7 +2437,6 @@ msgid "Customers Partners" msgstr "Партнери-клієнти" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2414,6 +2444,7 @@ msgstr "Партнери-клієнти" #: 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 @@ -2421,9 +2452,9 @@ msgid "Cancel" msgstr "Скасувати" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "Доступ для читання" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2431,7 +2462,11 @@ msgid "Modules Management" msgstr "Управління модулями" #. module: base -#: field:ir.attachment,res_id:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2442,7 +2477,6 @@ msgstr "Ід. ресурсу" #. module: base #: field:ir.model,info:0 -#: view:ir.model:0 msgid "Information" msgstr "Інформація" @@ -2477,9 +2511,9 @@ msgid "RML path" msgstr "RML шлях" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" -msgstr "Наступний майстер конфігурації" +msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 @@ -2493,10 +2527,9 @@ msgid "Meta Datas" 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 "Курс валюти до валюти з курсом 1" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "Меню користувача" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2504,12 +2537,13 @@ msgid "raw" msgstr "сирий" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, 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 "Інше" @@ -2520,18 +2554,13 @@ msgid "Childs Field" msgstr "Підлегле поле" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "ir.module.module.configuration.step" +#: 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 "ir.module.module.configuration.wizard" - -#. module: base -#: code:addons/base/res/res_user.py:0 #, python-format +#: code:addons/base/res/res_user.py:0 msgid "Can not remove root user!" msgstr "Неможливо видалити користувача root!" @@ -2553,10 +2582,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2579,12 +2608,8 @@ 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 "" -"Внутрішній користувач, який відповідає за зв'язок з цим партнером, якщо " -"такий існує." +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "Внутрішній користувач, який відповідає за зв'язок з цим партнером, якщо такий існує." #. module: base #: selection:ir.translation,type:0 @@ -2597,15 +2622,15 @@ msgid "Cancel Upgrade" msgstr "Відмінити Оновлення" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The search method is not implemented on this object !" msgstr "Метод search не реалізований у цьому об'єкті!" #. module: base -#: field:ir.actions.server,address:0 -msgid "Email From / SMS" -msgstr "Ел. пошта від / SMS" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -2617,14 +2642,19 @@ msgstr "Дата наступного виклику" msgid "Cumulate" msgstr "Накопичувати" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_lang msgid "res.lang" msgstr "res.lang" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Pie charts need exactly two fields" msgstr "Для кругової діаграми потрібно два поля" @@ -2646,12 +2676,12 @@ msgid "Create in Same Model" msgstr "Створити у такій самій моделі" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2672,11 +2702,22 @@ msgstr "Створити у такій самій моделі" msgid "Name" 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 #: selection:ir.ui.menu,icon:0 msgid "STOCK_APPLY" msgstr "STOCK_APPLY" +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "" + #. module: base #: field:workflow,on_create:0 msgid "On Create" @@ -2698,8 +2739,8 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "STOCK_MEDIA_PAUSE" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Error !" msgstr "Помилка!" @@ -2716,26 +2757,19 @@ msgstr "GPL-2" #. 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 all the version number.\n" "- The last parenthesis must match the extension of the module." -msgstr "" -"Регулярний вираз для пошуку модуля на веб-сторінці репозитарію:\n" +msgstr "Регулярний вираз для пошуку модуля на веб-сторінці репозитарію:\n" "- вираз у перших дужках має відповідати назві модуля;\n" "- вираз у других дужках має відповідати номеру версії;\n" "- вираз в останніх дужках має відповідати розширенню модуля." #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "ПДВ" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" -msgstr "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "Для експорту нової мови не треба вибирати мову." #. module: base #: model:ir.ui.menu,name:base.menu_translation_app @@ -2782,6 +2816,16 @@ msgstr "Екземпляри" msgid "STOCK_COPY" msgstr "STOCK_COPY" +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +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_res_request_link msgid "res.request.link" @@ -2798,8 +2842,8 @@ msgid "ir.actions.act_window.view" msgstr "ir.actions.act_window.view" #. module: base -#: code:tools/translate.py:0 #, python-format +#: code:tools/translate.py:0 msgid "Bad file format" msgstr "Неправильний формат файлу" @@ -2833,6 +2877,11 @@ msgstr "Запланований дохід" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2845,8 +2894,8 @@ msgid "Readonly" msgstr "Лише читання" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not remove the field '%s' !" msgstr "Ви не можете видалити поле '%s'!" @@ -2876,11 +2925,6 @@ msgstr "ir.actions.wizard" msgid "Document" msgstr "Документ" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "Число контактів" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2903,21 +2947,26 @@ msgid "STOCK_STOP" msgstr "STOCK_STOP" #. module: base -#: code: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 "" -"\"%s\" містить занадто багато крапок. XML ids не можуть містити крапки! Вони " -"використовуються для посилання на дані інших модулів, як у " -"module.reference_id" +#: code:addons/base/ir/ir_model.py:0 +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 ids не можуть містити крапки! Вони використовуються для посилання на дані інших модулів, як у module.reference_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 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 "" + #. module: base #: selection:res.partner.event,type:0 msgid "Purchase Offer" @@ -2940,8 +2989,8 @@ msgid "Day: %(day)s" msgstr "День: %(day)s" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not read this document! (%s)" msgstr "Ви не можете читати цей документ! (%s)" @@ -3060,9 +3109,16 @@ msgstr "Значення області дії" #. module: base #: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 msgid "Help" msgstr "Help" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3095,8 +3151,7 @@ msgstr "Список контролю доступу" #. module: base #: help:ir.rule.group,global:0 msgid "Make the rule global or it needs to be put on a group or user" -msgstr "" -"Зробити правило глобальним або його треба накласти на групу чи користувача" +msgstr "Зробити правило глобальним або його треба накласти на групу чи користувача" #. module: base #: field:ir.actions.wizard,wiz_name:0 @@ -3114,6 +3169,11 @@ msgstr "Звіт користувача" 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" @@ -3133,9 +3193,9 @@ msgid "Directory:" msgstr "Директорія:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "Кредитний Ліміт" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" #. module: base #: field:ir.actions.server,trigger_name:0 @@ -3143,8 +3203,13 @@ msgid "Trigger Name" msgstr "Назва тригеру" #. module: base -#: code:addons/base/res/res_user.py:0 +#: 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 "Назва групи не може починатися з \"-\"" @@ -3179,9 +3244,15 @@ msgid "Source" msgstr "Звідки" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "Діяльність звідки" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3229,14 +3300,10 @@ msgid "Resource Name" 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 і його " -"можна викласти на launchpad.net." +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +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 і його можна викласти на launchpad.net." #. module: base #: field:res.partner.address,type:0 @@ -3254,6 +3321,12 @@ msgstr "Почати налаштування" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3280,8 +3353,8 @@ msgid "References" msgstr "Довідники" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This record was modified in the meanwhile" msgstr "За цей час запис було змінено" @@ -3307,21 +3380,21 @@ msgid "Kind" msgstr "Вид" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "This method does not exist anymore" msgstr "Цього метода вже не існує" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, 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.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" #. module: base #: view:res.partner.bank:0 @@ -3336,21 +3409,25 @@ msgstr "Банківські рахунки" msgid "Tree" 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_CLEAR" msgstr "STOCK_CLEAR" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "Для стовпчикової діаграми потрібно щонайменш два поля" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Доступ для читання" #. module: base #: selection:ir.report.custom,type:0 @@ -3368,13 +3445,19 @@ msgid "Custom Field" msgstr "Поле користувача" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "Обов'язкова роль" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" #. module: base -#: code:osv/fields.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "Для стовпчикової діаграми потрібно щонайменш два поля" + +#. module: base +#, python-format +#: code:osv/fields.py:0 msgid "Not implemented search_memory method !" msgstr "Метод search_memory не реалізовано!" @@ -3417,6 +3500,12 @@ msgstr "res.request" 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 @@ -3429,17 +3518,16 @@ msgstr "Оновлення системи виконано" msgid "Type of view" msgstr "Тип вигляду" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "Метод perm_read не реалізований у цьому об'єкті!" - #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" msgstr "pdf" +#. 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 @@ -3462,12 +3550,27 @@ msgstr "STOCK_FIND" msgid "STOCK_PROPERTIES" msgstr "STOCK_PROPERTIES" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +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: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 msgid "Uninstall (beta)" @@ -3480,8 +3583,8 @@ msgid "New Window" msgstr "Нове вікно" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Second field should be figures" msgstr "Друге поле має бути числовим" @@ -3496,12 +3599,10 @@ msgid "Parent Action" 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 "" -"Неможливо згенерувати наступний ІД, тому що у деяких партнерів є буквений ІД!" +#: code:addons/base/res/partner/partner.py:0 +msgid "Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "Неможливо згенерувати наступний ІД, тому що у деяких партнерів є буквений ІД!" #. module: base #: selection:ir.report.custom,state:0 @@ -3514,11 +3615,17 @@ msgid "Number of modules updated" msgstr "Кількість обновлених модулів" #. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Skip Step" -msgstr "Пропустити крок" +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3532,6 +3639,7 @@ 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" @@ -3547,9 +3655,21 @@ msgid "Active Partner Events" msgstr "Активні Події Партнера" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "ІД виразу тригера" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3574,17 +3694,25 @@ msgid "Phone" 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 views." +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" 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 views." +msgstr "Якщо встановлено в 'істина', майстер не буде відображений на правій панелі форм." + +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3602,6 +3730,7 @@ msgid "STOCK_SPELL_CHECK" msgstr "STOCK_SPELL_CHECK" #. module: base +#: field:ir.actions.todo,active:0 #: field:ir.cron,active:0 #: field:ir.module.repository,active:0 #: field:ir.sequence,active:0 @@ -3619,9 +3748,9 @@ msgid "Active" msgstr "Активовано" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "Пані" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -3652,20 +3781,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "Закрити Доступ" +#: 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 msgid "Signal (subflow.*)" msgstr "Сигнал (subflow.*)" -#. 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" @@ -3684,15 +3813,15 @@ msgstr "Дочірні категорії" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "Назва об'єкта" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3725,9 +3854,11 @@ msgid "Object Relation" msgstr "Залежності об'єкта" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "Агент" +#: 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 @@ -3778,9 +3909,9 @@ msgid "terp-mrp" msgstr "terp-mrp" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "Виконано" +msgstr "" #. module: base #: field:ir.actions.server,trigger_obj_id:0 @@ -3796,11 +3927,8 @@ msgstr "Інвойс" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 #: help:ir.actions.act_window.view,multi:0 -msgid "" -"If set to true, the action will not be displayed on the right toolbar of a " -"form views." -msgstr "" -"Якщо встановлено 'істина', дія не буде відображена на правій панелі форм." +msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgstr "Якщо встановлено 'істина', дія не буде відображена на правій панелі форм." #. module: base #: model:ir.ui.menu,name:base.next_id_4 @@ -3837,6 +3965,7 @@ msgstr "Розмір" #: 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 "Місто" @@ -3847,10 +3976,8 @@ 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 #: rml:ir.module.reference:0 @@ -3858,9 +3985,9 @@ msgid "Module:" msgstr "Модуль:" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" -msgstr "Об'єкт користувача" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "" #. module: base #: selection:ir.rule,operator:0 @@ -3880,6 +4007,11 @@ msgstr "Меню" msgid "<=" msgstr "<=" +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" @@ -3887,22 +4019,14 @@ 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 "" -"Вибрана мова успішно встановлена. Вам треба змінити параметри користувача і " -"відкрити нове меню щоб продивитися зміни." +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.roles,name:0 -msgid "Role Name" -msgstr "Назва ролі" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" -msgstr "Створити XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Меню" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3923,11 +4047,26 @@ msgstr "Ціль дії" msgid "Child Field" msgstr "Підлегле поле" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +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 "STOCK_EDIT" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3943,8 +4082,8 @@ msgid "STOCK_HOME" msgstr "STOCK_HOME" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Enter at least one field !" msgstr "Введіть щонайменш одне поле!" @@ -3955,9 +4094,10 @@ msgid "Others Actions" msgstr "Інші дії" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "Максимальне" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -4031,9 +4171,9 @@ msgid "Child ids" msgstr "Підлеглі ід-и" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "Формат файлу" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" #. module: base #: field:ir.exports,resource:0 @@ -4042,9 +4182,9 @@ msgid "Resource" msgstr "Ресурс" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Дата оновлення" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4127,6 +4267,12 @@ msgstr "terp-sale" msgid "Field Mappings" msgstr "Відповідність полів" +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "The copy method is not implemented on this object !" +msgstr "Метод copy не реалізований у цьому об'єкті!" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" @@ -4144,8 +4290,8 @@ msgid "center" msgstr "центр" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format +#: code:addons/base/module/wizard/wizard_module_import.py:0 msgid "Can not create the module file: %s !" msgstr "Неможливо створити файл модуля: %s!" @@ -4160,9 +4306,10 @@ msgid "Published Version" msgstr "Опублікована Версія" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "Автопоновлення" +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "Курс валюти до валюти з курсом 1" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -4191,13 +4338,9 @@ msgid "ir.exports.line" msgstr "ir.exports.line" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "" -"This wizard will create an XML file for Vat details and total invoiced " -"amounts per partner." -msgstr "" -"Цей майстер створить файл XML для деталізації ПДВ і загальних заінвойсованих " -"сум за партнерами." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Кредитний Ліміт" #. module: base #: field:ir.default,value:0 @@ -4231,10 +4374,15 @@ msgid "Category" 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 "Дії вікна" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "Ствтус" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Автопоновлення" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4242,9 +4390,9 @@ msgid "ir.actions.act_window_close" msgstr "ir.actions.act_window_close" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "Номер рахунку" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4252,14 +4400,15 @@ msgid "Add an auto-refresh on the view" 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:0 +#: field:ir.model,access_ids:0 msgid "Access" -msgstr "Доступ" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4293,31 +4442,27 @@ msgstr "Модулі для завантаження" msgid "Fax" 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_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" msgstr "Робочі позиції" -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "Для експорту нової мови не треба вибирати мову." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" msgstr "STOCK_PRINT_PREVIEW" #. module: base -#: code:report/custom.py:0 #, python-format -msgid "" -"The sum of the data (2nd field) is null.\n" -"We can draw a pie chart !" -msgstr "" -"Сума даних (2-е поле) є null.\n" -"Неможливо створити кругову діаграму!" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" +msgstr "Метод perm_read не реалізований у цьому об'єкті!" #. module: base #: field:ir.default,company_id:0 @@ -4328,15 +4473,6 @@ msgstr "" msgid "Company" msgstr "Компанія" -#. module: base -#: view:ir.actions.server:0 -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 "" -"Доступ до всіх полів, пов'язаних з поточним об'єктом, легкий - потрібно лише " -"вказати назву атрибута, наприклад, [[partner_id.name]] для об'єкта інвойса" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4347,6 +4483,11 @@ msgstr "Дата створення" msgid "Email / SMS" msgstr "Ел.пошта / SMS" +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "Код BIC/Swift" + #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" @@ -4370,7 +4511,6 @@ msgid "Icon" msgstr "Значок" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4383,13 +4523,8 @@ msgid "Repeat missed" msgstr "Повторити пропущені" #. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "Врахувати деталі ПДВ" - -#. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Couldn't find tag '%s' in parent view !" msgstr "Неможливо знайти теґ '%s' у батьківському вигляді!" @@ -4409,12 +4544,6 @@ msgstr "ir.translation" msgid "Limit" msgstr "Обмеження" -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Install new language file" -msgstr "Встановити новий мовний файл" - #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -4428,6 +4557,11 @@ msgstr "Запити" msgid "Or" msgstr "Or" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4452,6 +4586,11 @@ msgstr "Selection" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4459,15 +4598,15 @@ msgid "Installed modules" msgstr "Встановлені модулі" #. module: base -#: code:addons/base/res/partner/partner.py:0 #, python-format +#: code:addons/base/res/partner/partner.py:0 msgid "Warning" msgstr "Попередження" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "Файл XML створено." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" #. module: base #: field:ir.rule,operator:0 @@ -4475,8 +4614,8 @@ msgid "Operator" msgstr "Оператор" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "ValidateError" msgstr "ValidateError" @@ -4528,8 +4667,8 @@ msgid "Report Footer 1" msgstr "Нижній колонтитул 1" #. module: base -#: code:addons/base/ir/ir_model.py:0 #, python-format +#: code:addons/base/ir/ir_model.py:0 msgid "You can not delete this document! (%s)" msgstr "Ви не можете видалити цей документ! (%s)" @@ -4539,15 +4678,21 @@ msgstr "Ви не можете видалити цей документ! (%s)" msgid "Custom Report" 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 -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "Автоматичний XSL:RML" +#: 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 #: field:ir.model.access,perm_create:0 @@ -4571,15 +4716,16 @@ msgid "Printed:" msgstr "Друк:" #. module: base -#: code:osv/fields.py:0 #, python-format -msgid "Not implemented set_memory method !" -msgstr "Метод set_memory не реалізовано!" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" -msgstr "Зберегти файл" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" +msgstr "Метод set_memory не реалізовано!" #. module: base #: selection:ir.actions.act_window,target:0 @@ -4591,11 +4737,6 @@ msgstr "Поточне вікно" msgid "Partner category" msgstr "Категорія партнера" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "Вибрати фінансовий рік" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4621,12 +4762,12 @@ 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.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "Тип поля" @@ -4647,6 +4788,11 @@ msgstr "Код області" msgid "On delete" msgstr "Дія на видалення" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4673,22 +4819,34 @@ msgid "Cascade" msgstr "Каскадом" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Field %d should be a figure" msgstr "Поле %d повинно бути числом" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "Підпис" +#: 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 -#: code:osv/fields.py:0 #, python-format +#: code:osv/fields.py:0 msgid "Not Implemented" 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_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Property" @@ -4701,9 +4859,9 @@ msgid "Bank Account Type" msgstr "Тип банківського рахунку" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" -msgstr "Тест файлу XML" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4724,14 +4882,8 @@ 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. Менш " -"вживані опції та поля будуть прихованими. Ви зможете змінити інтерфейс " -"пізніше через меню адміністрування." +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 #: selection:ir.ui.menu,icon:0 @@ -4743,6 +4895,11 @@ msgstr "STOCK_PREFERENCES" msgid "Short description" msgstr "Короткий опис" +#. module: base +#: help:ir.actions.report.xml,attachment:0 +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" @@ -4753,6 +4910,11 @@ msgstr "Назва області" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "Ваш логотип розміром приблизно 450x150 пікселів." +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4764,10 +4926,11 @@ msgid "a5" msgstr "А5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "Повідомлення" +#: 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 #: selection:ir.ui.menu,icon:0 @@ -4780,11 +4943,20 @@ msgstr "STOCK_GOTO_LAST" msgid "ir.actions.report.xml" msgstr "ir.actions.report.xml" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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.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 @@ -4801,15 +4973,20 @@ msgid "Graph" msgstr "Графік" #. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "Код BIC/Swift" +#: 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 "ir.actions.server" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" @@ -4826,8 +5003,8 @@ msgid "Module dependency" msgstr "Залежність модулів" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The name_get method is not implemented on this object !" msgstr "Метод name_get не реалізований у цьому об'єкті!" @@ -4842,6 +5019,11 @@ msgstr "Застосувати заплановані оновлення" msgid "STOCK_DND_MULTIPLE" msgstr "STOCK_DND_MULTIPLE" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" @@ -4859,14 +5041,9 @@ msgid "Server Action" msgstr "Дія на боці сервера" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "Файл створено" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "Рік: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -4878,9 +5055,9 @@ msgid "Action Name" msgstr "Назва дії" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "Просування налаштування" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 @@ -4889,10 +5066,14 @@ msgstr "Нижній колонтитул 2" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "E-Mail" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4908,6 +5089,11 @@ msgstr "Режим розділення" msgid "Localisation" msgstr "Локалізація" +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Рахувати кількість" + #. module: base #: field:ir.module.module,dependencies_id:0 #: view:ir.module.module:0 @@ -4946,8 +5132,14 @@ msgid "Import a Translation File" msgstr "Імпорт файлу перекладу" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "Звернення до партнера" @@ -4959,9 +5151,9 @@ msgid "Untranslated terms" msgstr "Неперекладені терміни" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "Відкрити вікно" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -4974,11 +5166,15 @@ msgid "Transition" 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:" -msgstr "Вам треба імпортувати .CSV файл в кодуванні UTF-8. Будь ласка" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "ПДВ" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" +msgstr "" #. module: base #: field:res.partner.address,birthdate:0 @@ -5001,16 +5197,13 @@ msgid "res.partner.som" msgstr "res.partner.som" #. module: base -#: model:ir.ui.menu,name:base.menu_security_access -msgid "Access Conrols" -msgstr "Контроль доступу" - -#. module: base +#, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/module/module.py:0 -#, python-format msgid "Error" msgstr "Помилка" @@ -5027,6 +5220,12 @@ msgstr "Категорії партнерів" msgid "workflow.activity" msgstr "workflow.activity" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Код послідовності" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5109,8 +5308,15 @@ msgstr "res.company" msgid "Fields Mapping" msgstr "Відповідність полів" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5134,9 +5340,9 @@ msgid "The VAT doesn't seem to be correct." msgstr "ПДВ здається некоректним" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "Пан" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -5153,6 +5359,11 @@ msgstr "Налаштувати простий вигляд" msgid "Start Upgrade" msgstr "Розпочати оновлення" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + #. module: base #: field:res.partner.som,factor:0 msgid "Factor" @@ -5175,7 +5386,6 @@ msgid "Arguments" msgstr "Аргументи" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5220,13 +5430,12 @@ msgstr "res.config.view" #: 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 #, python-format +#: code:addons/base/ir/ir_report_custom.py:0 msgid "Invalid operation" msgstr "Неправильна операція" @@ -5262,15 +5471,20 @@ msgid "ir.attachment" msgstr "ir.attachment" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "Значення \"%s\" для поля \"%s\" немає у виборі" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "Рахувати кількість" +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "Автоматичний XSL:RML" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" #. module: base #: view:workflow.workitem:0 @@ -5297,6 +5511,7 @@ msgstr "Експорт мови" #. module: base #: field:res.partner,customer:0 #: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 msgid "Customer" msgstr "Покупець" @@ -5306,9 +5521,9 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "Декілька правил для однакових об'єктів об'єднуються оператором OR" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "Місяці" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Закрити Доступ" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5333,14 +5548,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 -#: view:res.country:0 -msgid "Country" -msgstr "Країна" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5363,9 +5573,9 @@ msgid "Unsubscribe Report" msgstr "Відписатися від звіту" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" -msgstr "Фінансовий рік" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" #. module: base #: constraint:res.partner.category:0 @@ -5383,9 +5593,10 @@ msgid "a4" msgstr "А4" #. module: base -#: field:ir.module.module,latest_version:0 -msgid "Latest version" -msgstr "Остання версія" +#: 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_view:module.lang.install,start:0 @@ -5397,6 +5608,11 @@ msgstr "Встановлення виконано" msgid "STOCK_JUSTIFY_RIGHT" msgstr "STOCK_JUSTIFY_RIGHT" +#. 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" @@ -5416,12 +5632,12 @@ msgstr "Місяць: %(month)s" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form msgid "Addresses" -msgstr "Адреси" +msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5432,12 +5648,15 @@ msgid "Sequence" 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" +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" -"Скільки разів функція викликається.\n" + +#. 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 "Скільки разів функція викликається.\n" "Негативне значення показує, що функція завжди буде викликатися." #. module: base @@ -5471,8 +5690,8 @@ msgid "Cancel Install" msgstr "Скасувати встановлення" #. module: base -#: code:osv/orm.py:0 #, python-format +#: code:osv/orm.py:0 msgid "Please check that all your lines have %d columns." msgstr "Перевірте, чи всі рядки мають %d колонок." @@ -5485,3 +5704,4 @@ msgstr "Імпорт мови" #: field:ir.model.data,name:0 msgid "XML Identifier" msgstr "Ідентифікатор XML" + diff --git a/bin/addons/base/i18n/zh_CN.po b/bin/addons/base/i18n/zh_CN.po index 6538b6fc6e5..61c690c58e4 100644 --- a/bin/addons/base/i18n/zh_CN.po +++ b/bin/addons/base/i18n/zh_CN.po @@ -4,16 +4,16 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 4.3.0" -"Report-Msgid-Bugs-To: support@openerp.com" -"POT-Creation-Date: 2008-09-11 15:37:41+0000" -"PO-Revision-Date: 2008-09-11 15:37:41+0000" -"Last-Translator: <>" -"Language-Team: " -"MIME-Version: 1.0" -"Content-Type: text/plain; charset=UTF-8" -"Content-Transfer-Encoding: " -"Plural-Forms: " +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:52:05+0000\n" +"PO-Revision-Date: 2008-11-28 16:52:05+0000\n" +"Last-Translator: <>\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 #: model:ir.actions.act_window,name:base.ir_cron_act @@ -42,11 +42,6 @@ msgstr "每月" msgid "Unknown" msgstr "δ?" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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." @@ -68,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "打开窗口" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -124,7 +124,7 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" @@ -156,6 +156,7 @@ msgstr "工作流" #: 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 @@ -184,21 +185,21 @@ msgstr "" msgid "Categories of Modules" msgstr "模块分类" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -230,9 +231,13 @@ msgid "Key" msgstr "关键字" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "导出" +#: 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 @@ -245,6 +250,16 @@ msgstr "" 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" @@ -266,6 +281,12 @@ msgstr "用户参照" 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 @@ -273,13 +294,6 @@ msgstr "导入新语言" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -333,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -364,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "报告类型" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -441,6 +460,7 @@ msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 #: view:ir.model:0 #: view:res.partner:0 @@ -453,6 +473,11 @@ msgstr "注解" msgid "All terms" msgstr "所有术语" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -482,6 +507,11 @@ msgstr "表单" msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" @@ -658,9 +688,9 @@ msgid "View Ref." msgstr "视图参照" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "表参照" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "" #. module: base #: field:res.partner,ean13:0 @@ -713,9 +743,9 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "更新日期" +#: 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 @@ -728,8 +758,9 @@ msgid "Type fields" msgstr "类型域" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -744,11 +775,21 @@ msgstr "" msgid "Group" 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "签名" + #. module: base #: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 @@ -794,10 +835,10 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "状态" +#: wizard_field:server.action.create,init,type:0 +#: wizard_view:server.action.create,init:0 +msgid "Select Action Type" +msgstr "" #. module: base #, python-format @@ -812,6 +853,11 @@ msgstr "" 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." @@ -823,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -842,11 +888,6 @@ msgstr "" msgid "User ID" msgstr "用户ID" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - #. module: base #: view:ir.rule:0 msgid "Test" @@ -874,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "ID参照" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -898,11 +944,6 @@ msgstr "" msgid "Default" msgstr "默认" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "自定义" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -957,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "请求记录" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -970,8 +1016,8 @@ msgid "Partner Events" msgstr "业务伙伴活动" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1022,9 +1068,9 @@ msgid "Partner contacts" msgstr "业务伙伴联系人" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "报告字段" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "" #. module: base #: help:res.country,code:0 @@ -1089,8 +1135,9 @@ msgid "Parent Menu" msgstr "上级菜单" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1116,13 +1163,9 @@ msgid "ir.report.custom" 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 "角色" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "导出" #. module: base #: view:ir.model:0 @@ -1139,6 +1182,11 @@ msgstr "批量发送SMS" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "报告字段" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1150,9 +1198,13 @@ msgid "Pie Chart" msgstr "饼图" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1170,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "序号类型" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1196,11 +1243,6 @@ msgstr "" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "数据文件名" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1257,11 +1299,10 @@ msgid "You try to install a module that depends on the module: %s.\nBut this mod 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 "日历" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "消息" #. module: base #: wizard_view:module.lang.install,start:0 @@ -1285,14 +1326,15 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "公司结构" +#: 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 "打开窗口" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "活动" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1344,15 +1386,19 @@ msgstr "序号" msgid "Unknown position in inherited view %s !" 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 -#, python-format -#: code:osv/orm.py:0 -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1415,11 +1461,22 @@ msgstr "" msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1438,6 +1495,7 @@ 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 @@ -1497,6 +1555,12 @@ msgstr "对象" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1504,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "触发器类型" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1533,15 +1592,19 @@ msgstr "" 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 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1609,9 +1672,8 @@ msgid "The .rml path of the file or NULL if the content is in report_rml_content msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "Can not create the module file:\n %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1625,22 +1687,16 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "子项" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" -#. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#, python-format -#: code:addons/base/ir/ir_model.py:0 -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - #. module: base #, python-format #: code:addons/base/ir/ir_model.py:0 @@ -1686,10 +1742,9 @@ msgid "Retailer" msgstr "零售商" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "序列代码" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1718,6 +1773,7 @@ msgid "State of Mind" msgstr "满意度" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1726,6 +1782,27 @@ msgstr "满意度" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "源活动" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" @@ -1848,16 +1925,16 @@ msgstr "API ID" msgid "Module Category" msgstr "模块分类" -#. module: base -#: view:res.users:0 -msgid "Add & Continue" -msgstr "" - #. module: base #: field:ir.rule,operand:0 msgid "Operand" 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 #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" @@ -1874,9 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "The module you are trying to remove depends on installed modules :\n %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1973,7 +2049,7 @@ msgid "Channel Name" msgstr "渠道名称" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1982,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2003,22 +2074,21 @@ msgstr "对齐方式" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr ">=" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "活动" - #. module: base #: model:ir.ui.menu,name:base.menu_administration msgid "Administration" @@ -2040,9 +2110,15 @@ msgid "This function will check for new modules in the 'addons' path and on modu msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "子项" +#: 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 #: field:res.currency,rate_ids:0 @@ -2140,9 +2216,9 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "数据" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2186,11 +2262,6 @@ msgstr "演示数据" msgid "Module import" msgstr "模块导入" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2224,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "母公司" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2249,11 +2325,6 @@ msgstr "" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2288,11 +2359,21 @@ msgstr "(年)=" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + #. module: base #, python-format #: code:osv/fields.py:0 @@ -2354,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2362,6 +2442,7 @@ msgstr "" #: 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 @@ -2369,9 +2450,9 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "读权限" +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2384,7 +2465,6 @@ msgid "terp-administration" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2429,7 +2509,7 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2445,10 +2525,9 @@ msgid "Meta Datas" 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 "" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" +msgstr "自定义" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -2462,6 +2541,7 @@ msgid "Partners: " msgstr "" #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "其他" @@ -2472,14 +2552,9 @@ msgid "Childs Field" msgstr "子项字段" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "角色名称" #. module: base #, python-format @@ -2505,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2551,8 +2626,8 @@ msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2599,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2625,11 +2700,22 @@ msgstr "" msgid "Name" 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 #: 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 msgid "On Create" @@ -2676,13 +2762,8 @@ msgid "Regexp to search module on the repository webpage:\n" msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "增值税" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2731,14 +2812,13 @@ msgid "STOCK_COPY" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" 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" +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" msgstr "" #. module: base @@ -2792,6 +2872,11 @@ msgstr "计划收入" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2835,11 +2920,6 @@ msgstr "" msgid "Document" msgstr "单据" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2867,11 +2947,21 @@ 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 "" +#. 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 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" @@ -3018,6 +3108,12 @@ msgstr "所有权价值" msgid "Help" msgstr "帮助" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3068,6 +3164,11 @@ msgstr "自定义报表" 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" @@ -3087,15 +3188,20 @@ msgid "Directory:" msgstr "目录:" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "信用额度" +#: 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 @@ -3133,9 +3239,15 @@ msgid "Source" msgstr "原文" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "源活动" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3204,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3269,8 +3387,8 @@ msgid "Tree can only be used in tabular reports" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3297,15 +3415,14 @@ msgid "STOCK_CLEAR" msgstr "" #. module: base -#, python-format -#: code:addons/base/ir/ir_report_custom.py:0 -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "读权限" #. module: base #: selection:ir.report.custom,type:0 @@ -3323,9 +3440,15 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "需要的角色" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" #. module: base #, python-format @@ -3372,6 +3495,12 @@ msgstr "" 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 @@ -3385,14 +3514,13 @@ msgid "Type of view" msgstr "视图类型" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3433,6 +3561,11 @@ msgstr "" msgid "Grant access to menu" msgstr "访问菜单权限" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3477,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3495,6 +3634,7 @@ msgstr "角色结构" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3510,9 +3650,21 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "触发器ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3536,14 +3688,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." msgstr "" +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3561,6 +3725,7 @@ 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 @@ -3578,8 +3743,8 @@ msgid "Active" msgstr "有效" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -3611,20 +3776,20 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "删除权限" +#: 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 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" @@ -3643,15 +3808,15 @@ msgstr "子项分类" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3684,9 +3849,11 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "" +#: 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 @@ -3737,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3793,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3812,8 +3980,8 @@ msgid "Module:" msgstr "模块:" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3850,13 +4018,9 @@ msgid "The selected language has been successfully installed. You must change th msgstr "您选择的语言已经成功安装。您必须在用户偏好中修改,并且重新打开目录才能改变修改。" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "角色名称" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3878,6 +4042,11 @@ msgstr "" msgid "Child Field" msgstr "子栏位" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "" + #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" @@ -3888,6 +4057,11 @@ msgstr "" msgid "STOCK_EDIT" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3915,8 +4089,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3991,8 +4166,8 @@ msgid "Child ids" msgstr "子项" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -4002,9 +4177,9 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "" +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "更新日期" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4126,9 +4301,10 @@ msgid "Published Version" msgstr "发布版本" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "自动刷新" +#: 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 @@ -4157,9 +4333,9 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "This wizard will create an XML file for Vat details and total invoiced amounts per partner." -msgstr "" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "信用额度" #. module: base #: field:ir.default,value:0 @@ -4193,10 +4369,15 @@ msgid "Category" 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 "窗口动作" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "状态" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "自动刷新" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -4204,9 +4385,9 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "帐户号码" +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4214,6 +4395,7 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" @@ -4256,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4273,8 +4455,8 @@ msgstr "" #. module: base #, python-format -#: code:report/custom.py:0 -msgid "The sum of the data (2nd field) is null.\nWe can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4286,11 +4468,6 @@ msgstr "" msgid "Company" msgstr "公司" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4329,7 +4506,6 @@ msgid "Icon" msgstr "图标" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4341,11 +4517,6 @@ msgstr "" msgid "Repeat missed" msgstr "Repeat all missed" -#. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - #. module: base #, python-format #: code:osv/orm.py:0 @@ -4410,6 +4581,11 @@ msgstr "" msgid "=" msgstr "=" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4423,8 +4599,8 @@ msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4497,6 +4673,11 @@ msgstr "" msgid "Custom Report" 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" @@ -4531,13 +4712,14 @@ msgstr "已打印:" #. module: base #, python-format -#: code:osv/fields.py:0 -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4550,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4586,7 +4763,6 @@ msgstr "设置" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4607,6 +4783,11 @@ msgstr "州/省编码" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4639,9 +4820,11 @@ msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "签名" +#: 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 #, python-format @@ -4671,8 +4854,8 @@ msgid "Bank Account Type" msgstr "银行帐户类型" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4722,6 +4905,11 @@ msgstr "州/省名称" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4733,10 +4921,11 @@ msgid "a5" msgstr "a5" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "消息" +#: 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 #: selection:ir.ui.menu,icon:0 @@ -4749,6 +4938,12 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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." @@ -4841,15 +5036,10 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" -msgstr "年:%年" - #. module: base #: field:ir.actions.act_window_close,name:0 #: field:ir.actions.actions,name:0 @@ -4860,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4871,10 +5061,14 @@ msgstr "报告脚注2" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "Email" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4933,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "业务伙伴称谓" @@ -4946,13 +5146,13 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "打开窗口" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" msgstr "" #. module: base @@ -4961,9 +5161,15 @@ msgid "Transition" 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:" -msgstr "您只能导入UTF-8编码的CSV文件.请检查您的文件首行是:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "增值税" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" +msgstr "" #. module: base #: field:res.partner.address,birthdate:0 @@ -4987,6 +5193,8 @@ msgstr "" #. module: base #, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 @@ -5007,6 +5215,12 @@ msgstr "业务伙伴分类" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "序列代码" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5089,8 +5303,15 @@ msgstr "公司" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5114,8 +5335,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5160,7 +5381,6 @@ msgid "Arguments" msgstr "参数" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5205,7 +5425,6 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "说明" @@ -5257,6 +5476,11 @@ msgstr "" msgid "Automatic XSL:RML" msgstr "自动XSL:RML" +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5292,9 +5516,9 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "月末" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "删除权限" #. module: base #: field:ir.actions.report.custom,name:0 @@ -5319,14 +5543,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 -#: view:res.country:0 -msgid "Country" -msgstr "国家" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" #. module: base #: wizard_view:base.module.import,import:0 @@ -5349,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5411,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5423,6 +5642,11 @@ msgstr "" msgid "Sequence" 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" diff --git a/bin/addons/base/i18n/zh_TW.po b/bin/addons/base/i18n/zh_TW.po index f11e804bcb0..d462b20b7aa 100644 --- a/bin/addons/base/i18n/zh_TW.po +++ b/bin/addons/base/i18n/zh_TW.po @@ -4,16 +4,16 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 4.3.0" -"Report-Msgid-Bugs-To: support@openerp.com" -"POT-Creation-Date: 2008-09-11 15:37:06+0000" -"PO-Revision-Date: 2008-09-11 15:37:06+0000" -"Last-Translator: <>" -"Language-Team: " -"MIME-Version: 1.0" -"Content-Type: text/plain; charset=UTF-8" -"Content-Transfer-Encoding: " -"Plural-Forms: " +"Project-Id-Version: OpenERP Server 5.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2008-11-28 16:52:59+0000\n" +"PO-Revision-Date: 2008-11-28 16:52:59+0000\n" +"Last-Translator: <>\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 #: model:ir.actions.act_window,name:base.ir_cron_act @@ -42,11 +42,6 @@ msgstr "" msgid "Unknown" msgstr "" -#. module: base -#: field:ir.model.fields,relate:0 -msgid "Click and Relate" -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." @@ -68,6 +63,11 @@ msgstr "" msgid "Change My Preferences" msgstr "" +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "" + #. module: base #: field:res.partner.function,name:0 msgid "Function name" @@ -124,7 +124,7 @@ msgid "STOCK_MEDIA_FORWARD" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Skipped" msgstr "" @@ -156,6 +156,7 @@ msgstr "工作流" #: 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 @@ -184,21 +185,21 @@ msgstr "" msgid "Categories of Modules" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Add New User" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Not Started" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" @@ -230,8 +231,12 @@ msgid "Key" msgstr "" #. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" +#: 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 @@ -245,6 +250,16 @@ msgstr "" 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" @@ -266,6 +281,12 @@ msgstr "授权用户参照" 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 @@ -273,13 +294,6 @@ msgstr "" msgid "condition" 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 #: selection:ir.report.custom,frequency:0 msgid "Yearly" @@ -333,8 +347,8 @@ msgid "Activites" msgstr "" #. module: base -#: field:ir.module.module.configuration.step,note:0 -msgid "Text" +#: field:ir.actions.todo,start_on:0 +msgid "Start On" msgstr "" #. module: base @@ -364,6 +378,11 @@ msgstr "" msgid "ir.ui.view.custom" 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" @@ -409,7 +428,7 @@ msgid "Report Type" msgstr "报告类型" #. module: base -#: field:ir.module.module.configuration.step,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 @@ -441,6 +460,7 @@ msgstr "" #. module: base #: field:res.partner,comment:0 +#: view:ir.attachment:0 #: view:res.groups:0 #: view:ir.model:0 #: view:res.partner:0 @@ -453,6 +473,11 @@ msgstr "注解" msgid "All terms" msgstr "" +#. module: base +#: field:res.partner.address,email:0 +msgid "Default Email" +msgstr "" + #. module: base #: view:res.partner:0 msgid "General" @@ -482,6 +507,11 @@ msgstr "" msgid "Can not define a column %s. Reserved keyword !" msgstr "" +#. 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 "" + #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" @@ -658,9 +688,9 @@ msgid "View Ref." msgstr "视图参照" #. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "表参照" +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "" #. module: base #: field:res.partner,ean13:0 @@ -713,8 +743,8 @@ msgid "Default limit for the list view" msgstr "" #. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" msgstr "" #. module: base @@ -728,8 +758,9 @@ msgid "Type fields" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_config_wizard_step_form -#: view:ir.module.module.configuration.step:0 +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +#: view:ir.actions.todo:0 msgid "Config Wizard Steps" msgstr "" @@ -744,11 +775,21 @@ msgstr "" msgid "Group" 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 +#: field:res.users,signature:0 +msgid "Signature" +msgstr "签名" + #. module: base #: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 @@ -794,10 +835,10 @@ msgid "res.partner.event" msgstr "" #. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "状态" +#: wizard_field:server.action.create,init,type:0 +#: wizard_view:server.action.create,init:0 +msgid "Select Action Type" +msgstr "" #. module: base #, python-format @@ -812,6 +853,11 @@ msgstr "" 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." @@ -823,8 +869,8 @@ msgid "STOCK_UNDERLINE" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,name:0 -msgid "Next Wizard" +#: selection:ir.model,state:0 +msgid "Custom Object" msgstr "" #. module: base @@ -842,11 +888,6 @@ msgstr "" msgid "User ID" msgstr "授权用户ID" -#. module: base -#: view:ir.module.module.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - #. module: base #: view:ir.rule:0 msgid "Test" @@ -874,6 +915,11 @@ msgstr "" msgid "ID Ref." msgstr "ID参照" +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" @@ -898,11 +944,6 @@ msgstr "" msgid "Default" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Custom" -msgstr "" - #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 @@ -957,6 +998,11 @@ msgstr "" msgid "Request History" msgstr "请求历史" +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" @@ -970,8 +1016,8 @@ msgid "Partner Events" msgstr "" #. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" +#: field:ir.actions.todo,note:0 +msgid "Text" msgstr "" #. module: base @@ -1022,9 +1068,9 @@ msgid "Partner contacts" msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "报表字段" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "" #. module: base #: help:res.country,code:0 @@ -1089,8 +1135,9 @@ msgid "Parent Menu" msgstr "父项菜单" #. module: base -#: view:res.users:0 -msgid "Define a New User" +#, python-format +#: code:addons/base/ir/ir_model.py:0 +msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" #. module: base @@ -1116,12 +1163,8 @@ msgid "ir.report.custom" 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" +#: field:ir.exports.line,export_id:0 +msgid "Exportation" msgstr "" #. module: base @@ -1139,6 +1182,11 @@ msgstr "" msgid "get" msgstr "" +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "报表字段" + #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -1150,9 +1198,13 @@ msgid "Pie Chart" msgstr "" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "Wrong ID for the browse record, got %s, expected an integer." +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" msgstr "" #. module: base @@ -1170,11 +1222,6 @@ msgstr "" msgid "Sequence Type" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Skip & Continue" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "field child2" @@ -1196,11 +1243,6 @@ msgstr "" msgid "Update Modules List" msgstr "" -#. module: base -#: field:ir.attachment,datas_fname:0 -msgid "Data Filename" -msgstr "数据文件名" - #. module: base #: view:res.config.view:0 msgid "Configure simple view" @@ -1257,10 +1299,9 @@ msgid "You try to install a module that depends on the module: %s.\nBut this mod 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" +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" msgstr "" #. module: base @@ -1285,14 +1326,15 @@ msgid "Modules to update" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "公司结构体系" +#: 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 "打开窗口" +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1344,15 +1386,19 @@ msgstr "" msgid "Unknown position in inherited view %s !" 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 -#, python-format -#: code:osv/orm.py:0 -msgid "Error occur when validation the fields %s: %s" +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" msgstr "" #. module: base @@ -1415,11 +1461,22 @@ msgstr "" msgid "Supplier" msgstr "" +#. module: base +#, python-format +#: code:report/custom.py:0 +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +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" @@ -1438,6 +1495,7 @@ 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 @@ -1497,6 +1555,12 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow @@ -1504,11 +1568,6 @@ msgstr "" msgid "Workflows" msgstr "" -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Type" -msgstr "触发器类型" - #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" @@ -1533,15 +1592,19 @@ msgstr "" 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 "" #. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" +#: rml:ir.module.reference:0 +msgid "Description :" msgstr "" #. module: base @@ -1609,9 +1672,8 @@ msgid "The .rml path of the file or NULL if the content is in report_rml_content msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "Can not create the module file:\n %s" +#: view:res.users:0 +msgid "Skip" msgstr "" #. module: base @@ -1625,22 +1687,16 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + #. module: base #: view:res.partner.address:0 msgid "Partner Address" msgstr "" -#. module: base -#: view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#, python-format -#: code:addons/base/ir/ir_model.py:0 -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - #. module: base #, python-format #: code:addons/base/ir/ir_model.py:0 @@ -1686,10 +1742,9 @@ msgid "Retailer" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "序列代码" +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1718,6 +1773,7 @@ msgid "State of Mind" msgstr "助记状态" #. module: base +#: field:ir.actions.todo,type:0 #: field:ir.actions.report.xml,report_type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 @@ -1726,6 +1782,27 @@ msgstr "助记状态" msgid "Type" msgstr "" +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "源活动" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" @@ -1849,13 +1926,13 @@ msgid "Module Category" msgstr "" #. module: base -#: view:res.users:0 -msgid "Add & Continue" +#: field:ir.rule,operand:0 +msgid "Operand" msgstr "" #. module: base -#: field:ir.rule,operand:0 -msgid "Operand" +#: 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 @@ -1874,9 +1951,8 @@ msgid "STOCK_UNINDENT" msgstr "" #. module: base -#, python-format -#: code:addons/base/module/module.py:0 -msgid "The module you are trying to remove depends on installed modules :\n %s" +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" msgstr "" #. module: base @@ -1973,7 +2049,7 @@ msgid "Channel Name" msgstr "销售渠道名称" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: view:ir.actions.configuration.wizard:0 msgid "Continue" msgstr "" @@ -1982,11 +2058,6 @@ msgstr "" msgid "Simplified Interface" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Assign Groups to Define Access Rights" -msgstr "" - #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 @@ -2003,20 +2074,19 @@ msgstr "对齐方式" msgid "STOCK_UNDO" msgstr "" +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + #. module: base #: selection:ir.rule,operator:0 msgid ">=" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "Notification" -msgstr "" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" msgstr "" #. module: base @@ -2040,8 +2110,14 @@ msgid "This function will check for new modules in the 'addons' path and on modu msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" +#: 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 @@ -2140,9 +2216,9 @@ msgid "SXW path" msgstr "" #. module: base -#: field:ir.attachment,datas:0 +#: view:ir.attachment:0 msgid "Data" -msgstr "数据" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -2186,11 +2262,6 @@ msgstr "" msgid "Module import" msgstr "" -#. module: base -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -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 @@ -2224,6 +2295,11 @@ msgstr "" msgid "Parent Company" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2249,11 +2325,6 @@ msgstr "" msgid "RML Internal Header" msgstr "" -#. module: base -#: model:ir.ui.menu,name:base.partner_wizard_vat_menu -msgid "Listing of VAT Customers" -msgstr "" - #. module: base #: selection:ir.model,state:0 msgid "Base Object" @@ -2288,11 +2359,21 @@ msgstr "" 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 +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + #. module: base #, python-format #: code:osv/fields.py:0 @@ -2354,7 +2435,6 @@ msgid "Customers Partners" msgstr "" #. module: base -#: wizard_button:list.vat.detail,init,end:0 #: 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 @@ -2362,6 +2442,7 @@ msgstr "" #: 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 @@ -2369,8 +2450,8 @@ msgid "Cancel" msgstr "" #. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" +#: model:ir.model,name:base.model_res_users +msgid "res.users" msgstr "" #. module: base @@ -2384,7 +2465,6 @@ msgid "terp-administration" msgstr "" #. module: base -#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 @@ -2429,7 +2509,7 @@ msgid "RML path" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,item_id:0 +#: field:ir.actions.configuration.wizard,item_id:0 msgid "Next Configuration Wizard" msgstr "" @@ -2445,9 +2525,8 @@ msgid "Meta Datas" 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" +#: model:ir.ui.menu,name:base.menu_custom +msgid "Custom" msgstr "" #. module: base @@ -2462,6 +2541,7 @@ msgid "Partners: " msgstr "" #. module: base +#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "" @@ -2472,14 +2552,9 @@ msgid "Childs Field" msgstr "子项字段" #. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_step -msgid "ir.module.module.configuration.step" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_configuration_wizard -msgid "ir.module.module.configuration.wizard" -msgstr "" +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "角色名称" #. module: base #, python-format @@ -2505,10 +2580,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.partner,responsible:0 #: field:res.roles,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users @@ -2551,8 +2626,8 @@ msgid "The search method is not implemented on this object !" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" msgstr "" #. module: base @@ -2599,12 +2674,12 @@ msgid "Create in Same Model" msgstr "" #. module: base +#: field:ir.actions.todo,name:0 #: field:ir.actions.report.xml,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.configuration.step,name:0 #: field:ir.module.module.dependency,name:0 #: field:ir.module.module,name:0 #: field:ir.module.repository,name:0 @@ -2625,11 +2700,22 @@ msgstr "" msgid "Name" 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 #: 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 msgid "On Create" @@ -2676,13 +2762,8 @@ msgid "Regexp to search module on the repository webpage:\n" msgstr "" #. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "VAT" - -#. module: base -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_url" +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." msgstr "" #. module: base @@ -2731,14 +2812,13 @@ msgid "STOCK_COPY" msgstr "" #. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" 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" +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" msgstr "" #. module: base @@ -2792,6 +2872,11 @@ msgstr "计划收入" 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 #: field:ir.report.custom.fields,groupby:0 msgid "Group by" @@ -2835,11 +2920,6 @@ msgstr "" msgid "Document" msgstr "文档" -#. module: base -#: view:res.partner:0 -msgid "# of Contacts" -msgstr "" - #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" @@ -2867,11 +2947,21 @@ 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 "" +#. 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 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" @@ -3018,6 +3108,12 @@ msgstr "所有权价值" msgid "Help" msgstr "" +#. module: base +#, python-format +#: code:addons/base/module/module.py:0 +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +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 @@ -3068,6 +3164,11 @@ msgstr "" 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" @@ -3087,8 +3188,8 @@ msgid "Directory:" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" +#: field:ir.attachment,res_model:0 +msgid "Attached Model" msgstr "" #. module: base @@ -3096,6 +3197,11 @@ msgstr "" 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 @@ -3133,9 +3239,15 @@ msgid "Source" msgstr "源" #. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "源活动" +#: 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 +msgid "Keep empty for a private address, not related to partner." +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -3204,6 +3316,12 @@ msgstr "" msgid "Export Id" 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 #: selection:ir.cron,interval_type:0 msgid "Hours" @@ -3269,8 +3387,8 @@ msgid "Tree can only be used in tabular reports" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" msgstr "" #. module: base @@ -3297,14 +3415,13 @@ msgid "STOCK_CLEAR" msgstr "" #. module: base -#, python-format -#: code:addons/base/ir/ir_report_custom.py:0 -msgid "Bar charts need at least two fields" +#: 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 -#: model:ir.model,name:base.model_res_users -msgid "res.users" +#: field:ir.model.access,perm_read:0 +msgid "Read Access" msgstr "" #. module: base @@ -3323,9 +3440,15 @@ msgid "Custom Field" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "需要的角色" +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "" + +#. module: base +#, python-format +#: code:addons/base/ir/ir_report_custom.py:0 +msgid "Bar charts need at least two fields" +msgstr "" #. module: base #, python-format @@ -3372,6 +3495,12 @@ msgstr "" 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 @@ -3385,14 +3514,13 @@ msgid "Type of view" msgstr "视图类型" #. module: base -#, python-format -#: code:osv/orm.py:0 -msgid "The perm_read method is not implemented on this object !" +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" msgstr "" #. module: base @@ -3433,6 +3561,11 @@ msgstr "" msgid "Grant access to menu" msgstr "" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" @@ -3477,11 +3610,17 @@ msgid "Number of modules updated" msgstr "" #. module: base -#: view:ir.module.module.configuration.wizard:0 +#: 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.event,name:0 #: field:res.partner,events:0 msgid "Events" @@ -3495,6 +3634,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 msgid "ir.actions.url" msgstr "" @@ -3510,9 +3650,21 @@ msgid "Active Partner Events" msgstr "" #. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expr ID" -msgstr "触发器ID" +#, python-format +#: code:osv/orm.py:0 +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#, python-format +#: code:osv/orm.py:0 +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -3536,14 +3688,26 @@ msgstr "" msgid "Phone" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +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 views." msgstr "" +#. 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.todo,groups_id:0 #: 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.model.fields,groups:0 #: field:ir.rule.group,groups:0 @@ -3561,6 +3725,7 @@ 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 @@ -3578,8 +3743,8 @@ msgid "Active" msgstr "活动的" #. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -3611,8 +3776,13 @@ msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" #. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "打开窗口" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" msgstr "" #. module: base @@ -3620,11 +3790,6 @@ msgstr "" 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" @@ -3643,15 +3808,15 @@ msgstr "" #. module: base #: field:ir.model.fields,model:0 -#: field:ir.model,model:0 #: field:ir.model.grid,model:0 +#: field:ir.model,model:0 #: field:ir.model,name:0 msgid "Object Name" msgstr "" #. module: base +#: field:ir.actions.todo,action_id:0 #: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.module.module.configuration.step,action_id:0 #: field:ir.ui.menu,action:0 #: view:ir.actions.actions:0 msgid "Action" @@ -3684,8 +3849,10 @@ msgid "Object Relation" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" +#: 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 @@ -3737,7 +3904,7 @@ msgid "terp-mrp" msgstr "" #. module: base -#: selection:ir.module.module.configuration.step,state:0 +#: selection:ir.actions.todo,state:0 msgid "Done" msgstr "" @@ -3793,6 +3960,7 @@ msgstr "" #: 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 "" @@ -3812,8 +3980,8 @@ msgid "Module:" msgstr "" #. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" msgstr "" #. module: base @@ -3850,13 +4018,9 @@ msgid "The selected language has been successfully installed. You must change th msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "角色名称" - -#. module: base -#: wizard_button:list.vat.detail,init,go:0 -msgid "Create XML" +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" msgstr "" #. module: base @@ -3878,6 +4042,11 @@ msgstr "" msgid "Child Field" msgstr "" +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "" + #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" @@ -3888,6 +4057,11 @@ msgstr "" msgid "STOCK_EDIT" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + #. module: base #: field:ir.actions.actions,usage:0 #: field:ir.actions.report.custom,usage:0 @@ -3915,8 +4089,9 @@ msgid "Others Actions" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" +#: model:ir.actions.wizard,name:base.wizard_server_action_create +#: view:ir.actions.server:0 +msgid "Create Action" msgstr "" #. module: base @@ -3991,8 +4166,8 @@ msgid "Child ids" msgstr "子项" #. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" +#: field:ir.actions.todo,end_date:0 +msgid "End Date" msgstr "" #. module: base @@ -4002,8 +4177,8 @@ msgid "Resource" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" +#: field:ir.model.data,date_update:0 +msgid "Update Date" msgstr "" #. module: base @@ -4126,8 +4301,9 @@ msgid "Published Version" msgstr "" #. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" +#: 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 @@ -4157,8 +4333,8 @@ msgid "ir.exports.line" msgstr "" #. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "This wizard will create an XML file for Vat details and total invoiced amounts per partner." +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base @@ -4193,9 +4369,14 @@ msgid "Category" 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" +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "状态" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" msgstr "" #. module: base @@ -4204,8 +4385,8 @@ msgid "ir.actions.act_window_close" msgstr "" #. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" +#: selection:ir.actions.todo,type:0 +msgid "Service" msgstr "" #. module: base @@ -4214,6 +4395,7 @@ msgid "Add an auto-refresh on the view" msgstr "" #. module: base +#: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" @@ -4256,14 +4438,14 @@ msgid "Fax" 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" +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." +#: 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 @@ -4273,8 +4455,8 @@ msgstr "" #. module: base #, python-format -#: code:report/custom.py:0 -msgid "The sum of the data (2nd field) is null.\nWe can draw a pie chart !" +#: code:osv/orm.py:0 +msgid "The perm_read method is not implemented on this object !" msgstr "" #. module: base @@ -4286,11 +4468,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: base -#: view:ir.actions.server:0 -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 "" - #. module: base #: field:res.request,create_date:0 msgid "Created date" @@ -4329,7 +4506,6 @@ msgid "Icon" msgstr "" #. module: base -#: wizard_button:list.vat.detail,go,end:0 #: 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 @@ -4341,11 +4517,6 @@ msgstr "" msgid "Repeat missed" msgstr "Repeat all missed" -#. module: base -#: model:ir.actions.wizard,name:base.partner_wizard_vat -msgid "Enlist Vat Details" -msgstr "" - #. module: base #, python-format #: code:osv/orm.py:0 @@ -4410,6 +4581,11 @@ msgstr "" msgid "=" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4423,8 +4599,8 @@ msgid "Warning" msgstr "" #. module: base -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" msgstr "" #. module: base @@ -4497,6 +4673,11 @@ msgstr "" msgid "Custom Report" 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" @@ -4531,13 +4712,14 @@ msgstr "" #. module: base #, python-format -#: code:osv/fields.py:0 -msgid "Not implemented set_memory method !" +#: code:addons/base/module/module.py:0 +msgid "Can not upgrade module '%s'. It is not installed." msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,file_save:0 -msgid "Save File" +#, python-format +#: code:osv/fields.py:0 +msgid "Not implemented set_memory method !" msgstr "" #. module: base @@ -4550,11 +4732,6 @@ msgstr "" msgid "Partner category" msgstr "" -#. module: base -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" @@ -4586,7 +4763,6 @@ msgstr "" #. module: base #: field:ir.model.fields,ttype:0 -#: view:ir.model.fields:0 #: view:ir.model:0 msgid "Field Type" msgstr "" @@ -4607,6 +4783,11 @@ msgstr "状态编码" msgid "On delete" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" @@ -4639,9 +4820,11 @@ msgid "Field %d should be a figure" msgstr "" #. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "签名" +#: 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 #, python-format @@ -4671,8 +4854,8 @@ msgid "Bank Account Type" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" msgstr "" #. module: base @@ -4722,6 +4905,11 @@ msgstr "状态名称" msgid "Your Logo - Use a size of about 450x150 pixels." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -4733,9 +4921,10 @@ msgid "a5" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" +#: 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 @@ -4749,6 +4938,12 @@ msgstr "" msgid "ir.actions.report.xml" msgstr "" +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Maintenance Error !" +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." @@ -4841,13 +5036,8 @@ msgid "Server Action" msgstr "" #. module: base -#: wizard_field:list.vat.detail,go,msg:0 -msgid "File created" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year: %(year)s" +#: selection:ir.module.module,license:0 +msgid "GPL-3" msgstr "" #. module: base @@ -4860,7 +5050,7 @@ msgid "Action Name" msgstr "" #. module: base -#: field:ir.module.module.configuration.wizard,progress:0 +#: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" msgstr "" @@ -4871,10 +5061,14 @@ msgstr "" #. module: base #: field:res.bank,email:0 -#: field:res.partner.address,email:0 msgid "E-Mail" msgstr "" +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" @@ -4933,8 +5127,14 @@ msgid "Import a Translation File" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title +#, python-format +#: code:addons/base/ir/ir_actions.py:0 +msgid "Please specify the Partner Email address !" +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 "Partners Titles" msgstr "" @@ -4946,13 +5146,13 @@ msgid "Untranslated terms" msgstr "" #. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." msgstr "" #. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" msgstr "" #. module: base @@ -4961,8 +5161,14 @@ msgid "Transition" 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:" +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "VAT" + +#. module: base +#, python-format +#: code:addons/base/maintenance/maintenance.py:0 +msgid "Valid Maintenance Contract !" msgstr "" #. module: base @@ -4987,6 +5193,8 @@ msgstr "" #. module: base #, python-format +#: code:report/custom.py:0 +#: code:addons/base/ir/ir_actions.py:0 #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/res/res_user.py:0 #: code:addons/base/res/res_currency.py:0 @@ -5007,6 +5215,12 @@ msgstr "" msgid "workflow.activity" msgstr "" +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "序列代码" + #. module: base #: selection:res.request,state:0 msgid "active" @@ -5089,8 +5303,15 @@ msgstr "" msgid "Fields Mapping" msgstr "" +#. module: base +#: field:ir.default,ref_table:0 +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 @@ -5114,8 +5335,8 @@ msgid "The VAT doesn't seem to be correct." msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" msgstr "" #. module: base @@ -5160,7 +5381,6 @@ msgid "Arguments" msgstr "参数" #. module: base -#: field:ir.attachment,res_model:0 #: field:workflow.instance,res_type:0 #: field:workflow,osv:0 msgid "Resource Object" @@ -5205,7 +5425,6 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.partner.event:0 #: view:res.request:0 -#: view:ir.attachment:0 msgid "Description" msgstr "说明" @@ -5257,6 +5476,11 @@ msgstr "" msgid "Automatic XSL:RML" msgstr "自动XSL:RML" +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5292,8 +5516,8 @@ msgid "Multiple rules on same objects are joined using operator OR" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" msgstr "" #. module: base @@ -5319,13 +5543,8 @@ 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 -#: view:res.country:0 -msgid "Country" +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." msgstr "" #. module: base @@ -5349,8 +5568,8 @@ msgid "Unsubscribe Report" msgstr "" #. module: base -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" msgstr "" #. module: base @@ -5411,9 +5630,9 @@ msgid "Addresses" msgstr "" #. module: base +#: field:ir.actions.todo,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.module.configuration.step,sequence:0 #: field:ir.module.repository,sequence:0 #: field:ir.report.custom.fields,sequence:0 #: field:ir.ui.menu,sequence:0 @@ -5423,6 +5642,11 @@ msgstr "" msgid "Sequence" 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" diff --git a/bin/addons/base/ir/ir.xml b/bin/addons/base/ir/ir.xml index dfc43bfae4f..145bf6817af 100644 --- a/bin/addons/base/ir/ir.xml +++ b/bin/addons/base/ir/ir.xml @@ -505,8 +505,8 @@
- - + + @@ -517,7 +517,7 @@ - + @@ -1155,19 +1155,23 @@ - - - - - - -